less copy protection, more size visualization
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

33641 satır
846 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.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. });
  45. return createEntityMaker(info, views, defaultSizes);
  46. }
  47. const speciesData = {
  48. animal: {
  49. name: "Animal"
  50. },
  51. dog: {
  52. name: "Dog",
  53. parents: [
  54. "canine"
  55. ]
  56. },
  57. canine: {
  58. name: "Canine",
  59. parents: [
  60. "mammal"
  61. ]
  62. },
  63. crux: {
  64. name: "Crux",
  65. parents: [
  66. "mammal"
  67. ]
  68. },
  69. mammal: {
  70. name: "Mammal",
  71. parents: [
  72. "animal"
  73. ]
  74. },
  75. "rough-collie": {
  76. name: "Rough Collie",
  77. parents: [
  78. "dog"
  79. ]
  80. },
  81. dragon: {
  82. name: "Dragon",
  83. parents: [
  84. "reptile"
  85. ]
  86. },
  87. reptile: {
  88. name: "Reptile",
  89. parents: [
  90. "animal"
  91. ]
  92. },
  93. woodpecker: {
  94. name: "Woodpecker",
  95. parents: [
  96. "avian"
  97. ]
  98. },
  99. avian: {
  100. name: "Avian",
  101. parents: [
  102. "animal"
  103. ]
  104. },
  105. kitsune: {
  106. name: "Kitsune",
  107. parents: [
  108. "fox"
  109. ]
  110. },
  111. fox: {
  112. name: "Fox",
  113. parents: [
  114. "mammal"
  115. ]
  116. },
  117. pokemon: {
  118. name: "Pokemon"
  119. },
  120. tiger: {
  121. name: "Tiger",
  122. parents: [
  123. "cat"
  124. ]
  125. },
  126. cat: {
  127. name: "Cat",
  128. parents: [
  129. "mammal"
  130. ]
  131. },
  132. "blue-jay": {
  133. name: "Blue Jay",
  134. parents: [
  135. "avian"
  136. ]
  137. },
  138. wolf: {
  139. name: "Wolf",
  140. parents: [
  141. "mammal"
  142. ]
  143. },
  144. coyote: {
  145. name: "Coyote",
  146. parents: [
  147. "mammal"
  148. ]
  149. },
  150. raccoon: {
  151. name: "Raccoon",
  152. parents: [
  153. "mammal"
  154. ]
  155. },
  156. weasel: {
  157. name: "Weasel",
  158. parents: [
  159. "mammal"
  160. ]
  161. },
  162. "red-panda": {
  163. name: "Red Panda",
  164. parents: [
  165. "mammal"
  166. ]
  167. },
  168. dolphin: {
  169. name: "Dolphin",
  170. parents: [
  171. "mammal"
  172. ]
  173. },
  174. "african-wild-dog": {
  175. name: "African Wild Dog",
  176. parents: [
  177. "canine"
  178. ]
  179. },
  180. "hyena": {
  181. name: "Hyena",
  182. parents: [
  183. "canine"
  184. ]
  185. },
  186. "carbuncle": {
  187. name: "Carbuncle",
  188. parents: [
  189. "animal"
  190. ]
  191. },
  192. bat: {
  193. name: "Bat",
  194. parents: [
  195. "mammal"
  196. ]
  197. },
  198. "leaf-nosed-bat": {
  199. name: "Leaf-Nosed Bat",
  200. parents: [
  201. "bat"
  202. ]
  203. },
  204. "fish": {
  205. name: "Fish",
  206. parents: [
  207. "animal"
  208. ]
  209. },
  210. "ram": {
  211. name: "Ram",
  212. parents: [
  213. "mammal"
  214. ]
  215. },
  216. "demon": {
  217. name: "Demon"
  218. },
  219. "cougar": {
  220. name: "Cougar",
  221. parents: [
  222. "cat"
  223. ]
  224. },
  225. "goat": {
  226. name: "Goat",
  227. parents: [
  228. "mammal"
  229. ]
  230. },
  231. "lion": {
  232. name: "Lion",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "harpy-eager": {
  238. name: "Harpy Eagle",
  239. parents: [
  240. "avian"
  241. ]
  242. },
  243. "deer": {
  244. name: "Deer",
  245. parents: [
  246. "mammal"
  247. ]
  248. },
  249. "phoenix": {
  250. name: "Phoenix",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "aeromorph": {
  256. name: "Aeromorph",
  257. parents: [
  258. "machine"
  259. ]
  260. },
  261. "machine": {
  262. name: "Machine",
  263. },
  264. "android": {
  265. name: "Android",
  266. parents: [
  267. "machine"
  268. ]
  269. },
  270. "jackal": {
  271. name: "Jackal",
  272. parents: [
  273. "canine"
  274. ]
  275. },
  276. "corvid": {
  277. name: "Corvid",
  278. parents: [
  279. "avian"
  280. ]
  281. },
  282. "pharaoh-hound": {
  283. name: "Pharaoh Hound",
  284. parents: [
  285. "dog"
  286. ]
  287. },
  288. "skunk": {
  289. name: "Skunk",
  290. parents: [
  291. "mammal"
  292. ]
  293. },
  294. "shark": {
  295. name: "Shark",
  296. parents: [
  297. "fish"
  298. ]
  299. },
  300. "black-panther": {
  301. name: "Black Panther",
  302. parents: [
  303. "cat"
  304. ]
  305. },
  306. "umbra": {
  307. name: "Umbra",
  308. parents: [
  309. "animal"
  310. ]
  311. },
  312. "raven": {
  313. name: "Raven",
  314. parents: [
  315. "corvid"
  316. ]
  317. },
  318. "snow-leopard": {
  319. name: "Snow Leopard",
  320. parents: [
  321. "cat"
  322. ]
  323. },
  324. "barbary-lion": {
  325. name: "Barbary Lion",
  326. parents: [
  327. "lion"
  328. ]
  329. },
  330. "dra'gal": {
  331. name: "Dra'Gal",
  332. parents: [
  333. "mammal"
  334. ]
  335. },
  336. "german-shepherd": {
  337. name: "German Shepherd",
  338. parents: [
  339. "dog"
  340. ]
  341. },
  342. "bayleef": {
  343. name: "Bayleef",
  344. parents: [
  345. "pokemon"
  346. ]
  347. },
  348. "mouse": {
  349. name: "Mouse",
  350. parents: [
  351. "rodent"
  352. ]
  353. },
  354. "rat": {
  355. name: "Rat",
  356. parents: [
  357. "mammal"
  358. ]
  359. },
  360. "hoshiko-beast": {
  361. name: "Hoshiko Beast",
  362. parents: ["animal"]
  363. },
  364. "snow-jugani": {
  365. name: "Snow Jugani",
  366. parents: ["cat"]
  367. },
  368. "patamon": {
  369. name: "Patamon",
  370. parents: ["digimon"]
  371. },
  372. "digimon": {
  373. name: "Digimon",
  374. },
  375. "jugani": {
  376. name: "Jugani",
  377. parents: ["cat"]
  378. },
  379. "luxray": {
  380. name: "Luxray",
  381. parents: ["pokemon"]
  382. },
  383. "mech": {
  384. name: "Mech",
  385. parents: ["machine"]
  386. },
  387. "zoid": {
  388. name: "Zoid",
  389. parents: ["mech"]
  390. },
  391. "monster": {
  392. name: "Monster",
  393. parents: ["animal"]
  394. },
  395. "foo-dog": {
  396. name: "Foo Dog",
  397. parents: ["mammal"]
  398. },
  399. "elephant": {
  400. name: "Elephant",
  401. parents: ["mammal"]
  402. },
  403. "eagle": {
  404. name: "Eagle",
  405. parents: ["avian"]
  406. },
  407. "cow": {
  408. name: "Cow",
  409. parents: ["mammal"]
  410. },
  411. "crocodile": {
  412. name: "Crocodile",
  413. parents: ["reptile"]
  414. },
  415. "borzoi": {
  416. name: "Borzoi",
  417. parents: ["dog"]
  418. },
  419. "snake": {
  420. name: "Snake",
  421. parents: ["reptile"]
  422. },
  423. "horned-bush-viper": {
  424. name: "Horned Bush Viper",
  425. parents: ["snake"]
  426. },
  427. "cobra": {
  428. name: "Cobra",
  429. parents: ["snake"]
  430. },
  431. "harpy-eagle": {
  432. name: "Harpy Eagle",
  433. parents: ["eagle"]
  434. },
  435. "raptor": {
  436. name: "Raptor",
  437. parents: ["dinosaur"]
  438. },
  439. "dinosaur": {
  440. name: "Dinosaur",
  441. parents: ["reptile"]
  442. },
  443. "veilhound": {
  444. name: "Veilhound",
  445. parents: ["hellhound", "demon"]
  446. },
  447. "hellhound": {
  448. name: "Hellhound",
  449. parents: ["canine"]
  450. },
  451. "insect": {
  452. name: "Insect",
  453. parents: ["animal"]
  454. },
  455. "beetle": {
  456. name: "Beetle",
  457. parents: ["insect"]
  458. },
  459. "moth": {
  460. name: "Moth",
  461. parents: ["insect"]
  462. },
  463. "eastern-dragon": {
  464. name: "Eastern Dragon",
  465. parents: ["dragon"]
  466. },
  467. "jaguar": {
  468. name: "Jaguar",
  469. parents: ["cat"]
  470. },
  471. "horse": {
  472. name: "Horse",
  473. parents: ["mammal"]
  474. },
  475. "sergal": {
  476. name: "Sergal",
  477. parents: ["mammal"]
  478. },
  479. "gryphon": {
  480. name: "Gryphon",
  481. parents: ["lion", "eagle"]
  482. },
  483. "robot": {
  484. name: "Robot",
  485. parents: ["machine"]
  486. },
  487. "medihound": {
  488. name: "Medihound",
  489. parents: ["robot", "dog"]
  490. },
  491. "sylveon": {
  492. name: "Sylveon",
  493. parents: ["pokemon"]
  494. },
  495. "catgirl": {
  496. name: "Catgirl",
  497. parents: ["mammal"]
  498. },
  499. "cowgirl": {
  500. name: "Cowgirl",
  501. parents: ["mammal"]
  502. },
  503. "pony": {
  504. name: "Pony",
  505. parents: ["horse"]
  506. },
  507. "rabbit": {
  508. name: "Rabbit",
  509. parents: ["mammal"]
  510. },
  511. "fennec-fox": {
  512. name: "Fennec Fox",
  513. parents: ["fox"]
  514. },
  515. "azodian": {
  516. name: "Azodian",
  517. parents: ["mouse"]
  518. },
  519. "shiba-inu": {
  520. name: "Shiba Inu",
  521. parents: ["dog"]
  522. },
  523. "changeling": {
  524. name: "Changeling",
  525. parents: ["insect"]
  526. },
  527. "cheetah": {
  528. name: "Cheetah",
  529. parents: ["cat"]
  530. },
  531. "golden-jackal": {
  532. name: "Golden Jackal",
  533. parents: ["jackal"]
  534. },
  535. "manectric": {
  536. name: "Manectric",
  537. parents: ["pokemon"]
  538. },
  539. "rat": {
  540. name: "Rat",
  541. parents: ["rodent"]
  542. },
  543. "rodent": {
  544. name: "Rodent",
  545. parents: ["mammal"]
  546. },
  547. "octocoon": {
  548. name: "Octocoon",
  549. parents: ["raccoon", "octopus"]
  550. },
  551. "octopus": {
  552. name: "Octopus",
  553. parents: ["fish"]
  554. },
  555. "werewolf": {
  556. name: "Werewolf",
  557. parents: ["wolf"]
  558. },
  559. "meerkat": {
  560. name: "Meerkat",
  561. parents: ["mammal"]
  562. },
  563. "human": {
  564. name: "Human",
  565. parents: ["mammal"]
  566. },
  567. "geth": {
  568. name: "Geth",
  569. parents: ["android"]
  570. },
  571. "husky": {
  572. name: "Husky",
  573. parents: ["dog"]
  574. },
  575. "long-eared-bat": {
  576. name: "Long Eared Bat",
  577. parents: ["bat"]
  578. },
  579. "lizard": {
  580. name: "Lizard",
  581. parents: ["reptile"]
  582. },
  583. "salamander": {
  584. name: "Salamander",
  585. parents: ["lizard"]
  586. },
  587. "chameleon": {
  588. name: "Chameleon",
  589. parents: ["lizard"]
  590. },
  591. "gecko": {
  592. name: "Gecko",
  593. parents: ["lizard"]
  594. },
  595. "kobold": {
  596. name: "Kobold",
  597. parents: ["reptile"]
  598. },
  599. "charizard": {
  600. name: "Charizard",
  601. parents: ["pokemon"]
  602. },
  603. "lugia": {
  604. name: "Lugia",
  605. parents: ["pokemon"]
  606. },
  607. "cerberus": {
  608. name: "Cerberus",
  609. parents: ["dog"]
  610. },
  611. "tyrantrum": {
  612. name: "Tyrantrum",
  613. parents: ["pokemon"]
  614. },
  615. "lemur": {
  616. name: "Lemur",
  617. parents: ["mammal"]
  618. },
  619. "kelpie": {
  620. name: "Kelpie",
  621. parents: ["horse", "monster"]
  622. },
  623. "labrador": {
  624. name: "Labrador",
  625. parents: ["dog"]
  626. },
  627. "sylveon": {
  628. name: "Sylveon",
  629. parents: ["eeveelution"]
  630. },
  631. "eeveelution": {
  632. name: "Eeveelution",
  633. parents: ["pokemon"]
  634. },
  635. "polar-bear": {
  636. name: "Polar Bear",
  637. parents: ["bear"]
  638. },
  639. "bear": {
  640. name: "Bear",
  641. parents: ["mammal"]
  642. },
  643. "absol": {
  644. name: "Absol",
  645. parents: ["pokemon"]
  646. },
  647. "wolver": {
  648. name: "Wolver",
  649. parents: ["mammal"]
  650. },
  651. "rottweiler": {
  652. name: "Rottweiler",
  653. parents: ["dog"]
  654. },
  655. "zebra": {
  656. name: "Zebra",
  657. parents: ["horse"]
  658. },
  659. "yoshi": {
  660. name: "Yoshi",
  661. parents: ["lizard"]
  662. },
  663. "lynx": {
  664. name: "Lynx",
  665. parents: ["cat"]
  666. },
  667. "unknown": {
  668. name: "Unknown",
  669. parents: []
  670. },
  671. "thylacine": {
  672. name: "Thylacine",
  673. parents: ["mammal"]
  674. },
  675. "gabumon": {
  676. name: "Gabumon",
  677. parents: ["digimon"]
  678. },
  679. "border-collie": {
  680. name: "Border Collie",
  681. parents: ["dog"]
  682. },
  683. "imp": {
  684. name: "Imp",
  685. parents: ["demon"]
  686. },
  687. "kangaroo": {
  688. name: "Kangaroo",
  689. parents: ["mammal"]
  690. },
  691. "renamon": {
  692. name: "Renamon",
  693. parents: ["digimon"]
  694. },
  695. "candy-orca-dragon": {
  696. name: "Candy Orca Dragon",
  697. parents: ["fish", "dragon", "candy"]
  698. },
  699. "sabertooth-tiger": {
  700. name: "Sabertooth Tiger",
  701. parents: ["cat"]
  702. },
  703. "espurr": {
  704. name: "Espurr",
  705. parents: ["pokemon"]
  706. },
  707. "otter": {
  708. name: "Otter",
  709. parents: ["mammal"]
  710. },
  711. "elemental": {
  712. name: "Elemental",
  713. parents: ["mammal"]
  714. },
  715. "mew": {
  716. name: "Mew",
  717. parents: ["pokemon"]
  718. },
  719. "goodra": {
  720. name: "Goodra",
  721. parents: ["pokemon"]
  722. },
  723. "fairy": {
  724. name: "Fairy",
  725. parents: ["magical"]
  726. },
  727. "typhlosion": {
  728. name: "Typhlosion",
  729. parents: ["pokemon"]
  730. },
  731. "magical": {
  732. name: "Magical",
  733. parents: []
  734. },
  735. "xenomorph": {
  736. name: "Xenomorph",
  737. parents: ["monster", "alien"]
  738. },
  739. "charr": {
  740. name: "Charr",
  741. parents: ["cat"]
  742. },
  743. "siberian-husky": {
  744. name: "Siberian Husky",
  745. parents: ["husky"]
  746. },
  747. "alligator": {
  748. name: "Alligator",
  749. parents: ["reptile"]
  750. },
  751. "bernese-mountain-dog": {
  752. name: "Bernese Mountain Dog",
  753. parents: ["dog"]
  754. },
  755. "reshiram": {
  756. name: "Reshiram",
  757. parents: ["pokemon"]
  758. },
  759. "grizzly-bear": {
  760. name: "Grizzly Bear",
  761. parents: ["bear"]
  762. },
  763. "water-monitor": {
  764. name: "Water Monitor",
  765. parents: ["lizard"]
  766. },
  767. "banchofossa": {
  768. name: "Banchofossa",
  769. parents: ["mammal"]
  770. },
  771. "kirin": {
  772. name: "Kirin",
  773. parents: ["monster"]
  774. },
  775. "quilava": {
  776. name: "Quilava",
  777. parents: ["pokemon"]
  778. },
  779. "seviper": {
  780. name: "Seviper",
  781. parents: ["pokemon"]
  782. },
  783. "flying-fox": {
  784. name: "Flying Fox",
  785. parents: ["bat"]
  786. },
  787. "keynain": {
  788. name: "Keynain",
  789. parents: ["avian"]
  790. },
  791. "lucario": {
  792. name: "Lucario",
  793. parents: ["pokemon"]
  794. },
  795. "siamese-cat": {
  796. name: "Siamese Cat",
  797. parents: ["cat"]
  798. },
  799. "spider": {
  800. name: "Spider",
  801. parents: ["insect"]
  802. },
  803. "samurott": {
  804. name: "Samurott",
  805. parents: ["pokemon"]
  806. },
  807. "megalodon": {
  808. name: "Megalodon",
  809. parents: ["shark"]
  810. },
  811. "unicorn": {
  812. name: "Unicorn",
  813. parents: ["horse"]
  814. },
  815. "greninja": {
  816. name: "Greninja",
  817. parents: ["pokemon"]
  818. },
  819. "water-dragon": {
  820. name: "Water Dragon",
  821. parents: ["dragon"]
  822. },
  823. "cross-fox": {
  824. name: "Cross Fox",
  825. parents: ["fox"]
  826. },
  827. "synth": {
  828. name: "Synth",
  829. parents: ["machine"]
  830. },
  831. "construct": {
  832. name: "Construct",
  833. parents: []
  834. },
  835. "mexican-wolf": {
  836. name: "Mexican Wolf",
  837. parents: ["wolf"]
  838. },
  839. "leopard": {
  840. name: "Leopard",
  841. parents: ["cat"]
  842. },
  843. "pig": {
  844. name: "Pig",
  845. parents: ["mammal"]
  846. },
  847. "ampharos": {
  848. name: "Ampharos",
  849. parents: ["pokemon"]
  850. },
  851. "orca": {
  852. name: "Orca",
  853. parents: ["fish"]
  854. },
  855. "lycanroc": {
  856. name: "Lycanroc",
  857. parents: ["pokemon"]
  858. },
  859. "surkanu": {
  860. name: "Surkanu",
  861. parents: ["monster"]
  862. },
  863. "seal": {
  864. name: "Seal",
  865. parents: ["mammal"]
  866. },
  867. "keldeo": {
  868. name: "Keldeo",
  869. parents: ["pokemon"]
  870. },
  871. "great-dane": {
  872. name: "Great Dane",
  873. parents: ["dog"]
  874. },
  875. "black-backed-jackal": {
  876. name: "Black Backed Jackal",
  877. parents: ["jackal"]
  878. },
  879. "sheep": {
  880. name: "Sheep",
  881. parents: ["mammal"]
  882. },
  883. "leopard-seal": {
  884. name: "Leopard Seal",
  885. parents: ["seal"]
  886. },
  887. "zoroark": {
  888. name: "Zoroark",
  889. parents: ["pokemon"]
  890. },
  891. "maned-wolf": {
  892. name: "Maned Wolf",
  893. parents: ["canine"]
  894. },
  895. "dracha": {
  896. name: "Dracha",
  897. parents: ["dragon"]
  898. },
  899. "wolxi": {
  900. name: "Wolxi",
  901. parents: ["mammal", "alien"]
  902. },
  903. "dratini": {
  904. name: "Dratini",
  905. parents: ["pokemon", "dragon"]
  906. },
  907. "skaven": {
  908. name: "Skaven",
  909. parents: ["rat"]
  910. },
  911. "mongoose": {
  912. name: "Mongoose",
  913. parents: ["mammal"]
  914. },
  915. "lopunny": {
  916. name: "Lopunny",
  917. parents: ["pokemon", "rabbit"]
  918. },
  919. "feraligatr": {
  920. name: "Feraligatr",
  921. parents: ["pokemon", "alligator"]
  922. },
  923. "houndoom": {
  924. name: "Houndoom",
  925. parents: ["pokemon", "dog"]
  926. },
  927. "protogen": {
  928. name: "Protogen",
  929. parents: ["machine"]
  930. },
  931. "saint-bernard": {
  932. name: "Saint Bernard",
  933. parents: ["dog"]
  934. },
  935. "crow": {
  936. name: "Crow",
  937. parents: ["corvid"]
  938. },
  939. "delphox": {
  940. name: "Delphox",
  941. parents: ["pokemon", "fox"]
  942. },
  943. "moose": {
  944. name: "Moose",
  945. parents: ["mammal"]
  946. },
  947. "joraxian": {
  948. name: "Joraxian",
  949. parents: ["monster", "canine", "demon"]
  950. },
  951. "nimbat": {
  952. name: "Nimbat",
  953. parents: ["mammal"]
  954. },
  955. "aardwolf": {
  956. name: "Aardwolf",
  957. parents: ["canine"]
  958. },
  959. "fluudrani": {
  960. name: "Fluudrani",
  961. parents: ["animal"]
  962. },
  963. "arcanine": {
  964. name: "Arcanine",
  965. parents: ["pokemon", "dog"]
  966. },
  967. "inteleon": {
  968. name: "Inteleon",
  969. parents: ["pokemon", "fish"]
  970. },
  971. "ninetales": {
  972. name: "Ninetales",
  973. parents: ["pokemon", "kitsune"]
  974. },
  975. "tigrex": {
  976. name: "Tigrex",
  977. parents: ["tiger"]
  978. },
  979. "zorua": {
  980. name: "Zorua",
  981. parents: ["pokemon", "fox"]
  982. },
  983. "vulpix": {
  984. name: "Vulpix",
  985. parents: ["pokemon", "fox"]
  986. },
  987. "barghest": {
  988. name: "Barghest",
  989. parents: ["monster"]
  990. },
  991. "gray-wolf": {
  992. name: "Gray Wolf",
  993. parents: ["wolf"]
  994. },
  995. "ruppells-fox": {
  996. name: "Rüppell's Fox",
  997. parents: ["fox"]
  998. },
  999. "bull-terrier": {
  1000. name: "Bull Terrier",
  1001. parents: ["dog"]
  1002. },
  1003. "european-honey-buzzard": {
  1004. name: "European Honey Buzzard",
  1005. parents: ["avian"]
  1006. },
  1007. "t-rex": {
  1008. name: "T Rex",
  1009. parents: ["dinosaur"]
  1010. },
  1011. "mactarian": {
  1012. name: "Mactarian",
  1013. parents: ["shark", "monster"]
  1014. },
  1015. "mewtwo-y": {
  1016. name: "Mewtwo Y",
  1017. parents: ["mewtwo"]
  1018. },
  1019. "mewtwo": {
  1020. name: "Mewtwo",
  1021. parents: ["pokemon"]
  1022. },
  1023. "mew": {
  1024. name: "Mew",
  1025. parents: ["pokemon"]
  1026. },
  1027. "eevee": {
  1028. name: "Eevee",
  1029. parents: ["eeveelution"]
  1030. },
  1031. "mienshao": {
  1032. name: "Mienshao",
  1033. parents: ["pokemon"]
  1034. },
  1035. "sugar-glider": {
  1036. name: "Sugar Glider",
  1037. parents: ["opossum"]
  1038. },
  1039. "spectral-bat": {
  1040. name: "Spectral Bat",
  1041. parents: ["bat"]
  1042. },
  1043. "scolipede": {
  1044. name: "Scolipede",
  1045. parents: ["pokemon", "insect"]
  1046. },
  1047. "jackalope": {
  1048. name: "Jackalope",
  1049. parents: ["rabbit", "antelope"]
  1050. },
  1051. "caracal": {
  1052. name: "Caracal",
  1053. parents: ["cat"]
  1054. },
  1055. "stoat": {
  1056. name: "Stoat",
  1057. parents: ["mammal"]
  1058. },
  1059. "african-golden-cat": {
  1060. name: "African Golden Cat",
  1061. parents: ["cat"]
  1062. },
  1063. "gigantosaurus": {
  1064. name: "Gigantosaurus",
  1065. parents: ["dinosaur"]
  1066. },
  1067. "zorgoia": {
  1068. name: "Zorgoia",
  1069. parents: ["mammal"]
  1070. },
  1071. "monitor-lizard": {
  1072. name: "Monitor Lizard",
  1073. parents: ["lizard"]
  1074. },
  1075. "ziralkia": {
  1076. name: "Ziralkia",
  1077. parents: ["mammal"]
  1078. },
  1079. "kiiasi": {
  1080. name: "Kiiasi",
  1081. parents: ["animal"]
  1082. },
  1083. "synx": {
  1084. name: "Synx",
  1085. parents: ["monster"]
  1086. },
  1087. "panther": {
  1088. name: "Panther",
  1089. parents: ["cat"]
  1090. },
  1091. "azumarill": {
  1092. name: "Azumarill",
  1093. parents: ["pokemon"]
  1094. },
  1095. "river-snaptail": {
  1096. name: "River Snaptail",
  1097. parents: ["otter", "crocodile"]
  1098. },
  1099. "great-blue-heron": {
  1100. name: "Great Blue Heron",
  1101. parents: ["avian"]
  1102. },
  1103. "smeargle": {
  1104. name: "Smeargle",
  1105. parents: ["pokemon"]
  1106. },
  1107. "vendeilen": {
  1108. name: "Vendeilen",
  1109. parents: ["monster"]
  1110. },
  1111. "ventura": {
  1112. name: "Ventura",
  1113. parents: ["canine"]
  1114. },
  1115. "clouded-leopard": {
  1116. name: "Clouded Leopard",
  1117. parents: ["leopard"]
  1118. },
  1119. "argonian": {
  1120. name: "Argonian",
  1121. parents: ["lizard"]
  1122. },
  1123. "salazzle": {
  1124. name: "Salazzle",
  1125. parents: ["pokemon", "lizard"]
  1126. },
  1127. "je-stoff-drachen": {
  1128. name: "Je-Stoff Drachen",
  1129. parents: ["dragon"]
  1130. },
  1131. "finnish-spitz-dog": {
  1132. name: "Finnish Spitz Dog",
  1133. parents: ["dog"]
  1134. },
  1135. "gray-fox": {
  1136. name: "Gray Fox",
  1137. parents: ["fox"]
  1138. },
  1139. "opossum": {
  1140. name: "opossum",
  1141. parents: ["mammal"]
  1142. },
  1143. "antelope": {
  1144. name: "Antelope",
  1145. parents: ["mammal"]
  1146. },
  1147. "weavile": {
  1148. name: "Weavile",
  1149. parents: ["pokemon"]
  1150. },
  1151. "pikachu": {
  1152. name: "Pikachu",
  1153. parents: ["pokemon", "mouse"]
  1154. },
  1155. "grovyle": {
  1156. name: "Grovyle",
  1157. parents: ["pokemon", "plant"]
  1158. },
  1159. "sthara": {
  1160. name: "Sthara",
  1161. parents: ["snow-leopard", "reptile"]
  1162. },
  1163. "star-warrior": {
  1164. name: "Star Warrior",
  1165. parents: ["magical"]
  1166. },
  1167. "dragonoid": {
  1168. name: "Dragonoid",
  1169. parents: ["dragon"]
  1170. },
  1171. "suicune": {
  1172. name: "Suicune",
  1173. parents: ["pokemon"]
  1174. },
  1175. "vole": {
  1176. name: "Vole",
  1177. parents: ["mammal"]
  1178. },
  1179. "blaziken": {
  1180. name: "Blaziken",
  1181. parents: ["pokemon", "avian"]
  1182. },
  1183. "buizel": {
  1184. name: "Buizel",
  1185. parents: ["pokemon", "fish"]
  1186. },
  1187. "floatzel": {
  1188. name: "Floatzel",
  1189. parents: ["pokemon", "fish"]
  1190. },
  1191. "umok": {
  1192. name: "Umok",
  1193. parents: ["avian"]
  1194. },
  1195. "sea-monster": {
  1196. name: "Sea Monster",
  1197. parents: ["monster", "fish"]
  1198. },
  1199. "egyptian-vulture": {
  1200. name: "Egyptian Vulture",
  1201. parents: ["avian"]
  1202. },
  1203. "doberman": {
  1204. name: "Doberman",
  1205. parents: ["dog"]
  1206. },
  1207. "zangoose": {
  1208. name: "Zangoose",
  1209. parents: ["pokemon", "mongoose"]
  1210. },
  1211. "mongoose": {
  1212. name: "Mongoose",
  1213. parents: ["mammal"]
  1214. },
  1215. "wickerbeast": {
  1216. name: "Wickerbeast",
  1217. parents: ["monster"]
  1218. },
  1219. "zenari": {
  1220. name: "Zenari",
  1221. parents: ["lizard"]
  1222. },
  1223. "plant": {
  1224. name: "Plant",
  1225. parents: []
  1226. },
  1227. "raskatox": {
  1228. name: "Raskatox",
  1229. parents: ["raccoon", "skunk", "cat", "fox"]
  1230. },
  1231. "mikromare": {
  1232. name: "mikromare",
  1233. parents: ["alien"]
  1234. },
  1235. "alien": {
  1236. name: "Alien",
  1237. parents: ["animal"]
  1238. },
  1239. "deity": {
  1240. name: "Deity",
  1241. parents: []
  1242. },
  1243. "skarlan": {
  1244. name: "Skarlan",
  1245. parents: ["slug", "dragon"]
  1246. },
  1247. "slug": {
  1248. name: "Slug",
  1249. parents: ["mollusk"]
  1250. },
  1251. "mollusk": {
  1252. name: "Mollusk",
  1253. parents: ["animal"]
  1254. },
  1255. "chimera": {
  1256. name: "Chimera",
  1257. parents: ["monster"]
  1258. },
  1259. "gestalt": {
  1260. name: "Gestalt",
  1261. parents: ["construct"]
  1262. },
  1263. "mimic": {
  1264. name: "Mimic",
  1265. parents: ["monster"]
  1266. },
  1267. "calico-rat": {
  1268. name: "Calico Rat",
  1269. parents: ["rat"]
  1270. },
  1271. "panda": {
  1272. name: "Panda",
  1273. parents: ["mammal"]
  1274. },
  1275. "oni": {
  1276. name: "Oni",
  1277. parents: ["monster"]
  1278. },
  1279. "pegasus": {
  1280. name: "Pegasus",
  1281. parents: ["horse"]
  1282. },
  1283. "vulpera": {
  1284. name: "Vulpera",
  1285. parents: ["fennec-fox"]
  1286. },
  1287. "ceratosaurus": {
  1288. name: "Ceratosaurus",
  1289. parents: ["dinosaur"]
  1290. },
  1291. "nykur": {
  1292. name: "Nykur",
  1293. parents: ["horse", "monster"]
  1294. },
  1295. "giraffe": {
  1296. name: "Giraffe",
  1297. parents: ["mammal"]
  1298. },
  1299. "tauren": {
  1300. name: "Tauren",
  1301. parents: ["cow"]
  1302. },
  1303. "draconi": {
  1304. name: "Draconi",
  1305. parents: ["alien", "cat", "cyborg"]
  1306. },
  1307. "dire-wolf": {
  1308. name: "Dire Wolf",
  1309. parents: ["wolf"]
  1310. },
  1311. "ferromorph": {
  1312. name: "Ferromorph",
  1313. parents: ["construct"]
  1314. },
  1315. "meowth": {
  1316. name: "Meowth",
  1317. parents: ["cat", "pokemon"]
  1318. },
  1319. "pavodragon": {
  1320. name: "Pavodragon",
  1321. parents: ["dragon"]
  1322. },
  1323. "aaltranae": {
  1324. name: "Aaltranae",
  1325. parents: ["dragon"]
  1326. },
  1327. "cyborg": {
  1328. name: "Cyborg",
  1329. parents: ["machine"]
  1330. },
  1331. "draptor": {
  1332. name: "Draptor",
  1333. parents: ["dragon"]
  1334. },
  1335. "candy": {
  1336. name: "Candy",
  1337. parents: []
  1338. },
  1339. "drenath": {
  1340. name: "Drenath",
  1341. parents: ["dragon", "snake", "rabbit"]
  1342. },
  1343. "coyju": {
  1344. name: "Coyju",
  1345. parents: ["coyote", "kaiju"]
  1346. },
  1347. "kaiju": {
  1348. name: "Kaiju",
  1349. parents: ["monster"]
  1350. },
  1351. "nickit": {
  1352. name: "Nickit",
  1353. parents: ["pokemon", "cat"]
  1354. },
  1355. "lopunny": {
  1356. name: "Lopunny",
  1357. parents: ["pokemon", "rabbit"]
  1358. },
  1359. "korean-jindo-dog": {
  1360. name: "Korean Jindo Dog",
  1361. parents: ["dog"]
  1362. },
  1363. "naga": {
  1364. name: "Naga",
  1365. parents: ["snake", "monster"]
  1366. },
  1367. "undead": {
  1368. name: "Undead",
  1369. parents: ["monster"]
  1370. },
  1371. "whale": {
  1372. name: "Whale",
  1373. parents: ["fish"]
  1374. },
  1375. "gelato-bee": {
  1376. name: "Gelato Bee",
  1377. parents: ["bee"]
  1378. },
  1379. "bee": {
  1380. name: "Bee",
  1381. parents: ["insect"]
  1382. },
  1383. "gardevoir": {
  1384. name: "Gardevoir",
  1385. parents: ["pokemon"]
  1386. },
  1387. "ant": {
  1388. name: "Ant",
  1389. parents: ["insect"]
  1390. },
  1391. "frog": {
  1392. name: "Frog",
  1393. parents: ["amphibian"]
  1394. },
  1395. "amphibian": {
  1396. name: "Amphibian",
  1397. parents: ["animal"]
  1398. },
  1399. "pangolin": {
  1400. name: "Pangolin",
  1401. parents: ["mammal"]
  1402. },
  1403. "uragi'viidorn": {
  1404. name: "Uragi'viidorn",
  1405. parents: ["avian", "bear"]
  1406. },
  1407. "gryphdelphais": {
  1408. name: "Gryphdelphais",
  1409. parents: ["dolphin", "gryphon"]
  1410. },
  1411. "plush": {
  1412. name: "Plush",
  1413. parents: ["construct"]
  1414. },
  1415. "draiger": {
  1416. name: "Draiger",
  1417. parents: ["dragon","tiger"]
  1418. },
  1419. "foxsky": {
  1420. name: "Foxsky",
  1421. parents: ["fox", "husky"]
  1422. },
  1423. "umbreon": {
  1424. name: "Umbreon",
  1425. parents: ["eeveelution"]
  1426. },
  1427. "slime-dragon": {
  1428. name: "Slime Dragon",
  1429. parents: ["dragon"]
  1430. },
  1431. "enderman": {
  1432. name: "Enderman",
  1433. parents: ["monster"]
  1434. },
  1435. "gremlin": {
  1436. name: "Gremlin",
  1437. parents: ["monster"]
  1438. },
  1439. "dragonsune": {
  1440. name: "Dragonsune",
  1441. parents: ["dragon", "kitsune"]
  1442. },
  1443. "ghost": {
  1444. name: "Ghost",
  1445. parents: ["monster"]
  1446. },
  1447. "false-vampire-bat": {
  1448. name: "False Vampire Bat",
  1449. parents: ["bat"]
  1450. },
  1451. "succubus": {
  1452. name: "Succubus",
  1453. parents: ["demon"]
  1454. },
  1455. "mia": {
  1456. name: "Mia",
  1457. parents: ["canine"]
  1458. },
  1459. "rainbow": {
  1460. name: "Rainbow",
  1461. parents: ["monster"]
  1462. },
  1463. "solgaleo": {
  1464. name: "Solgaleo",
  1465. parents: ["pokemon"]
  1466. },
  1467. "lucent-nargacuga": {
  1468. name: "Lucent Nargacuga",
  1469. parents: ["monster-hunter"]
  1470. },
  1471. "monster-hunter": {
  1472. name: "Monster Hunter",
  1473. parents: ["monster"]
  1474. },
  1475. "leviathan": {
  1476. "name": "Leviathan",
  1477. "url": "sea-monster"
  1478. },
  1479. "bull": {
  1480. name: "Bull",
  1481. parents: ["mammal"]
  1482. },
  1483. "tanuki": {
  1484. name: "Tanuki",
  1485. parents: ["monster"]
  1486. },
  1487. "chakat": {
  1488. name: "Chakat",
  1489. parents: ["cat"]
  1490. },
  1491. }
  1492. //species
  1493. function getSpeciesInfo(speciesList) {
  1494. let result = new Set();
  1495. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1496. result.add(entry)
  1497. });
  1498. return Array.from(result);
  1499. };
  1500. function getSpeciesInfoHelper(species) {
  1501. if (!speciesData[species]) {
  1502. console.warn(species + " doesn't exist");
  1503. return [];
  1504. }
  1505. if (speciesData[species].parents) {
  1506. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1507. } else {
  1508. return [species];
  1509. }
  1510. }
  1511. characterMakers.push(() => makeCharacter(
  1512. {
  1513. name: "Fen",
  1514. species: ["crux"],
  1515. description: {
  1516. title: "Bio",
  1517. text: "Very furry. Sheds on everything."
  1518. },
  1519. tags: [
  1520. "anthro",
  1521. "goo"
  1522. ]
  1523. },
  1524. {
  1525. back: {
  1526. height: math.unit(2.2428, "meter"),
  1527. weight: math.unit(124.738, "kg"),
  1528. name: "Back",
  1529. image: {
  1530. source: "./media/characters/fen/back.svg",
  1531. extra: 2024 / 1867,
  1532. bottom: 13 / 2037
  1533. },
  1534. info: {
  1535. description: {
  1536. mode: "append",
  1537. text: "\n\nHe is not currently looking at you."
  1538. }
  1539. }
  1540. },
  1541. full: {
  1542. height: math.unit(1.34, "meter"),
  1543. weight: math.unit(225, "kg"),
  1544. name: "Full",
  1545. image: {
  1546. source: "./media/characters/fen/full.svg"
  1547. },
  1548. info: {
  1549. description: {
  1550. mode: "append",
  1551. text: "\n\nMunch."
  1552. }
  1553. }
  1554. },
  1555. kneeling: {
  1556. height: math.unit(5.4, "feet"),
  1557. weight: math.unit(124.738, "kg"),
  1558. name: "Kneeling",
  1559. image: {
  1560. source: "./media/characters/fen/kneeling.svg",
  1561. extra: 563 / 507
  1562. }
  1563. },
  1564. goo: {
  1565. height: math.unit(2.8, "feet"),
  1566. weight: math.unit(125, "kg"),
  1567. capacity: math.unit(1, "people"),
  1568. name: "Goo",
  1569. image: {
  1570. source: "./media/characters/fen/goo.svg",
  1571. bottom: 116 / 613
  1572. }
  1573. },
  1574. lounging: {
  1575. height: math.unit(6.5, "feet"),
  1576. weight: math.unit(125, "kg"),
  1577. name: "Lounging",
  1578. image: {
  1579. source: "./media/characters/fen/lounging.svg"
  1580. }
  1581. },
  1582. },
  1583. [
  1584. {
  1585. name: "Normal",
  1586. height: math.unit(2.2428, "meter")
  1587. },
  1588. {
  1589. name: "Big",
  1590. height: math.unit(12, "feet")
  1591. },
  1592. {
  1593. name: "Minimacro",
  1594. height: math.unit(40, "feet"),
  1595. default: true,
  1596. info: {
  1597. description: {
  1598. mode: "append",
  1599. text: "\n\nTOO DAMN BIG"
  1600. }
  1601. }
  1602. },
  1603. {
  1604. name: "Macro",
  1605. height: math.unit(100, "feet"),
  1606. info: {
  1607. description: {
  1608. mode: "append",
  1609. text: "\n\nTOO DAMN BIG"
  1610. }
  1611. }
  1612. },
  1613. {
  1614. name: "Macro+",
  1615. height: math.unit(300, "feet")
  1616. },
  1617. {
  1618. name: "Megamacro",
  1619. height: math.unit(2, "miles")
  1620. }
  1621. ]
  1622. ))
  1623. characterMakers.push(() => makeCharacter(
  1624. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1625. {
  1626. front: {
  1627. height: math.unit(183, "cm"),
  1628. weight: math.unit(80, "kg"),
  1629. name: "Front",
  1630. image: {
  1631. source: "./media/characters/sofia-fluttertail/front.svg",
  1632. bottom: 0.01,
  1633. extra: 2154 / 2081
  1634. }
  1635. },
  1636. frontAlt: {
  1637. height: math.unit(183, "cm"),
  1638. weight: math.unit(80, "kg"),
  1639. name: "Front (alt)",
  1640. image: {
  1641. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1642. }
  1643. },
  1644. back: {
  1645. height: math.unit(183, "cm"),
  1646. weight: math.unit(80, "kg"),
  1647. name: "Back",
  1648. image: {
  1649. source: "./media/characters/sofia-fluttertail/back.svg"
  1650. }
  1651. },
  1652. kneeling: {
  1653. height: math.unit(125, "cm"),
  1654. weight: math.unit(80, "kg"),
  1655. name: "Kneeling",
  1656. image: {
  1657. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1658. extra: 1033 / 977,
  1659. bottom: 23.7 / 1057
  1660. }
  1661. },
  1662. maw: {
  1663. height: math.unit(183 / 5, "cm"),
  1664. name: "Maw",
  1665. image: {
  1666. source: "./media/characters/sofia-fluttertail/maw.svg"
  1667. }
  1668. },
  1669. mawcloseup: {
  1670. height: math.unit(183 / 5 * 0.41, "cm"),
  1671. name: "Maw (Closeup)",
  1672. image: {
  1673. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1674. }
  1675. },
  1676. paws: {
  1677. height: math.unit(1.17, "feet"),
  1678. name: "Paws",
  1679. image: {
  1680. source: "./media/characters/sofia-fluttertail/paws.svg",
  1681. extra: 851 / 851,
  1682. bottom: 17 / 868
  1683. }
  1684. },
  1685. },
  1686. [
  1687. {
  1688. name: "Normal",
  1689. height: math.unit(1.83, "meter")
  1690. },
  1691. {
  1692. name: "Size Thief",
  1693. height: math.unit(18, "feet")
  1694. },
  1695. {
  1696. name: "50 Foot Collie",
  1697. height: math.unit(50, "feet")
  1698. },
  1699. {
  1700. name: "Macro",
  1701. height: math.unit(96, "feet"),
  1702. default: true
  1703. },
  1704. {
  1705. name: "Megamerger",
  1706. height: math.unit(650, "feet")
  1707. },
  1708. ]
  1709. ))
  1710. characterMakers.push(() => makeCharacter(
  1711. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1712. {
  1713. front: {
  1714. height: math.unit(7, "feet"),
  1715. weight: math.unit(100, "kg"),
  1716. name: "Front",
  1717. image: {
  1718. source: "./media/characters/march/front.svg",
  1719. extra: 1,
  1720. bottom: 0.015
  1721. }
  1722. },
  1723. foot: {
  1724. height: math.unit(0.9, "feet"),
  1725. name: "Foot",
  1726. image: {
  1727. source: "./media/characters/march/foot.svg"
  1728. }
  1729. },
  1730. },
  1731. [
  1732. {
  1733. name: "Normal",
  1734. height: math.unit(7.9, "feet")
  1735. },
  1736. {
  1737. name: "Macro",
  1738. height: math.unit(220, "meters")
  1739. },
  1740. {
  1741. name: "Megamacro",
  1742. height: math.unit(2.98, "km"),
  1743. default: true
  1744. },
  1745. {
  1746. name: "Gigamacro",
  1747. height: math.unit(15963, "km")
  1748. },
  1749. {
  1750. name: "Teramacro",
  1751. height: math.unit(2980000000, "km")
  1752. },
  1753. {
  1754. name: "Examacro",
  1755. height: math.unit(250, "parsecs")
  1756. },
  1757. ]
  1758. ))
  1759. characterMakers.push(() => makeCharacter(
  1760. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1761. {
  1762. front: {
  1763. height: math.unit(6, "feet"),
  1764. weight: math.unit(60, "kg"),
  1765. name: "Front",
  1766. image: {
  1767. source: "./media/characters/noir/front.svg",
  1768. extra: 1,
  1769. bottom: 0.032
  1770. }
  1771. },
  1772. },
  1773. [
  1774. {
  1775. name: "Normal",
  1776. height: math.unit(6.6, "feet")
  1777. },
  1778. {
  1779. name: "Macro",
  1780. height: math.unit(500, "feet")
  1781. },
  1782. {
  1783. name: "Megamacro",
  1784. height: math.unit(2.5, "km"),
  1785. default: true
  1786. },
  1787. {
  1788. name: "Gigamacro",
  1789. height: math.unit(22500, "km")
  1790. },
  1791. {
  1792. name: "Teramacro",
  1793. height: math.unit(2500000000, "km")
  1794. },
  1795. {
  1796. name: "Examacro",
  1797. height: math.unit(200, "parsecs")
  1798. },
  1799. ]
  1800. ))
  1801. characterMakers.push(() => makeCharacter(
  1802. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1803. {
  1804. front: {
  1805. height: math.unit(7, "feet"),
  1806. weight: math.unit(100, "kg"),
  1807. name: "Front",
  1808. image: {
  1809. source: "./media/characters/okuri/front.svg",
  1810. extra: 1,
  1811. bottom: 0.037
  1812. }
  1813. },
  1814. back: {
  1815. height: math.unit(7, "feet"),
  1816. weight: math.unit(100, "kg"),
  1817. name: "Back",
  1818. image: {
  1819. source: "./media/characters/okuri/back.svg",
  1820. extra: 1,
  1821. bottom: 0.007
  1822. }
  1823. },
  1824. },
  1825. [
  1826. {
  1827. name: "Megamacro",
  1828. height: math.unit(100, "miles"),
  1829. default: true
  1830. },
  1831. ]
  1832. ))
  1833. characterMakers.push(() => makeCharacter(
  1834. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1835. {
  1836. front: {
  1837. height: math.unit(7, "feet"),
  1838. weight: math.unit(100, "kg"),
  1839. name: "Front",
  1840. image: {
  1841. source: "./media/characters/manny/front.svg",
  1842. extra: 1,
  1843. bottom: 0.06
  1844. }
  1845. },
  1846. back: {
  1847. height: math.unit(7, "feet"),
  1848. weight: math.unit(100, "kg"),
  1849. name: "Back",
  1850. image: {
  1851. source: "./media/characters/manny/back.svg",
  1852. extra: 1,
  1853. bottom: 0.014
  1854. }
  1855. },
  1856. },
  1857. [
  1858. {
  1859. name: "Normal",
  1860. height: math.unit(7, "feet"),
  1861. },
  1862. {
  1863. name: "Macro",
  1864. height: math.unit(78, "feet"),
  1865. default: true
  1866. },
  1867. {
  1868. name: "Macro+",
  1869. height: math.unit(300, "meters")
  1870. },
  1871. {
  1872. name: "Macro++",
  1873. height: math.unit(2400, "meters")
  1874. },
  1875. {
  1876. name: "Megamacro",
  1877. height: math.unit(5167, "meters")
  1878. },
  1879. {
  1880. name: "Gigamacro",
  1881. height: math.unit(41769, "miles")
  1882. },
  1883. ]
  1884. ))
  1885. characterMakers.push(() => makeCharacter(
  1886. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1887. {
  1888. front: {
  1889. height: math.unit(7, "feet"),
  1890. weight: math.unit(100, "kg"),
  1891. name: "Front",
  1892. image: {
  1893. source: "./media/characters/adake/front-1.svg"
  1894. }
  1895. },
  1896. frontAlt: {
  1897. height: math.unit(7, "feet"),
  1898. weight: math.unit(100, "kg"),
  1899. name: "Front (Alt)",
  1900. image: {
  1901. source: "./media/characters/adake/front-2.svg",
  1902. extra: 1,
  1903. bottom: 0.01
  1904. }
  1905. },
  1906. back: {
  1907. height: math.unit(7, "feet"),
  1908. weight: math.unit(100, "kg"),
  1909. name: "Back",
  1910. image: {
  1911. source: "./media/characters/adake/back.svg",
  1912. }
  1913. },
  1914. kneel: {
  1915. height: math.unit(5.385, "feet"),
  1916. weight: math.unit(100, "kg"),
  1917. name: "Kneeling",
  1918. image: {
  1919. source: "./media/characters/adake/kneel.svg",
  1920. bottom: 0.052
  1921. }
  1922. },
  1923. },
  1924. [
  1925. {
  1926. name: "Normal",
  1927. height: math.unit(7, "feet"),
  1928. },
  1929. {
  1930. name: "Macro",
  1931. height: math.unit(78, "feet"),
  1932. default: true
  1933. },
  1934. {
  1935. name: "Macro+",
  1936. height: math.unit(300, "meters")
  1937. },
  1938. {
  1939. name: "Macro++",
  1940. height: math.unit(2400, "meters")
  1941. },
  1942. {
  1943. name: "Megamacro",
  1944. height: math.unit(5167, "meters")
  1945. },
  1946. {
  1947. name: "Gigamacro",
  1948. height: math.unit(41769, "miles")
  1949. },
  1950. ]
  1951. ))
  1952. characterMakers.push(() => makeCharacter(
  1953. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1954. {
  1955. front: {
  1956. height: math.unit(1.65, "meters"),
  1957. weight: math.unit(50, "kg"),
  1958. name: "Front",
  1959. image: {
  1960. source: "./media/characters/elijah/front.svg",
  1961. extra: 858 / 830,
  1962. bottom: 95.5 / 953.8559
  1963. }
  1964. },
  1965. back: {
  1966. height: math.unit(1.65, "meters"),
  1967. weight: math.unit(50, "kg"),
  1968. name: "Back",
  1969. image: {
  1970. source: "./media/characters/elijah/back.svg",
  1971. extra: 895 / 850,
  1972. bottom: 5.3 / 897.956
  1973. }
  1974. },
  1975. frontNsfw: {
  1976. height: math.unit(1.65, "meters"),
  1977. weight: math.unit(50, "kg"),
  1978. name: "Front (NSFW)",
  1979. image: {
  1980. source: "./media/characters/elijah/front-nsfw.svg",
  1981. extra: 858 / 830,
  1982. bottom: 95.5 / 953.8559
  1983. }
  1984. },
  1985. backNsfw: {
  1986. height: math.unit(1.65, "meters"),
  1987. weight: math.unit(50, "kg"),
  1988. name: "Back (NSFW)",
  1989. image: {
  1990. source: "./media/characters/elijah/back-nsfw.svg",
  1991. extra: 895 / 850,
  1992. bottom: 5.3 / 897.956
  1993. }
  1994. },
  1995. dick: {
  1996. height: math.unit(1, "feet"),
  1997. name: "Dick",
  1998. image: {
  1999. source: "./media/characters/elijah/dick.svg"
  2000. }
  2001. },
  2002. beakOpen: {
  2003. height: math.unit(1.25, "feet"),
  2004. name: "Beak (Open)",
  2005. image: {
  2006. source: "./media/characters/elijah/beak-open.svg"
  2007. }
  2008. },
  2009. beakShut: {
  2010. height: math.unit(1.25, "feet"),
  2011. name: "Beak (Shut)",
  2012. image: {
  2013. source: "./media/characters/elijah/beak-shut.svg"
  2014. }
  2015. },
  2016. footFlexing: {
  2017. height: math.unit(1.61, "feet"),
  2018. name: "Foot (Flexing)",
  2019. image: {
  2020. source: "./media/characters/elijah/foot-flexing.svg"
  2021. }
  2022. },
  2023. footStepping: {
  2024. height: math.unit(1.44, "feet"),
  2025. name: "Foot (Stepping)",
  2026. image: {
  2027. source: "./media/characters/elijah/foot-stepping.svg"
  2028. }
  2029. },
  2030. plantigradeLeg: {
  2031. height: math.unit(2.34, "feet"),
  2032. name: "Plantigrade Leg",
  2033. image: {
  2034. source: "./media/characters/elijah/plantigrade-leg.svg"
  2035. }
  2036. },
  2037. plantigradeFootLeft: {
  2038. height: math.unit(0.9, "feet"),
  2039. name: "Plantigrade Foot (Left)",
  2040. image: {
  2041. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2042. }
  2043. },
  2044. plantigradeFootRight: {
  2045. height: math.unit(0.9, "feet"),
  2046. name: "Plantigrade Foot (Right)",
  2047. image: {
  2048. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2049. }
  2050. },
  2051. },
  2052. [
  2053. {
  2054. name: "Normal",
  2055. height: math.unit(1.65, "meters")
  2056. },
  2057. {
  2058. name: "Macro",
  2059. height: math.unit(55, "meters"),
  2060. default: true
  2061. },
  2062. {
  2063. name: "Macro+",
  2064. height: math.unit(105, "meters")
  2065. },
  2066. ]
  2067. ))
  2068. characterMakers.push(() => makeCharacter(
  2069. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2070. {
  2071. front: {
  2072. height: math.unit(11, "feet"),
  2073. weight: math.unit(80, "kg"),
  2074. name: "Front",
  2075. image: {
  2076. source: "./media/characters/rai/front.svg",
  2077. extra: 1,
  2078. bottom: 0.03
  2079. }
  2080. },
  2081. side: {
  2082. height: math.unit(11, "feet"),
  2083. weight: math.unit(80, "kg"),
  2084. name: "Side",
  2085. image: {
  2086. source: "./media/characters/rai/side.svg"
  2087. }
  2088. },
  2089. back: {
  2090. height: math.unit(11, "feet"),
  2091. weight: math.unit(80, "lb"),
  2092. name: "Back",
  2093. image: {
  2094. source: "./media/characters/rai/back.svg",
  2095. extra: 1,
  2096. bottom: 0.01
  2097. }
  2098. },
  2099. feral: {
  2100. height: math.unit(11, "feet"),
  2101. weight: math.unit(800, "lb"),
  2102. name: "Feral",
  2103. image: {
  2104. source: "./media/characters/rai/feral.svg",
  2105. extra: 1050 / 659,
  2106. bottom: 0.07
  2107. }
  2108. },
  2109. dragon: {
  2110. height: math.unit(23, "feet"),
  2111. weight: math.unit(50000, "lb"),
  2112. name: "Dragon",
  2113. image: {
  2114. source: "./media/characters/rai/dragon.svg",
  2115. extra: 2498 / 2030,
  2116. bottom: 85.2 / 2584
  2117. }
  2118. },
  2119. maw: {
  2120. height: math.unit(6 / 3.81416, "feet"),
  2121. name: "Maw",
  2122. image: {
  2123. source: "./media/characters/rai/maw.svg"
  2124. }
  2125. },
  2126. },
  2127. [
  2128. {
  2129. name: "Normal",
  2130. height: math.unit(11, "feet")
  2131. },
  2132. {
  2133. name: "Macro",
  2134. height: math.unit(302, "feet"),
  2135. default: true
  2136. },
  2137. ]
  2138. ))
  2139. characterMakers.push(() => makeCharacter(
  2140. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2141. {
  2142. frontDressed: {
  2143. height: math.unit(216, "feet"),
  2144. weight: math.unit(7000000, "lb"),
  2145. name: "Front (Dressed)",
  2146. image: {
  2147. source: "./media/characters/jazzy/front-dressed.svg",
  2148. extra: 2738 / 2651,
  2149. bottom: 41.8 / 2786
  2150. }
  2151. },
  2152. backDressed: {
  2153. height: math.unit(216, "feet"),
  2154. weight: math.unit(7000000, "lb"),
  2155. name: "Back (Dressed)",
  2156. image: {
  2157. source: "./media/characters/jazzy/back-dressed.svg",
  2158. extra: 2775 / 2673,
  2159. bottom: 36.8 / 2817
  2160. }
  2161. },
  2162. front: {
  2163. height: math.unit(216, "feet"),
  2164. weight: math.unit(7000000, "lb"),
  2165. name: "Front",
  2166. image: {
  2167. source: "./media/characters/jazzy/front.svg",
  2168. extra: 2738 / 2651,
  2169. bottom: 41.8 / 2786
  2170. }
  2171. },
  2172. back: {
  2173. height: math.unit(216, "feet"),
  2174. weight: math.unit(7000000, "lb"),
  2175. name: "Back",
  2176. image: {
  2177. source: "./media/characters/jazzy/back.svg",
  2178. extra: 2775 / 2673,
  2179. bottom: 36.8 / 2817
  2180. }
  2181. },
  2182. maw: {
  2183. height: math.unit(20, "feet"),
  2184. name: "Maw",
  2185. image: {
  2186. source: "./media/characters/jazzy/maw.svg"
  2187. }
  2188. },
  2189. paws: {
  2190. height: math.unit(27.5, "feet"),
  2191. name: "Paws",
  2192. image: {
  2193. source: "./media/characters/jazzy/paws.svg"
  2194. }
  2195. },
  2196. eye: {
  2197. height: math.unit(4.4, "feet"),
  2198. name: "Eye",
  2199. image: {
  2200. source: "./media/characters/jazzy/eye.svg"
  2201. }
  2202. },
  2203. droneOffense: {
  2204. height: math.unit(9.5, "inches"),
  2205. name: "Drone (Offense)",
  2206. image: {
  2207. source: "./media/characters/jazzy/drone-offense.svg"
  2208. }
  2209. },
  2210. droneRecon: {
  2211. height: math.unit(9.5, "inches"),
  2212. name: "Drone (Recon)",
  2213. image: {
  2214. source: "./media/characters/jazzy/drone-recon.svg"
  2215. }
  2216. },
  2217. droneDefense: {
  2218. height: math.unit(9.5, "inches"),
  2219. name: "Drone (Defense)",
  2220. image: {
  2221. source: "./media/characters/jazzy/drone-defense.svg"
  2222. }
  2223. },
  2224. },
  2225. [
  2226. {
  2227. name: "Macro",
  2228. height: math.unit(216, "feet"),
  2229. default: true
  2230. },
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2235. {
  2236. front: {
  2237. height: math.unit(7, "feet"),
  2238. weight: math.unit(80, "kg"),
  2239. name: "Front",
  2240. image: {
  2241. source: "./media/characters/flamm/front.svg",
  2242. extra: 1794 / 1677,
  2243. bottom: 31.7 / 1828.5
  2244. }
  2245. },
  2246. },
  2247. [
  2248. {
  2249. name: "Normal",
  2250. height: math.unit(9.5, "feet")
  2251. },
  2252. {
  2253. name: "Macro",
  2254. height: math.unit(200, "feet"),
  2255. default: true
  2256. },
  2257. ]
  2258. ))
  2259. characterMakers.push(() => makeCharacter(
  2260. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2261. {
  2262. front: {
  2263. height: math.unit(5 + 3/12, "feet"),
  2264. weight: math.unit(60, "kg"),
  2265. name: "Front",
  2266. image: {
  2267. source: "./media/characters/zephiro/front.svg",
  2268. extra: 2309 / 2162,
  2269. bottom: 0.069
  2270. }
  2271. },
  2272. side: {
  2273. height: math.unit(5 + 3/12, "feet"),
  2274. weight: math.unit(60, "kg"),
  2275. name: "Side",
  2276. image: {
  2277. source: "./media/characters/zephiro/side.svg",
  2278. extra: 2403 / 2279,
  2279. bottom: 0.015
  2280. }
  2281. },
  2282. back: {
  2283. height: math.unit(5 + 3/12, "feet"),
  2284. weight: math.unit(60, "kg"),
  2285. name: "Back",
  2286. image: {
  2287. source: "./media/characters/zephiro/back.svg",
  2288. extra: 2373 / 2244,
  2289. bottom: 0.013
  2290. }
  2291. },
  2292. hand: {
  2293. height: math.unit(0.68, "feet"),
  2294. name: "Hand",
  2295. image: {
  2296. source: "./media/characters/zephiro/hand.svg"
  2297. }
  2298. },
  2299. paw: {
  2300. height: math.unit(1, "feet"),
  2301. name: "Paw",
  2302. image: {
  2303. source: "./media/characters/zephiro/paw.svg"
  2304. }
  2305. },
  2306. beans: {
  2307. height: math.unit(0.93, "feet"),
  2308. name: "Beans",
  2309. image: {
  2310. source: "./media/characters/zephiro/beans.svg"
  2311. }
  2312. },
  2313. },
  2314. [
  2315. {
  2316. name: "Micro",
  2317. height: math.unit(3, "inches")
  2318. },
  2319. {
  2320. name: "Normal",
  2321. height: math.unit(5 + 3 / 12, "feet"),
  2322. default: true
  2323. },
  2324. {
  2325. name: "Macro",
  2326. height: math.unit(118, "feet")
  2327. },
  2328. ]
  2329. ))
  2330. characterMakers.push(() => makeCharacter(
  2331. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2332. {
  2333. front: {
  2334. height: math.unit(5, "feet"),
  2335. weight: math.unit(90, "kg"),
  2336. name: "Front",
  2337. image: {
  2338. source: "./media/characters/fory/front.svg",
  2339. extra: 2862 / 2674,
  2340. bottom: 180 / 3043.8
  2341. }
  2342. },
  2343. back: {
  2344. height: math.unit(5, "feet"),
  2345. weight: math.unit(90, "kg"),
  2346. name: "Back",
  2347. image: {
  2348. source: "./media/characters/fory/back.svg",
  2349. extra: 2962 / 2791,
  2350. bottom: 106 / 3071.8
  2351. }
  2352. },
  2353. foot: {
  2354. height: math.unit(2.14, "feet"),
  2355. name: "Foot",
  2356. image: {
  2357. source: "./media/characters/fory/foot.svg"
  2358. }
  2359. },
  2360. },
  2361. [
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(5, "feet")
  2365. },
  2366. {
  2367. name: "Macro",
  2368. height: math.unit(50, "feet"),
  2369. default: true
  2370. },
  2371. {
  2372. name: "Megamacro",
  2373. height: math.unit(10, "miles")
  2374. },
  2375. {
  2376. name: "Gigamacro",
  2377. height: math.unit(5, "earths")
  2378. },
  2379. ]
  2380. ))
  2381. characterMakers.push(() => makeCharacter(
  2382. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2383. {
  2384. front: {
  2385. height: math.unit(7, "feet"),
  2386. weight: math.unit(90, "kg"),
  2387. name: "Front",
  2388. image: {
  2389. source: "./media/characters/kurrikage/front.svg",
  2390. extra: 1,
  2391. bottom: 0.035
  2392. }
  2393. },
  2394. back: {
  2395. height: math.unit(7, "feet"),
  2396. weight: math.unit(90, "lb"),
  2397. name: "Back",
  2398. image: {
  2399. source: "./media/characters/kurrikage/back.svg"
  2400. }
  2401. },
  2402. paw: {
  2403. height: math.unit(1.5, "feet"),
  2404. name: "Paw",
  2405. image: {
  2406. source: "./media/characters/kurrikage/paw.svg"
  2407. }
  2408. },
  2409. staff: {
  2410. height: math.unit(6.7, "feet"),
  2411. name: "Staff",
  2412. image: {
  2413. source: "./media/characters/kurrikage/staff.svg"
  2414. }
  2415. },
  2416. peek: {
  2417. height: math.unit(1.05, "feet"),
  2418. name: "Peeking",
  2419. image: {
  2420. source: "./media/characters/kurrikage/peek.svg",
  2421. bottom: 0.08
  2422. }
  2423. },
  2424. },
  2425. [
  2426. {
  2427. name: "Normal",
  2428. height: math.unit(12, "feet"),
  2429. default: true
  2430. },
  2431. {
  2432. name: "Big",
  2433. height: math.unit(20, "feet")
  2434. },
  2435. {
  2436. name: "Macro",
  2437. height: math.unit(500, "feet")
  2438. },
  2439. {
  2440. name: "Megamacro",
  2441. height: math.unit(20, "miles")
  2442. },
  2443. ]
  2444. ))
  2445. characterMakers.push(() => makeCharacter(
  2446. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2447. {
  2448. front: {
  2449. height: math.unit(6, "feet"),
  2450. weight: math.unit(75, "kg"),
  2451. name: "Front",
  2452. image: {
  2453. source: "./media/characters/shingo/front.svg",
  2454. extra: 706/681,
  2455. bottom: 11/717
  2456. }
  2457. },
  2458. frontAlt: {
  2459. height: math.unit(6, "feet"),
  2460. weight: math.unit(75, "kg"),
  2461. name: "Front (Alt)",
  2462. image: {
  2463. source: "./media/characters/shingo/front-alt.svg",
  2464. extra: 3511 / 3338,
  2465. bottom: 0.005
  2466. }
  2467. },
  2468. paw: {
  2469. height: math.unit(1, "feet"),
  2470. name: "Paw",
  2471. image: {
  2472. source: "./media/characters/shingo/paw.svg"
  2473. }
  2474. },
  2475. },
  2476. [
  2477. {
  2478. name: "Micro",
  2479. height: math.unit(4, "inches")
  2480. },
  2481. {
  2482. name: "Normal",
  2483. height: math.unit(6, "feet"),
  2484. default: true
  2485. },
  2486. {
  2487. name: "Macro",
  2488. height: math.unit(108, "feet")
  2489. },
  2490. {
  2491. name: "Macro+",
  2492. height: math.unit(1500, "feet")
  2493. },
  2494. ]
  2495. ))
  2496. characterMakers.push(() => makeCharacter(
  2497. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2498. {
  2499. side: {
  2500. height: math.unit(6, "feet"),
  2501. weight: math.unit(75, "kg"),
  2502. name: "Side",
  2503. image: {
  2504. source: "./media/characters/aigey/side.svg"
  2505. }
  2506. },
  2507. },
  2508. [
  2509. {
  2510. name: "Macro",
  2511. height: math.unit(200, "feet"),
  2512. default: true
  2513. },
  2514. {
  2515. name: "Megamacro",
  2516. height: math.unit(100, "miles")
  2517. },
  2518. ]
  2519. )
  2520. )
  2521. characterMakers.push(() => makeCharacter(
  2522. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2523. {
  2524. front: {
  2525. height: math.unit(5 + 5 / 12, "feet"),
  2526. weight: math.unit(75, "kg"),
  2527. name: "Front",
  2528. image: {
  2529. source: "./media/characters/natasha/front.svg",
  2530. extra: 859 / 824,
  2531. bottom: 23 / 879.6
  2532. }
  2533. },
  2534. frontNsfw: {
  2535. height: math.unit(5 + 5 / 12, "feet"),
  2536. weight: math.unit(75, "kg"),
  2537. name: "Front (NSFW)",
  2538. image: {
  2539. source: "./media/characters/natasha/front-nsfw.svg",
  2540. extra: 859 / 824,
  2541. bottom: 23 / 879.6
  2542. }
  2543. },
  2544. frontErect: {
  2545. height: math.unit(5 + 5 / 12, "feet"),
  2546. weight: math.unit(75, "kg"),
  2547. name: "Front (Erect)",
  2548. image: {
  2549. source: "./media/characters/natasha/front-erect.svg",
  2550. extra: 859 / 824,
  2551. bottom: 23 / 879.6
  2552. }
  2553. },
  2554. back: {
  2555. height: math.unit(5 + 5 / 12, "feet"),
  2556. weight: math.unit(75, "kg"),
  2557. name: "Back",
  2558. image: {
  2559. source: "./media/characters/natasha/back.svg",
  2560. extra: 887.9 / 852.6,
  2561. bottom: 9.7 / 896.4
  2562. }
  2563. },
  2564. backAlt: {
  2565. height: math.unit(5 + 5 / 12, "feet"),
  2566. weight: math.unit(75, "kg"),
  2567. name: "Back (Alt)",
  2568. image: {
  2569. source: "./media/characters/natasha/back-alt.svg",
  2570. extra: 1236.7 / 1192,
  2571. bottom: 22.3 / 1258.2
  2572. }
  2573. },
  2574. dick: {
  2575. height: math.unit(1.772, "feet"),
  2576. name: "Dick",
  2577. image: {
  2578. source: "./media/characters/natasha/dick.svg"
  2579. }
  2580. },
  2581. paw: {
  2582. height: math.unit(0.250, "meters"),
  2583. name: "Paw",
  2584. image: {
  2585. source: "./media/characters/natasha/paw.svg"
  2586. }
  2587. },
  2588. },
  2589. [
  2590. {
  2591. name: "Normal",
  2592. height: math.unit(5 + 5 / 12, "feet")
  2593. },
  2594. {
  2595. name: "Large",
  2596. height: math.unit(12, "feet")
  2597. },
  2598. {
  2599. name: "Macro",
  2600. height: math.unit(100, "feet"),
  2601. default: true
  2602. },
  2603. {
  2604. name: "Macro+",
  2605. height: math.unit(260, "feet")
  2606. },
  2607. {
  2608. name: "Macro++",
  2609. height: math.unit(1, "mile")
  2610. },
  2611. ]
  2612. ))
  2613. characterMakers.push(() => makeCharacter(
  2614. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2615. {
  2616. front: {
  2617. height: math.unit(6, "feet"),
  2618. weight: math.unit(75, "kg"),
  2619. name: "Front",
  2620. image: {
  2621. source: "./media/characters/malik/front.svg"
  2622. }
  2623. },
  2624. side: {
  2625. height: math.unit(6, "feet"),
  2626. weight: math.unit(75, "kg"),
  2627. name: "Side",
  2628. image: {
  2629. source: "./media/characters/malik/side.svg",
  2630. extra: 1.1539
  2631. }
  2632. },
  2633. back: {
  2634. height: math.unit(6, "feet"),
  2635. weight: math.unit(75, "kg"),
  2636. name: "Back",
  2637. image: {
  2638. source: "./media/characters/malik/back.svg"
  2639. }
  2640. },
  2641. },
  2642. [
  2643. {
  2644. name: "Macro",
  2645. height: math.unit(156, "feet"),
  2646. default: true
  2647. },
  2648. {
  2649. name: "Macro+",
  2650. height: math.unit(1188, "feet")
  2651. },
  2652. ]
  2653. ))
  2654. characterMakers.push(() => makeCharacter(
  2655. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2656. {
  2657. front: {
  2658. height: math.unit(6, "feet"),
  2659. weight: math.unit(75, "kg"),
  2660. name: "Front",
  2661. image: {
  2662. source: "./media/characters/sefer/front.svg",
  2663. extra: 848 / 659,
  2664. bottom: 28.3 / 876.442
  2665. }
  2666. },
  2667. back: {
  2668. height: math.unit(6, "feet"),
  2669. weight: math.unit(75, "kg"),
  2670. name: "Back",
  2671. image: {
  2672. source: "./media/characters/sefer/back.svg",
  2673. extra: 864 / 695,
  2674. bottom: 10 / 871
  2675. }
  2676. },
  2677. frontDressed: {
  2678. height: math.unit(6, "feet"),
  2679. weight: math.unit(75, "kg"),
  2680. name: "Front (Dressed)",
  2681. image: {
  2682. source: "./media/characters/sefer/front-dressed.svg",
  2683. extra: 839 / 653,
  2684. bottom: 37.6 / 878
  2685. }
  2686. },
  2687. },
  2688. [
  2689. {
  2690. name: "Normal",
  2691. height: math.unit(6, "feet"),
  2692. default: true
  2693. },
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2698. {
  2699. body: {
  2700. height: math.unit(2.2428, "meter"),
  2701. weight: math.unit(124.738, "kg"),
  2702. name: "Body",
  2703. image: {
  2704. extra: 1225 / 1050,
  2705. source: "./media/characters/north/front.svg"
  2706. }
  2707. }
  2708. },
  2709. [
  2710. {
  2711. name: "Micro",
  2712. height: math.unit(4, "inches")
  2713. },
  2714. {
  2715. name: "Macro",
  2716. height: math.unit(63, "meters")
  2717. },
  2718. {
  2719. name: "Megamacro",
  2720. height: math.unit(101, "miles"),
  2721. default: true
  2722. }
  2723. ]
  2724. ))
  2725. characterMakers.push(() => makeCharacter(
  2726. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2727. {
  2728. angled: {
  2729. height: math.unit(4, "meter"),
  2730. weight: math.unit(150, "kg"),
  2731. name: "Angled",
  2732. image: {
  2733. source: "./media/characters/talan/angled-sfw.svg",
  2734. bottom: 29 / 3734
  2735. }
  2736. },
  2737. angledNsfw: {
  2738. height: math.unit(4, "meter"),
  2739. weight: math.unit(150, "kg"),
  2740. name: "Angled (NSFW)",
  2741. image: {
  2742. source: "./media/characters/talan/angled-nsfw.svg",
  2743. bottom: 29 / 3734
  2744. }
  2745. },
  2746. frontNsfw: {
  2747. height: math.unit(4, "meter"),
  2748. weight: math.unit(150, "kg"),
  2749. name: "Front (NSFW)",
  2750. image: {
  2751. source: "./media/characters/talan/front-nsfw.svg",
  2752. bottom: 29 / 3734
  2753. }
  2754. },
  2755. sideNsfw: {
  2756. height: math.unit(4, "meter"),
  2757. weight: math.unit(150, "kg"),
  2758. name: "Side (NSFW)",
  2759. image: {
  2760. source: "./media/characters/talan/side-nsfw.svg",
  2761. bottom: 29 / 3734
  2762. }
  2763. },
  2764. back: {
  2765. height: math.unit(4, "meter"),
  2766. weight: math.unit(150, "kg"),
  2767. name: "Back",
  2768. image: {
  2769. source: "./media/characters/talan/back.svg"
  2770. }
  2771. },
  2772. dickBottom: {
  2773. height: math.unit(0.621, "meter"),
  2774. name: "Dick (Bottom)",
  2775. image: {
  2776. source: "./media/characters/talan/dick-bottom.svg"
  2777. }
  2778. },
  2779. dickTop: {
  2780. height: math.unit(0.621, "meter"),
  2781. name: "Dick (Top)",
  2782. image: {
  2783. source: "./media/characters/talan/dick-top.svg"
  2784. }
  2785. },
  2786. dickSide: {
  2787. height: math.unit(0.305, "meter"),
  2788. name: "Dick (Side)",
  2789. image: {
  2790. source: "./media/characters/talan/dick-side.svg"
  2791. }
  2792. },
  2793. dickFront: {
  2794. height: math.unit(0.305, "meter"),
  2795. name: "Dick (Front)",
  2796. image: {
  2797. source: "./media/characters/talan/dick-front.svg"
  2798. }
  2799. },
  2800. },
  2801. [
  2802. {
  2803. name: "Normal",
  2804. height: math.unit(4, "meters")
  2805. },
  2806. {
  2807. name: "Macro",
  2808. height: math.unit(100, "meters")
  2809. },
  2810. {
  2811. name: "Megamacro",
  2812. height: math.unit(2, "miles"),
  2813. default: true
  2814. },
  2815. {
  2816. name: "Gigamacro",
  2817. height: math.unit(5000, "miles")
  2818. },
  2819. {
  2820. name: "Teramacro",
  2821. height: math.unit(100, "parsecs")
  2822. }
  2823. ]
  2824. ))
  2825. characterMakers.push(() => makeCharacter(
  2826. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2827. {
  2828. front: {
  2829. height: math.unit(2, "meter"),
  2830. weight: math.unit(90, "kg"),
  2831. name: "Front",
  2832. image: {
  2833. source: "./media/characters/gael'rathus/front.svg"
  2834. }
  2835. },
  2836. frontAlt: {
  2837. height: math.unit(2, "meter"),
  2838. weight: math.unit(90, "kg"),
  2839. name: "Front (alt)",
  2840. image: {
  2841. source: "./media/characters/gael'rathus/front-alt.svg"
  2842. }
  2843. },
  2844. frontAlt2: {
  2845. height: math.unit(2, "meter"),
  2846. weight: math.unit(90, "kg"),
  2847. name: "Front (alt 2)",
  2848. image: {
  2849. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2850. }
  2851. }
  2852. },
  2853. [
  2854. {
  2855. name: "Normal",
  2856. height: math.unit(9, "feet"),
  2857. default: true
  2858. },
  2859. {
  2860. name: "Large",
  2861. height: math.unit(25, "feet")
  2862. },
  2863. {
  2864. name: "Macro",
  2865. height: math.unit(0.25, "miles")
  2866. },
  2867. {
  2868. name: "Megamacro",
  2869. height: math.unit(10, "miles")
  2870. }
  2871. ]
  2872. ))
  2873. characterMakers.push(() => makeCharacter(
  2874. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2875. {
  2876. side: {
  2877. height: math.unit(2, "meter"),
  2878. weight: math.unit(140, "kg"),
  2879. name: "Side",
  2880. image: {
  2881. source: "./media/characters/sosha/side.svg",
  2882. bottom: 0.042
  2883. }
  2884. },
  2885. },
  2886. [
  2887. {
  2888. name: "Normal",
  2889. height: math.unit(12, "feet"),
  2890. default: true
  2891. }
  2892. ]
  2893. ))
  2894. characterMakers.push(() => makeCharacter(
  2895. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2896. {
  2897. side: {
  2898. height: math.unit(5 + 5 / 12, "feet"),
  2899. weight: math.unit(170, "kg"),
  2900. name: "Side",
  2901. image: {
  2902. source: "./media/characters/runnola/side.svg",
  2903. extra: 741 / 448,
  2904. bottom: 0.05
  2905. }
  2906. },
  2907. },
  2908. [
  2909. {
  2910. name: "Small",
  2911. height: math.unit(3, "feet")
  2912. },
  2913. {
  2914. name: "Normal",
  2915. height: math.unit(5 + 5 / 12, "feet"),
  2916. default: true
  2917. },
  2918. {
  2919. name: "Big",
  2920. height: math.unit(10, "feet")
  2921. },
  2922. ]
  2923. ))
  2924. characterMakers.push(() => makeCharacter(
  2925. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2926. {
  2927. front: {
  2928. height: math.unit(2, "meter"),
  2929. weight: math.unit(50, "kg"),
  2930. name: "Front",
  2931. image: {
  2932. source: "./media/characters/kurribird/front.svg",
  2933. bottom: 0.015
  2934. }
  2935. },
  2936. frontAlt: {
  2937. height: math.unit(1.5, "meter"),
  2938. weight: math.unit(50, "kg"),
  2939. name: "Front (Alt)",
  2940. image: {
  2941. source: "./media/characters/kurribird/front-alt.svg",
  2942. extra: 1.45
  2943. }
  2944. },
  2945. },
  2946. [
  2947. {
  2948. name: "Normal",
  2949. height: math.unit(7, "feet")
  2950. },
  2951. {
  2952. name: "Big",
  2953. height: math.unit(12, "feet"),
  2954. default: true
  2955. },
  2956. {
  2957. name: "Macro",
  2958. height: math.unit(1500, "feet")
  2959. },
  2960. {
  2961. name: "Megamacro",
  2962. height: math.unit(2, "miles")
  2963. }
  2964. ]
  2965. ))
  2966. characterMakers.push(() => makeCharacter(
  2967. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2968. {
  2969. front: {
  2970. height: math.unit(2, "meter"),
  2971. weight: math.unit(80, "kg"),
  2972. name: "Front",
  2973. image: {
  2974. source: "./media/characters/elbial/front.svg",
  2975. extra: 1643 / 1556,
  2976. bottom: 60.2 / 1696
  2977. }
  2978. },
  2979. side: {
  2980. height: math.unit(2, "meter"),
  2981. weight: math.unit(80, "kg"),
  2982. name: "Side",
  2983. image: {
  2984. source: "./media/characters/elbial/side.svg",
  2985. extra: 1630 / 1565,
  2986. bottom: 71.5 / 1697
  2987. }
  2988. },
  2989. back: {
  2990. height: math.unit(2, "meter"),
  2991. weight: math.unit(80, "kg"),
  2992. name: "Back",
  2993. image: {
  2994. source: "./media/characters/elbial/back.svg",
  2995. extra: 1668 / 1595,
  2996. bottom: 5.6 / 1672
  2997. }
  2998. },
  2999. frontDressed: {
  3000. height: math.unit(2, "meter"),
  3001. weight: math.unit(80, "kg"),
  3002. name: "Front (Dressed)",
  3003. image: {
  3004. source: "./media/characters/elbial/front-dressed.svg",
  3005. extra: 1653 / 1584,
  3006. bottom: 57 / 1708
  3007. }
  3008. },
  3009. genitals: {
  3010. height: math.unit(2 / 3.367, "meter"),
  3011. name: "Genitals",
  3012. image: {
  3013. source: "./media/characters/elbial/genitals.svg"
  3014. }
  3015. },
  3016. },
  3017. [
  3018. {
  3019. name: "Large",
  3020. height: math.unit(100, "feet")
  3021. },
  3022. {
  3023. name: "Macro",
  3024. height: math.unit(500, "feet"),
  3025. default: true
  3026. },
  3027. {
  3028. name: "Megamacro",
  3029. height: math.unit(10, "miles")
  3030. },
  3031. {
  3032. name: "Gigamacro",
  3033. height: math.unit(25000, "miles")
  3034. },
  3035. {
  3036. name: "Full-Size",
  3037. height: math.unit(8000000, "gigaparsecs")
  3038. }
  3039. ]
  3040. ))
  3041. characterMakers.push(() => makeCharacter(
  3042. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3043. {
  3044. front: {
  3045. height: math.unit(2, "meter"),
  3046. weight: math.unit(60, "kg"),
  3047. name: "Front",
  3048. image: {
  3049. source: "./media/characters/noah/front.svg"
  3050. }
  3051. },
  3052. talons: {
  3053. height: math.unit(0.315, "meter"),
  3054. name: "Talons",
  3055. image: {
  3056. source: "./media/characters/noah/talons.svg"
  3057. }
  3058. }
  3059. },
  3060. [
  3061. {
  3062. name: "Large",
  3063. height: math.unit(50, "feet")
  3064. },
  3065. {
  3066. name: "Macro",
  3067. height: math.unit(750, "feet"),
  3068. default: true
  3069. },
  3070. {
  3071. name: "Megamacro",
  3072. height: math.unit(50, "miles")
  3073. },
  3074. {
  3075. name: "Gigamacro",
  3076. height: math.unit(100000, "miles")
  3077. },
  3078. {
  3079. name: "Full-Size",
  3080. height: math.unit(3000000000, "miles")
  3081. }
  3082. ]
  3083. ))
  3084. characterMakers.push(() => makeCharacter(
  3085. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3086. {
  3087. front: {
  3088. height: math.unit(2, "meter"),
  3089. weight: math.unit(80, "kg"),
  3090. name: "Front",
  3091. image: {
  3092. source: "./media/characters/natalya/front.svg"
  3093. }
  3094. },
  3095. back: {
  3096. height: math.unit(2, "meter"),
  3097. weight: math.unit(80, "kg"),
  3098. name: "Back",
  3099. image: {
  3100. source: "./media/characters/natalya/back.svg"
  3101. }
  3102. }
  3103. },
  3104. [
  3105. {
  3106. name: "Normal",
  3107. height: math.unit(150, "feet"),
  3108. default: true
  3109. },
  3110. {
  3111. name: "Megamacro",
  3112. height: math.unit(5, "miles")
  3113. },
  3114. {
  3115. name: "Full-Size",
  3116. height: math.unit(600, "kiloparsecs")
  3117. }
  3118. ]
  3119. ))
  3120. characterMakers.push(() => makeCharacter(
  3121. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3122. {
  3123. front: {
  3124. height: math.unit(2, "meter"),
  3125. weight: math.unit(50, "kg"),
  3126. name: "Front",
  3127. image: {
  3128. source: "./media/characters/erestrebah/front.svg",
  3129. extra: 208 / 193,
  3130. bottom: 0.055
  3131. }
  3132. },
  3133. back: {
  3134. height: math.unit(2, "meter"),
  3135. weight: math.unit(50, "kg"),
  3136. name: "Back",
  3137. image: {
  3138. source: "./media/characters/erestrebah/back.svg",
  3139. extra: 1.3
  3140. }
  3141. }
  3142. },
  3143. [
  3144. {
  3145. name: "Normal",
  3146. height: math.unit(10, "feet")
  3147. },
  3148. {
  3149. name: "Large",
  3150. height: math.unit(50, "feet"),
  3151. default: true
  3152. },
  3153. {
  3154. name: "Macro",
  3155. height: math.unit(300, "feet")
  3156. },
  3157. {
  3158. name: "Macro+",
  3159. height: math.unit(750, "feet")
  3160. },
  3161. {
  3162. name: "Megamacro",
  3163. height: math.unit(3, "miles")
  3164. }
  3165. ]
  3166. ))
  3167. characterMakers.push(() => makeCharacter(
  3168. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3169. {
  3170. front: {
  3171. height: math.unit(2, "meter"),
  3172. weight: math.unit(80, "kg"),
  3173. name: "Front",
  3174. image: {
  3175. source: "./media/characters/jennifer/front.svg",
  3176. bottom: 0.11,
  3177. extra: 1.16
  3178. }
  3179. },
  3180. frontAlt: {
  3181. height: math.unit(2, "meter"),
  3182. weight: math.unit(80, "kg"),
  3183. name: "Front (Alt)",
  3184. image: {
  3185. source: "./media/characters/jennifer/front-alt.svg"
  3186. }
  3187. }
  3188. },
  3189. [
  3190. {
  3191. name: "Canon Height",
  3192. height: math.unit(120, "feet"),
  3193. default: true
  3194. },
  3195. {
  3196. name: "Macro+",
  3197. height: math.unit(300, "feet")
  3198. },
  3199. {
  3200. name: "Megamacro",
  3201. height: math.unit(20000, "feet")
  3202. }
  3203. ]
  3204. ))
  3205. characterMakers.push(() => makeCharacter(
  3206. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3207. {
  3208. front: {
  3209. height: math.unit(2, "meter"),
  3210. weight: math.unit(50, "kg"),
  3211. name: "Front",
  3212. image: {
  3213. source: "./media/characters/kalista/front.svg",
  3214. extra: 1947 / 1700,
  3215. bottom: 76.6 / 1412.98
  3216. }
  3217. },
  3218. back: {
  3219. height: math.unit(2, "meter"),
  3220. weight: math.unit(50, "kg"),
  3221. name: "Back",
  3222. image: {
  3223. source: "./media/characters/kalista/back.svg",
  3224. extra: 1366 / 1156,
  3225. bottom: 33.9 / 1362.78
  3226. }
  3227. }
  3228. },
  3229. [
  3230. {
  3231. name: "Uncomfortably Small",
  3232. height: math.unit(10, "feet")
  3233. },
  3234. {
  3235. name: "Small",
  3236. height: math.unit(30, "feet")
  3237. },
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(100, "feet"),
  3241. default: true
  3242. },
  3243. {
  3244. name: "Macro+",
  3245. height: math.unit(2000, "feet")
  3246. },
  3247. {
  3248. name: "True Form",
  3249. height: math.unit(8924, "miles")
  3250. }
  3251. ]
  3252. ))
  3253. characterMakers.push(() => makeCharacter(
  3254. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3255. {
  3256. front: {
  3257. height: math.unit(2, "meter"),
  3258. weight: math.unit(120, "kg"),
  3259. name: "Front",
  3260. image: {
  3261. source: "./media/characters/ggv/front.svg"
  3262. }
  3263. },
  3264. side: {
  3265. height: math.unit(2, "meter"),
  3266. weight: math.unit(120, "kg"),
  3267. name: "Side",
  3268. image: {
  3269. source: "./media/characters/ggv/side.svg"
  3270. }
  3271. }
  3272. },
  3273. [
  3274. {
  3275. name: "Extremely Puny",
  3276. height: math.unit(9 + 5 / 12, "feet")
  3277. },
  3278. {
  3279. name: "Horribly Small",
  3280. height: math.unit(47.7, "miles"),
  3281. default: true
  3282. },
  3283. {
  3284. name: "Reasonably Sized",
  3285. height: math.unit(25000, "parsecs")
  3286. },
  3287. {
  3288. name: "Slightly Uncompressed",
  3289. height: math.unit(7.77e31, "parsecs")
  3290. },
  3291. {
  3292. name: "Omniversal",
  3293. height: math.unit(1e300, "meters")
  3294. },
  3295. ]
  3296. ))
  3297. characterMakers.push(() => makeCharacter(
  3298. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3299. {
  3300. front: {
  3301. height: math.unit(2, "meter"),
  3302. weight: math.unit(75, "lb"),
  3303. name: "Front",
  3304. image: {
  3305. source: "./media/characters/napalm/front.svg"
  3306. }
  3307. },
  3308. back: {
  3309. height: math.unit(2, "meter"),
  3310. weight: math.unit(75, "lb"),
  3311. name: "Back",
  3312. image: {
  3313. source: "./media/characters/napalm/back.svg"
  3314. }
  3315. }
  3316. },
  3317. [
  3318. {
  3319. name: "Standard",
  3320. height: math.unit(55, "feet"),
  3321. default: true
  3322. }
  3323. ]
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3327. {
  3328. front: {
  3329. height: math.unit(7 + 5 / 6, "feet"),
  3330. weight: math.unit(325, "lb"),
  3331. name: "Front",
  3332. image: {
  3333. source: "./media/characters/asana/front.svg",
  3334. extra: 1133 / 1060,
  3335. bottom: 15.2 / 1148.6
  3336. }
  3337. },
  3338. back: {
  3339. height: math.unit(7 + 5 / 6, "feet"),
  3340. weight: math.unit(325, "lb"),
  3341. name: "Back",
  3342. image: {
  3343. source: "./media/characters/asana/back.svg",
  3344. extra: 1114 / 1043,
  3345. bottom: 5 / 1120
  3346. }
  3347. },
  3348. dressedDark: {
  3349. height: math.unit(7 + 5 / 6, "feet"),
  3350. weight: math.unit(325, "lb"),
  3351. name: "Dressed (Dark)",
  3352. image: {
  3353. source: "./media/characters/asana/dressed-dark.svg",
  3354. extra: 1133 / 1060,
  3355. bottom: 15.2 / 1148.6
  3356. }
  3357. },
  3358. dressedLight: {
  3359. height: math.unit(7 + 5 / 6, "feet"),
  3360. weight: math.unit(325, "lb"),
  3361. name: "Dressed (Light)",
  3362. image: {
  3363. source: "./media/characters/asana/dressed-light.svg",
  3364. extra: 1133 / 1060,
  3365. bottom: 15.2 / 1148.6
  3366. }
  3367. },
  3368. },
  3369. [
  3370. {
  3371. name: "Standard",
  3372. height: math.unit(7 + 5 / 6, "feet"),
  3373. default: true
  3374. },
  3375. {
  3376. name: "Large",
  3377. height: math.unit(10, "meters")
  3378. },
  3379. {
  3380. name: "Macro",
  3381. height: math.unit(2500, "meters")
  3382. },
  3383. {
  3384. name: "Megamacro",
  3385. height: math.unit(5e6, "meters")
  3386. },
  3387. {
  3388. name: "Examacro",
  3389. height: math.unit(5e12, "lightyears")
  3390. },
  3391. {
  3392. name: "Max Size",
  3393. height: math.unit(1e31, "lightyears")
  3394. }
  3395. ]
  3396. ))
  3397. characterMakers.push(() => makeCharacter(
  3398. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3399. {
  3400. front: {
  3401. height: math.unit(2, "meter"),
  3402. weight: math.unit(60, "kg"),
  3403. name: "Front",
  3404. image: {
  3405. source: "./media/characters/ebony/front.svg",
  3406. bottom: 0.03,
  3407. extra: 1045 / 810 + 0.03
  3408. }
  3409. },
  3410. side: {
  3411. height: math.unit(2, "meter"),
  3412. weight: math.unit(60, "kg"),
  3413. name: "Side",
  3414. image: {
  3415. source: "./media/characters/ebony/side.svg",
  3416. bottom: 0.03,
  3417. extra: 1045 / 810 + 0.03
  3418. }
  3419. },
  3420. back: {
  3421. height: math.unit(2, "meter"),
  3422. weight: math.unit(60, "kg"),
  3423. name: "Back",
  3424. image: {
  3425. source: "./media/characters/ebony/back.svg",
  3426. bottom: 0.01,
  3427. extra: 1045 / 810 + 0.01
  3428. }
  3429. },
  3430. },
  3431. [
  3432. // TODO check why I did this lol
  3433. {
  3434. name: "Standard",
  3435. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3436. default: true
  3437. },
  3438. {
  3439. name: "Macro",
  3440. height: math.unit(200, "feet")
  3441. },
  3442. {
  3443. name: "Gigamacro",
  3444. height: math.unit(13000, "km")
  3445. }
  3446. ]
  3447. ))
  3448. characterMakers.push(() => makeCharacter(
  3449. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3450. {
  3451. front: {
  3452. height: math.unit(6, "feet"),
  3453. weight: math.unit(175, "lb"),
  3454. name: "Front",
  3455. image: {
  3456. source: "./media/characters/mountain/front.svg",
  3457. extra: 972 / 955,
  3458. bottom: 64 / 1036.6
  3459. }
  3460. },
  3461. back: {
  3462. height: math.unit(6, "feet"),
  3463. weight: math.unit(175, "lb"),
  3464. name: "Back",
  3465. image: {
  3466. source: "./media/characters/mountain/back.svg",
  3467. extra: 970 / 950,
  3468. bottom: 28.25 / 999
  3469. }
  3470. },
  3471. },
  3472. [
  3473. {
  3474. name: "Large",
  3475. height: math.unit(20, "meters")
  3476. },
  3477. {
  3478. name: "Macro",
  3479. height: math.unit(300, "meters")
  3480. },
  3481. {
  3482. name: "Gigamacro",
  3483. height: math.unit(10000, "km"),
  3484. default: true
  3485. },
  3486. {
  3487. name: "Examacro",
  3488. height: math.unit(10e9, "lightyears")
  3489. }
  3490. ]
  3491. ))
  3492. characterMakers.push(() => makeCharacter(
  3493. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3494. {
  3495. front: {
  3496. height: math.unit(8, "feet"),
  3497. weight: math.unit(500, "lb"),
  3498. name: "Front",
  3499. image: {
  3500. source: "./media/characters/rick/front.svg"
  3501. }
  3502. }
  3503. },
  3504. [
  3505. {
  3506. name: "Normal",
  3507. height: math.unit(8, "feet"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Macro",
  3512. height: math.unit(5, "km")
  3513. }
  3514. ]
  3515. ))
  3516. characterMakers.push(() => makeCharacter(
  3517. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3518. {
  3519. front: {
  3520. height: math.unit(8, "feet"),
  3521. weight: math.unit(120, "lb"),
  3522. name: "Front",
  3523. image: {
  3524. source: "./media/characters/ona/front.svg"
  3525. }
  3526. },
  3527. frontAlt: {
  3528. height: math.unit(8, "feet"),
  3529. weight: math.unit(120, "lb"),
  3530. name: "Front (Alt)",
  3531. image: {
  3532. source: "./media/characters/ona/front-alt.svg"
  3533. }
  3534. },
  3535. back: {
  3536. height: math.unit(8, "feet"),
  3537. weight: math.unit(120, "lb"),
  3538. name: "Back",
  3539. image: {
  3540. source: "./media/characters/ona/back.svg"
  3541. }
  3542. },
  3543. foot: {
  3544. height: math.unit(1.1, "feet"),
  3545. name: "Foot",
  3546. image: {
  3547. source: "./media/characters/ona/foot.svg"
  3548. }
  3549. }
  3550. },
  3551. [
  3552. {
  3553. name: "Megamacro",
  3554. height: math.unit(70, "km"),
  3555. default: true
  3556. },
  3557. {
  3558. name: "Gigamacro",
  3559. height: math.unit(681818, "miles")
  3560. },
  3561. {
  3562. name: "Examacro",
  3563. height: math.unit(3800000, "lightyears")
  3564. },
  3565. ]
  3566. ))
  3567. characterMakers.push(() => makeCharacter(
  3568. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3569. {
  3570. front: {
  3571. height: math.unit(12, "feet"),
  3572. weight: math.unit(3000, "lb"),
  3573. name: "Front",
  3574. image: {
  3575. source: "./media/characters/mech/front.svg",
  3576. extra: 2900 / 2770,
  3577. bottom: 110 / 3010
  3578. }
  3579. },
  3580. back: {
  3581. height: math.unit(12, "feet"),
  3582. weight: math.unit(3000, "lb"),
  3583. name: "Back",
  3584. image: {
  3585. source: "./media/characters/mech/back.svg",
  3586. extra: 3011 / 2890,
  3587. bottom: 94 / 3105
  3588. }
  3589. },
  3590. maw: {
  3591. height: math.unit(3.07, "feet"),
  3592. name: "Maw",
  3593. image: {
  3594. source: "./media/characters/mech/maw.svg"
  3595. }
  3596. },
  3597. head: {
  3598. height: math.unit(2.82, "feet"),
  3599. name: "Head",
  3600. image: {
  3601. source: "./media/characters/mech/head.svg"
  3602. }
  3603. },
  3604. dick: {
  3605. height: math.unit(1.43, "feet"),
  3606. name: "Dick",
  3607. image: {
  3608. source: "./media/characters/mech/dick.svg"
  3609. }
  3610. },
  3611. },
  3612. [
  3613. {
  3614. name: "Normal",
  3615. height: math.unit(12, "feet")
  3616. },
  3617. {
  3618. name: "Macro",
  3619. height: math.unit(300, "feet"),
  3620. default: true
  3621. },
  3622. {
  3623. name: "Macro+",
  3624. height: math.unit(1500, "feet")
  3625. },
  3626. ]
  3627. ))
  3628. characterMakers.push(() => makeCharacter(
  3629. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3630. {
  3631. front: {
  3632. height: math.unit(1.3, "meter"),
  3633. weight: math.unit(30, "kg"),
  3634. name: "Front",
  3635. image: {
  3636. source: "./media/characters/gregory/front.svg",
  3637. }
  3638. }
  3639. },
  3640. [
  3641. {
  3642. name: "Normal",
  3643. height: math.unit(1.3, "meter"),
  3644. default: true
  3645. },
  3646. {
  3647. name: "Macro",
  3648. height: math.unit(20, "meter")
  3649. }
  3650. ]
  3651. ))
  3652. characterMakers.push(() => makeCharacter(
  3653. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3654. {
  3655. front: {
  3656. height: math.unit(2.8, "meter"),
  3657. weight: math.unit(200, "kg"),
  3658. name: "Front",
  3659. image: {
  3660. source: "./media/characters/elory/front.svg",
  3661. }
  3662. }
  3663. },
  3664. [
  3665. {
  3666. name: "Normal",
  3667. height: math.unit(2.8, "meter"),
  3668. default: true
  3669. },
  3670. {
  3671. name: "Macro",
  3672. height: math.unit(38, "meter")
  3673. }
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3678. {
  3679. front: {
  3680. height: math.unit(470, "feet"),
  3681. weight: math.unit(924, "tons"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/angelpatamon/front.svg",
  3685. }
  3686. }
  3687. },
  3688. [
  3689. {
  3690. name: "Normal",
  3691. height: math.unit(470, "feet"),
  3692. default: true
  3693. },
  3694. {
  3695. name: "Deity Size I",
  3696. height: math.unit(28651.2, "km")
  3697. },
  3698. {
  3699. name: "Deity Size II",
  3700. height: math.unit(171907.2, "km")
  3701. }
  3702. ]
  3703. ))
  3704. characterMakers.push(() => makeCharacter(
  3705. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3706. {
  3707. side: {
  3708. height: math.unit(7.2, "meter"),
  3709. weight: math.unit(8.2, "tons"),
  3710. name: "Side",
  3711. image: {
  3712. source: "./media/characters/cryae/side.svg",
  3713. extra: 3500 / 1500
  3714. }
  3715. }
  3716. },
  3717. [
  3718. {
  3719. name: "Normal",
  3720. height: math.unit(7.2, "meter"),
  3721. default: true
  3722. }
  3723. ]
  3724. ))
  3725. characterMakers.push(() => makeCharacter(
  3726. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3727. {
  3728. front: {
  3729. height: math.unit(6, "feet"),
  3730. weight: math.unit(175, "lb"),
  3731. name: "Front",
  3732. image: {
  3733. source: "./media/characters/xera/front.svg",
  3734. extra: 2377 / 1972,
  3735. bottom: 75.5 / 2452
  3736. }
  3737. },
  3738. side: {
  3739. height: math.unit(6, "feet"),
  3740. weight: math.unit(175, "lb"),
  3741. name: "Side",
  3742. image: {
  3743. source: "./media/characters/xera/side.svg",
  3744. extra: 2345 / 2019,
  3745. bottom: 39.7 / 2384
  3746. }
  3747. },
  3748. back: {
  3749. height: math.unit(6, "feet"),
  3750. weight: math.unit(175, "lb"),
  3751. name: "Back",
  3752. image: {
  3753. source: "./media/characters/xera/back.svg",
  3754. extra: 2095 / 1984,
  3755. bottom: 67 / 2166
  3756. }
  3757. },
  3758. },
  3759. [
  3760. {
  3761. name: "Small",
  3762. height: math.unit(10, "feet")
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(500, "meters"),
  3767. default: true
  3768. },
  3769. {
  3770. name: "Macro+",
  3771. height: math.unit(10, "km")
  3772. },
  3773. {
  3774. name: "Gigamacro",
  3775. height: math.unit(25000, "km")
  3776. },
  3777. {
  3778. name: "Teramacro",
  3779. height: math.unit(3e6, "km")
  3780. }
  3781. ]
  3782. ))
  3783. characterMakers.push(() => makeCharacter(
  3784. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3785. {
  3786. front: {
  3787. height: math.unit(6, "feet"),
  3788. weight: math.unit(175, "lb"),
  3789. name: "Front",
  3790. image: {
  3791. source: "./media/characters/nebula/front.svg",
  3792. extra: 2566 / 2362,
  3793. bottom: 81 / 2644
  3794. }
  3795. }
  3796. },
  3797. [
  3798. {
  3799. name: "Small",
  3800. height: math.unit(4.5, "meters")
  3801. },
  3802. {
  3803. name: "Macro",
  3804. height: math.unit(1500, "meters"),
  3805. default: true
  3806. },
  3807. {
  3808. name: "Megamacro",
  3809. height: math.unit(150, "km")
  3810. },
  3811. {
  3812. name: "Gigamacro",
  3813. height: math.unit(27000, "km")
  3814. }
  3815. ]
  3816. ))
  3817. characterMakers.push(() => makeCharacter(
  3818. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3819. {
  3820. front: {
  3821. height: math.unit(6, "feet"),
  3822. weight: math.unit(225, "lb"),
  3823. name: "Front",
  3824. image: {
  3825. source: "./media/characters/abysgar/front.svg"
  3826. }
  3827. }
  3828. },
  3829. [
  3830. {
  3831. name: "Small",
  3832. height: math.unit(4.5, "meters")
  3833. },
  3834. {
  3835. name: "Macro",
  3836. height: math.unit(1250, "meters"),
  3837. default: true
  3838. },
  3839. {
  3840. name: "Megamacro",
  3841. height: math.unit(125, "km")
  3842. },
  3843. {
  3844. name: "Gigamacro",
  3845. height: math.unit(26000, "km")
  3846. }
  3847. ]
  3848. ))
  3849. characterMakers.push(() => makeCharacter(
  3850. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3851. {
  3852. front: {
  3853. height: math.unit(6, "feet"),
  3854. weight: math.unit(180, "lb"),
  3855. name: "Front",
  3856. image: {
  3857. source: "./media/characters/yakuz/front.svg"
  3858. }
  3859. }
  3860. },
  3861. [
  3862. {
  3863. name: "Small",
  3864. height: math.unit(5, "meters")
  3865. },
  3866. {
  3867. name: "Macro",
  3868. height: math.unit(1500, "meters"),
  3869. default: true
  3870. },
  3871. {
  3872. name: "Megamacro",
  3873. height: math.unit(200, "km")
  3874. },
  3875. {
  3876. name: "Gigamacro",
  3877. height: math.unit(100000, "km")
  3878. }
  3879. ]
  3880. ))
  3881. characterMakers.push(() => makeCharacter(
  3882. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3883. {
  3884. front: {
  3885. height: math.unit(6, "feet"),
  3886. weight: math.unit(175, "lb"),
  3887. name: "Front",
  3888. image: {
  3889. source: "./media/characters/mirova/front.svg",
  3890. extra: 3334 / 3071,
  3891. bottom: 42 / 3375.6
  3892. }
  3893. }
  3894. },
  3895. [
  3896. {
  3897. name: "Small",
  3898. height: math.unit(5, "meters")
  3899. },
  3900. {
  3901. name: "Macro",
  3902. height: math.unit(900, "meters"),
  3903. default: true
  3904. },
  3905. {
  3906. name: "Megamacro",
  3907. height: math.unit(135, "km")
  3908. },
  3909. {
  3910. name: "Gigamacro",
  3911. height: math.unit(20000, "km")
  3912. }
  3913. ]
  3914. ))
  3915. characterMakers.push(() => makeCharacter(
  3916. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3917. {
  3918. side: {
  3919. height: math.unit(28.35, "feet"),
  3920. weight: math.unit(99.75, "tons"),
  3921. name: "Side",
  3922. image: {
  3923. source: "./media/characters/asana-mech/side.svg",
  3924. extra: 923 / 699,
  3925. bottom: 50 / 975
  3926. }
  3927. },
  3928. chaingun: {
  3929. height: math.unit(7, "feet"),
  3930. weight: math.unit(2400, "lb"),
  3931. name: "Chaingun",
  3932. image: {
  3933. source: "./media/characters/asana-mech/chaingun.svg"
  3934. }
  3935. },
  3936. laser: {
  3937. height: math.unit(7.12, "feet"),
  3938. weight: math.unit(2000, "lb"),
  3939. name: "Laser",
  3940. image: {
  3941. source: "./media/characters/asana-mech/laser.svg"
  3942. }
  3943. },
  3944. },
  3945. [
  3946. {
  3947. name: "Normal",
  3948. height: math.unit(28.35, "feet"),
  3949. default: true
  3950. },
  3951. {
  3952. name: "Macro",
  3953. height: math.unit(2500, "feet")
  3954. },
  3955. {
  3956. name: "Megamacro",
  3957. height: math.unit(25, "miles")
  3958. },
  3959. {
  3960. name: "Examacro",
  3961. height: math.unit(6e8, "lightyears")
  3962. },
  3963. ]
  3964. ))
  3965. characterMakers.push(() => makeCharacter(
  3966. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3967. {
  3968. front: {
  3969. height: math.unit(5, "meters"),
  3970. weight: math.unit(1000, "kg"),
  3971. name: "Front",
  3972. image: {
  3973. source: "./media/characters/asche/front.svg",
  3974. extra: 1258 / 1190,
  3975. bottom: 47 / 1305
  3976. }
  3977. },
  3978. frontUnderwear: {
  3979. height: math.unit(5, "meters"),
  3980. weight: math.unit(1000, "kg"),
  3981. name: "Front (Underwear)",
  3982. image: {
  3983. source: "./media/characters/asche/front-underwear.svg",
  3984. extra: 1258 / 1190,
  3985. bottom: 47 / 1305
  3986. }
  3987. },
  3988. frontDressed: {
  3989. height: math.unit(5, "meters"),
  3990. weight: math.unit(1000, "kg"),
  3991. name: "Front (Dressed)",
  3992. image: {
  3993. source: "./media/characters/asche/front-dressed.svg",
  3994. extra: 1258 / 1190,
  3995. bottom: 47 / 1305
  3996. }
  3997. },
  3998. frontArmor: {
  3999. height: math.unit(5, "meters"),
  4000. weight: math.unit(1000, "kg"),
  4001. name: "Front (Armored)",
  4002. image: {
  4003. source: "./media/characters/asche/front-armored.svg",
  4004. extra: 1374 / 1308,
  4005. bottom: 23 / 1397
  4006. }
  4007. },
  4008. mp724: {
  4009. height: math.unit(0.96, "meters"),
  4010. weight: math.unit(38, "kg"),
  4011. name: "H&K MP724",
  4012. image: {
  4013. source: "./media/characters/asche/h&k-mp724.svg"
  4014. }
  4015. },
  4016. side: {
  4017. height: math.unit(5, "meters"),
  4018. weight: math.unit(1000, "kg"),
  4019. name: "Side",
  4020. image: {
  4021. source: "./media/characters/asche/side.svg",
  4022. extra: 1717 / 1609,
  4023. bottom: 0.005
  4024. }
  4025. },
  4026. back: {
  4027. height: math.unit(5, "meters"),
  4028. weight: math.unit(1000, "kg"),
  4029. name: "Back",
  4030. image: {
  4031. source: "./media/characters/asche/back.svg",
  4032. extra: 1570 / 1501
  4033. }
  4034. },
  4035. },
  4036. [
  4037. {
  4038. name: "DEFCON 5",
  4039. height: math.unit(5, "meters")
  4040. },
  4041. {
  4042. name: "DEFCON 4",
  4043. height: math.unit(500, "meters"),
  4044. default: true
  4045. },
  4046. {
  4047. name: "DEFCON 3",
  4048. height: math.unit(5, "km")
  4049. },
  4050. {
  4051. name: "DEFCON 2",
  4052. height: math.unit(500, "km")
  4053. },
  4054. {
  4055. name: "DEFCON 1",
  4056. height: math.unit(500000, "km")
  4057. },
  4058. {
  4059. name: "DEFCON 0",
  4060. height: math.unit(3, "gigaparsecs")
  4061. },
  4062. ]
  4063. ))
  4064. characterMakers.push(() => makeCharacter(
  4065. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4066. {
  4067. front: {
  4068. height: math.unit(2, "meters"),
  4069. weight: math.unit(76, "kg"),
  4070. name: "Front",
  4071. image: {
  4072. source: "./media/characters/gale/front.svg"
  4073. }
  4074. },
  4075. frontAlt1: {
  4076. height: math.unit(2, "meters"),
  4077. weight: math.unit(76, "kg"),
  4078. name: "Front (Alt 1)",
  4079. image: {
  4080. source: "./media/characters/gale/front-alt-1.svg"
  4081. }
  4082. },
  4083. frontAlt2: {
  4084. height: math.unit(2, "meters"),
  4085. weight: math.unit(76, "kg"),
  4086. name: "Front (Alt 2)",
  4087. image: {
  4088. source: "./media/characters/gale/front-alt-2.svg"
  4089. }
  4090. },
  4091. },
  4092. [
  4093. {
  4094. name: "Normal",
  4095. height: math.unit(7, "feet")
  4096. },
  4097. {
  4098. name: "Macro",
  4099. height: math.unit(150, "feet"),
  4100. default: true
  4101. },
  4102. {
  4103. name: "Macro+",
  4104. height: math.unit(300, "feet")
  4105. },
  4106. ]
  4107. ))
  4108. characterMakers.push(() => makeCharacter(
  4109. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4110. {
  4111. front: {
  4112. height: math.unit(2, "meters"),
  4113. weight: math.unit(76, "kg"),
  4114. name: "Front",
  4115. image: {
  4116. source: "./media/characters/draylen/front.svg"
  4117. }
  4118. }
  4119. },
  4120. [
  4121. {
  4122. name: "Macro",
  4123. height: math.unit(150, "feet"),
  4124. default: true
  4125. }
  4126. ]
  4127. ))
  4128. characterMakers.push(() => makeCharacter(
  4129. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4130. {
  4131. front: {
  4132. height: math.unit(7 + 9 / 12, "feet"),
  4133. weight: math.unit(379, "lbs"),
  4134. name: "Front",
  4135. image: {
  4136. source: "./media/characters/chez/front.svg"
  4137. }
  4138. },
  4139. side: {
  4140. height: math.unit(7 + 9 / 12, "feet"),
  4141. weight: math.unit(379, "lbs"),
  4142. name: "Side",
  4143. image: {
  4144. source: "./media/characters/chez/side.svg"
  4145. }
  4146. }
  4147. },
  4148. [
  4149. {
  4150. name: "Normal",
  4151. height: math.unit(7 + 9 / 12, "feet"),
  4152. default: true
  4153. },
  4154. {
  4155. name: "God King",
  4156. height: math.unit(9750000, "meters")
  4157. }
  4158. ]
  4159. ))
  4160. characterMakers.push(() => makeCharacter(
  4161. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4162. {
  4163. front: {
  4164. height: math.unit(6, "feet"),
  4165. weight: math.unit(275, "lbs"),
  4166. name: "Front",
  4167. image: {
  4168. source: "./media/characters/kaylum/front.svg",
  4169. bottom: 0.01,
  4170. extra: 1166 / 1031
  4171. }
  4172. },
  4173. frontWingless: {
  4174. height: math.unit(6, "feet"),
  4175. weight: math.unit(275, "lbs"),
  4176. name: "Front (Wingless)",
  4177. image: {
  4178. source: "./media/characters/kaylum/front-wingless.svg",
  4179. bottom: 0.01,
  4180. extra: 1117 / 1031
  4181. }
  4182. }
  4183. },
  4184. [
  4185. {
  4186. name: "Normal",
  4187. height: math.unit(3.05, "meters")
  4188. },
  4189. {
  4190. name: "Master",
  4191. height: math.unit(5.5, "meters")
  4192. },
  4193. {
  4194. name: "Rampage",
  4195. height: math.unit(19, "meters")
  4196. },
  4197. {
  4198. name: "Macro Lite",
  4199. height: math.unit(37, "meters")
  4200. },
  4201. {
  4202. name: "Hyper Predator",
  4203. height: math.unit(61, "meters")
  4204. },
  4205. {
  4206. name: "Macro",
  4207. height: math.unit(138, "meters"),
  4208. default: true
  4209. }
  4210. ]
  4211. ))
  4212. characterMakers.push(() => makeCharacter(
  4213. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4214. {
  4215. front: {
  4216. height: math.unit(6, "feet"),
  4217. weight: math.unit(150, "lbs"),
  4218. name: "Front",
  4219. image: {
  4220. source: "./media/characters/geta/front.svg"
  4221. }
  4222. }
  4223. },
  4224. [
  4225. {
  4226. name: "Micro",
  4227. height: math.unit(3, "inches"),
  4228. default: true
  4229. },
  4230. {
  4231. name: "Normal",
  4232. height: math.unit(5 + 5 / 12, "feet")
  4233. }
  4234. ]
  4235. ))
  4236. characterMakers.push(() => makeCharacter(
  4237. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4238. {
  4239. front: {
  4240. height: math.unit(6, "feet"),
  4241. weight: math.unit(300, "lbs"),
  4242. name: "Front",
  4243. image: {
  4244. source: "./media/characters/tyrnn/front.svg"
  4245. }
  4246. }
  4247. },
  4248. [
  4249. {
  4250. name: "Main Height",
  4251. height: math.unit(355, "feet"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Fave. Height",
  4256. height: math.unit(2400, "feet")
  4257. }
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4262. {
  4263. front: {
  4264. height: math.unit(6, "feet"),
  4265. weight: math.unit(300, "lbs"),
  4266. name: "Front",
  4267. image: {
  4268. source: "./media/characters/appledectomy/front.svg"
  4269. }
  4270. }
  4271. },
  4272. [
  4273. {
  4274. name: "Macro",
  4275. height: math.unit(2500, "feet")
  4276. },
  4277. {
  4278. name: "Megamacro",
  4279. height: math.unit(50, "miles"),
  4280. default: true
  4281. },
  4282. {
  4283. name: "Gigamacro",
  4284. height: math.unit(5000, "miles")
  4285. },
  4286. {
  4287. name: "Teramacro",
  4288. height: math.unit(250000, "miles")
  4289. },
  4290. ]
  4291. ))
  4292. characterMakers.push(() => makeCharacter(
  4293. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4294. {
  4295. front: {
  4296. height: math.unit(6, "feet"),
  4297. weight: math.unit(200, "lbs"),
  4298. name: "Front",
  4299. image: {
  4300. source: "./media/characters/vulpes/front.svg",
  4301. extra: 573 / 543,
  4302. bottom: 0.033
  4303. }
  4304. },
  4305. side: {
  4306. height: math.unit(6, "feet"),
  4307. weight: math.unit(200, "lbs"),
  4308. name: "Side",
  4309. image: {
  4310. source: "./media/characters/vulpes/side.svg",
  4311. extra: 577 / 549,
  4312. bottom: 11 / 588
  4313. }
  4314. },
  4315. back: {
  4316. height: math.unit(6, "feet"),
  4317. weight: math.unit(200, "lbs"),
  4318. name: "Back",
  4319. image: {
  4320. source: "./media/characters/vulpes/back.svg",
  4321. extra: 573 / 549,
  4322. bottom: 20 / 593
  4323. }
  4324. },
  4325. feet: {
  4326. height: math.unit(1.276, "feet"),
  4327. name: "Feet",
  4328. image: {
  4329. source: "./media/characters/vulpes/feet.svg"
  4330. }
  4331. },
  4332. maw: {
  4333. height: math.unit(1.18, "feet"),
  4334. name: "Maw",
  4335. image: {
  4336. source: "./media/characters/vulpes/maw.svg"
  4337. }
  4338. },
  4339. },
  4340. [
  4341. {
  4342. name: "Micro",
  4343. height: math.unit(2, "inches")
  4344. },
  4345. {
  4346. name: "Normal",
  4347. height: math.unit(6.3, "feet")
  4348. },
  4349. {
  4350. name: "Macro",
  4351. height: math.unit(850, "feet")
  4352. },
  4353. {
  4354. name: "Megamacro",
  4355. height: math.unit(7500, "feet"),
  4356. default: true
  4357. },
  4358. {
  4359. name: "Gigamacro",
  4360. height: math.unit(570000, "miles")
  4361. }
  4362. ]
  4363. ))
  4364. characterMakers.push(() => makeCharacter(
  4365. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4366. {
  4367. front: {
  4368. height: math.unit(6, "feet"),
  4369. weight: math.unit(210, "lbs"),
  4370. name: "Front",
  4371. image: {
  4372. source: "./media/characters/rain-fallen/front.svg"
  4373. }
  4374. },
  4375. side: {
  4376. height: math.unit(6, "feet"),
  4377. weight: math.unit(210, "lbs"),
  4378. name: "Side",
  4379. image: {
  4380. source: "./media/characters/rain-fallen/side.svg"
  4381. }
  4382. },
  4383. back: {
  4384. height: math.unit(6, "feet"),
  4385. weight: math.unit(210, "lbs"),
  4386. name: "Back",
  4387. image: {
  4388. source: "./media/characters/rain-fallen/back.svg"
  4389. }
  4390. },
  4391. feral: {
  4392. height: math.unit(9, "feet"),
  4393. weight: math.unit(700, "lbs"),
  4394. name: "Feral",
  4395. image: {
  4396. source: "./media/characters/rain-fallen/feral.svg"
  4397. }
  4398. },
  4399. },
  4400. [
  4401. {
  4402. name: "Meddling with Mortals",
  4403. height: math.unit(8 + 8/12, "feet")
  4404. },
  4405. {
  4406. name: "Normal",
  4407. height: math.unit(5, "meter")
  4408. },
  4409. {
  4410. name: "Macro",
  4411. height: math.unit(150, "meter"),
  4412. default: true
  4413. },
  4414. {
  4415. name: "Megamacro",
  4416. height: math.unit(278e6, "meter")
  4417. },
  4418. {
  4419. name: "Gigamacro",
  4420. height: math.unit(2e9, "meter")
  4421. },
  4422. {
  4423. name: "Teramacro",
  4424. height: math.unit(8e12, "meter")
  4425. },
  4426. {
  4427. name: "Devourer",
  4428. height: math.unit(14, "zettameters")
  4429. },
  4430. {
  4431. name: "Scarlet King",
  4432. height: math.unit(18, "yottameters")
  4433. },
  4434. {
  4435. name: "Void",
  4436. height: math.unit(6.66e66, "yottameters")
  4437. }
  4438. ]
  4439. ))
  4440. characterMakers.push(() => makeCharacter(
  4441. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4442. {
  4443. standing: {
  4444. height: math.unit(6, "feet"),
  4445. weight: math.unit(180, "lbs"),
  4446. name: "Standing",
  4447. image: {
  4448. source: "./media/characters/zaakira/standing.svg"
  4449. }
  4450. },
  4451. laying: {
  4452. height: math.unit(3, "feet"),
  4453. weight: math.unit(180, "lbs"),
  4454. name: "Laying",
  4455. image: {
  4456. source: "./media/characters/zaakira/laying.svg"
  4457. }
  4458. },
  4459. },
  4460. [
  4461. {
  4462. name: "Normal",
  4463. height: math.unit(12, "feet")
  4464. },
  4465. {
  4466. name: "Macro",
  4467. height: math.unit(279, "feet"),
  4468. default: true
  4469. }
  4470. ]
  4471. ))
  4472. characterMakers.push(() => makeCharacter(
  4473. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4474. {
  4475. femSfw: {
  4476. height: math.unit(8, "feet"),
  4477. weight: math.unit(350, "lb"),
  4478. name: "Fem",
  4479. image: {
  4480. source: "./media/characters/sigvald/fem-sfw.svg",
  4481. extra: 182 / 164,
  4482. bottom: 8.7 / 190.5
  4483. }
  4484. },
  4485. femNsfw: {
  4486. height: math.unit(8, "feet"),
  4487. weight: math.unit(350, "lb"),
  4488. name: "Fem (NSFW)",
  4489. image: {
  4490. source: "./media/characters/sigvald/fem-nsfw.svg",
  4491. extra: 182 / 164,
  4492. bottom: 8.7 / 190.5
  4493. }
  4494. },
  4495. maleNsfw: {
  4496. height: math.unit(8, "feet"),
  4497. weight: math.unit(350, "lb"),
  4498. name: "Male (NSFW)",
  4499. image: {
  4500. source: "./media/characters/sigvald/male-nsfw.svg",
  4501. extra: 182 / 164,
  4502. bottom: 8.7 / 190.5
  4503. }
  4504. },
  4505. hermNsfw: {
  4506. height: math.unit(8, "feet"),
  4507. weight: math.unit(350, "lb"),
  4508. name: "Herm (NSFW)",
  4509. image: {
  4510. source: "./media/characters/sigvald/herm-nsfw.svg",
  4511. extra: 182 / 164,
  4512. bottom: 8.7 / 190.5
  4513. }
  4514. },
  4515. dick: {
  4516. height: math.unit(2.36, "feet"),
  4517. name: "Dick",
  4518. image: {
  4519. source: "./media/characters/sigvald/dick.svg"
  4520. }
  4521. },
  4522. eye: {
  4523. height: math.unit(0.31, "feet"),
  4524. name: "Eye",
  4525. image: {
  4526. source: "./media/characters/sigvald/eye.svg"
  4527. }
  4528. },
  4529. mouth: {
  4530. height: math.unit(0.92, "feet"),
  4531. name: "Mouth",
  4532. image: {
  4533. source: "./media/characters/sigvald/mouth.svg"
  4534. }
  4535. },
  4536. paws: {
  4537. height: math.unit(2.2, "feet"),
  4538. name: "Paws",
  4539. image: {
  4540. source: "./media/characters/sigvald/paws.svg"
  4541. }
  4542. }
  4543. },
  4544. [
  4545. {
  4546. name: "Normal",
  4547. height: math.unit(8, "feet")
  4548. },
  4549. {
  4550. name: "Large",
  4551. height: math.unit(12, "feet")
  4552. },
  4553. {
  4554. name: "Larger",
  4555. height: math.unit(20, "feet")
  4556. },
  4557. {
  4558. name: "Macro",
  4559. height: math.unit(150, "feet")
  4560. },
  4561. {
  4562. name: "Macro+",
  4563. height: math.unit(200, "feet"),
  4564. default: true
  4565. },
  4566. ]
  4567. ))
  4568. characterMakers.push(() => makeCharacter(
  4569. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4570. {
  4571. side: {
  4572. height: math.unit(12, "feet"),
  4573. weight: math.unit(2000, "kg"),
  4574. name: "Side",
  4575. image: {
  4576. source: "./media/characters/scott/side.svg",
  4577. extra: 754 / 724,
  4578. bottom: 0.069
  4579. }
  4580. },
  4581. upright: {
  4582. height: math.unit(12, "feet"),
  4583. weight: math.unit(2000, "kg"),
  4584. name: "Upright",
  4585. image: {
  4586. source: "./media/characters/scott/upright.svg",
  4587. extra: 3881 / 3722,
  4588. bottom: 0.05
  4589. }
  4590. },
  4591. },
  4592. [
  4593. {
  4594. name: "Normal",
  4595. height: math.unit(12, "feet"),
  4596. default: true
  4597. },
  4598. ]
  4599. ))
  4600. characterMakers.push(() => makeCharacter(
  4601. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4602. {
  4603. side: {
  4604. height: math.unit(8, "meters"),
  4605. weight: math.unit(84755, "lbs"),
  4606. name: "Side",
  4607. image: {
  4608. source: "./media/characters/tobias/side.svg",
  4609. extra: 1474 / 1096,
  4610. bottom: 38.9 / 1513.1235
  4611. }
  4612. },
  4613. },
  4614. [
  4615. {
  4616. name: "Normal",
  4617. height: math.unit(8, "meters"),
  4618. default: true
  4619. },
  4620. ]
  4621. ))
  4622. characterMakers.push(() => makeCharacter(
  4623. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4624. {
  4625. front: {
  4626. height: math.unit(5.5, "feet"),
  4627. weight: math.unit(400, "lbs"),
  4628. name: "Front",
  4629. image: {
  4630. source: "./media/characters/kieran/front.svg",
  4631. extra: 2694 / 2364,
  4632. bottom: 217 / 2908
  4633. }
  4634. },
  4635. side: {
  4636. height: math.unit(5.5, "feet"),
  4637. weight: math.unit(400, "lbs"),
  4638. name: "Side",
  4639. image: {
  4640. source: "./media/characters/kieran/side.svg",
  4641. extra: 875 / 777,
  4642. bottom: 84.6 / 959
  4643. }
  4644. },
  4645. },
  4646. [
  4647. {
  4648. name: "Normal",
  4649. height: math.unit(5.5, "feet"),
  4650. default: true
  4651. },
  4652. ]
  4653. ))
  4654. characterMakers.push(() => makeCharacter(
  4655. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4656. {
  4657. side: {
  4658. height: math.unit(2, "meters"),
  4659. weight: math.unit(70, "kg"),
  4660. name: "Side",
  4661. image: {
  4662. source: "./media/characters/sanya/side.svg",
  4663. bottom: 0.02,
  4664. extra: 1.02
  4665. }
  4666. },
  4667. },
  4668. [
  4669. {
  4670. name: "Small",
  4671. height: math.unit(2, "meters")
  4672. },
  4673. {
  4674. name: "Normal",
  4675. height: math.unit(3, "meters")
  4676. },
  4677. {
  4678. name: "Macro",
  4679. height: math.unit(16, "meters"),
  4680. default: true
  4681. },
  4682. ]
  4683. ))
  4684. characterMakers.push(() => makeCharacter(
  4685. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4686. {
  4687. front: {
  4688. height: math.unit(2, "meters"),
  4689. weight: math.unit(120, "kg"),
  4690. name: "Front",
  4691. image: {
  4692. source: "./media/characters/miranda/front.svg",
  4693. extra: 195 / 185,
  4694. bottom: 10.9 / 206.5
  4695. }
  4696. },
  4697. back: {
  4698. height: math.unit(2, "meters"),
  4699. weight: math.unit(120, "kg"),
  4700. name: "Back",
  4701. image: {
  4702. source: "./media/characters/miranda/back.svg",
  4703. extra: 201 / 193,
  4704. bottom: 2.3 / 203.7
  4705. }
  4706. },
  4707. },
  4708. [
  4709. {
  4710. name: "Normal",
  4711. height: math.unit(10, "feet"),
  4712. default: true
  4713. }
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "James", species: ["deer"], tags: ["anthro"] },
  4718. {
  4719. side: {
  4720. height: math.unit(2, "meters"),
  4721. weight: math.unit(100, "kg"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/james/front.svg",
  4725. extra: 10 / 8.5
  4726. }
  4727. },
  4728. },
  4729. [
  4730. {
  4731. name: "Normal",
  4732. height: math.unit(8.5, "feet"),
  4733. default: true
  4734. }
  4735. ]
  4736. ))
  4737. characterMakers.push(() => makeCharacter(
  4738. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4739. {
  4740. side: {
  4741. height: math.unit(9.5, "feet"),
  4742. weight: math.unit(2500, "lbs"),
  4743. name: "Side",
  4744. image: {
  4745. source: "./media/characters/heather/side.svg"
  4746. }
  4747. },
  4748. },
  4749. [
  4750. {
  4751. name: "Normal",
  4752. height: math.unit(9.5, "feet"),
  4753. default: true
  4754. }
  4755. ]
  4756. ))
  4757. characterMakers.push(() => makeCharacter(
  4758. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4759. {
  4760. side: {
  4761. height: math.unit(6.5, "feet"),
  4762. weight: math.unit(400, "lbs"),
  4763. name: "Side",
  4764. image: {
  4765. source: "./media/characters/lukas/side.svg",
  4766. extra: 7.25 / 6.5
  4767. }
  4768. },
  4769. },
  4770. [
  4771. {
  4772. name: "Normal",
  4773. height: math.unit(6.5, "feet"),
  4774. default: true
  4775. }
  4776. ]
  4777. ))
  4778. characterMakers.push(() => makeCharacter(
  4779. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4780. {
  4781. side: {
  4782. height: math.unit(5, "feet"),
  4783. weight: math.unit(3000, "lbs"),
  4784. name: "Side",
  4785. image: {
  4786. source: "./media/characters/louise/side.svg"
  4787. }
  4788. },
  4789. },
  4790. [
  4791. {
  4792. name: "Normal",
  4793. height: math.unit(5, "feet"),
  4794. default: true
  4795. }
  4796. ]
  4797. ))
  4798. characterMakers.push(() => makeCharacter(
  4799. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4800. {
  4801. side: {
  4802. height: math.unit(6, "feet"),
  4803. weight: math.unit(150, "lbs"),
  4804. name: "Side",
  4805. image: {
  4806. source: "./media/characters/ramona/side.svg"
  4807. }
  4808. },
  4809. },
  4810. [
  4811. {
  4812. name: "Normal",
  4813. height: math.unit(5.3, "meters"),
  4814. default: true
  4815. },
  4816. {
  4817. name: "Macro",
  4818. height: math.unit(20, "stories")
  4819. },
  4820. {
  4821. name: "Macro+",
  4822. height: math.unit(50, "stories")
  4823. },
  4824. ]
  4825. ))
  4826. characterMakers.push(() => makeCharacter(
  4827. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4828. {
  4829. standing: {
  4830. height: math.unit(5.75, "feet"),
  4831. weight: math.unit(160, "lbs"),
  4832. name: "Standing",
  4833. image: {
  4834. source: "./media/characters/deerpuff/standing.svg",
  4835. extra: 682 / 624
  4836. }
  4837. },
  4838. sitting: {
  4839. height: math.unit(5.75 / 1.79, "feet"),
  4840. weight: math.unit(160, "lbs"),
  4841. name: "Sitting",
  4842. image: {
  4843. source: "./media/characters/deerpuff/sitting.svg",
  4844. bottom: 44 / 400,
  4845. extra: 1
  4846. }
  4847. },
  4848. taurLaying: {
  4849. height: math.unit(6, "feet"),
  4850. weight: math.unit(400, "lbs"),
  4851. name: "Taur (Laying)",
  4852. image: {
  4853. source: "./media/characters/deerpuff/taur-laying.svg"
  4854. }
  4855. },
  4856. },
  4857. [
  4858. {
  4859. name: "Puffball",
  4860. height: math.unit(6, "inches")
  4861. },
  4862. {
  4863. name: "Normalpuff",
  4864. height: math.unit(5.75, "feet")
  4865. },
  4866. {
  4867. name: "Macropuff",
  4868. height: math.unit(1500, "feet"),
  4869. default: true
  4870. },
  4871. {
  4872. name: "Megapuff",
  4873. height: math.unit(500, "miles")
  4874. },
  4875. {
  4876. name: "Gigapuff",
  4877. height: math.unit(250000, "miles")
  4878. },
  4879. {
  4880. name: "Omegapuff",
  4881. height: math.unit(1000, "lightyears")
  4882. },
  4883. ]
  4884. ))
  4885. characterMakers.push(() => makeCharacter(
  4886. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4887. {
  4888. stomping: {
  4889. height: math.unit(6, "feet"),
  4890. weight: math.unit(170, "lbs"),
  4891. name: "Stomping",
  4892. image: {
  4893. source: "./media/characters/vivian/stomping.svg"
  4894. }
  4895. },
  4896. sitting: {
  4897. height: math.unit(6 / 1.75, "feet"),
  4898. weight: math.unit(170, "lbs"),
  4899. name: "Sitting",
  4900. image: {
  4901. source: "./media/characters/vivian/sitting.svg",
  4902. bottom: 1 / 6.4,
  4903. extra: 1,
  4904. }
  4905. },
  4906. },
  4907. [
  4908. {
  4909. name: "Normal",
  4910. height: math.unit(7, "feet"),
  4911. default: true
  4912. },
  4913. {
  4914. name: "Macro",
  4915. height: math.unit(10, "stories")
  4916. },
  4917. {
  4918. name: "Macro+",
  4919. height: math.unit(30, "stories")
  4920. },
  4921. {
  4922. name: "Megamacro",
  4923. height: math.unit(10, "miles")
  4924. },
  4925. {
  4926. name: "Megamacro+",
  4927. height: math.unit(2750000, "meters")
  4928. },
  4929. ]
  4930. ))
  4931. characterMakers.push(() => makeCharacter(
  4932. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4933. {
  4934. front: {
  4935. height: math.unit(6, "feet"),
  4936. weight: math.unit(160, "lbs"),
  4937. name: "Front",
  4938. image: {
  4939. source: "./media/characters/prince/front.svg",
  4940. extra: 3400 / 3000
  4941. }
  4942. },
  4943. jumping: {
  4944. height: math.unit(6, "feet"),
  4945. weight: math.unit(160, "lbs"),
  4946. name: "Jumping",
  4947. image: {
  4948. source: "./media/characters/prince/jump.svg",
  4949. extra: 2555 / 2134
  4950. }
  4951. },
  4952. },
  4953. [
  4954. {
  4955. name: "Normal",
  4956. height: math.unit(7.75, "feet"),
  4957. default: true
  4958. },
  4959. {
  4960. name: "Not cute",
  4961. height: math.unit(17, "feet")
  4962. },
  4963. {
  4964. name: "I said NOT",
  4965. height: math.unit(91, "feet")
  4966. },
  4967. {
  4968. name: "Please stop",
  4969. height: math.unit(560, "feet")
  4970. },
  4971. {
  4972. name: "What have you done",
  4973. height: math.unit(2200, "feet")
  4974. },
  4975. {
  4976. name: "Deer God",
  4977. height: math.unit(3.6, "miles")
  4978. },
  4979. ]
  4980. ))
  4981. characterMakers.push(() => makeCharacter(
  4982. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4983. {
  4984. standing: {
  4985. height: math.unit(6, "feet"),
  4986. weight: math.unit(300, "lbs"),
  4987. name: "Standing",
  4988. image: {
  4989. source: "./media/characters/psymon/standing.svg",
  4990. extra: 1888 / 1810,
  4991. bottom: 0.05
  4992. }
  4993. },
  4994. slithering: {
  4995. height: math.unit(6, "feet"),
  4996. weight: math.unit(300, "lbs"),
  4997. name: "Slithering",
  4998. image: {
  4999. source: "./media/characters/psymon/slithering.svg",
  5000. extra: 1330 / 1224
  5001. }
  5002. },
  5003. slitheringAlt: {
  5004. height: math.unit(6, "feet"),
  5005. weight: math.unit(300, "lbs"),
  5006. name: "Slithering (Alt)",
  5007. image: {
  5008. source: "./media/characters/psymon/slithering-alt.svg",
  5009. extra: 1330 / 1224
  5010. }
  5011. },
  5012. },
  5013. [
  5014. {
  5015. name: "Normal",
  5016. height: math.unit(11.25, "feet"),
  5017. default: true
  5018. },
  5019. {
  5020. name: "Large",
  5021. height: math.unit(27, "feet")
  5022. },
  5023. {
  5024. name: "Giant",
  5025. height: math.unit(87, "feet")
  5026. },
  5027. {
  5028. name: "Macro",
  5029. height: math.unit(365, "feet")
  5030. },
  5031. {
  5032. name: "Megamacro",
  5033. height: math.unit(3, "miles")
  5034. },
  5035. {
  5036. name: "World Serpent",
  5037. height: math.unit(8000, "miles")
  5038. },
  5039. ]
  5040. ))
  5041. characterMakers.push(() => makeCharacter(
  5042. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5043. {
  5044. front: {
  5045. height: math.unit(6, "feet"),
  5046. weight: math.unit(180, "lbs"),
  5047. name: "Front",
  5048. image: {
  5049. source: "./media/characters/daimos/front.svg",
  5050. extra: 4160 / 3897,
  5051. bottom: 0.021
  5052. }
  5053. }
  5054. },
  5055. [
  5056. {
  5057. name: "Normal",
  5058. height: math.unit(8, "feet"),
  5059. default: true
  5060. },
  5061. {
  5062. name: "Big Dog",
  5063. height: math.unit(22, "feet")
  5064. },
  5065. {
  5066. name: "Macro",
  5067. height: math.unit(127, "feet")
  5068. },
  5069. {
  5070. name: "Megamacro",
  5071. height: math.unit(3600, "feet")
  5072. },
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5077. {
  5078. side: {
  5079. height: math.unit(6, "feet"),
  5080. weight: math.unit(180, "lbs"),
  5081. name: "Side",
  5082. image: {
  5083. source: "./media/characters/blake/side.svg",
  5084. extra: 1212 / 1120,
  5085. bottom: 0.05
  5086. }
  5087. },
  5088. crouched: {
  5089. height: math.unit(6 * 0.57, "feet"),
  5090. weight: math.unit(180, "lbs"),
  5091. name: "Crouched",
  5092. image: {
  5093. source: "./media/characters/blake/crouched.svg",
  5094. extra: 840 / 587,
  5095. bottom: 0.04
  5096. }
  5097. },
  5098. bent: {
  5099. height: math.unit(6 * 0.75, "feet"),
  5100. weight: math.unit(180, "lbs"),
  5101. name: "Bent",
  5102. image: {
  5103. source: "./media/characters/blake/bent.svg",
  5104. extra: 592 / 544,
  5105. bottom: 0.035
  5106. }
  5107. },
  5108. },
  5109. [
  5110. {
  5111. name: "Normal",
  5112. height: math.unit(8 + 1 / 6, "feet"),
  5113. default: true
  5114. },
  5115. {
  5116. name: "Big Backside",
  5117. height: math.unit(37, "feet")
  5118. },
  5119. {
  5120. name: "Subway Shredder",
  5121. height: math.unit(72, "feet")
  5122. },
  5123. {
  5124. name: "City Carver",
  5125. height: math.unit(1675, "feet")
  5126. },
  5127. {
  5128. name: "Tectonic Tweaker",
  5129. height: math.unit(2300, "miles")
  5130. },
  5131. ]
  5132. ))
  5133. characterMakers.push(() => makeCharacter(
  5134. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5135. {
  5136. front: {
  5137. height: math.unit(6, "feet"),
  5138. weight: math.unit(180, "lbs"),
  5139. name: "Front",
  5140. image: {
  5141. source: "./media/characters/guisetto/front.svg",
  5142. extra: 856 / 817,
  5143. bottom: 0.06
  5144. }
  5145. },
  5146. airborne: {
  5147. height: math.unit(6, "feet"),
  5148. weight: math.unit(180, "lbs"),
  5149. name: "Airborne",
  5150. image: {
  5151. source: "./media/characters/guisetto/airborne.svg",
  5152. extra: 584 / 525
  5153. }
  5154. },
  5155. },
  5156. [
  5157. {
  5158. name: "Normal",
  5159. height: math.unit(10 + 11 / 12, "feet"),
  5160. default: true
  5161. },
  5162. {
  5163. name: "Large",
  5164. height: math.unit(35, "feet")
  5165. },
  5166. {
  5167. name: "Macro",
  5168. height: math.unit(475, "feet")
  5169. },
  5170. ]
  5171. ))
  5172. characterMakers.push(() => makeCharacter(
  5173. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5174. {
  5175. front: {
  5176. height: math.unit(6, "feet"),
  5177. weight: math.unit(180, "lbs"),
  5178. name: "Front",
  5179. image: {
  5180. source: "./media/characters/luxor/front.svg",
  5181. extra: 2940 / 2152
  5182. }
  5183. },
  5184. back: {
  5185. height: math.unit(6, "feet"),
  5186. weight: math.unit(180, "lbs"),
  5187. name: "Back",
  5188. image: {
  5189. source: "./media/characters/luxor/back.svg",
  5190. extra: 1083 / 960
  5191. }
  5192. },
  5193. },
  5194. [
  5195. {
  5196. name: "Normal",
  5197. height: math.unit(5 + 5 / 6, "feet"),
  5198. default: true
  5199. },
  5200. {
  5201. name: "Lamp",
  5202. height: math.unit(50, "feet")
  5203. },
  5204. {
  5205. name: "Lämp",
  5206. height: math.unit(300, "feet")
  5207. },
  5208. {
  5209. name: "The sun is a lamp",
  5210. height: math.unit(250000, "miles")
  5211. },
  5212. ]
  5213. ))
  5214. characterMakers.push(() => makeCharacter(
  5215. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5216. {
  5217. front: {
  5218. height: math.unit(6, "feet"),
  5219. weight: math.unit(50, "lbs"),
  5220. name: "Front",
  5221. image: {
  5222. source: "./media/characters/huoyan/front.svg"
  5223. }
  5224. },
  5225. side: {
  5226. height: math.unit(6, "feet"),
  5227. weight: math.unit(180, "lbs"),
  5228. name: "Side",
  5229. image: {
  5230. source: "./media/characters/huoyan/side.svg"
  5231. }
  5232. },
  5233. },
  5234. [
  5235. {
  5236. name: "Chef",
  5237. height: math.unit(9, "feet")
  5238. },
  5239. {
  5240. name: "Normal",
  5241. height: math.unit(65, "feet"),
  5242. default: true
  5243. },
  5244. {
  5245. name: "Macro",
  5246. height: math.unit(780, "feet")
  5247. },
  5248. {
  5249. name: "Flaming Mountain",
  5250. height: math.unit(4.8, "miles")
  5251. },
  5252. {
  5253. name: "Celestial",
  5254. height: math.unit(765000, "miles")
  5255. },
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5260. {
  5261. front: {
  5262. height: math.unit(5 + 3 / 4, "feet"),
  5263. weight: math.unit(120, "lbs"),
  5264. name: "Front",
  5265. image: {
  5266. source: "./media/characters/tails/front.svg"
  5267. }
  5268. }
  5269. },
  5270. [
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(5 + 3 / 4, "feet"),
  5274. default: true
  5275. }
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5280. {
  5281. front: {
  5282. height: math.unit(4, "feet"),
  5283. weight: math.unit(50, "lbs"),
  5284. name: "Front",
  5285. image: {
  5286. source: "./media/characters/rainy/front.svg"
  5287. }
  5288. }
  5289. },
  5290. [
  5291. {
  5292. name: "Macro",
  5293. height: math.unit(800, "feet"),
  5294. default: true
  5295. }
  5296. ]
  5297. ))
  5298. characterMakers.push(() => makeCharacter(
  5299. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5300. {
  5301. front: {
  5302. height: math.unit(6, "feet"),
  5303. weight: math.unit(150, "lbs"),
  5304. name: "Front",
  5305. image: {
  5306. source: "./media/characters/rainier/front.svg"
  5307. }
  5308. }
  5309. },
  5310. [
  5311. {
  5312. name: "Micro",
  5313. height: math.unit(2, "mm"),
  5314. default: true
  5315. }
  5316. ]
  5317. ))
  5318. characterMakers.push(() => makeCharacter(
  5319. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5320. {
  5321. front: {
  5322. height: math.unit(6, "feet"),
  5323. weight: math.unit(180, "lbs"),
  5324. name: "Front",
  5325. image: {
  5326. source: "./media/characters/andy/front.svg"
  5327. }
  5328. }
  5329. },
  5330. [
  5331. {
  5332. name: "Normal",
  5333. height: math.unit(8, "feet"),
  5334. default: true
  5335. },
  5336. {
  5337. name: "Macro",
  5338. height: math.unit(1000, "feet")
  5339. },
  5340. {
  5341. name: "Megamacro",
  5342. height: math.unit(5, "miles")
  5343. },
  5344. {
  5345. name: "Gigamacro",
  5346. height: math.unit(5000, "miles")
  5347. },
  5348. ]
  5349. ))
  5350. characterMakers.push(() => makeCharacter(
  5351. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5352. {
  5353. front: {
  5354. height: math.unit(6, "feet"),
  5355. weight: math.unit(210, "lbs"),
  5356. name: "Front",
  5357. image: {
  5358. source: "./media/characters/cimmaron/front-sfw.svg",
  5359. extra: 701 / 676,
  5360. bottom: 0.046
  5361. }
  5362. },
  5363. back: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(210, "lbs"),
  5366. name: "Back",
  5367. image: {
  5368. source: "./media/characters/cimmaron/back-sfw.svg",
  5369. extra: 701 / 676,
  5370. bottom: 0.046
  5371. }
  5372. },
  5373. frontNsfw: {
  5374. height: math.unit(6, "feet"),
  5375. weight: math.unit(210, "lbs"),
  5376. name: "Front (NSFW)",
  5377. image: {
  5378. source: "./media/characters/cimmaron/front-nsfw.svg",
  5379. extra: 701 / 676,
  5380. bottom: 0.046
  5381. }
  5382. },
  5383. backNsfw: {
  5384. height: math.unit(6, "feet"),
  5385. weight: math.unit(210, "lbs"),
  5386. name: "Back (NSFW)",
  5387. image: {
  5388. source: "./media/characters/cimmaron/back-nsfw.svg",
  5389. extra: 701 / 676,
  5390. bottom: 0.046
  5391. }
  5392. },
  5393. dick: {
  5394. height: math.unit(1.714, "feet"),
  5395. name: "Dick",
  5396. image: {
  5397. source: "./media/characters/cimmaron/dick.svg"
  5398. }
  5399. },
  5400. },
  5401. [
  5402. {
  5403. name: "Normal",
  5404. height: math.unit(6, "feet"),
  5405. default: true
  5406. },
  5407. {
  5408. name: "Macro Mayor",
  5409. height: math.unit(350, "meters")
  5410. },
  5411. ]
  5412. ))
  5413. characterMakers.push(() => makeCharacter(
  5414. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5415. {
  5416. front: {
  5417. height: math.unit(6, "feet"),
  5418. weight: math.unit(200, "lbs"),
  5419. name: "Front",
  5420. image: {
  5421. source: "./media/characters/akari/front.svg",
  5422. extra: 962 / 901,
  5423. bottom: 0.04
  5424. }
  5425. }
  5426. },
  5427. [
  5428. {
  5429. name: "Micro",
  5430. height: math.unit(5, "inches"),
  5431. default: true
  5432. },
  5433. {
  5434. name: "Normal",
  5435. height: math.unit(7, "feet")
  5436. },
  5437. ]
  5438. ))
  5439. characterMakers.push(() => makeCharacter(
  5440. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5441. {
  5442. front: {
  5443. height: math.unit(6, "feet"),
  5444. weight: math.unit(140, "lbs"),
  5445. name: "Front",
  5446. image: {
  5447. source: "./media/characters/cynosura/front.svg",
  5448. extra: 896 / 847
  5449. }
  5450. },
  5451. back: {
  5452. height: math.unit(6, "feet"),
  5453. weight: math.unit(140, "lbs"),
  5454. name: "Back",
  5455. image: {
  5456. source: "./media/characters/cynosura/back.svg",
  5457. extra: 1365 / 1250
  5458. }
  5459. },
  5460. },
  5461. [
  5462. {
  5463. name: "Micro",
  5464. height: math.unit(4, "inches")
  5465. },
  5466. {
  5467. name: "Normal",
  5468. height: math.unit(5.75, "feet"),
  5469. default: true
  5470. },
  5471. {
  5472. name: "Tall",
  5473. height: math.unit(10, "feet")
  5474. },
  5475. {
  5476. name: "Big",
  5477. height: math.unit(20, "feet")
  5478. },
  5479. {
  5480. name: "Macro",
  5481. height: math.unit(50, "feet")
  5482. },
  5483. ]
  5484. ))
  5485. characterMakers.push(() => makeCharacter(
  5486. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5487. {
  5488. front: {
  5489. height: math.unit(6, "feet"),
  5490. weight: math.unit(170, "lbs"),
  5491. name: "Front",
  5492. image: {
  5493. source: "./media/characters/gin/front.svg",
  5494. extra: 1.053,
  5495. bottom: 0.025
  5496. }
  5497. },
  5498. foot: {
  5499. height: math.unit(6 / 4.25, "feet"),
  5500. name: "Foot",
  5501. image: {
  5502. source: "./media/characters/gin/foot.svg"
  5503. }
  5504. },
  5505. sole: {
  5506. height: math.unit(6 / 4.40, "feet"),
  5507. name: "Sole",
  5508. image: {
  5509. source: "./media/characters/gin/sole.svg"
  5510. }
  5511. },
  5512. },
  5513. [
  5514. {
  5515. name: "Normal",
  5516. height: math.unit(13 + 2 / 12, "feet")
  5517. },
  5518. {
  5519. name: "Macro",
  5520. height: math.unit(1500, "feet")
  5521. },
  5522. {
  5523. name: "Megamacro",
  5524. height: math.unit(200, "miles"),
  5525. default: true
  5526. },
  5527. {
  5528. name: "Gigamacro",
  5529. height: math.unit(500, "megameters")
  5530. },
  5531. {
  5532. name: "Teramacro",
  5533. height: math.unit(15, "lightyears")
  5534. }
  5535. ]
  5536. ))
  5537. characterMakers.push(() => makeCharacter(
  5538. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5539. {
  5540. front: {
  5541. height: math.unit(6 + 1 / 6, "feet"),
  5542. weight: math.unit(178, "lbs"),
  5543. name: "Front",
  5544. image: {
  5545. source: "./media/characters/guy/front.svg"
  5546. }
  5547. }
  5548. },
  5549. [
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(6 + 1 / 6, "feet"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Large",
  5557. height: math.unit(25 + 7 / 12, "feet")
  5558. },
  5559. {
  5560. name: "Macro",
  5561. height: math.unit(60 + 9 / 12, "feet")
  5562. },
  5563. {
  5564. name: "Macro+",
  5565. height: math.unit(246, "feet")
  5566. },
  5567. {
  5568. name: "Macro++",
  5569. height: math.unit(878, "feet")
  5570. }
  5571. ]
  5572. ))
  5573. characterMakers.push(() => makeCharacter(
  5574. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5575. {
  5576. front: {
  5577. height: math.unit(9, "feet"),
  5578. weight: math.unit(800, "lbs"),
  5579. name: "Front",
  5580. image: {
  5581. source: "./media/characters/tiberius/front.svg",
  5582. extra: 2295 / 2071
  5583. }
  5584. },
  5585. back: {
  5586. height: math.unit(9, "feet"),
  5587. weight: math.unit(800, "lbs"),
  5588. name: "Back",
  5589. image: {
  5590. source: "./media/characters/tiberius/back.svg",
  5591. extra: 2373 / 2160
  5592. }
  5593. },
  5594. },
  5595. [
  5596. {
  5597. name: "Normal",
  5598. height: math.unit(9, "feet"),
  5599. default: true
  5600. }
  5601. ]
  5602. ))
  5603. characterMakers.push(() => makeCharacter(
  5604. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5605. {
  5606. front: {
  5607. height: math.unit(6, "feet"),
  5608. weight: math.unit(600, "lbs"),
  5609. name: "Front",
  5610. image: {
  5611. source: "./media/characters/surgo/front.svg",
  5612. extra: 3591 / 2227
  5613. }
  5614. },
  5615. back: {
  5616. height: math.unit(6, "feet"),
  5617. weight: math.unit(600, "lbs"),
  5618. name: "Back",
  5619. image: {
  5620. source: "./media/characters/surgo/back.svg",
  5621. extra: 3557 / 2228
  5622. }
  5623. },
  5624. laying: {
  5625. height: math.unit(6 * 0.85, "feet"),
  5626. weight: math.unit(600, "lbs"),
  5627. name: "Laying",
  5628. image: {
  5629. source: "./media/characters/surgo/laying.svg"
  5630. }
  5631. },
  5632. },
  5633. [
  5634. {
  5635. name: "Normal",
  5636. height: math.unit(6, "feet"),
  5637. default: true
  5638. }
  5639. ]
  5640. ))
  5641. characterMakers.push(() => makeCharacter(
  5642. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5643. {
  5644. side: {
  5645. height: math.unit(6, "feet"),
  5646. weight: math.unit(150, "lbs"),
  5647. name: "Side",
  5648. image: {
  5649. source: "./media/characters/cibus/side.svg",
  5650. extra: 800 / 400
  5651. }
  5652. },
  5653. },
  5654. [
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(6, "feet"),
  5658. default: true
  5659. }
  5660. ]
  5661. ))
  5662. characterMakers.push(() => makeCharacter(
  5663. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5664. {
  5665. front: {
  5666. height: math.unit(6, "feet"),
  5667. weight: math.unit(240, "lbs"),
  5668. name: "Front",
  5669. image: {
  5670. source: "./media/characters/nibbles/front.svg"
  5671. }
  5672. },
  5673. side: {
  5674. height: math.unit(6, "feet"),
  5675. weight: math.unit(240, "lbs"),
  5676. name: "Side",
  5677. image: {
  5678. source: "./media/characters/nibbles/side.svg"
  5679. }
  5680. },
  5681. },
  5682. [
  5683. {
  5684. name: "Normal",
  5685. height: math.unit(9, "feet"),
  5686. default: true
  5687. }
  5688. ]
  5689. ))
  5690. characterMakers.push(() => makeCharacter(
  5691. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5692. {
  5693. side: {
  5694. height: math.unit(5 + 1 / 6, "feet"),
  5695. weight: math.unit(130, "lbs"),
  5696. name: "Side",
  5697. image: {
  5698. source: "./media/characters/rikky/side.svg",
  5699. extra: 851 / 801
  5700. }
  5701. },
  5702. },
  5703. [
  5704. {
  5705. name: "Normal",
  5706. height: math.unit(5 + 1 / 6, "feet")
  5707. },
  5708. {
  5709. name: "Macro",
  5710. height: math.unit(152, "feet"),
  5711. default: true
  5712. },
  5713. {
  5714. name: "Megamacro",
  5715. height: math.unit(7, "miles")
  5716. }
  5717. ]
  5718. ))
  5719. characterMakers.push(() => makeCharacter(
  5720. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5721. {
  5722. side: {
  5723. height: math.unit(370, "cm"),
  5724. weight: math.unit(350, "lbs"),
  5725. name: "Side",
  5726. image: {
  5727. source: "./media/characters/malfressa/side.svg"
  5728. }
  5729. },
  5730. walking: {
  5731. height: math.unit(370, "cm"),
  5732. weight: math.unit(350, "lbs"),
  5733. name: "Walking",
  5734. image: {
  5735. source: "./media/characters/malfressa/walking.svg"
  5736. }
  5737. },
  5738. feral: {
  5739. height: math.unit(2500, "cm"),
  5740. weight: math.unit(100000, "lbs"),
  5741. name: "Feral",
  5742. image: {
  5743. source: "./media/characters/malfressa/feral.svg",
  5744. extra: 2108 / 837,
  5745. bottom: 0.02
  5746. }
  5747. },
  5748. },
  5749. [
  5750. {
  5751. name: "Normal",
  5752. height: math.unit(370, "cm")
  5753. },
  5754. {
  5755. name: "Macro",
  5756. height: math.unit(300, "meters"),
  5757. default: true
  5758. }
  5759. ]
  5760. ))
  5761. characterMakers.push(() => makeCharacter(
  5762. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5763. {
  5764. front: {
  5765. height: math.unit(6, "feet"),
  5766. weight: math.unit(60, "kg"),
  5767. name: "Front",
  5768. image: {
  5769. source: "./media/characters/jaro/front.svg"
  5770. }
  5771. },
  5772. back: {
  5773. height: math.unit(6, "feet"),
  5774. weight: math.unit(60, "kg"),
  5775. name: "Back",
  5776. image: {
  5777. source: "./media/characters/jaro/back.svg"
  5778. }
  5779. },
  5780. },
  5781. [
  5782. {
  5783. name: "Micro",
  5784. height: math.unit(7, "inches")
  5785. },
  5786. {
  5787. name: "Normal",
  5788. height: math.unit(5.5, "feet"),
  5789. default: true
  5790. },
  5791. {
  5792. name: "Minimacro",
  5793. height: math.unit(20, "feet")
  5794. },
  5795. {
  5796. name: "Macro",
  5797. height: math.unit(200, "meters")
  5798. }
  5799. ]
  5800. ))
  5801. characterMakers.push(() => makeCharacter(
  5802. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5803. {
  5804. front: {
  5805. height: math.unit(6, "feet"),
  5806. weight: math.unit(195, "lb"),
  5807. name: "Front",
  5808. image: {
  5809. source: "./media/characters/rogue/front.svg"
  5810. }
  5811. },
  5812. },
  5813. [
  5814. {
  5815. name: "Macro",
  5816. height: math.unit(90, "feet"),
  5817. default: true
  5818. },
  5819. ]
  5820. ))
  5821. characterMakers.push(() => makeCharacter(
  5822. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5823. {
  5824. front: {
  5825. height: math.unit(5 + 8 / 12, "feet"),
  5826. weight: math.unit(140, "lb"),
  5827. name: "Front",
  5828. image: {
  5829. source: "./media/characters/piper/front.svg",
  5830. extra: 3948/3655,
  5831. bottom: 0/3948
  5832. }
  5833. },
  5834. },
  5835. [
  5836. {
  5837. name: "Micro",
  5838. height: math.unit(2, "inches")
  5839. },
  5840. {
  5841. name: "Normal",
  5842. height: math.unit(5 + 8 / 12, "feet")
  5843. },
  5844. {
  5845. name: "Macro",
  5846. height: math.unit(250, "feet"),
  5847. default: true
  5848. },
  5849. {
  5850. name: "Megamacro",
  5851. height: math.unit(7, "miles")
  5852. },
  5853. ]
  5854. ))
  5855. characterMakers.push(() => makeCharacter(
  5856. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5857. {
  5858. front: {
  5859. height: math.unit(6, "feet"),
  5860. weight: math.unit(220, "lb"),
  5861. name: "Front",
  5862. image: {
  5863. source: "./media/characters/gemini/front.svg"
  5864. }
  5865. },
  5866. back: {
  5867. height: math.unit(6, "feet"),
  5868. weight: math.unit(220, "lb"),
  5869. name: "Back",
  5870. image: {
  5871. source: "./media/characters/gemini/back.svg"
  5872. }
  5873. },
  5874. kneeling: {
  5875. height: math.unit(6 / 1.5, "feet"),
  5876. weight: math.unit(220, "lb"),
  5877. name: "Kneeling",
  5878. image: {
  5879. source: "./media/characters/gemini/kneeling.svg",
  5880. bottom: 0.02
  5881. }
  5882. },
  5883. },
  5884. [
  5885. {
  5886. name: "Macro",
  5887. height: math.unit(300, "meters"),
  5888. default: true
  5889. },
  5890. {
  5891. name: "Megamacro",
  5892. height: math.unit(6900, "meters")
  5893. },
  5894. ]
  5895. ))
  5896. characterMakers.push(() => makeCharacter(
  5897. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5898. {
  5899. anthro: {
  5900. height: math.unit(2.35, "meters"),
  5901. weight: math.unit(73, "kg"),
  5902. name: "Anthro",
  5903. image: {
  5904. source: "./media/characters/alicia/anthro.svg",
  5905. extra: 2571 / 2385,
  5906. bottom: 75 / 2648
  5907. }
  5908. },
  5909. paw: {
  5910. height: math.unit(1.32, "feet"),
  5911. name: "Paw",
  5912. image: {
  5913. source: "./media/characters/alicia/paw.svg"
  5914. }
  5915. },
  5916. feral: {
  5917. height: math.unit(1.69, "meters"),
  5918. weight: math.unit(73, "kg"),
  5919. name: "Feral",
  5920. image: {
  5921. source: "./media/characters/alicia/feral.svg",
  5922. extra: 2123 / 1715,
  5923. bottom: 222 / 2349
  5924. }
  5925. },
  5926. },
  5927. [
  5928. {
  5929. name: "Normal",
  5930. height: math.unit(2.35, "meters")
  5931. },
  5932. {
  5933. name: "Macro",
  5934. height: math.unit(60, "meters"),
  5935. default: true
  5936. },
  5937. {
  5938. name: "Megamacro",
  5939. height: math.unit(10000, "kilometers")
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5945. {
  5946. front: {
  5947. height: math.unit(7, "feet"),
  5948. weight: math.unit(250, "lbs"),
  5949. name: "Front",
  5950. image: {
  5951. source: "./media/characters/archy/front.svg"
  5952. }
  5953. }
  5954. },
  5955. [
  5956. {
  5957. name: "Micro",
  5958. height: math.unit(1, "inch")
  5959. },
  5960. {
  5961. name: "Shorty",
  5962. height: math.unit(5, "feet")
  5963. },
  5964. {
  5965. name: "Normal",
  5966. height: math.unit(7, "feet")
  5967. },
  5968. {
  5969. name: "Macro",
  5970. height: math.unit(600, "meters"),
  5971. default: true
  5972. },
  5973. {
  5974. name: "Megamacro",
  5975. height: math.unit(1, "mile")
  5976. },
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5981. {
  5982. front: {
  5983. height: math.unit(1.65, "meters"),
  5984. weight: math.unit(74, "kg"),
  5985. name: "Front",
  5986. image: {
  5987. source: "./media/characters/berri/front.svg",
  5988. extra: 857 / 837,
  5989. bottom: 18 / 877
  5990. }
  5991. },
  5992. bum: {
  5993. height: math.unit(1.46, "feet"),
  5994. name: "Bum",
  5995. image: {
  5996. source: "./media/characters/berri/bum.svg"
  5997. }
  5998. },
  5999. mouth: {
  6000. height: math.unit(0.44, "feet"),
  6001. name: "Mouth",
  6002. image: {
  6003. source: "./media/characters/berri/mouth.svg"
  6004. }
  6005. },
  6006. paw: {
  6007. height: math.unit(0.826, "feet"),
  6008. name: "Paw",
  6009. image: {
  6010. source: "./media/characters/berri/paw.svg"
  6011. }
  6012. },
  6013. },
  6014. [
  6015. {
  6016. name: "Normal",
  6017. height: math.unit(1.65, "meters")
  6018. },
  6019. {
  6020. name: "Macro",
  6021. height: math.unit(60, "m"),
  6022. default: true
  6023. },
  6024. {
  6025. name: "Megamacro",
  6026. height: math.unit(9.213, "km")
  6027. },
  6028. {
  6029. name: "Planet Eater",
  6030. height: math.unit(489, "megameters")
  6031. },
  6032. {
  6033. name: "Teramacro",
  6034. height: math.unit(2471635000000, "meters")
  6035. },
  6036. {
  6037. name: "Examacro",
  6038. height: math.unit(8.0624e+26, "meters")
  6039. }
  6040. ]
  6041. ))
  6042. characterMakers.push(() => makeCharacter(
  6043. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6044. {
  6045. front: {
  6046. height: math.unit(1.72, "meters"),
  6047. weight: math.unit(68, "kg"),
  6048. name: "Front",
  6049. image: {
  6050. source: "./media/characters/lexi/front.svg"
  6051. }
  6052. }
  6053. },
  6054. [
  6055. {
  6056. name: "Very Smol",
  6057. height: math.unit(10, "mm")
  6058. },
  6059. {
  6060. name: "Micro",
  6061. height: math.unit(6.8, "cm"),
  6062. default: true
  6063. },
  6064. {
  6065. name: "Normal",
  6066. height: math.unit(1.72, "m")
  6067. }
  6068. ]
  6069. ))
  6070. characterMakers.push(() => makeCharacter(
  6071. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6072. {
  6073. front: {
  6074. height: math.unit(1.69, "meters"),
  6075. weight: math.unit(68, "kg"),
  6076. name: "Front",
  6077. image: {
  6078. source: "./media/characters/martin/front.svg",
  6079. extra: 596 / 581
  6080. }
  6081. }
  6082. },
  6083. [
  6084. {
  6085. name: "Micro",
  6086. height: math.unit(6.85, "cm"),
  6087. default: true
  6088. },
  6089. {
  6090. name: "Normal",
  6091. height: math.unit(1.69, "m")
  6092. }
  6093. ]
  6094. ))
  6095. characterMakers.push(() => makeCharacter(
  6096. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6097. {
  6098. front: {
  6099. height: math.unit(1.69, "meters"),
  6100. weight: math.unit(68, "kg"),
  6101. name: "Front",
  6102. image: {
  6103. source: "./media/characters/juno/front.svg"
  6104. }
  6105. }
  6106. },
  6107. [
  6108. {
  6109. name: "Micro",
  6110. height: math.unit(7, "cm")
  6111. },
  6112. {
  6113. name: "Normal",
  6114. height: math.unit(1.89, "m")
  6115. },
  6116. {
  6117. name: "Macro",
  6118. height: math.unit(353, "meters"),
  6119. default: true
  6120. }
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6125. {
  6126. front: {
  6127. height: math.unit(1.93, "meters"),
  6128. weight: math.unit(83, "kg"),
  6129. name: "Front",
  6130. image: {
  6131. source: "./media/characters/samantha/front.svg"
  6132. }
  6133. },
  6134. frontClothed: {
  6135. height: math.unit(1.93, "meters"),
  6136. weight: math.unit(83, "kg"),
  6137. name: "Front (Clothed)",
  6138. image: {
  6139. source: "./media/characters/samantha/front-clothed.svg"
  6140. }
  6141. },
  6142. back: {
  6143. height: math.unit(1.93, "meters"),
  6144. weight: math.unit(83, "kg"),
  6145. name: "Back",
  6146. image: {
  6147. source: "./media/characters/samantha/back.svg"
  6148. }
  6149. },
  6150. },
  6151. [
  6152. {
  6153. name: "Normal",
  6154. height: math.unit(1.93, "m")
  6155. },
  6156. {
  6157. name: "Macro",
  6158. height: math.unit(74, "meters"),
  6159. default: true
  6160. },
  6161. {
  6162. name: "Macro+",
  6163. height: math.unit(223, "meters"),
  6164. },
  6165. {
  6166. name: "Megamacro",
  6167. height: math.unit(8381, "meters"),
  6168. },
  6169. {
  6170. name: "Megamacro+",
  6171. height: math.unit(12000, "kilometers")
  6172. },
  6173. ]
  6174. ))
  6175. characterMakers.push(() => makeCharacter(
  6176. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6177. {
  6178. front: {
  6179. height: math.unit(1.92, "meters"),
  6180. weight: math.unit(80, "kg"),
  6181. name: "Front",
  6182. image: {
  6183. source: "./media/characters/dr-clay/front.svg"
  6184. }
  6185. },
  6186. frontClothed: {
  6187. height: math.unit(1.92, "meters"),
  6188. weight: math.unit(80, "kg"),
  6189. name: "Front (Clothed)",
  6190. image: {
  6191. source: "./media/characters/dr-clay/front-clothed.svg"
  6192. }
  6193. }
  6194. },
  6195. [
  6196. {
  6197. name: "Normal",
  6198. height: math.unit(1.92, "m")
  6199. },
  6200. {
  6201. name: "Macro",
  6202. height: math.unit(214, "meters"),
  6203. default: true
  6204. },
  6205. {
  6206. name: "Macro+",
  6207. height: math.unit(12.237, "meters"),
  6208. },
  6209. {
  6210. name: "Megamacro",
  6211. height: math.unit(557, "megameters"),
  6212. },
  6213. {
  6214. name: "Unimaginable",
  6215. height: math.unit(120e9, "lightyears")
  6216. },
  6217. ]
  6218. ))
  6219. characterMakers.push(() => makeCharacter(
  6220. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6221. {
  6222. front: {
  6223. height: math.unit(2, "meters"),
  6224. weight: math.unit(80, "kg"),
  6225. name: "Front",
  6226. image: {
  6227. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6228. }
  6229. }
  6230. },
  6231. [
  6232. {
  6233. name: "Teramacro",
  6234. height: math.unit(500000, "lightyears"),
  6235. default: true
  6236. },
  6237. ]
  6238. ))
  6239. characterMakers.push(() => makeCharacter(
  6240. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6241. {
  6242. front: {
  6243. height: math.unit(2, "meters"),
  6244. weight: math.unit(150, "kg"),
  6245. name: "Front",
  6246. image: {
  6247. source: "./media/characters/vemus/front.svg",
  6248. extra: 2384 / 2084,
  6249. bottom: 0.0123
  6250. }
  6251. }
  6252. },
  6253. [
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(3.75, "meters"),
  6257. default: true
  6258. },
  6259. {
  6260. name: "Big",
  6261. height: math.unit(8, "meters")
  6262. },
  6263. {
  6264. name: "Macro",
  6265. height: math.unit(100, "meters")
  6266. },
  6267. {
  6268. name: "Macro+",
  6269. height: math.unit(1500, "meters")
  6270. },
  6271. {
  6272. name: "Stellar",
  6273. height: math.unit(14e8, "meters")
  6274. },
  6275. ]
  6276. ))
  6277. characterMakers.push(() => makeCharacter(
  6278. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6279. {
  6280. front: {
  6281. height: math.unit(2, "meters"),
  6282. weight: math.unit(70, "kg"),
  6283. name: "Front",
  6284. image: {
  6285. source: "./media/characters/beherit/front.svg",
  6286. extra: 1408 / 1242
  6287. }
  6288. }
  6289. },
  6290. [
  6291. {
  6292. name: "Normal",
  6293. height: math.unit(6, "feet")
  6294. },
  6295. {
  6296. name: "Lorg",
  6297. height: math.unit(25, "feet"),
  6298. default: true
  6299. },
  6300. {
  6301. name: "Lorger",
  6302. height: math.unit(75, "feet")
  6303. },
  6304. {
  6305. name: "Macro",
  6306. height: math.unit(200, "meters")
  6307. },
  6308. ]
  6309. ))
  6310. characterMakers.push(() => makeCharacter(
  6311. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6312. {
  6313. front: {
  6314. height: math.unit(2, "meters"),
  6315. weight: math.unit(150, "kg"),
  6316. name: "Front",
  6317. image: {
  6318. source: "./media/characters/everett/front.svg",
  6319. extra: 2038 / 1737,
  6320. bottom: 0.03
  6321. }
  6322. },
  6323. paw: {
  6324. height: math.unit(2 / 3.6, "meters"),
  6325. name: "Paw",
  6326. image: {
  6327. source: "./media/characters/everett/paw.svg"
  6328. }
  6329. },
  6330. },
  6331. [
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(15, "feet"),
  6335. default: true
  6336. },
  6337. {
  6338. name: "Lorg",
  6339. height: math.unit(70, "feet"),
  6340. default: true
  6341. },
  6342. {
  6343. name: "Lorger",
  6344. height: math.unit(250, "feet")
  6345. },
  6346. {
  6347. name: "Macro",
  6348. height: math.unit(500, "meters")
  6349. },
  6350. ]
  6351. ))
  6352. characterMakers.push(() => makeCharacter(
  6353. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6354. {
  6355. front: {
  6356. height: math.unit(2, "meters"),
  6357. weight: math.unit(86, "kg"),
  6358. name: "Front",
  6359. image: {
  6360. source: "./media/characters/rose/front.svg",
  6361. extra: 350/335,
  6362. bottom: 10/360
  6363. }
  6364. },
  6365. frontAlt: {
  6366. height: math.unit(1.6, "meters"),
  6367. weight: math.unit(86, "kg"),
  6368. name: "Front (Alt)",
  6369. image: {
  6370. source: "./media/characters/rose/front-alt.svg",
  6371. extra: 299/283,
  6372. bottom: 3/302
  6373. }
  6374. },
  6375. plush: {
  6376. height: math.unit(2, "meters"),
  6377. weight: math.unit(86/3, "kg"),
  6378. name: "Plush",
  6379. image: {
  6380. source: "./media/characters/rose/plush.svg",
  6381. extra: 361/337,
  6382. bottom: 11/372
  6383. }
  6384. },
  6385. },
  6386. [
  6387. {
  6388. name: "Mini-Micro",
  6389. height: math.unit(1, "cm")
  6390. },
  6391. {
  6392. name: "Micro",
  6393. height: math.unit(3.5, "inches"),
  6394. default: true
  6395. },
  6396. {
  6397. name: "Normal",
  6398. height: math.unit(6 + 1 / 6, "feet")
  6399. },
  6400. {
  6401. name: "Mini-Macro",
  6402. height: math.unit(9 + 10 / 12, "feet")
  6403. },
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6408. {
  6409. front: {
  6410. height: math.unit(2, "meters"),
  6411. weight: math.unit(350, "lbs"),
  6412. name: "Front",
  6413. image: {
  6414. source: "./media/characters/regal/front.svg"
  6415. }
  6416. },
  6417. back: {
  6418. height: math.unit(2, "meters"),
  6419. weight: math.unit(350, "lbs"),
  6420. name: "Back",
  6421. image: {
  6422. source: "./media/characters/regal/back.svg"
  6423. }
  6424. },
  6425. },
  6426. [
  6427. {
  6428. name: "Macro",
  6429. height: math.unit(350, "feet"),
  6430. default: true
  6431. }
  6432. ]
  6433. ))
  6434. characterMakers.push(() => makeCharacter(
  6435. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6436. {
  6437. front: {
  6438. height: math.unit(4 + 11 / 12, "feet"),
  6439. weight: math.unit(100, "lbs"),
  6440. name: "Front",
  6441. image: {
  6442. source: "./media/characters/opal/front.svg"
  6443. }
  6444. },
  6445. frontAlt: {
  6446. height: math.unit(4 + 11 / 12, "feet"),
  6447. weight: math.unit(100, "lbs"),
  6448. name: "Front (Alt)",
  6449. image: {
  6450. source: "./media/characters/opal/front-alt.svg"
  6451. }
  6452. },
  6453. },
  6454. [
  6455. {
  6456. name: "Small",
  6457. height: math.unit(4 + 11 / 12, "feet")
  6458. },
  6459. {
  6460. name: "Normal",
  6461. height: math.unit(20, "feet"),
  6462. default: true
  6463. },
  6464. {
  6465. name: "Macro",
  6466. height: math.unit(120, "feet")
  6467. },
  6468. {
  6469. name: "Megamacro",
  6470. height: math.unit(80, "miles")
  6471. },
  6472. {
  6473. name: "True Size",
  6474. height: math.unit(100000, "lightyears")
  6475. },
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(200, "lbs"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/vector-wuff/front.svg"
  6487. }
  6488. }
  6489. },
  6490. [
  6491. {
  6492. name: "Normal",
  6493. height: math.unit(2.8, "meters")
  6494. },
  6495. {
  6496. name: "Macro",
  6497. height: math.unit(450, "meters"),
  6498. default: true
  6499. },
  6500. {
  6501. name: "Megamacro",
  6502. height: math.unit(15, "kilometers")
  6503. }
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6508. {
  6509. front: {
  6510. height: math.unit(6, "feet"),
  6511. weight: math.unit(256, "lbs"),
  6512. name: "Front",
  6513. image: {
  6514. source: "./media/characters/dannik/front.svg"
  6515. }
  6516. }
  6517. },
  6518. [
  6519. {
  6520. name: "Macro",
  6521. height: math.unit(69.57, "meters"),
  6522. default: true
  6523. },
  6524. ]
  6525. ))
  6526. characterMakers.push(() => makeCharacter(
  6527. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6528. {
  6529. front: {
  6530. height: math.unit(6, "feet"),
  6531. weight: math.unit(120, "lbs"),
  6532. name: "Front",
  6533. image: {
  6534. source: "./media/characters/azura-saharah/front.svg"
  6535. }
  6536. },
  6537. back: {
  6538. height: math.unit(6, "feet"),
  6539. weight: math.unit(120, "lbs"),
  6540. name: "Back",
  6541. image: {
  6542. source: "./media/characters/azura-saharah/back.svg"
  6543. }
  6544. },
  6545. },
  6546. [
  6547. {
  6548. name: "Macro",
  6549. height: math.unit(100, "feet"),
  6550. default: true
  6551. },
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6556. {
  6557. side: {
  6558. height: math.unit(5 + 4 / 12, "feet"),
  6559. weight: math.unit(163, "lbs"),
  6560. name: "Side",
  6561. image: {
  6562. source: "./media/characters/kennedy/side.svg"
  6563. }
  6564. }
  6565. },
  6566. [
  6567. {
  6568. name: "Standard Doggo",
  6569. height: math.unit(5 + 4 / 12, "feet")
  6570. },
  6571. {
  6572. name: "Big Doggo",
  6573. height: math.unit(25 + 3 / 12, "feet"),
  6574. default: true
  6575. },
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(90, "lbs"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/odi-lunar/front.svg"
  6587. }
  6588. }
  6589. },
  6590. [
  6591. {
  6592. name: "Micro",
  6593. height: math.unit(3, "inches"),
  6594. default: true
  6595. },
  6596. {
  6597. name: "Normal",
  6598. height: math.unit(5.5, "feet")
  6599. }
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6604. {
  6605. back: {
  6606. height: math.unit(6, "feet"),
  6607. weight: math.unit(220, "lbs"),
  6608. name: "Back",
  6609. image: {
  6610. source: "./media/characters/mandake/back.svg"
  6611. }
  6612. }
  6613. },
  6614. [
  6615. {
  6616. name: "Normal",
  6617. height: math.unit(7, "feet"),
  6618. default: true
  6619. },
  6620. {
  6621. name: "Macro",
  6622. height: math.unit(78, "feet")
  6623. },
  6624. {
  6625. name: "Macro+",
  6626. height: math.unit(300, "meters")
  6627. },
  6628. {
  6629. name: "Macro++",
  6630. height: math.unit(2400, "feet")
  6631. },
  6632. {
  6633. name: "Megamacro",
  6634. height: math.unit(5167, "meters")
  6635. },
  6636. {
  6637. name: "Gigamacro",
  6638. height: math.unit(41769, "miles")
  6639. },
  6640. ]
  6641. ))
  6642. characterMakers.push(() => makeCharacter(
  6643. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6644. {
  6645. front: {
  6646. height: math.unit(6, "feet"),
  6647. weight: math.unit(120, "lbs"),
  6648. name: "Front",
  6649. image: {
  6650. source: "./media/characters/yozey/front.svg"
  6651. }
  6652. },
  6653. frontAlt: {
  6654. height: math.unit(6, "feet"),
  6655. weight: math.unit(120, "lbs"),
  6656. name: "Front (Alt)",
  6657. image: {
  6658. source: "./media/characters/yozey/front-alt.svg"
  6659. }
  6660. },
  6661. side: {
  6662. height: math.unit(6, "feet"),
  6663. weight: math.unit(120, "lbs"),
  6664. name: "Side",
  6665. image: {
  6666. source: "./media/characters/yozey/side.svg"
  6667. }
  6668. },
  6669. },
  6670. [
  6671. {
  6672. name: "Micro",
  6673. height: math.unit(3, "inches"),
  6674. default: true
  6675. },
  6676. {
  6677. name: "Normal",
  6678. height: math.unit(6, "feet")
  6679. }
  6680. ]
  6681. ))
  6682. characterMakers.push(() => makeCharacter(
  6683. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6684. {
  6685. front: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(103, "lbs"),
  6688. name: "Front",
  6689. image: {
  6690. source: "./media/characters/valeska-voss/front.svg"
  6691. }
  6692. }
  6693. },
  6694. [
  6695. {
  6696. name: "Mini-Sized Sub",
  6697. height: math.unit(3.1, "inches")
  6698. },
  6699. {
  6700. name: "Mid-Sized Sub",
  6701. height: math.unit(6.2, "inches")
  6702. },
  6703. {
  6704. name: "Full-Sized Sub",
  6705. height: math.unit(9.3, "inches")
  6706. },
  6707. {
  6708. name: "Normal",
  6709. height: math.unit(5 + 2 / 12, "foot"),
  6710. default: true
  6711. },
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(6, "feet"),
  6719. weight: math.unit(160, "lbs"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/gene-zeta/front.svg",
  6723. extra: 3006 / 2826,
  6724. bottom: 182 / 3188
  6725. }
  6726. }
  6727. },
  6728. [
  6729. {
  6730. name: "Micro",
  6731. height: math.unit(6, "inches")
  6732. },
  6733. {
  6734. name: "Normal",
  6735. height: math.unit(5 + 11 / 12, "foot"),
  6736. default: true
  6737. },
  6738. {
  6739. name: "Macro",
  6740. height: math.unit(140, "feet")
  6741. },
  6742. {
  6743. name: "Supercharged",
  6744. height: math.unit(2500, "feet")
  6745. },
  6746. ]
  6747. ))
  6748. characterMakers.push(() => makeCharacter(
  6749. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6750. {
  6751. front: {
  6752. height: math.unit(6, "feet"),
  6753. weight: math.unit(350, "lbs"),
  6754. name: "Front",
  6755. image: {
  6756. source: "./media/characters/razinox/front.svg",
  6757. extra: 1686 / 1548,
  6758. bottom: 28.2 / 1868
  6759. }
  6760. },
  6761. back: {
  6762. height: math.unit(6, "feet"),
  6763. weight: math.unit(350, "lbs"),
  6764. name: "Back",
  6765. image: {
  6766. source: "./media/characters/razinox/back.svg",
  6767. extra: 1660 / 1590,
  6768. bottom: 15 / 1665
  6769. }
  6770. },
  6771. },
  6772. [
  6773. {
  6774. name: "Normal",
  6775. height: math.unit(10 + 8 / 12, "foot")
  6776. },
  6777. {
  6778. name: "Minimacro",
  6779. height: math.unit(15, "foot")
  6780. },
  6781. {
  6782. name: "Macro",
  6783. height: math.unit(60, "foot"),
  6784. default: true
  6785. },
  6786. {
  6787. name: "Megamacro",
  6788. height: math.unit(5, "miles")
  6789. },
  6790. {
  6791. name: "Gigamacro",
  6792. height: math.unit(6000, "miles")
  6793. },
  6794. ]
  6795. ))
  6796. characterMakers.push(() => makeCharacter(
  6797. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6798. {
  6799. front: {
  6800. height: math.unit(6, "feet"),
  6801. weight: math.unit(150, "lbs"),
  6802. name: "Front",
  6803. image: {
  6804. source: "./media/characters/cobalt/front.svg"
  6805. }
  6806. }
  6807. },
  6808. [
  6809. {
  6810. name: "Normal",
  6811. height: math.unit(8 + 1 / 12, "foot")
  6812. },
  6813. {
  6814. name: "Macro",
  6815. height: math.unit(111, "foot"),
  6816. default: true
  6817. },
  6818. {
  6819. name: "Supracosmic",
  6820. height: math.unit(1e42, "feet")
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(6, "feet"),
  6829. weight: math.unit(140, "lbs"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/amanda/front.svg"
  6833. }
  6834. }
  6835. },
  6836. [
  6837. {
  6838. name: "Micro",
  6839. height: math.unit(5, "inches"),
  6840. default: true
  6841. },
  6842. ]
  6843. ))
  6844. characterMakers.push(() => makeCharacter(
  6845. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6846. {
  6847. front: {
  6848. height: math.unit(2.75, "meters"),
  6849. weight: math.unit(1200, "lb"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/teal/front.svg",
  6853. extra: 2463 / 2320,
  6854. bottom: 166 / 2629
  6855. }
  6856. },
  6857. back: {
  6858. height: math.unit(2.75, "meters"),
  6859. weight: math.unit(1200, "lb"),
  6860. name: "Back",
  6861. image: {
  6862. source: "./media/characters/teal/back.svg",
  6863. extra: 2580 / 2489,
  6864. bottom: 151 / 2731
  6865. }
  6866. },
  6867. sitting: {
  6868. height: math.unit(1.9, "meters"),
  6869. weight: math.unit(1200, "lb"),
  6870. name: "Sitting",
  6871. image: {
  6872. source: "./media/characters/teal/sitting.svg",
  6873. extra: 623 / 590,
  6874. bottom: 121 / 744
  6875. }
  6876. },
  6877. standing: {
  6878. height: math.unit(2.75, "meters"),
  6879. weight: math.unit(1200, "lb"),
  6880. name: "Standing",
  6881. image: {
  6882. source: "./media/characters/teal/standing.svg",
  6883. extra: 923 / 893,
  6884. bottom: 60 / 983
  6885. }
  6886. },
  6887. stretching: {
  6888. height: math.unit(3.65, "meters"),
  6889. weight: math.unit(1200, "lb"),
  6890. name: "Stretching",
  6891. image: {
  6892. source: "./media/characters/teal/stretching.svg",
  6893. extra: 1276 / 1244,
  6894. bottom: 0 / 1276
  6895. }
  6896. },
  6897. legged: {
  6898. height: math.unit(1.3, "meters"),
  6899. weight: math.unit(100, "lb"),
  6900. name: "Legged",
  6901. image: {
  6902. source: "./media/characters/teal/legged.svg",
  6903. extra: 462 / 437,
  6904. bottom: 24 / 486
  6905. }
  6906. },
  6907. naga: {
  6908. height: math.unit(5.4, "meters"),
  6909. weight: math.unit(4000, "lb"),
  6910. name: "Naga",
  6911. image: {
  6912. source: "./media/characters/teal/naga.svg",
  6913. extra: 1902 / 1858,
  6914. bottom: 0 / 1902
  6915. }
  6916. },
  6917. hand: {
  6918. height: math.unit(0.52, "meters"),
  6919. name: "Hand",
  6920. image: {
  6921. source: "./media/characters/teal/hand.svg"
  6922. }
  6923. },
  6924. maw: {
  6925. height: math.unit(0.43, "meters"),
  6926. name: "Maw",
  6927. image: {
  6928. source: "./media/characters/teal/maw.svg"
  6929. }
  6930. },
  6931. slit: {
  6932. height: math.unit(0.25, "meters"),
  6933. name: "Slit",
  6934. image: {
  6935. source: "./media/characters/teal/slit.svg"
  6936. }
  6937. },
  6938. },
  6939. [
  6940. {
  6941. name: "Normal",
  6942. height: math.unit(2.75, "meters"),
  6943. default: true
  6944. },
  6945. {
  6946. name: "Macro",
  6947. height: math.unit(300, "feet")
  6948. },
  6949. {
  6950. name: "Macro+",
  6951. height: math.unit(2000, "feet")
  6952. },
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6957. {
  6958. frontCat: {
  6959. height: math.unit(6, "feet"),
  6960. weight: math.unit(180, "lbs"),
  6961. name: "Front (Cat)",
  6962. image: {
  6963. source: "./media/characters/ravin-amulet/front-cat.svg"
  6964. }
  6965. },
  6966. frontCatAlt: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(180, "lbs"),
  6969. name: "Front (Alt, Cat)",
  6970. image: {
  6971. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6972. }
  6973. },
  6974. frontWerewolf: {
  6975. height: math.unit(6 * 1.2, "feet"),
  6976. weight: math.unit(225, "lbs"),
  6977. name: "Front (Werewolf)",
  6978. image: {
  6979. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6980. }
  6981. },
  6982. backWerewolf: {
  6983. height: math.unit(6 * 1.2, "feet"),
  6984. weight: math.unit(225, "lbs"),
  6985. name: "Back (Werewolf)",
  6986. image: {
  6987. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6988. }
  6989. },
  6990. },
  6991. [
  6992. {
  6993. name: "Nano",
  6994. height: math.unit(1, "micrometer")
  6995. },
  6996. {
  6997. name: "Micro",
  6998. height: math.unit(1, "inch")
  6999. },
  7000. {
  7001. name: "Normal",
  7002. height: math.unit(6, "feet"),
  7003. default: true
  7004. },
  7005. {
  7006. name: "Macro",
  7007. height: math.unit(60, "feet")
  7008. }
  7009. ]
  7010. ))
  7011. characterMakers.push(() => makeCharacter(
  7012. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7013. {
  7014. front: {
  7015. height: math.unit(6, "feet"),
  7016. weight: math.unit(165, "lbs"),
  7017. name: "Front",
  7018. image: {
  7019. source: "./media/characters/fluoresce/front.svg"
  7020. }
  7021. }
  7022. },
  7023. [
  7024. {
  7025. name: "Micro",
  7026. height: math.unit(6, "cm")
  7027. },
  7028. {
  7029. name: "Normal",
  7030. height: math.unit(5 + 7 / 12, "feet"),
  7031. default: true
  7032. },
  7033. {
  7034. name: "Macro",
  7035. height: math.unit(56, "feet")
  7036. },
  7037. {
  7038. name: "Megamacro",
  7039. height: math.unit(1.9, "miles")
  7040. },
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(9 + 6 / 12, "feet"),
  7048. weight: math.unit(523, "lbs"),
  7049. name: "Side",
  7050. image: {
  7051. source: "./media/characters/aurora/side.svg"
  7052. }
  7053. }
  7054. },
  7055. [
  7056. {
  7057. name: "Normal",
  7058. height: math.unit(9 + 6 / 12, "feet")
  7059. },
  7060. {
  7061. name: "Macro",
  7062. height: math.unit(96, "feet"),
  7063. default: true
  7064. },
  7065. {
  7066. name: "Macro+",
  7067. height: math.unit(243, "feet")
  7068. },
  7069. ]
  7070. ))
  7071. characterMakers.push(() => makeCharacter(
  7072. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7073. {
  7074. front: {
  7075. height: math.unit(194, "cm"),
  7076. weight: math.unit(90, "kg"),
  7077. name: "Front",
  7078. image: {
  7079. source: "./media/characters/ranek/front.svg"
  7080. }
  7081. },
  7082. side: {
  7083. height: math.unit(194, "cm"),
  7084. weight: math.unit(90, "kg"),
  7085. name: "Side",
  7086. image: {
  7087. source: "./media/characters/ranek/side.svg"
  7088. }
  7089. },
  7090. back: {
  7091. height: math.unit(194, "cm"),
  7092. weight: math.unit(90, "kg"),
  7093. name: "Back",
  7094. image: {
  7095. source: "./media/characters/ranek/back.svg"
  7096. }
  7097. },
  7098. feral: {
  7099. height: math.unit(30, "cm"),
  7100. weight: math.unit(1.6, "lbs"),
  7101. name: "Feral",
  7102. image: {
  7103. source: "./media/characters/ranek/feral.svg"
  7104. }
  7105. },
  7106. },
  7107. [
  7108. {
  7109. name: "Normal",
  7110. height: math.unit(194, "cm"),
  7111. default: true
  7112. },
  7113. {
  7114. name: "Macro",
  7115. height: math.unit(100, "meters")
  7116. },
  7117. ]
  7118. ))
  7119. characterMakers.push(() => makeCharacter(
  7120. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7121. {
  7122. front: {
  7123. height: math.unit(5 + 6 / 12, "feet"),
  7124. weight: math.unit(153, "lbs"),
  7125. name: "Front",
  7126. image: {
  7127. source: "./media/characters/andrew-cooper/front.svg"
  7128. }
  7129. },
  7130. },
  7131. [
  7132. {
  7133. name: "Nano",
  7134. height: math.unit(1, "mm")
  7135. },
  7136. {
  7137. name: "Micro",
  7138. height: math.unit(2, "inches")
  7139. },
  7140. {
  7141. name: "Normal",
  7142. height: math.unit(5 + 6 / 12, "feet"),
  7143. default: true
  7144. }
  7145. ]
  7146. ))
  7147. characterMakers.push(() => makeCharacter(
  7148. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7149. {
  7150. front: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(180, "lbs"),
  7153. name: "Front",
  7154. image: {
  7155. source: "./media/characters/akane-sato/front.svg",
  7156. extra: 1219 / 1140
  7157. }
  7158. },
  7159. back: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(180, "lbs"),
  7162. name: "Back",
  7163. image: {
  7164. source: "./media/characters/akane-sato/back.svg",
  7165. extra: 1219 / 1170
  7166. }
  7167. },
  7168. },
  7169. [
  7170. {
  7171. name: "Normal",
  7172. height: math.unit(2.5, "meters")
  7173. },
  7174. {
  7175. name: "Macro",
  7176. height: math.unit(250, "meters"),
  7177. default: true
  7178. },
  7179. {
  7180. name: "Megamacro",
  7181. height: math.unit(25, "km")
  7182. },
  7183. ]
  7184. ))
  7185. characterMakers.push(() => makeCharacter(
  7186. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7187. {
  7188. front: {
  7189. height: math.unit(6, "feet"),
  7190. weight: math.unit(65, "kg"),
  7191. name: "Front",
  7192. image: {
  7193. source: "./media/characters/rook/front.svg",
  7194. extra: 960 / 950
  7195. }
  7196. }
  7197. },
  7198. [
  7199. {
  7200. name: "Normal",
  7201. height: math.unit(8.8, "feet")
  7202. },
  7203. {
  7204. name: "Macro",
  7205. height: math.unit(88, "feet"),
  7206. default: true
  7207. },
  7208. {
  7209. name: "Megamacro",
  7210. height: math.unit(8, "miles")
  7211. },
  7212. ]
  7213. ))
  7214. characterMakers.push(() => makeCharacter(
  7215. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7216. {
  7217. front: {
  7218. height: math.unit(12 + 2 / 12, "feet"),
  7219. weight: math.unit(808, "lbs"),
  7220. name: "Front",
  7221. image: {
  7222. source: "./media/characters/prodigy/front.svg"
  7223. }
  7224. }
  7225. },
  7226. [
  7227. {
  7228. name: "Normal",
  7229. height: math.unit(12 + 2 / 12, "feet"),
  7230. default: true
  7231. },
  7232. {
  7233. name: "Macro",
  7234. height: math.unit(143, "feet")
  7235. },
  7236. {
  7237. name: "Macro+",
  7238. height: math.unit(400, "feet")
  7239. },
  7240. ]
  7241. ))
  7242. characterMakers.push(() => makeCharacter(
  7243. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7244. {
  7245. front: {
  7246. height: math.unit(6, "feet"),
  7247. weight: math.unit(225, "lbs"),
  7248. name: "Front",
  7249. image: {
  7250. source: "./media/characters/daniel/front.svg"
  7251. }
  7252. },
  7253. leaning: {
  7254. height: math.unit(6, "feet"),
  7255. weight: math.unit(225, "lbs"),
  7256. name: "Leaning",
  7257. image: {
  7258. source: "./media/characters/daniel/leaning.svg"
  7259. }
  7260. },
  7261. },
  7262. [
  7263. {
  7264. name: "Macro",
  7265. height: math.unit(1000, "feet"),
  7266. default: true
  7267. },
  7268. ]
  7269. ))
  7270. characterMakers.push(() => makeCharacter(
  7271. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7272. {
  7273. front: {
  7274. height: math.unit(6, "feet"),
  7275. weight: math.unit(88, "lbs"),
  7276. name: "Front",
  7277. image: {
  7278. source: "./media/characters/chiros/front.svg",
  7279. extra: 306 / 226
  7280. }
  7281. },
  7282. side: {
  7283. height: math.unit(6, "feet"),
  7284. weight: math.unit(88, "lbs"),
  7285. name: "Side",
  7286. image: {
  7287. source: "./media/characters/chiros/side.svg",
  7288. extra: 306 / 226
  7289. }
  7290. },
  7291. },
  7292. [
  7293. {
  7294. name: "Normal",
  7295. height: math.unit(6, "cm"),
  7296. default: true
  7297. },
  7298. ]
  7299. ))
  7300. characterMakers.push(() => makeCharacter(
  7301. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7302. {
  7303. front: {
  7304. height: math.unit(6, "feet"),
  7305. weight: math.unit(100, "lbs"),
  7306. name: "Front",
  7307. image: {
  7308. source: "./media/characters/selka/front.svg",
  7309. extra: 947 / 887
  7310. }
  7311. }
  7312. },
  7313. [
  7314. {
  7315. name: "Normal",
  7316. height: math.unit(5, "cm"),
  7317. default: true
  7318. },
  7319. ]
  7320. ))
  7321. characterMakers.push(() => makeCharacter(
  7322. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7323. {
  7324. front: {
  7325. height: math.unit(8 + 3 / 12, "feet"),
  7326. weight: math.unit(424, "lbs"),
  7327. name: "Front",
  7328. image: {
  7329. source: "./media/characters/verin/front.svg",
  7330. extra: 1845 / 1550
  7331. }
  7332. },
  7333. frontArmored: {
  7334. height: math.unit(8 + 3 / 12, "feet"),
  7335. weight: math.unit(424, "lbs"),
  7336. name: "Front (Armored)",
  7337. image: {
  7338. source: "./media/characters/verin/front-armor.svg",
  7339. extra: 1845 / 1550,
  7340. bottom: 0.01
  7341. }
  7342. },
  7343. back: {
  7344. height: math.unit(8 + 3 / 12, "feet"),
  7345. weight: math.unit(424, "lbs"),
  7346. name: "Back",
  7347. image: {
  7348. source: "./media/characters/verin/back.svg",
  7349. bottom: 0.1,
  7350. extra: 1
  7351. }
  7352. },
  7353. foot: {
  7354. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7355. name: "Foot",
  7356. image: {
  7357. source: "./media/characters/verin/foot.svg"
  7358. }
  7359. },
  7360. },
  7361. [
  7362. {
  7363. name: "Normal",
  7364. height: math.unit(8 + 3 / 12, "feet")
  7365. },
  7366. {
  7367. name: "Minimacro",
  7368. height: math.unit(21, "feet"),
  7369. default: true
  7370. },
  7371. {
  7372. name: "Macro",
  7373. height: math.unit(626, "feet")
  7374. },
  7375. ]
  7376. ))
  7377. characterMakers.push(() => makeCharacter(
  7378. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7379. {
  7380. front: {
  7381. height: math.unit(2.718, "meters"),
  7382. weight: math.unit(150, "lbs"),
  7383. name: "Front",
  7384. image: {
  7385. source: "./media/characters/sovrim-terraquian/front.svg"
  7386. }
  7387. },
  7388. back: {
  7389. height: math.unit(2.718, "meters"),
  7390. weight: math.unit(150, "lbs"),
  7391. name: "Back",
  7392. image: {
  7393. source: "./media/characters/sovrim-terraquian/back.svg"
  7394. }
  7395. }
  7396. },
  7397. [
  7398. {
  7399. name: "Micro",
  7400. height: math.unit(2, "inches")
  7401. },
  7402. {
  7403. name: "Small",
  7404. height: math.unit(1, "meter")
  7405. },
  7406. {
  7407. name: "Normal",
  7408. height: math.unit(Math.E, "meters"),
  7409. default: true
  7410. },
  7411. {
  7412. name: "Macro",
  7413. height: math.unit(20, "meters")
  7414. },
  7415. {
  7416. name: "Macro+",
  7417. height: math.unit(400, "meters")
  7418. },
  7419. ]
  7420. ))
  7421. characterMakers.push(() => makeCharacter(
  7422. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7423. {
  7424. front: {
  7425. height: math.unit(7, "feet"),
  7426. weight: math.unit(489, "lbs"),
  7427. name: "Front",
  7428. image: {
  7429. source: "./media/characters/reece-silvermane/front.svg",
  7430. bottom: 0.02,
  7431. extra: 1
  7432. }
  7433. },
  7434. },
  7435. [
  7436. {
  7437. name: "Macro",
  7438. height: math.unit(1.5, "miles"),
  7439. default: true
  7440. },
  7441. ]
  7442. ))
  7443. characterMakers.push(() => makeCharacter(
  7444. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7445. {
  7446. front: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(78, "kg"),
  7449. name: "Front",
  7450. image: {
  7451. source: "./media/characters/kane/front.svg",
  7452. extra: 978 / 899
  7453. }
  7454. },
  7455. },
  7456. [
  7457. {
  7458. name: "Normal",
  7459. height: math.unit(2.1, "m"),
  7460. },
  7461. {
  7462. name: "Macro",
  7463. height: math.unit(1, "km"),
  7464. default: true
  7465. },
  7466. ]
  7467. ))
  7468. characterMakers.push(() => makeCharacter(
  7469. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7470. {
  7471. front: {
  7472. height: math.unit(6, "feet"),
  7473. weight: math.unit(200, "kg"),
  7474. name: "Front",
  7475. image: {
  7476. source: "./media/characters/tegon/front.svg",
  7477. bottom: 0.01,
  7478. extra: 1
  7479. }
  7480. },
  7481. },
  7482. [
  7483. {
  7484. name: "Micro",
  7485. height: math.unit(1, "inch")
  7486. },
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(6 + 3 / 12, "feet"),
  7490. default: true
  7491. },
  7492. {
  7493. name: "Macro",
  7494. height: math.unit(300, "feet")
  7495. },
  7496. {
  7497. name: "Megamacro",
  7498. height: math.unit(69, "miles")
  7499. },
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7504. {
  7505. side: {
  7506. height: math.unit(6, "feet"),
  7507. weight: math.unit(2304, "lbs"),
  7508. name: "Side",
  7509. image: {
  7510. source: "./media/characters/arcturax/side.svg",
  7511. extra: 790 / 376,
  7512. bottom: 0.01
  7513. }
  7514. },
  7515. },
  7516. [
  7517. {
  7518. name: "Micro",
  7519. height: math.unit(2, "inch")
  7520. },
  7521. {
  7522. name: "Normal",
  7523. height: math.unit(6, "feet")
  7524. },
  7525. {
  7526. name: "Macro",
  7527. height: math.unit(39, "feet"),
  7528. default: true
  7529. },
  7530. {
  7531. name: "Megamacro",
  7532. height: math.unit(7, "miles")
  7533. },
  7534. ]
  7535. ))
  7536. characterMakers.push(() => makeCharacter(
  7537. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7538. {
  7539. front: {
  7540. height: math.unit(6, "feet"),
  7541. weight: math.unit(50, "lbs"),
  7542. name: "Front",
  7543. image: {
  7544. source: "./media/characters/sentri/front.svg",
  7545. extra: 1750 / 1570,
  7546. bottom: 0.025
  7547. }
  7548. },
  7549. frontAlt: {
  7550. height: math.unit(6, "feet"),
  7551. weight: math.unit(50, "lbs"),
  7552. name: "Front (Alt)",
  7553. image: {
  7554. source: "./media/characters/sentri/front-alt.svg",
  7555. extra: 1750 / 1570,
  7556. bottom: 0.025
  7557. }
  7558. },
  7559. },
  7560. [
  7561. {
  7562. name: "Normal",
  7563. height: math.unit(15, "feet"),
  7564. default: true
  7565. },
  7566. {
  7567. name: "Macro",
  7568. height: math.unit(2500, "feet")
  7569. }
  7570. ]
  7571. ))
  7572. characterMakers.push(() => makeCharacter(
  7573. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7574. {
  7575. front: {
  7576. height: math.unit(5 + 8 / 12, "feet"),
  7577. weight: math.unit(130, "lbs"),
  7578. name: "Front",
  7579. image: {
  7580. source: "./media/characters/corvin/front.svg",
  7581. extra: 1803 / 1629
  7582. }
  7583. },
  7584. frontShirt: {
  7585. height: math.unit(5 + 8 / 12, "feet"),
  7586. weight: math.unit(130, "lbs"),
  7587. name: "Front (Shirt)",
  7588. image: {
  7589. source: "./media/characters/corvin/front-shirt.svg",
  7590. extra: 1803 / 1629
  7591. }
  7592. },
  7593. frontPoncho: {
  7594. height: math.unit(5 + 8 / 12, "feet"),
  7595. weight: math.unit(130, "lbs"),
  7596. name: "Front (Poncho)",
  7597. image: {
  7598. source: "./media/characters/corvin/front-poncho.svg",
  7599. extra: 1803 / 1629
  7600. }
  7601. },
  7602. side: {
  7603. height: math.unit(5 + 8 / 12, "feet"),
  7604. weight: math.unit(130, "lbs"),
  7605. name: "Side",
  7606. image: {
  7607. source: "./media/characters/corvin/side.svg",
  7608. extra: 1012 / 945
  7609. }
  7610. },
  7611. back: {
  7612. height: math.unit(5 + 8 / 12, "feet"),
  7613. weight: math.unit(130, "lbs"),
  7614. name: "Back",
  7615. image: {
  7616. source: "./media/characters/corvin/back.svg",
  7617. extra: 1803 / 1629
  7618. }
  7619. },
  7620. },
  7621. [
  7622. {
  7623. name: "Micro",
  7624. height: math.unit(3, "inches")
  7625. },
  7626. {
  7627. name: "Normal",
  7628. height: math.unit(5 + 8 / 12, "feet")
  7629. },
  7630. {
  7631. name: "Macro",
  7632. height: math.unit(300, "feet"),
  7633. default: true
  7634. },
  7635. {
  7636. name: "Megamacro",
  7637. height: math.unit(500, "miles")
  7638. }
  7639. ]
  7640. ))
  7641. characterMakers.push(() => makeCharacter(
  7642. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7643. {
  7644. front: {
  7645. height: math.unit(6, "feet"),
  7646. weight: math.unit(135, "lbs"),
  7647. name: "Front",
  7648. image: {
  7649. source: "./media/characters/q/front.svg",
  7650. extra: 854 / 752,
  7651. bottom: 0.005
  7652. }
  7653. },
  7654. back: {
  7655. height: math.unit(6, "feet"),
  7656. weight: math.unit(130, "lbs"),
  7657. name: "Back",
  7658. image: {
  7659. source: "./media/characters/q/back.svg",
  7660. extra: 854 / 752
  7661. }
  7662. },
  7663. },
  7664. [
  7665. {
  7666. name: "Macro",
  7667. height: math.unit(90, "feet"),
  7668. default: true
  7669. },
  7670. {
  7671. name: "Extra Macro",
  7672. height: math.unit(300, "feet"),
  7673. },
  7674. {
  7675. name: "BIG WALF",
  7676. height: math.unit(750, "feet"),
  7677. },
  7678. ]
  7679. ))
  7680. characterMakers.push(() => makeCharacter(
  7681. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7682. {
  7683. front: {
  7684. height: math.unit(6, "feet"),
  7685. weight: math.unit(150, "lbs"),
  7686. name: "Front",
  7687. image: {
  7688. source: "./media/characters/carley/front.svg",
  7689. extra: 3927 / 3540,
  7690. bottom: 29.2 / 735
  7691. }
  7692. }
  7693. },
  7694. [
  7695. {
  7696. name: "Normal",
  7697. height: math.unit(6 + 3 / 12, "feet")
  7698. },
  7699. {
  7700. name: "Macro",
  7701. height: math.unit(185, "feet"),
  7702. default: true
  7703. },
  7704. {
  7705. name: "Megamacro",
  7706. height: math.unit(8, "miles"),
  7707. },
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7712. {
  7713. front: {
  7714. height: math.unit(3, "feet"),
  7715. weight: math.unit(28, "lbs"),
  7716. name: "Front",
  7717. image: {
  7718. source: "./media/characters/citrine/front.svg"
  7719. }
  7720. }
  7721. },
  7722. [
  7723. {
  7724. name: "Normal",
  7725. height: math.unit(3, "feet"),
  7726. default: true
  7727. }
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7732. {
  7733. front: {
  7734. height: math.unit(14, "feet"),
  7735. weight: math.unit(1450, "kg"),
  7736. capacity: math.unit(15, "people"),
  7737. name: "Front",
  7738. image: {
  7739. source: "./media/characters/aura-starwind/front.svg",
  7740. extra: 1455 / 1335
  7741. }
  7742. },
  7743. side: {
  7744. height: math.unit(14, "feet"),
  7745. weight: math.unit(1450, "kg"),
  7746. capacity: math.unit(15, "people"),
  7747. name: "Side",
  7748. image: {
  7749. source: "./media/characters/aura-starwind/side.svg",
  7750. extra: 1654 / 1497
  7751. }
  7752. },
  7753. taur: {
  7754. height: math.unit(18, "feet"),
  7755. weight: math.unit(5500, "kg"),
  7756. capacity: math.unit(50, "people"),
  7757. name: "Taur",
  7758. image: {
  7759. source: "./media/characters/aura-starwind/taur.svg",
  7760. extra: 1760 / 1650
  7761. }
  7762. },
  7763. feral: {
  7764. height: math.unit(46, "feet"),
  7765. weight: math.unit(25000, "kg"),
  7766. capacity: math.unit(120, "people"),
  7767. name: "Feral",
  7768. image: {
  7769. source: "./media/characters/aura-starwind/feral.svg"
  7770. }
  7771. },
  7772. },
  7773. [
  7774. {
  7775. name: "Normal",
  7776. height: math.unit(14, "feet"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Macro",
  7781. height: math.unit(50, "meters")
  7782. },
  7783. {
  7784. name: "Megamacro",
  7785. height: math.unit(5000, "meters")
  7786. },
  7787. {
  7788. name: "Gigamacro",
  7789. height: math.unit(100000, "kilometers")
  7790. },
  7791. ]
  7792. ))
  7793. characterMakers.push(() => makeCharacter(
  7794. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7795. {
  7796. front: {
  7797. height: math.unit(2 + 7 / 12, "feet"),
  7798. weight: math.unit(32, "lbs"),
  7799. name: "Front",
  7800. image: {
  7801. source: "./media/characters/rivet/front.svg",
  7802. extra: 1716 / 1658,
  7803. bottom: 0.03
  7804. }
  7805. },
  7806. foot: {
  7807. height: math.unit(0.551, "feet"),
  7808. name: "Rivet's Foot",
  7809. image: {
  7810. source: "./media/characters/rivet/foot.svg"
  7811. },
  7812. rename: true
  7813. }
  7814. },
  7815. [
  7816. {
  7817. name: "Micro",
  7818. height: math.unit(1.5, "inches"),
  7819. },
  7820. {
  7821. name: "Normal",
  7822. height: math.unit(2 + 7 / 12, "feet"),
  7823. default: true
  7824. },
  7825. {
  7826. name: "Macro",
  7827. height: math.unit(85, "feet")
  7828. },
  7829. {
  7830. name: "Megamacro",
  7831. height: math.unit(2.2, "km")
  7832. }
  7833. ]
  7834. ))
  7835. characterMakers.push(() => makeCharacter(
  7836. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7837. {
  7838. front: {
  7839. height: math.unit(5 + 9 / 12, "feet"),
  7840. weight: math.unit(150, "lbs"),
  7841. name: "Front",
  7842. image: {
  7843. source: "./media/characters/coffee/front.svg",
  7844. extra: 3666 / 3032,
  7845. bottom: 0.04
  7846. }
  7847. },
  7848. foot: {
  7849. height: math.unit(1.29, "feet"),
  7850. name: "Foot",
  7851. image: {
  7852. source: "./media/characters/coffee/foot.svg"
  7853. }
  7854. },
  7855. },
  7856. [
  7857. {
  7858. name: "Micro",
  7859. height: math.unit(2, "inches"),
  7860. },
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(5 + 9 / 12, "feet"),
  7864. default: true
  7865. },
  7866. {
  7867. name: "Macro",
  7868. height: math.unit(800, "feet")
  7869. },
  7870. {
  7871. name: "Megamacro",
  7872. height: math.unit(25, "miles")
  7873. }
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(6, "feet"),
  7881. weight: math.unit(200, "lbs"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/chari-gal/front.svg",
  7885. extra: 1568 / 1385,
  7886. bottom: 0.047
  7887. }
  7888. },
  7889. gigantamax: {
  7890. height: math.unit(6 * 16, "feet"),
  7891. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7892. name: "Gigantamax",
  7893. image: {
  7894. source: "./media/characters/chari-gal/gigantamax.svg",
  7895. extra: 1124 / 888,
  7896. bottom: 0.03
  7897. }
  7898. },
  7899. },
  7900. [
  7901. {
  7902. name: "Normal",
  7903. height: math.unit(5 + 7 / 12, "feet")
  7904. },
  7905. {
  7906. name: "Macro",
  7907. height: math.unit(200, "feet"),
  7908. default: true
  7909. }
  7910. ]
  7911. ))
  7912. characterMakers.push(() => makeCharacter(
  7913. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7914. {
  7915. front: {
  7916. height: math.unit(6, "feet"),
  7917. weight: math.unit(150, "lbs"),
  7918. name: "Front",
  7919. image: {
  7920. source: "./media/characters/nova/front.svg",
  7921. extra: 5000 / 4722,
  7922. bottom: 0.02
  7923. }
  7924. }
  7925. },
  7926. [
  7927. {
  7928. name: "Micro-",
  7929. height: math.unit(0.8, "inches")
  7930. },
  7931. {
  7932. name: "Micro",
  7933. height: math.unit(2, "inches"),
  7934. default: true
  7935. },
  7936. ]
  7937. ))
  7938. characterMakers.push(() => makeCharacter(
  7939. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7940. {
  7941. front: {
  7942. height: math.unit(3 + 1 / 12, "feet"),
  7943. weight: math.unit(21.7, "lbs"),
  7944. name: "Front",
  7945. image: {
  7946. source: "./media/characters/argent/front.svg",
  7947. extra: 1471 / 1331,
  7948. bottom: 100.8 / 1575.5
  7949. }
  7950. }
  7951. },
  7952. [
  7953. {
  7954. name: "Micro",
  7955. height: math.unit(2, "inches")
  7956. },
  7957. {
  7958. name: "Normal",
  7959. height: math.unit(3 + 1 / 12, "feet"),
  7960. default: true
  7961. },
  7962. {
  7963. name: "Macro",
  7964. height: math.unit(120, "feet")
  7965. },
  7966. ]
  7967. ))
  7968. characterMakers.push(() => makeCharacter(
  7969. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7970. {
  7971. lamp: {
  7972. height: math.unit(7 * 1559 / 989, "feet"),
  7973. name: "Magic Lamp",
  7974. image: {
  7975. source: "./media/characters/mira-al-cul/lamp.svg",
  7976. extra: 1617 / 1559
  7977. }
  7978. },
  7979. front: {
  7980. height: math.unit(7, "feet"),
  7981. name: "Front",
  7982. image: {
  7983. source: "./media/characters/mira-al-cul/front.svg",
  7984. extra: 1044 / 990
  7985. }
  7986. },
  7987. },
  7988. [
  7989. {
  7990. name: "Heavily Restricted",
  7991. height: math.unit(7 * 1559 / 989, "feet")
  7992. },
  7993. {
  7994. name: "Freshly Freed",
  7995. height: math.unit(50 * 1559 / 989, "feet")
  7996. },
  7997. {
  7998. name: "World Encompassing",
  7999. height: math.unit(10000 * 1559 / 989, "miles")
  8000. },
  8001. {
  8002. name: "Galactic",
  8003. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8004. },
  8005. {
  8006. name: "Palmed Universe",
  8007. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8008. default: true
  8009. },
  8010. {
  8011. name: "Multiversal Matriarch",
  8012. height: math.unit(8.87e10, "yottameters")
  8013. },
  8014. {
  8015. name: "Void Mother",
  8016. height: math.unit(3.14e110, "yottaparsecs")
  8017. },
  8018. {
  8019. name: "Toying with Transcendence",
  8020. height: math.unit(1e307, "meters")
  8021. },
  8022. ]
  8023. ))
  8024. characterMakers.push(() => makeCharacter(
  8025. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8026. {
  8027. front: {
  8028. height: math.unit(17 + 1 / 12, "feet"),
  8029. weight: math.unit(476.2 * 5, "lbs"),
  8030. name: "Front",
  8031. image: {
  8032. source: "./media/characters/kuro-shi-uchū/front.svg",
  8033. extra: 2329 / 1835,
  8034. bottom: 0.02
  8035. }
  8036. },
  8037. },
  8038. [
  8039. {
  8040. name: "Micro",
  8041. height: math.unit(2, "inches")
  8042. },
  8043. {
  8044. name: "Normal",
  8045. height: math.unit(12, "meters")
  8046. },
  8047. {
  8048. name: "Planetary",
  8049. height: math.unit(0.00929, "AU"),
  8050. default: true
  8051. },
  8052. {
  8053. name: "Universal",
  8054. height: math.unit(20, "gigaparsecs")
  8055. },
  8056. ]
  8057. ))
  8058. characterMakers.push(() => makeCharacter(
  8059. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8060. {
  8061. front: {
  8062. height: math.unit(5 + 2 / 12, "feet"),
  8063. weight: math.unit(120, "lbs"),
  8064. name: "Front",
  8065. image: {
  8066. source: "./media/characters/katherine/front.svg",
  8067. extra: 2075 / 1969
  8068. }
  8069. },
  8070. dress: {
  8071. height: math.unit(5 + 2 / 12, "feet"),
  8072. weight: math.unit(120, "lbs"),
  8073. name: "Dress",
  8074. image: {
  8075. source: "./media/characters/katherine/dress.svg",
  8076. extra: 2258 / 2064
  8077. }
  8078. },
  8079. },
  8080. [
  8081. {
  8082. name: "Micro",
  8083. height: math.unit(1, "inches"),
  8084. default: true
  8085. },
  8086. {
  8087. name: "Normal",
  8088. height: math.unit(5 + 2 / 12, "feet")
  8089. },
  8090. {
  8091. name: "Macro",
  8092. height: math.unit(100, "meters")
  8093. },
  8094. {
  8095. name: "Megamacro",
  8096. height: math.unit(80, "miles")
  8097. },
  8098. ]
  8099. ))
  8100. characterMakers.push(() => makeCharacter(
  8101. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8102. {
  8103. front: {
  8104. height: math.unit(7 + 8 / 12, "feet"),
  8105. weight: math.unit(250, "lbs"),
  8106. name: "Front",
  8107. image: {
  8108. source: "./media/characters/yevis/front.svg",
  8109. extra: 1938 / 1755
  8110. }
  8111. }
  8112. },
  8113. [
  8114. {
  8115. name: "Mortal",
  8116. height: math.unit(7 + 8 / 12, "feet")
  8117. },
  8118. {
  8119. name: "Battle",
  8120. height: math.unit(25 + 11 / 12, "feet")
  8121. },
  8122. {
  8123. name: "Wrath",
  8124. height: math.unit(1654 + 11 / 12, "feet")
  8125. },
  8126. {
  8127. name: "Planet Destroyer",
  8128. height: math.unit(12000, "miles")
  8129. },
  8130. {
  8131. name: "Galaxy Conqueror",
  8132. height: math.unit(1.45, "zettameters"),
  8133. default: true
  8134. },
  8135. {
  8136. name: "Universal War",
  8137. height: math.unit(184, "gigaparsecs")
  8138. },
  8139. {
  8140. name: "Eternity War",
  8141. height: math.unit(1.98e55, "yottaparsecs")
  8142. },
  8143. ]
  8144. ))
  8145. characterMakers.push(() => makeCharacter(
  8146. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8147. {
  8148. front: {
  8149. height: math.unit(5 + 8 / 12, "feet"),
  8150. weight: math.unit(63, "kg"),
  8151. name: "Front",
  8152. image: {
  8153. source: "./media/characters/xavier/front.svg",
  8154. extra: 944 / 883
  8155. }
  8156. },
  8157. frontStretch: {
  8158. height: math.unit(5 + 8 / 12, "feet"),
  8159. weight: math.unit(63, "kg"),
  8160. name: "Stretching",
  8161. image: {
  8162. source: "./media/characters/xavier/front-stretch.svg",
  8163. extra: 962 / 820
  8164. }
  8165. },
  8166. },
  8167. [
  8168. {
  8169. name: "Normal",
  8170. height: math.unit(5 + 8 / 12, "feet")
  8171. },
  8172. {
  8173. name: "Macro",
  8174. height: math.unit(100, "meters"),
  8175. default: true
  8176. },
  8177. {
  8178. name: "McLargeHuge",
  8179. height: math.unit(10, "miles")
  8180. },
  8181. ]
  8182. ))
  8183. characterMakers.push(() => makeCharacter(
  8184. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8185. {
  8186. front: {
  8187. height: math.unit(5 + 5 / 12, "feet"),
  8188. weight: math.unit(150, "lb"),
  8189. name: "Front",
  8190. image: {
  8191. source: "./media/characters/joshii/front.svg",
  8192. extra: 765 / 653,
  8193. bottom: 51 / 816
  8194. }
  8195. },
  8196. foot: {
  8197. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8198. name: "Foot",
  8199. image: {
  8200. source: "./media/characters/joshii/foot.svg"
  8201. }
  8202. },
  8203. },
  8204. [
  8205. {
  8206. name: "Micro",
  8207. height: math.unit(2, "inches"),
  8208. default: true
  8209. },
  8210. {
  8211. name: "Normal",
  8212. height: math.unit(5 + 5 / 12, "feet")
  8213. },
  8214. {
  8215. name: "Macro",
  8216. height: math.unit(785, "feet")
  8217. },
  8218. {
  8219. name: "Megamacro",
  8220. height: math.unit(24.5, "miles")
  8221. },
  8222. ]
  8223. ))
  8224. characterMakers.push(() => makeCharacter(
  8225. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8226. {
  8227. front: {
  8228. height: math.unit(6, "feet"),
  8229. weight: math.unit(150, "lb"),
  8230. name: "Front",
  8231. image: {
  8232. source: "./media/characters/goddess-elizabeth/front.svg",
  8233. extra: 1800 / 1525,
  8234. bottom: 0.005
  8235. }
  8236. },
  8237. foot: {
  8238. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8239. name: "Foot",
  8240. image: {
  8241. source: "./media/characters/goddess-elizabeth/foot.svg"
  8242. }
  8243. },
  8244. mouth: {
  8245. height: math.unit(6, "feet"),
  8246. name: "Mouth",
  8247. image: {
  8248. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8249. }
  8250. },
  8251. },
  8252. [
  8253. {
  8254. name: "Micro",
  8255. height: math.unit(12, "feet")
  8256. },
  8257. {
  8258. name: "Normal",
  8259. height: math.unit(80, "miles"),
  8260. default: true
  8261. },
  8262. {
  8263. name: "Macro",
  8264. height: math.unit(15000, "parsecs")
  8265. },
  8266. ]
  8267. ))
  8268. characterMakers.push(() => makeCharacter(
  8269. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8270. {
  8271. front: {
  8272. height: math.unit(5 + 9 / 12, "feet"),
  8273. weight: math.unit(144, "lb"),
  8274. name: "Front",
  8275. image: {
  8276. source: "./media/characters/kara/front.svg"
  8277. }
  8278. },
  8279. feet: {
  8280. height: math.unit(6 / 6.765, "feet"),
  8281. name: "Kara's Feet",
  8282. rename: true,
  8283. image: {
  8284. source: "./media/characters/kara/feet.svg"
  8285. }
  8286. },
  8287. },
  8288. [
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(5 + 9 / 12, "feet")
  8292. },
  8293. {
  8294. name: "Macro",
  8295. height: math.unit(174, "feet"),
  8296. default: true
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8302. {
  8303. front: {
  8304. height: math.unit(18, "feet"),
  8305. weight: math.unit(4050, "lb"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/tyrone/front.svg",
  8309. extra: 2405 / 2270,
  8310. bottom: 182 / 2587
  8311. }
  8312. },
  8313. },
  8314. [
  8315. {
  8316. name: "Normal",
  8317. height: math.unit(18, "feet"),
  8318. default: true
  8319. },
  8320. {
  8321. name: "Macro",
  8322. height: math.unit(300, "feet")
  8323. },
  8324. {
  8325. name: "Megamacro",
  8326. height: math.unit(15, "km")
  8327. },
  8328. {
  8329. name: "Gigamacro",
  8330. height: math.unit(500, "km")
  8331. },
  8332. {
  8333. name: "Teramacro",
  8334. height: math.unit(0.5, "gigameters")
  8335. },
  8336. {
  8337. name: "Omnimacro",
  8338. height: math.unit(1e252, "yottauniverse")
  8339. },
  8340. ]
  8341. ))
  8342. characterMakers.push(() => makeCharacter(
  8343. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8344. {
  8345. front: {
  8346. height: math.unit(7 + 8 / 12, "feet"),
  8347. weight: math.unit(120, "lb"),
  8348. name: "Front",
  8349. image: {
  8350. source: "./media/characters/danny/front.svg",
  8351. extra: 1490 / 1350
  8352. }
  8353. },
  8354. back: {
  8355. height: math.unit(7 + 8 / 12, "feet"),
  8356. weight: math.unit(120, "lb"),
  8357. name: "Back",
  8358. image: {
  8359. source: "./media/characters/danny/back.svg",
  8360. extra: 1490 / 1350
  8361. }
  8362. },
  8363. },
  8364. [
  8365. {
  8366. name: "Normal",
  8367. height: math.unit(7 + 8 / 12, "feet"),
  8368. default: true
  8369. },
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(3.5, "inches"),
  8377. weight: math.unit(19, "grams"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/mallow/front.svg",
  8381. extra: 471 / 431
  8382. }
  8383. },
  8384. back: {
  8385. height: math.unit(3.5, "inches"),
  8386. weight: math.unit(19, "grams"),
  8387. name: "Back",
  8388. image: {
  8389. source: "./media/characters/mallow/back.svg",
  8390. extra: 471 / 431
  8391. }
  8392. },
  8393. },
  8394. [
  8395. {
  8396. name: "Normal",
  8397. height: math.unit(3.5, "inches"),
  8398. default: true
  8399. },
  8400. ]
  8401. ))
  8402. characterMakers.push(() => makeCharacter(
  8403. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8404. {
  8405. front: {
  8406. height: math.unit(9, "feet"),
  8407. weight: math.unit(230, "kg"),
  8408. name: "Front",
  8409. image: {
  8410. source: "./media/characters/starry-aqua/front.svg"
  8411. }
  8412. },
  8413. back: {
  8414. height: math.unit(9, "feet"),
  8415. weight: math.unit(230, "kg"),
  8416. name: "Back",
  8417. image: {
  8418. source: "./media/characters/starry-aqua/back.svg"
  8419. }
  8420. },
  8421. hand: {
  8422. height: math.unit(9 * 0.1168, "feet"),
  8423. name: "Hand",
  8424. image: {
  8425. source: "./media/characters/starry-aqua/hand.svg"
  8426. }
  8427. },
  8428. foot: {
  8429. height: math.unit(9 * 0.18, "feet"),
  8430. name: "Foot",
  8431. image: {
  8432. source: "./media/characters/starry-aqua/foot.svg"
  8433. }
  8434. }
  8435. },
  8436. [
  8437. {
  8438. name: "Micro",
  8439. height: math.unit(3, "inches")
  8440. },
  8441. {
  8442. name: "Normal",
  8443. height: math.unit(9, "feet")
  8444. },
  8445. {
  8446. name: "Macro",
  8447. height: math.unit(300, "feet"),
  8448. default: true
  8449. },
  8450. {
  8451. name: "Megamacro",
  8452. height: math.unit(3200, "feet")
  8453. }
  8454. ]
  8455. ))
  8456. characterMakers.push(() => makeCharacter(
  8457. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8458. {
  8459. front: {
  8460. height: math.unit(6, "feet"),
  8461. weight: math.unit(230, "lb"),
  8462. name: "Front",
  8463. image: {
  8464. source: "./media/characters/luka/front.svg",
  8465. extra: 1,
  8466. bottom: 0.025
  8467. }
  8468. },
  8469. },
  8470. [
  8471. {
  8472. name: "Normal",
  8473. height: math.unit(12 + 8 / 12, "feet"),
  8474. default: true
  8475. },
  8476. {
  8477. name: "Minimacro",
  8478. height: math.unit(20, "feet")
  8479. },
  8480. {
  8481. name: "Macro",
  8482. height: math.unit(250, "feet")
  8483. },
  8484. {
  8485. name: "Megamacro",
  8486. height: math.unit(5, "miles")
  8487. },
  8488. {
  8489. name: "Gigamacro",
  8490. height: math.unit(8000, "miles")
  8491. },
  8492. ]
  8493. ))
  8494. characterMakers.push(() => makeCharacter(
  8495. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8496. {
  8497. front: {
  8498. height: math.unit(6, "feet"),
  8499. weight: math.unit(150, "lb"),
  8500. name: "Front",
  8501. image: {
  8502. source: "./media/characters/natalie-nightring/front.svg",
  8503. extra: 1,
  8504. bottom: 0.06
  8505. }
  8506. },
  8507. },
  8508. [
  8509. {
  8510. name: "Uh Oh",
  8511. height: math.unit(0.1, "mm")
  8512. },
  8513. {
  8514. name: "Small",
  8515. height: math.unit(3, "inches")
  8516. },
  8517. {
  8518. name: "Human Scale",
  8519. height: math.unit(6, "feet")
  8520. },
  8521. {
  8522. name: "Librarian",
  8523. height: math.unit(50, "feet"),
  8524. default: true
  8525. },
  8526. {
  8527. name: "Immense",
  8528. height: math.unit(200, "miles")
  8529. },
  8530. ]
  8531. ))
  8532. characterMakers.push(() => makeCharacter(
  8533. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8534. {
  8535. front: {
  8536. height: math.unit(6, "feet"),
  8537. weight: math.unit(180, "lbs"),
  8538. name: "Front",
  8539. image: {
  8540. source: "./media/characters/danni-rosie/front.svg",
  8541. extra: 1260 / 1128,
  8542. bottom: 0.022
  8543. }
  8544. },
  8545. },
  8546. [
  8547. {
  8548. name: "Micro",
  8549. height: math.unit(2, "inches"),
  8550. default: true
  8551. },
  8552. ]
  8553. ))
  8554. characterMakers.push(() => makeCharacter(
  8555. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8556. {
  8557. front: {
  8558. height: math.unit(5 + 9 / 12, "feet"),
  8559. weight: math.unit(220, "lb"),
  8560. name: "Front",
  8561. image: {
  8562. source: "./media/characters/samantha-kruse/front.svg",
  8563. extra: (985 / 935),
  8564. bottom: 0.03
  8565. }
  8566. },
  8567. frontUndressed: {
  8568. height: math.unit(5 + 9 / 12, "feet"),
  8569. weight: math.unit(220, "lb"),
  8570. name: "Front (Undressed)",
  8571. image: {
  8572. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8573. extra: (973 / 923),
  8574. bottom: 0.025
  8575. }
  8576. },
  8577. fat: {
  8578. height: math.unit(5 + 9 / 12, "feet"),
  8579. weight: math.unit(900, "lb"),
  8580. name: "Front (Fat)",
  8581. image: {
  8582. source: "./media/characters/samantha-kruse/fat.svg",
  8583. extra: 2688 / 2561
  8584. }
  8585. },
  8586. },
  8587. [
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(5 + 9 / 12, "feet"),
  8591. default: true
  8592. }
  8593. ]
  8594. ))
  8595. characterMakers.push(() => makeCharacter(
  8596. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8597. {
  8598. back: {
  8599. height: math.unit(5 + 4 / 12, "feet"),
  8600. weight: math.unit(4963, "lb"),
  8601. name: "Back",
  8602. image: {
  8603. source: "./media/characters/amelia-rosie/back.svg",
  8604. extra: 1113 / 963,
  8605. bottom: 0.01
  8606. }
  8607. },
  8608. },
  8609. [
  8610. {
  8611. name: "Level 0",
  8612. height: math.unit(5 + 4 / 12, "feet")
  8613. },
  8614. {
  8615. name: "Level 1",
  8616. height: math.unit(164597, "feet"),
  8617. default: true
  8618. },
  8619. {
  8620. name: "Level 2",
  8621. height: math.unit(956243, "miles")
  8622. },
  8623. {
  8624. name: "Level 3",
  8625. height: math.unit(29421709423, "miles")
  8626. },
  8627. {
  8628. name: "Level 4",
  8629. height: math.unit(154, "lightyears")
  8630. },
  8631. {
  8632. name: "Level 5",
  8633. height: math.unit(4738272, "lightyears")
  8634. },
  8635. {
  8636. name: "Level 6",
  8637. height: math.unit(145787152896, "lightyears")
  8638. },
  8639. ]
  8640. ))
  8641. characterMakers.push(() => makeCharacter(
  8642. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8643. {
  8644. front: {
  8645. height: math.unit(5 + 11 / 12, "feet"),
  8646. weight: math.unit(65, "kg"),
  8647. name: "Front",
  8648. image: {
  8649. source: "./media/characters/rook-kitara/front.svg",
  8650. extra: 1347 / 1274,
  8651. bottom: 0.005
  8652. }
  8653. },
  8654. },
  8655. [
  8656. {
  8657. name: "Totally Unfair",
  8658. height: math.unit(1.8, "mm")
  8659. },
  8660. {
  8661. name: "Lap Rookie",
  8662. height: math.unit(1.4, "feet")
  8663. },
  8664. {
  8665. name: "Normal",
  8666. height: math.unit(5 + 11 / 12, "feet"),
  8667. default: true
  8668. },
  8669. {
  8670. name: "How Did This Happen",
  8671. height: math.unit(80, "miles")
  8672. }
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8677. {
  8678. front: {
  8679. height: math.unit(7, "feet"),
  8680. weight: math.unit(300, "lb"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/pisces/front.svg",
  8684. extra: 2255 / 2115,
  8685. bottom: 0.03
  8686. }
  8687. },
  8688. back: {
  8689. height: math.unit(7, "feet"),
  8690. weight: math.unit(300, "lb"),
  8691. name: "Back",
  8692. image: {
  8693. source: "./media/characters/pisces/back.svg",
  8694. extra: 2146 / 2055,
  8695. bottom: 0.04
  8696. }
  8697. },
  8698. },
  8699. [
  8700. {
  8701. name: "Normal",
  8702. height: math.unit(7, "feet"),
  8703. default: true
  8704. },
  8705. {
  8706. name: "Swimming Pool",
  8707. height: math.unit(12.2, "meters")
  8708. },
  8709. {
  8710. name: "Olympic Swimming Pool",
  8711. height: math.unit(56.3, "meters")
  8712. },
  8713. {
  8714. name: "Lake Superior",
  8715. height: math.unit(93900, "meters")
  8716. },
  8717. {
  8718. name: "Mediterranean Sea",
  8719. height: math.unit(644457, "meters")
  8720. },
  8721. {
  8722. name: "World's Oceans",
  8723. height: math.unit(4567491, "meters")
  8724. },
  8725. ]
  8726. ))
  8727. characterMakers.push(() => makeCharacter(
  8728. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8729. {
  8730. front: {
  8731. height: math.unit(2.3, "meters"),
  8732. weight: math.unit(120, "kg"),
  8733. name: "Front",
  8734. image: {
  8735. source: "./media/characters/zelas/front.svg"
  8736. }
  8737. },
  8738. side: {
  8739. height: math.unit(2.3, "meters"),
  8740. weight: math.unit(120, "kg"),
  8741. name: "Side",
  8742. image: {
  8743. source: "./media/characters/zelas/side.svg"
  8744. }
  8745. },
  8746. back: {
  8747. height: math.unit(2.3, "meters"),
  8748. weight: math.unit(120, "kg"),
  8749. name: "Back",
  8750. image: {
  8751. source: "./media/characters/zelas/back.svg"
  8752. }
  8753. },
  8754. foot: {
  8755. height: math.unit(1.116, "feet"),
  8756. name: "Foot",
  8757. image: {
  8758. source: "./media/characters/zelas/foot.svg"
  8759. }
  8760. },
  8761. },
  8762. [
  8763. {
  8764. name: "Normal",
  8765. height: math.unit(2.3, "meters")
  8766. },
  8767. {
  8768. name: "Macro",
  8769. height: math.unit(30, "meters"),
  8770. default: true
  8771. },
  8772. ]
  8773. ))
  8774. characterMakers.push(() => makeCharacter(
  8775. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8776. {
  8777. front: {
  8778. height: math.unit(1, "inch"),
  8779. weight: math.unit(0.21, "grams"),
  8780. name: "Front",
  8781. image: {
  8782. source: "./media/characters/talbot/front.svg",
  8783. extra: 594 / 544
  8784. }
  8785. },
  8786. },
  8787. [
  8788. {
  8789. name: "Micro",
  8790. height: math.unit(1, "inch"),
  8791. default: true
  8792. },
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8797. {
  8798. front: {
  8799. height: math.unit(3 + 3 / 12, "feet"),
  8800. weight: math.unit(51.8, "lb"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/fliss/front.svg",
  8804. extra: 840 / 640
  8805. }
  8806. },
  8807. },
  8808. [
  8809. {
  8810. name: "Teeny Tiny",
  8811. height: math.unit(1, "mm")
  8812. },
  8813. {
  8814. name: "Small",
  8815. height: math.unit(1, "inch"),
  8816. default: true
  8817. },
  8818. {
  8819. name: "Standard Sylveon",
  8820. height: math.unit(3 + 3 / 12, "feet")
  8821. },
  8822. {
  8823. name: "Large Nuisance",
  8824. height: math.unit(33, "feet")
  8825. },
  8826. {
  8827. name: "City Filler",
  8828. height: math.unit(3000, "feet")
  8829. },
  8830. {
  8831. name: "New Horizon",
  8832. height: math.unit(6000, "miles")
  8833. },
  8834. ]
  8835. ))
  8836. characterMakers.push(() => makeCharacter(
  8837. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8838. {
  8839. front: {
  8840. height: math.unit(5, "cm"),
  8841. weight: math.unit(1.94, "g"),
  8842. name: "Front",
  8843. image: {
  8844. source: "./media/characters/fleta/front.svg",
  8845. extra: 835 / 803
  8846. }
  8847. },
  8848. back: {
  8849. height: math.unit(5, "cm"),
  8850. weight: math.unit(1.94, "g"),
  8851. name: "Back",
  8852. image: {
  8853. source: "./media/characters/fleta/back.svg",
  8854. extra: 835 / 803
  8855. }
  8856. },
  8857. },
  8858. [
  8859. {
  8860. name: "Micro",
  8861. height: math.unit(5, "cm"),
  8862. default: true
  8863. },
  8864. ]
  8865. ))
  8866. characterMakers.push(() => makeCharacter(
  8867. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8868. {
  8869. front: {
  8870. height: math.unit(6, "feet"),
  8871. weight: math.unit(225, "lb"),
  8872. name: "Front",
  8873. image: {
  8874. source: "./media/characters/dominic/front.svg",
  8875. extra: 1770 / 1620,
  8876. bottom: 0.025
  8877. }
  8878. },
  8879. back: {
  8880. height: math.unit(6, "feet"),
  8881. weight: math.unit(225, "lb"),
  8882. name: "Back",
  8883. image: {
  8884. source: "./media/characters/dominic/back.svg",
  8885. extra: 1745 / 1620,
  8886. bottom: 0.065
  8887. }
  8888. },
  8889. },
  8890. [
  8891. {
  8892. name: "Nano",
  8893. height: math.unit(0.1, "mm")
  8894. },
  8895. {
  8896. name: "Micro-",
  8897. height: math.unit(1, "mm")
  8898. },
  8899. {
  8900. name: "Micro",
  8901. height: math.unit(4, "inches")
  8902. },
  8903. {
  8904. name: "Normal",
  8905. height: math.unit(6 + 4 / 12, "feet"),
  8906. default: true
  8907. },
  8908. {
  8909. name: "Macro",
  8910. height: math.unit(115, "feet")
  8911. },
  8912. {
  8913. name: "Macro+",
  8914. height: math.unit(955, "feet")
  8915. },
  8916. {
  8917. name: "Megamacro",
  8918. height: math.unit(8990, "feet")
  8919. },
  8920. {
  8921. name: "Gigmacro",
  8922. height: math.unit(9310, "miles")
  8923. },
  8924. {
  8925. name: "Teramacro",
  8926. height: math.unit(1567005010, "miles")
  8927. },
  8928. {
  8929. name: "Examacro",
  8930. height: math.unit(1425, "parsecs")
  8931. },
  8932. ]
  8933. ))
  8934. characterMakers.push(() => makeCharacter(
  8935. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8936. {
  8937. front: {
  8938. height: math.unit(400, "feet"),
  8939. weight: math.unit(44444444, "lb"),
  8940. name: "Front",
  8941. image: {
  8942. source: "./media/characters/major-colonel/front.svg"
  8943. }
  8944. },
  8945. back: {
  8946. height: math.unit(400, "feet"),
  8947. weight: math.unit(44444444, "lb"),
  8948. name: "Back",
  8949. image: {
  8950. source: "./media/characters/major-colonel/back.svg"
  8951. }
  8952. },
  8953. },
  8954. [
  8955. {
  8956. name: "Macro",
  8957. height: math.unit(400, "feet"),
  8958. default: true
  8959. },
  8960. ]
  8961. ))
  8962. characterMakers.push(() => makeCharacter(
  8963. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8964. {
  8965. catFront: {
  8966. height: math.unit(6, "feet"),
  8967. weight: math.unit(120, "lb"),
  8968. name: "Front (Cat Side)",
  8969. image: {
  8970. source: "./media/characters/axel-lycan/cat-front.svg",
  8971. extra: 430 / 402,
  8972. bottom: 43 / 472.35
  8973. }
  8974. },
  8975. catBack: {
  8976. height: math.unit(6, "feet"),
  8977. weight: math.unit(120, "lb"),
  8978. name: "Back (Cat Side)",
  8979. image: {
  8980. source: "./media/characters/axel-lycan/cat-back.svg",
  8981. extra: 447 / 419,
  8982. bottom: 23.3 / 469
  8983. }
  8984. },
  8985. wolfFront: {
  8986. height: math.unit(6, "feet"),
  8987. weight: math.unit(120, "lb"),
  8988. name: "Front (Wolf Side)",
  8989. image: {
  8990. source: "./media/characters/axel-lycan/wolf-front.svg",
  8991. extra: 485 / 456,
  8992. bottom: 19 / 504
  8993. }
  8994. },
  8995. wolfBack: {
  8996. height: math.unit(6, "feet"),
  8997. weight: math.unit(120, "lb"),
  8998. name: "Back (Wolf Side)",
  8999. image: {
  9000. source: "./media/characters/axel-lycan/wolf-back.svg",
  9001. extra: 475 / 438,
  9002. bottom: 39.2 / 514
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Macro",
  9009. height: math.unit(1, "km"),
  9010. default: true
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9016. {
  9017. front: {
  9018. height: math.unit(5 + 9 / 12, "feet"),
  9019. weight: math.unit(175, "lb"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/vanrel-hyena/front.svg",
  9023. extra: 1086 / 1010,
  9024. bottom: 0.04
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Normal",
  9031. height: math.unit(5 + 9 / 12, "feet"),
  9032. default: true
  9033. },
  9034. ]
  9035. ))
  9036. characterMakers.push(() => makeCharacter(
  9037. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9038. {
  9039. front: {
  9040. height: math.unit(6, "feet"),
  9041. weight: math.unit(103, "lb"),
  9042. name: "Front",
  9043. image: {
  9044. source: "./media/characters/abbott-absol/front.svg",
  9045. extra: 2010 / 1842
  9046. }
  9047. },
  9048. },
  9049. [
  9050. {
  9051. name: "Megamicro",
  9052. height: math.unit(0.1, "mm")
  9053. },
  9054. {
  9055. name: "Micro",
  9056. height: math.unit(1, "inch")
  9057. },
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(6, "feet"),
  9061. default: true
  9062. },
  9063. ]
  9064. ))
  9065. characterMakers.push(() => makeCharacter(
  9066. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9067. {
  9068. front: {
  9069. height: math.unit(6, "feet"),
  9070. weight: math.unit(264, "lb"),
  9071. name: "Front",
  9072. image: {
  9073. source: "./media/characters/hector/front.svg",
  9074. extra: 2280 / 2130,
  9075. bottom: 0.07
  9076. }
  9077. },
  9078. },
  9079. [
  9080. {
  9081. name: "Normal",
  9082. height: math.unit(12.25, "foot"),
  9083. default: true
  9084. },
  9085. {
  9086. name: "Macro",
  9087. height: math.unit(160, "feet")
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(6, "feet"),
  9096. weight: math.unit(150, "lb"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/sal/front.svg",
  9100. extra: 1846 / 1699,
  9101. bottom: 0.04
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Megamacro",
  9108. height: math.unit(10, "miles"),
  9109. default: true
  9110. },
  9111. ]
  9112. ))
  9113. characterMakers.push(() => makeCharacter(
  9114. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9115. {
  9116. front: {
  9117. height: math.unit(3, "meters"),
  9118. weight: math.unit(450, "kg"),
  9119. name: "front",
  9120. image: {
  9121. source: "./media/characters/ranger/front.svg",
  9122. extra: 2401 / 2243,
  9123. bottom: 0.05
  9124. }
  9125. },
  9126. },
  9127. [
  9128. {
  9129. name: "Normal",
  9130. height: math.unit(3, "meters"),
  9131. default: true
  9132. },
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9137. {
  9138. front: {
  9139. height: math.unit(14, "feet"),
  9140. weight: math.unit(800, "kg"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/theresa/front.svg",
  9144. extra: 3575 / 3346,
  9145. bottom: 0.03
  9146. }
  9147. },
  9148. },
  9149. [
  9150. {
  9151. name: "Normal",
  9152. height: math.unit(14, "feet"),
  9153. default: true
  9154. },
  9155. ]
  9156. ))
  9157. characterMakers.push(() => makeCharacter(
  9158. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9159. {
  9160. front: {
  9161. height: math.unit(6, "feet"),
  9162. weight: math.unit(3, "kg"),
  9163. name: "Front",
  9164. image: {
  9165. source: "./media/characters/ine/front.svg",
  9166. extra: 678 / 539,
  9167. bottom: 0.023
  9168. }
  9169. },
  9170. },
  9171. [
  9172. {
  9173. name: "Normal",
  9174. height: math.unit(2.265, "feet"),
  9175. default: true
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(5, "feet"),
  9184. weight: math.unit(30, "kg"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/vial/front.svg",
  9188. extra: 1365 / 1277,
  9189. bottom: 0.04
  9190. }
  9191. },
  9192. },
  9193. [
  9194. {
  9195. name: "Normal",
  9196. height: math.unit(5, "feet"),
  9197. default: true
  9198. },
  9199. ]
  9200. ))
  9201. characterMakers.push(() => makeCharacter(
  9202. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9203. {
  9204. side: {
  9205. height: math.unit(3.4, "meters"),
  9206. weight: math.unit(1000, "lb"),
  9207. name: "Side",
  9208. image: {
  9209. source: "./media/characters/rovoska/side.svg",
  9210. extra: 4403 / 1515
  9211. }
  9212. },
  9213. },
  9214. [
  9215. {
  9216. name: "Normal",
  9217. height: math.unit(3.4, "meters"),
  9218. default: true
  9219. },
  9220. ]
  9221. ))
  9222. characterMakers.push(() => makeCharacter(
  9223. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9224. {
  9225. front: {
  9226. height: math.unit(8, "feet"),
  9227. weight: math.unit(315, "lb"),
  9228. name: "Front",
  9229. image: {
  9230. source: "./media/characters/gunner-rotthbauer/front.svg"
  9231. }
  9232. },
  9233. back: {
  9234. height: math.unit(8, "feet"),
  9235. weight: math.unit(315, "lb"),
  9236. name: "Back",
  9237. image: {
  9238. source: "./media/characters/gunner-rotthbauer/back.svg"
  9239. }
  9240. },
  9241. },
  9242. [
  9243. {
  9244. name: "Micro",
  9245. height: math.unit(3.5, "inches")
  9246. },
  9247. {
  9248. name: "Normal",
  9249. height: math.unit(8, "feet"),
  9250. default: true
  9251. },
  9252. {
  9253. name: "Macro",
  9254. height: math.unit(250, "feet")
  9255. },
  9256. {
  9257. name: "Megamacro",
  9258. height: math.unit(1, "AU")
  9259. },
  9260. ]
  9261. ))
  9262. characterMakers.push(() => makeCharacter(
  9263. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9264. {
  9265. front: {
  9266. height: math.unit(5 + 5 / 12, "feet"),
  9267. weight: math.unit(140, "lb"),
  9268. name: "Front",
  9269. image: {
  9270. source: "./media/characters/allatia/front.svg",
  9271. extra: 1227 / 1180,
  9272. bottom: 0.027
  9273. }
  9274. },
  9275. },
  9276. [
  9277. {
  9278. name: "Normal",
  9279. height: math.unit(5 + 5 / 12, "feet")
  9280. },
  9281. {
  9282. name: "Macro",
  9283. height: math.unit(250, "feet"),
  9284. default: true
  9285. },
  9286. {
  9287. name: "Megamacro",
  9288. height: math.unit(8, "miles")
  9289. }
  9290. ]
  9291. ))
  9292. characterMakers.push(() => makeCharacter(
  9293. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9294. {
  9295. front: {
  9296. height: math.unit(6, "feet"),
  9297. weight: math.unit(120, "lb"),
  9298. name: "Front",
  9299. image: {
  9300. source: "./media/characters/tene/front.svg",
  9301. extra: 1728 / 1578,
  9302. bottom: 0.022
  9303. }
  9304. },
  9305. stomping: {
  9306. height: math.unit(2.025, "meters"),
  9307. weight: math.unit(120, "lb"),
  9308. name: "Stomping",
  9309. image: {
  9310. source: "./media/characters/tene/stomping.svg",
  9311. extra: 938 / 873,
  9312. bottom: 0.01
  9313. }
  9314. },
  9315. sitting: {
  9316. height: math.unit(1, "meter"),
  9317. weight: math.unit(120, "lb"),
  9318. name: "Sitting",
  9319. image: {
  9320. source: "./media/characters/tene/sitting.svg",
  9321. extra: 437 / 415,
  9322. bottom: 0.1
  9323. }
  9324. },
  9325. feral: {
  9326. height: math.unit(3.9, "feet"),
  9327. weight: math.unit(250, "lb"),
  9328. name: "Feral",
  9329. image: {
  9330. source: "./media/characters/tene/feral.svg",
  9331. extra: 717 / 458,
  9332. bottom: 0.179
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Normal",
  9339. height: math.unit(6, "feet")
  9340. },
  9341. {
  9342. name: "Macro",
  9343. height: math.unit(300, "feet"),
  9344. default: true
  9345. },
  9346. {
  9347. name: "Megamacro",
  9348. height: math.unit(5, "miles")
  9349. },
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9354. {
  9355. side: {
  9356. height: math.unit(6, "feet"),
  9357. name: "Side",
  9358. image: {
  9359. source: "./media/characters/evander/side.svg",
  9360. extra: 877 / 477
  9361. }
  9362. },
  9363. },
  9364. [
  9365. {
  9366. name: "Normal",
  9367. height: math.unit(0.83, "meters"),
  9368. default: true
  9369. },
  9370. ]
  9371. ))
  9372. characterMakers.push(() => makeCharacter(
  9373. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9374. {
  9375. front: {
  9376. height: math.unit(12, "feet"),
  9377. weight: math.unit(1000, "lb"),
  9378. name: "Front",
  9379. image: {
  9380. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9381. extra: 1762 / 1611
  9382. }
  9383. },
  9384. back: {
  9385. height: math.unit(12, "feet"),
  9386. weight: math.unit(1000, "lb"),
  9387. name: "Back",
  9388. image: {
  9389. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9390. extra: 1762 / 1611
  9391. }
  9392. },
  9393. },
  9394. [
  9395. {
  9396. name: "Normal",
  9397. height: math.unit(12, "feet"),
  9398. default: true
  9399. },
  9400. {
  9401. name: "Kaiju",
  9402. height: math.unit(150, "feet")
  9403. },
  9404. ]
  9405. ))
  9406. characterMakers.push(() => makeCharacter(
  9407. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9408. {
  9409. front: {
  9410. height: math.unit(6, "feet"),
  9411. weight: math.unit(150, "lb"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/zero-alurus/front.svg"
  9415. }
  9416. },
  9417. back: {
  9418. height: math.unit(6, "feet"),
  9419. weight: math.unit(150, "lb"),
  9420. name: "Back",
  9421. image: {
  9422. source: "./media/characters/zero-alurus/back.svg"
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Normal",
  9429. height: math.unit(5 + 10 / 12, "feet")
  9430. },
  9431. {
  9432. name: "Macro",
  9433. height: math.unit(60, "feet"),
  9434. default: true
  9435. },
  9436. {
  9437. name: "Macro+",
  9438. height: math.unit(450, "feet")
  9439. },
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9444. {
  9445. front: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(200, "lb"),
  9448. name: "Front",
  9449. image: {
  9450. source: "./media/characters/mega-shi/front.svg",
  9451. extra: 1279 / 1250,
  9452. bottom: 0.02
  9453. }
  9454. },
  9455. back: {
  9456. height: math.unit(6, "feet"),
  9457. weight: math.unit(200, "lb"),
  9458. name: "Back",
  9459. image: {
  9460. source: "./media/characters/mega-shi/back.svg",
  9461. extra: 1279 / 1250,
  9462. bottom: 0.02
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Micro",
  9469. height: math.unit(16 + 6 / 12, "feet")
  9470. },
  9471. {
  9472. name: "Third Dimension",
  9473. height: math.unit(40, "meters")
  9474. },
  9475. {
  9476. name: "Normal",
  9477. height: math.unit(660, "feet"),
  9478. default: true
  9479. },
  9480. {
  9481. name: "Megamacro",
  9482. height: math.unit(10, "miles")
  9483. },
  9484. {
  9485. name: "Planetary Launch",
  9486. height: math.unit(500, "miles")
  9487. },
  9488. {
  9489. name: "Interstellar",
  9490. height: math.unit(1e9, "miles")
  9491. },
  9492. {
  9493. name: "Leaving the Universe",
  9494. height: math.unit(1, "gigaparsec")
  9495. },
  9496. {
  9497. name: "Travelling Universes",
  9498. height: math.unit(30e15, "parsecs")
  9499. },
  9500. ]
  9501. ))
  9502. characterMakers.push(() => makeCharacter(
  9503. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9504. {
  9505. front: {
  9506. height: math.unit(6, "feet"),
  9507. weight: math.unit(150, "lb"),
  9508. name: "Front",
  9509. image: {
  9510. source: "./media/characters/odyssey/front.svg",
  9511. extra: 1782 / 1582,
  9512. bottom: 0.01
  9513. }
  9514. },
  9515. side: {
  9516. height: math.unit(5.7, "feet"),
  9517. weight: math.unit(140, "lb"),
  9518. name: "Side",
  9519. image: {
  9520. source: "./media/characters/odyssey/side.svg",
  9521. extra: 6462 / 5700
  9522. }
  9523. },
  9524. },
  9525. [
  9526. {
  9527. name: "Normal",
  9528. height: math.unit(5 + 4 / 12, "feet")
  9529. },
  9530. {
  9531. name: "Macro",
  9532. height: math.unit(1, "km")
  9533. },
  9534. {
  9535. name: "Megamacro",
  9536. height: math.unit(3000, "km")
  9537. },
  9538. {
  9539. name: "Gigamacro",
  9540. height: math.unit(1, "AU"),
  9541. default: true
  9542. },
  9543. {
  9544. name: "Omniversal",
  9545. height: math.unit(100e14, "lightyears")
  9546. },
  9547. ]
  9548. ))
  9549. characterMakers.push(() => makeCharacter(
  9550. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9551. {
  9552. front: {
  9553. height: math.unit(6, "feet"),
  9554. weight: math.unit(300, "lb"),
  9555. name: "Front",
  9556. image: {
  9557. source: "./media/characters/mekuto/front.svg",
  9558. extra: 921 / 832,
  9559. bottom: 0.03
  9560. }
  9561. },
  9562. hand: {
  9563. height: math.unit(6 / 10.24, "feet"),
  9564. name: "Hand",
  9565. image: {
  9566. source: "./media/characters/mekuto/hand.svg"
  9567. }
  9568. },
  9569. foot: {
  9570. height: math.unit(6 / 5.05, "feet"),
  9571. name: "Foot",
  9572. image: {
  9573. source: "./media/characters/mekuto/foot.svg"
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Minimicro",
  9580. height: math.unit(0.2, "inches")
  9581. },
  9582. {
  9583. name: "Micro",
  9584. height: math.unit(1.5, "inches")
  9585. },
  9586. {
  9587. name: "Normal",
  9588. height: math.unit(5 + 11 / 12, "feet"),
  9589. default: true
  9590. },
  9591. {
  9592. name: "Minimacro",
  9593. height: math.unit(17 + 9 / 12, "feet")
  9594. },
  9595. {
  9596. name: "Macro",
  9597. height: math.unit(177.5, "feet")
  9598. },
  9599. {
  9600. name: "Megamacro",
  9601. height: math.unit(152, "miles")
  9602. },
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9607. {
  9608. front: {
  9609. height: math.unit(6.5, "inches"),
  9610. weight: math.unit(13, "oz"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/dafydd-tomos/front.svg",
  9614. extra: 2990 / 2603,
  9615. bottom: 0.03
  9616. }
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Micro",
  9622. height: math.unit(6.5, "inches"),
  9623. default: true
  9624. },
  9625. ]
  9626. ))
  9627. characterMakers.push(() => makeCharacter(
  9628. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9629. {
  9630. front: {
  9631. height: math.unit(6, "feet"),
  9632. weight: math.unit(150, "lb"),
  9633. name: "Front",
  9634. image: {
  9635. source: "./media/characters/splinter/front.svg",
  9636. extra: 2990 / 2882,
  9637. bottom: 0.04
  9638. }
  9639. },
  9640. back: {
  9641. height: math.unit(6, "feet"),
  9642. weight: math.unit(150, "lb"),
  9643. name: "Back",
  9644. image: {
  9645. source: "./media/characters/splinter/back.svg",
  9646. extra: 2990 / 2882,
  9647. bottom: 0.04
  9648. }
  9649. },
  9650. },
  9651. [
  9652. {
  9653. name: "Normal",
  9654. height: math.unit(6, "feet")
  9655. },
  9656. {
  9657. name: "Macro",
  9658. height: math.unit(230, "meters"),
  9659. default: true
  9660. },
  9661. ]
  9662. ))
  9663. characterMakers.push(() => makeCharacter(
  9664. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9665. {
  9666. front: {
  9667. height: math.unit(4 + 10 / 12, "feet"),
  9668. weight: math.unit(480, "lb"),
  9669. name: "Front",
  9670. image: {
  9671. source: "./media/characters/snow-gabumon/front.svg",
  9672. extra: 1140 / 963,
  9673. bottom: 0.058
  9674. }
  9675. },
  9676. back: {
  9677. height: math.unit(4 + 10 / 12, "feet"),
  9678. weight: math.unit(480, "lb"),
  9679. name: "Back",
  9680. image: {
  9681. source: "./media/characters/snow-gabumon/back.svg",
  9682. extra: 1115 / 962,
  9683. bottom: 0.041
  9684. }
  9685. },
  9686. frontUndresed: {
  9687. height: math.unit(4 + 10 / 12, "feet"),
  9688. weight: math.unit(480, "lb"),
  9689. name: "Front (Undressed)",
  9690. image: {
  9691. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9692. extra: 1061 / 960,
  9693. bottom: 0.045
  9694. }
  9695. },
  9696. },
  9697. [
  9698. {
  9699. name: "Micro",
  9700. height: math.unit(1, "inch")
  9701. },
  9702. {
  9703. name: "Normal",
  9704. height: math.unit(4 + 10 / 12, "feet"),
  9705. default: true
  9706. },
  9707. {
  9708. name: "Macro",
  9709. height: math.unit(200, "feet")
  9710. },
  9711. {
  9712. name: "Megamacro",
  9713. height: math.unit(120, "miles")
  9714. },
  9715. {
  9716. name: "Gigamacro",
  9717. height: math.unit(9800, "miles")
  9718. },
  9719. ]
  9720. ))
  9721. characterMakers.push(() => makeCharacter(
  9722. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9723. {
  9724. front: {
  9725. height: math.unit(1.7, "meters"),
  9726. weight: math.unit(140, "lb"),
  9727. name: "Front",
  9728. image: {
  9729. source: "./media/characters/moody/front.svg",
  9730. extra: 3226 / 3007,
  9731. bottom: 0.087
  9732. }
  9733. },
  9734. },
  9735. [
  9736. {
  9737. name: "Micro",
  9738. height: math.unit(1, "mm")
  9739. },
  9740. {
  9741. name: "Normal",
  9742. height: math.unit(1.7, "meters"),
  9743. default: true
  9744. },
  9745. {
  9746. name: "Macro",
  9747. height: math.unit(80, "meters")
  9748. },
  9749. {
  9750. name: "Macro+",
  9751. height: math.unit(500, "meters")
  9752. },
  9753. ]
  9754. ))
  9755. characterMakers.push(() => makeCharacter(
  9756. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9757. {
  9758. front: {
  9759. height: math.unit(6, "feet"),
  9760. weight: math.unit(150, "lb"),
  9761. name: "Front",
  9762. image: {
  9763. source: "./media/characters/zyas/front.svg",
  9764. extra: 1180 / 1120,
  9765. bottom: 0.045
  9766. }
  9767. },
  9768. },
  9769. [
  9770. {
  9771. name: "Normal",
  9772. height: math.unit(10, "feet"),
  9773. default: true
  9774. },
  9775. {
  9776. name: "Macro",
  9777. height: math.unit(500, "feet")
  9778. },
  9779. {
  9780. name: "Megamacro",
  9781. height: math.unit(5, "miles")
  9782. },
  9783. {
  9784. name: "Teramacro",
  9785. height: math.unit(150000, "miles")
  9786. },
  9787. ]
  9788. ))
  9789. characterMakers.push(() => makeCharacter(
  9790. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9791. {
  9792. front: {
  9793. height: math.unit(6, "feet"),
  9794. weight: math.unit(150, "lb"),
  9795. name: "Front",
  9796. image: {
  9797. source: "./media/characters/cuon/front.svg",
  9798. extra: 1390 / 1320,
  9799. bottom: 0.008
  9800. }
  9801. },
  9802. },
  9803. [
  9804. {
  9805. name: "Micro",
  9806. height: math.unit(3, "inches")
  9807. },
  9808. {
  9809. name: "Normal",
  9810. height: math.unit(18 + 9 / 12, "feet"),
  9811. default: true
  9812. },
  9813. {
  9814. name: "Macro",
  9815. height: math.unit(360, "feet")
  9816. },
  9817. {
  9818. name: "Megamacro",
  9819. height: math.unit(360, "miles")
  9820. },
  9821. ]
  9822. ))
  9823. characterMakers.push(() => makeCharacter(
  9824. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9825. {
  9826. front: {
  9827. height: math.unit(2.4, "meters"),
  9828. weight: math.unit(70, "kg"),
  9829. name: "Front",
  9830. image: {
  9831. source: "./media/characters/nyanuxk/front.svg",
  9832. extra: 1172 / 1084,
  9833. bottom: 0.065
  9834. }
  9835. },
  9836. side: {
  9837. height: math.unit(2.4, "meters"),
  9838. weight: math.unit(70, "kg"),
  9839. name: "Side",
  9840. image: {
  9841. source: "./media/characters/nyanuxk/side.svg",
  9842. extra: 1190 / 1132,
  9843. bottom: 0.007
  9844. }
  9845. },
  9846. back: {
  9847. height: math.unit(2.4, "meters"),
  9848. weight: math.unit(70, "kg"),
  9849. name: "Back",
  9850. image: {
  9851. source: "./media/characters/nyanuxk/back.svg",
  9852. extra: 1200 / 1141,
  9853. bottom: 0.015
  9854. }
  9855. },
  9856. foot: {
  9857. height: math.unit(0.52, "meters"),
  9858. name: "Foot",
  9859. image: {
  9860. source: "./media/characters/nyanuxk/foot.svg"
  9861. }
  9862. },
  9863. },
  9864. [
  9865. {
  9866. name: "Micro",
  9867. height: math.unit(2, "cm")
  9868. },
  9869. {
  9870. name: "Normal",
  9871. height: math.unit(2.4, "meters"),
  9872. default: true
  9873. },
  9874. {
  9875. name: "Smaller Macro",
  9876. height: math.unit(120, "meters")
  9877. },
  9878. {
  9879. name: "Bigger Macro",
  9880. height: math.unit(1.2, "km")
  9881. },
  9882. {
  9883. name: "Megamacro",
  9884. height: math.unit(15, "kilometers")
  9885. },
  9886. {
  9887. name: "Gigamacro",
  9888. height: math.unit(2000, "km")
  9889. },
  9890. {
  9891. name: "Teramacro",
  9892. height: math.unit(500000, "km")
  9893. },
  9894. ]
  9895. ))
  9896. characterMakers.push(() => makeCharacter(
  9897. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9898. {
  9899. side: {
  9900. height: math.unit(6, "feet"),
  9901. name: "Side",
  9902. image: {
  9903. source: "./media/characters/ailbhe/side.svg",
  9904. extra: 757 / 464,
  9905. bottom: 0.041
  9906. }
  9907. },
  9908. },
  9909. [
  9910. {
  9911. name: "Normal",
  9912. height: math.unit(1.07, "meters"),
  9913. default: true
  9914. },
  9915. ]
  9916. ))
  9917. characterMakers.push(() => makeCharacter(
  9918. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9919. {
  9920. front: {
  9921. height: math.unit(6, "feet"),
  9922. weight: math.unit(120, "kg"),
  9923. name: "Front",
  9924. image: {
  9925. source: "./media/characters/zevulfius/front.svg",
  9926. extra: 965 / 903
  9927. }
  9928. },
  9929. side: {
  9930. height: math.unit(6, "feet"),
  9931. weight: math.unit(120, "kg"),
  9932. name: "Side",
  9933. image: {
  9934. source: "./media/characters/zevulfius/side.svg",
  9935. extra: 939 / 900
  9936. }
  9937. },
  9938. back: {
  9939. height: math.unit(6, "feet"),
  9940. weight: math.unit(120, "kg"),
  9941. name: "Back",
  9942. image: {
  9943. source: "./media/characters/zevulfius/back.svg",
  9944. extra: 918 / 854,
  9945. bottom: 0.005
  9946. }
  9947. },
  9948. foot: {
  9949. height: math.unit(6 / 3.72, "feet"),
  9950. name: "Foot",
  9951. image: {
  9952. source: "./media/characters/zevulfius/foot.svg"
  9953. }
  9954. },
  9955. },
  9956. [
  9957. {
  9958. name: "Macro",
  9959. height: math.unit(750, "meters")
  9960. },
  9961. {
  9962. name: "Megamacro",
  9963. height: math.unit(20, "km"),
  9964. default: true
  9965. },
  9966. {
  9967. name: "Gigamacro",
  9968. height: math.unit(2000, "km")
  9969. },
  9970. {
  9971. name: "Teramacro",
  9972. height: math.unit(250000, "km")
  9973. },
  9974. ]
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9978. {
  9979. front: {
  9980. height: math.unit(100, "feet"),
  9981. weight: math.unit(350, "kg"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/rikes/front.svg",
  9985. extra: 1565 / 1483,
  9986. bottom: 0.017
  9987. }
  9988. },
  9989. },
  9990. [
  9991. {
  9992. name: "Macro",
  9993. height: math.unit(100, "feet"),
  9994. default: true
  9995. },
  9996. ]
  9997. ))
  9998. characterMakers.push(() => makeCharacter(
  9999. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10000. {
  10001. anthro: {
  10002. height: math.unit(8, "feet"),
  10003. weight: math.unit(120, "kg"),
  10004. name: "Anthro",
  10005. image: {
  10006. source: "./media/characters/adam-silver-mane/anthro.svg",
  10007. extra: 5743 / 5339,
  10008. bottom: 0.07
  10009. }
  10010. },
  10011. taur: {
  10012. height: math.unit(16, "feet"),
  10013. weight: math.unit(1500, "kg"),
  10014. name: "Taur",
  10015. image: {
  10016. source: "./media/characters/adam-silver-mane/taur.svg",
  10017. extra: 1713 / 1571,
  10018. bottom: 0.01
  10019. }
  10020. },
  10021. },
  10022. [
  10023. {
  10024. name: "Normal",
  10025. height: math.unit(8, "feet")
  10026. },
  10027. {
  10028. name: "Minimacro",
  10029. height: math.unit(80, "feet")
  10030. },
  10031. {
  10032. name: "Macro",
  10033. height: math.unit(800, "feet"),
  10034. default: true
  10035. },
  10036. {
  10037. name: "Megamacro",
  10038. height: math.unit(8000, "feet")
  10039. },
  10040. {
  10041. name: "Gigamacro",
  10042. height: math.unit(800, "miles")
  10043. },
  10044. {
  10045. name: "Teramacro",
  10046. height: math.unit(80000, "miles")
  10047. },
  10048. {
  10049. name: "Celestial",
  10050. height: math.unit(8e6, "miles")
  10051. },
  10052. {
  10053. name: "Star Dragon",
  10054. height: math.unit(800000, "parsecs")
  10055. },
  10056. {
  10057. name: "Godly",
  10058. height: math.unit(800, "teraparsecs")
  10059. },
  10060. ]
  10061. ))
  10062. characterMakers.push(() => makeCharacter(
  10063. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10064. {
  10065. front: {
  10066. height: math.unit(6, "feet"),
  10067. weight: math.unit(150, "lb"),
  10068. name: "Front",
  10069. image: {
  10070. source: "./media/characters/ky'owin/front.svg",
  10071. extra: 3888 / 3068,
  10072. bottom: 0.015
  10073. }
  10074. },
  10075. },
  10076. [
  10077. {
  10078. name: "Normal",
  10079. height: math.unit(6 + 8 / 12, "feet")
  10080. },
  10081. {
  10082. name: "Large",
  10083. height: math.unit(68, "feet")
  10084. },
  10085. {
  10086. name: "Macro",
  10087. height: math.unit(132, "feet")
  10088. },
  10089. {
  10090. name: "Macro+",
  10091. height: math.unit(340, "feet")
  10092. },
  10093. {
  10094. name: "Macro++",
  10095. height: math.unit(680, "feet"),
  10096. default: true
  10097. },
  10098. {
  10099. name: "Megamacro",
  10100. height: math.unit(1, "mile")
  10101. },
  10102. {
  10103. name: "Megamacro+",
  10104. height: math.unit(10, "miles")
  10105. },
  10106. ]
  10107. ))
  10108. characterMakers.push(() => makeCharacter(
  10109. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10110. {
  10111. front: {
  10112. height: math.unit(4, "feet"),
  10113. weight: math.unit(50, "lb"),
  10114. name: "Front",
  10115. image: {
  10116. source: "./media/characters/mal/front.svg",
  10117. extra: 785 / 724,
  10118. bottom: 0.07
  10119. }
  10120. },
  10121. },
  10122. [
  10123. {
  10124. name: "Micro",
  10125. height: math.unit(4, "inches")
  10126. },
  10127. {
  10128. name: "Normal",
  10129. height: math.unit(4, "feet"),
  10130. default: true
  10131. },
  10132. {
  10133. name: "Macro",
  10134. height: math.unit(200, "feet")
  10135. },
  10136. ]
  10137. ))
  10138. characterMakers.push(() => makeCharacter(
  10139. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10140. {
  10141. front: {
  10142. height: math.unit(6, "feet"),
  10143. weight: math.unit(150, "lb"),
  10144. name: "Front",
  10145. image: {
  10146. source: "./media/characters/jordan-deware/front.svg",
  10147. extra: 1191 / 1012
  10148. }
  10149. },
  10150. },
  10151. [
  10152. {
  10153. name: "Nano",
  10154. height: math.unit(0.01, "mm")
  10155. },
  10156. {
  10157. name: "Minimicro",
  10158. height: math.unit(1, "mm")
  10159. },
  10160. {
  10161. name: "Micro",
  10162. height: math.unit(0.5, "inches")
  10163. },
  10164. {
  10165. name: "Normal",
  10166. height: math.unit(4, "feet"),
  10167. default: true
  10168. },
  10169. {
  10170. name: "Minimacro",
  10171. height: math.unit(40, "meters")
  10172. },
  10173. {
  10174. name: "Small Macro",
  10175. height: math.unit(400, "meters")
  10176. },
  10177. {
  10178. name: "Macro",
  10179. height: math.unit(4, "miles")
  10180. },
  10181. {
  10182. name: "Megamacro",
  10183. height: math.unit(40, "miles")
  10184. },
  10185. {
  10186. name: "Megamacro+",
  10187. height: math.unit(400, "miles")
  10188. },
  10189. {
  10190. name: "Gigamacro",
  10191. height: math.unit(400000, "miles")
  10192. },
  10193. ]
  10194. ))
  10195. characterMakers.push(() => makeCharacter(
  10196. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10197. {
  10198. side: {
  10199. height: math.unit(6, "feet"),
  10200. weight: math.unit(150, "lb"),
  10201. name: "Side",
  10202. image: {
  10203. source: "./media/characters/kimiko/side.svg",
  10204. extra: 600 / 358
  10205. }
  10206. },
  10207. },
  10208. [
  10209. {
  10210. name: "Normal",
  10211. height: math.unit(15, "feet"),
  10212. default: true
  10213. },
  10214. {
  10215. name: "Macro",
  10216. height: math.unit(220, "feet")
  10217. },
  10218. {
  10219. name: "Macro+",
  10220. height: math.unit(1450, "feet")
  10221. },
  10222. {
  10223. name: "Megamacro",
  10224. height: math.unit(11500, "feet")
  10225. },
  10226. {
  10227. name: "Gigamacro",
  10228. height: math.unit(9500, "miles")
  10229. },
  10230. {
  10231. name: "Teramacro",
  10232. height: math.unit(2208005005, "miles")
  10233. },
  10234. {
  10235. name: "Examacro",
  10236. height: math.unit(2750, "parsecs")
  10237. },
  10238. {
  10239. name: "Zettamacro",
  10240. height: math.unit(101500, "parsecs")
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10246. {
  10247. front: {
  10248. height: math.unit(6, "feet"),
  10249. weight: math.unit(70, "kg"),
  10250. name: "Front",
  10251. image: {
  10252. source: "./media/characters/andrew-sleepy/front.svg"
  10253. }
  10254. },
  10255. side: {
  10256. height: math.unit(6, "feet"),
  10257. weight: math.unit(70, "kg"),
  10258. name: "Side",
  10259. image: {
  10260. source: "./media/characters/andrew-sleepy/side.svg"
  10261. }
  10262. },
  10263. },
  10264. [
  10265. {
  10266. name: "Micro",
  10267. height: math.unit(1, "mm"),
  10268. default: true
  10269. },
  10270. ]
  10271. ))
  10272. characterMakers.push(() => makeCharacter(
  10273. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10274. {
  10275. front: {
  10276. height: math.unit(6, "feet"),
  10277. weight: math.unit(150, "lb"),
  10278. name: "Front",
  10279. image: {
  10280. source: "./media/characters/judio/front.svg",
  10281. extra: 1258 / 1110
  10282. }
  10283. },
  10284. },
  10285. [
  10286. {
  10287. name: "Normal",
  10288. height: math.unit(5 + 6 / 12, "feet")
  10289. },
  10290. {
  10291. name: "Macro",
  10292. height: math.unit(1000, "feet"),
  10293. default: true
  10294. },
  10295. {
  10296. name: "Megamacro",
  10297. height: math.unit(10, "miles")
  10298. },
  10299. ]
  10300. ))
  10301. characterMakers.push(() => makeCharacter(
  10302. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10303. {
  10304. front: {
  10305. height: math.unit(6, "feet"),
  10306. weight: math.unit(68, "kg"),
  10307. name: "Front",
  10308. image: {
  10309. source: "./media/characters/nomaxice/front.svg",
  10310. extra: 1498 / 1073,
  10311. bottom: 0.075
  10312. }
  10313. },
  10314. foot: {
  10315. height: math.unit(1.1, "feet"),
  10316. name: "Foot",
  10317. image: {
  10318. source: "./media/characters/nomaxice/foot.svg"
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Micro",
  10325. height: math.unit(8, "cm")
  10326. },
  10327. {
  10328. name: "Norm",
  10329. height: math.unit(1.82, "m")
  10330. },
  10331. {
  10332. name: "Norm+",
  10333. height: math.unit(8.8, "feet")
  10334. },
  10335. {
  10336. name: "Big",
  10337. height: math.unit(8, "meters"),
  10338. default: true
  10339. },
  10340. {
  10341. name: "Macro",
  10342. height: math.unit(18, "meters")
  10343. },
  10344. {
  10345. name: "Macro+",
  10346. height: math.unit(88, "meters")
  10347. },
  10348. ]
  10349. ))
  10350. characterMakers.push(() => makeCharacter(
  10351. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10352. {
  10353. front: {
  10354. height: math.unit(12, "feet"),
  10355. weight: math.unit(1.5, "tons"),
  10356. name: "Front",
  10357. image: {
  10358. source: "./media/characters/dydros/front.svg",
  10359. extra: 863 / 800,
  10360. bottom: 0.015
  10361. }
  10362. },
  10363. back: {
  10364. height: math.unit(12, "feet"),
  10365. weight: math.unit(1.5, "tons"),
  10366. name: "Back",
  10367. image: {
  10368. source: "./media/characters/dydros/back.svg",
  10369. extra: 900 / 843,
  10370. bottom: 0.005
  10371. }
  10372. },
  10373. },
  10374. [
  10375. {
  10376. name: "Normal",
  10377. height: math.unit(12, "feet"),
  10378. default: true
  10379. },
  10380. ]
  10381. ))
  10382. characterMakers.push(() => makeCharacter(
  10383. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10384. {
  10385. front: {
  10386. height: math.unit(6, "feet"),
  10387. weight: math.unit(100, "kg"),
  10388. name: "Front",
  10389. image: {
  10390. source: "./media/characters/riggi/front.svg",
  10391. extra: 5787 / 5303
  10392. }
  10393. },
  10394. hyper: {
  10395. height: math.unit(6 * 5 / 3, "feet"),
  10396. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10397. name: "Hyper",
  10398. image: {
  10399. source: "./media/characters/riggi/hyper.svg",
  10400. extra: 3595 / 3485
  10401. }
  10402. },
  10403. },
  10404. [
  10405. {
  10406. name: "Small Macro",
  10407. height: math.unit(50, "feet")
  10408. },
  10409. {
  10410. name: "Default",
  10411. height: math.unit(200, "feet"),
  10412. default: true
  10413. },
  10414. {
  10415. name: "Loom",
  10416. height: math.unit(10000, "feet")
  10417. },
  10418. {
  10419. name: "Cruising Altitude",
  10420. height: math.unit(30000, "feet")
  10421. },
  10422. {
  10423. name: "Megamacro",
  10424. height: math.unit(100, "miles")
  10425. },
  10426. {
  10427. name: "Continent Sized",
  10428. height: math.unit(2800, "miles")
  10429. },
  10430. {
  10431. name: "Earth Sized",
  10432. height: math.unit(8000, "miles")
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10438. {
  10439. front: {
  10440. height: math.unit(6, "feet"),
  10441. weight: math.unit(250, "lb"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/alexi/front.svg",
  10445. extra: 3483 / 3291,
  10446. bottom: 0.04
  10447. }
  10448. },
  10449. back: {
  10450. height: math.unit(6, "feet"),
  10451. weight: math.unit(250, "lb"),
  10452. name: "Back",
  10453. image: {
  10454. source: "./media/characters/alexi/back.svg",
  10455. extra: 3533 / 3356,
  10456. bottom: 0.021
  10457. }
  10458. },
  10459. frontTransforming: {
  10460. height: math.unit(8.58, "feet"),
  10461. weight: math.unit(1300, "lb"),
  10462. name: "Transforming",
  10463. image: {
  10464. source: "./media/characters/alexi/front-transforming.svg",
  10465. extra: 437 / 409,
  10466. bottom: 19 / 458.66
  10467. }
  10468. },
  10469. frontTransformed: {
  10470. height: math.unit(12.5, "feet"),
  10471. weight: math.unit(4000, "lb"),
  10472. name: "Transformed",
  10473. image: {
  10474. source: "./media/characters/alexi/front-transformed.svg",
  10475. extra: 639 / 614,
  10476. bottom: 30.55 / 671
  10477. }
  10478. },
  10479. },
  10480. [
  10481. {
  10482. name: "Normal",
  10483. height: math.unit(14, "feet"),
  10484. default: true
  10485. },
  10486. {
  10487. name: "Minimacro",
  10488. height: math.unit(30, "meters")
  10489. },
  10490. {
  10491. name: "Macro",
  10492. height: math.unit(500, "meters")
  10493. },
  10494. {
  10495. name: "Megamacro",
  10496. height: math.unit(9000, "km")
  10497. },
  10498. {
  10499. name: "Teramacro",
  10500. height: math.unit(384000, "km")
  10501. },
  10502. ]
  10503. ))
  10504. characterMakers.push(() => makeCharacter(
  10505. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10506. {
  10507. front: {
  10508. height: math.unit(6, "feet"),
  10509. weight: math.unit(150, "lb"),
  10510. name: "Front",
  10511. image: {
  10512. source: "./media/characters/kayroo/front.svg",
  10513. extra: 1153 / 1038,
  10514. bottom: 0.06
  10515. }
  10516. },
  10517. foot: {
  10518. height: math.unit(6, "feet"),
  10519. weight: math.unit(150, "lb"),
  10520. name: "Foot",
  10521. image: {
  10522. source: "./media/characters/kayroo/foot.svg"
  10523. }
  10524. },
  10525. },
  10526. [
  10527. {
  10528. name: "Normal",
  10529. height: math.unit(8, "feet"),
  10530. default: true
  10531. },
  10532. {
  10533. name: "Minimacro",
  10534. height: math.unit(250, "feet")
  10535. },
  10536. {
  10537. name: "Macro",
  10538. height: math.unit(2800, "feet")
  10539. },
  10540. {
  10541. name: "Megamacro",
  10542. height: math.unit(5200, "feet")
  10543. },
  10544. {
  10545. name: "Gigamacro",
  10546. height: math.unit(27000, "feet")
  10547. },
  10548. {
  10549. name: "Omega",
  10550. height: math.unit(45000, "feet")
  10551. },
  10552. ]
  10553. ))
  10554. characterMakers.push(() => makeCharacter(
  10555. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10556. {
  10557. front: {
  10558. height: math.unit(18, "feet"),
  10559. weight: math.unit(5800, "lb"),
  10560. name: "Front",
  10561. image: {
  10562. source: "./media/characters/rhys/front.svg",
  10563. extra: 3386 / 3090,
  10564. bottom: 0.07
  10565. }
  10566. },
  10567. },
  10568. [
  10569. {
  10570. name: "Normal",
  10571. height: math.unit(18, "feet"),
  10572. default: true
  10573. },
  10574. {
  10575. name: "Working Size",
  10576. height: math.unit(200, "feet")
  10577. },
  10578. {
  10579. name: "Demolition Size",
  10580. height: math.unit(2000, "feet")
  10581. },
  10582. {
  10583. name: "Maximum Licensed Size",
  10584. height: math.unit(5, "miles")
  10585. },
  10586. {
  10587. name: "Maximum Observed Size",
  10588. height: math.unit(10, "yottameters")
  10589. },
  10590. ]
  10591. ))
  10592. characterMakers.push(() => makeCharacter(
  10593. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10594. {
  10595. front: {
  10596. height: math.unit(6, "feet"),
  10597. weight: math.unit(250, "lb"),
  10598. name: "Front",
  10599. image: {
  10600. source: "./media/characters/toto/front.svg",
  10601. extra: 527 / 479,
  10602. bottom: 0.05
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Micro",
  10609. height: math.unit(3, "feet")
  10610. },
  10611. {
  10612. name: "Normal",
  10613. height: math.unit(10, "feet")
  10614. },
  10615. {
  10616. name: "Macro",
  10617. height: math.unit(150, "feet"),
  10618. default: true
  10619. },
  10620. {
  10621. name: "Megamacro",
  10622. height: math.unit(1200, "feet")
  10623. },
  10624. ]
  10625. ))
  10626. characterMakers.push(() => makeCharacter(
  10627. { name: "King", species: ["lion"], tags: ["anthro"] },
  10628. {
  10629. back: {
  10630. height: math.unit(6, "feet"),
  10631. weight: math.unit(150, "lb"),
  10632. name: "Back",
  10633. image: {
  10634. source: "./media/characters/king/back.svg"
  10635. }
  10636. },
  10637. },
  10638. [
  10639. {
  10640. name: "Micro",
  10641. height: math.unit(2, "inches")
  10642. },
  10643. {
  10644. name: "Normal",
  10645. height: math.unit(8, "feet")
  10646. },
  10647. {
  10648. name: "Macro",
  10649. height: math.unit(200, "feet"),
  10650. default: true
  10651. },
  10652. {
  10653. name: "Megamacro",
  10654. height: math.unit(50, "miles")
  10655. },
  10656. ]
  10657. ))
  10658. characterMakers.push(() => makeCharacter(
  10659. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10660. {
  10661. anthro: {
  10662. height: math.unit(6 + 5 / 12, "feet"),
  10663. weight: math.unit(280, "lb"),
  10664. name: "Anthro",
  10665. image: {
  10666. source: "./media/characters/cordite/anthro.svg",
  10667. extra: 1986 / 1905,
  10668. bottom: 0.025
  10669. }
  10670. },
  10671. feral: {
  10672. height: math.unit(2, "feet"),
  10673. weight: math.unit(90, "lb"),
  10674. name: "Feral",
  10675. image: {
  10676. source: "./media/characters/cordite/feral.svg",
  10677. extra: 1260 / 755,
  10678. bottom: 0.05
  10679. }
  10680. },
  10681. },
  10682. [
  10683. {
  10684. name: "Normal",
  10685. height: math.unit(6 + 5 / 12, "feet"),
  10686. default: true
  10687. },
  10688. ]
  10689. ))
  10690. characterMakers.push(() => makeCharacter(
  10691. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10692. {
  10693. front: {
  10694. height: math.unit(6, "feet"),
  10695. weight: math.unit(150, "lb"),
  10696. name: "Front",
  10697. image: {
  10698. source: "./media/characters/pianostrong/front.svg",
  10699. extra: 6577 / 6254,
  10700. bottom: 0.02
  10701. }
  10702. },
  10703. side: {
  10704. height: math.unit(6, "feet"),
  10705. weight: math.unit(150, "lb"),
  10706. name: "Side",
  10707. image: {
  10708. source: "./media/characters/pianostrong/side.svg",
  10709. extra: 6106 / 5730
  10710. }
  10711. },
  10712. back: {
  10713. height: math.unit(6, "feet"),
  10714. weight: math.unit(150, "lb"),
  10715. name: "Back",
  10716. image: {
  10717. source: "./media/characters/pianostrong/back.svg",
  10718. extra: 6085 / 5733,
  10719. bottom: 0.01
  10720. }
  10721. },
  10722. },
  10723. [
  10724. {
  10725. name: "Macro",
  10726. height: math.unit(100, "feet")
  10727. },
  10728. {
  10729. name: "Macro+",
  10730. height: math.unit(300, "feet"),
  10731. default: true
  10732. },
  10733. {
  10734. name: "Macro++",
  10735. height: math.unit(1000, "feet")
  10736. },
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10741. {
  10742. front: {
  10743. height: math.unit(6, "feet"),
  10744. weight: math.unit(150, "lb"),
  10745. name: "Front",
  10746. image: {
  10747. source: "./media/characters/kona/front.svg",
  10748. extra: 2960 / 2629,
  10749. bottom: 0.005
  10750. }
  10751. },
  10752. },
  10753. [
  10754. {
  10755. name: "Normal",
  10756. height: math.unit(11 + 8 / 12, "feet")
  10757. },
  10758. {
  10759. name: "Macro",
  10760. height: math.unit(850, "feet"),
  10761. default: true
  10762. },
  10763. {
  10764. name: "Macro+",
  10765. height: math.unit(1.5, "km"),
  10766. default: true
  10767. },
  10768. {
  10769. name: "Megamacro",
  10770. height: math.unit(80, "miles")
  10771. },
  10772. {
  10773. name: "Gigamacro",
  10774. height: math.unit(3500, "miles")
  10775. },
  10776. ]
  10777. ))
  10778. characterMakers.push(() => makeCharacter(
  10779. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10780. {
  10781. side: {
  10782. height: math.unit(1.9, "meters"),
  10783. weight: math.unit(326, "kg"),
  10784. name: "Side",
  10785. image: {
  10786. source: "./media/characters/levi/side.svg",
  10787. extra: 1704 / 1334,
  10788. bottom: 0.02
  10789. }
  10790. },
  10791. },
  10792. [
  10793. {
  10794. name: "Normal",
  10795. height: math.unit(1.9, "meters"),
  10796. default: true
  10797. },
  10798. {
  10799. name: "Macro",
  10800. height: math.unit(20, "meters")
  10801. },
  10802. {
  10803. name: "Macro+",
  10804. height: math.unit(200, "meters")
  10805. },
  10806. {
  10807. name: "Megamacro",
  10808. height: math.unit(2, "km")
  10809. },
  10810. {
  10811. name: "Megamacro+",
  10812. height: math.unit(20, "km")
  10813. },
  10814. {
  10815. name: "Gigamacro",
  10816. height: math.unit(2500, "km")
  10817. },
  10818. {
  10819. name: "Gigamacro+",
  10820. height: math.unit(120000, "km")
  10821. },
  10822. {
  10823. name: "Teramacro",
  10824. height: math.unit(7.77e6, "km")
  10825. },
  10826. ]
  10827. ))
  10828. characterMakers.push(() => makeCharacter(
  10829. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10830. {
  10831. front: {
  10832. height: math.unit(6 + 4 / 12, "feet"),
  10833. weight: math.unit(188, "lb"),
  10834. name: "Front",
  10835. image: {
  10836. source: "./media/characters/bmc/front.svg",
  10837. extra: 1067 / 1022,
  10838. bottom: 0.047
  10839. }
  10840. },
  10841. },
  10842. [
  10843. {
  10844. name: "Human-sized",
  10845. height: math.unit(6 + 4 / 12, "feet")
  10846. },
  10847. {
  10848. name: "Small",
  10849. height: math.unit(250, "feet")
  10850. },
  10851. {
  10852. name: "Normal",
  10853. height: math.unit(1250, "feet"),
  10854. default: true
  10855. },
  10856. {
  10857. name: "Good Day",
  10858. height: math.unit(88, "miles")
  10859. },
  10860. {
  10861. name: "Largest Measured Size",
  10862. height: math.unit(11.2e6, "lightyears")
  10863. },
  10864. ]
  10865. ))
  10866. characterMakers.push(() => makeCharacter(
  10867. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10868. {
  10869. front: {
  10870. height: math.unit(20, "feet"),
  10871. weight: math.unit(2016, "kg"),
  10872. name: "Front",
  10873. image: {
  10874. source: "./media/characters/sven-the-kaiju/front.svg",
  10875. extra: 1479 / 1449,
  10876. bottom: 0.05
  10877. }
  10878. },
  10879. },
  10880. [
  10881. {
  10882. name: "Fairy",
  10883. height: math.unit(6, "inches")
  10884. },
  10885. {
  10886. name: "Normal",
  10887. height: math.unit(20, "feet"),
  10888. default: true
  10889. },
  10890. {
  10891. name: "Rampage",
  10892. height: math.unit(200, "feet")
  10893. },
  10894. {
  10895. name: "Archfey Forest Guardian",
  10896. height: math.unit(1, "mile")
  10897. },
  10898. ]
  10899. ))
  10900. characterMakers.push(() => makeCharacter(
  10901. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10902. {
  10903. front: {
  10904. height: math.unit(4, "meters"),
  10905. weight: math.unit(2, "tons"),
  10906. name: "Front",
  10907. image: {
  10908. source: "./media/characters/marik/front.svg",
  10909. extra: 1057 / 1003,
  10910. bottom: 0.08
  10911. }
  10912. },
  10913. },
  10914. [
  10915. {
  10916. name: "Normal",
  10917. height: math.unit(4, "meters"),
  10918. default: true
  10919. },
  10920. {
  10921. name: "Macro",
  10922. height: math.unit(20, "meters")
  10923. },
  10924. {
  10925. name: "Megamacro",
  10926. height: math.unit(50, "km")
  10927. },
  10928. {
  10929. name: "Gigamacro",
  10930. height: math.unit(100, "km")
  10931. },
  10932. {
  10933. name: "Alpha Macro",
  10934. height: math.unit(7.88e7, "yottameters")
  10935. },
  10936. ]
  10937. ))
  10938. characterMakers.push(() => makeCharacter(
  10939. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10940. {
  10941. front: {
  10942. height: math.unit(6, "feet"),
  10943. weight: math.unit(110, "lb"),
  10944. name: "Front",
  10945. image: {
  10946. source: "./media/characters/mel/front.svg",
  10947. extra: 736 / 617,
  10948. bottom: 0.017
  10949. }
  10950. },
  10951. },
  10952. [
  10953. {
  10954. name: "Pico",
  10955. height: math.unit(3, "pm")
  10956. },
  10957. {
  10958. name: "Nano",
  10959. height: math.unit(3, "nm")
  10960. },
  10961. {
  10962. name: "Micro",
  10963. height: math.unit(0.3, "mm"),
  10964. default: true
  10965. },
  10966. {
  10967. name: "Micro+",
  10968. height: math.unit(3, "mm")
  10969. },
  10970. {
  10971. name: "Normal",
  10972. height: math.unit(5 + 10.5 / 12, "feet")
  10973. },
  10974. ]
  10975. ))
  10976. characterMakers.push(() => makeCharacter(
  10977. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10978. {
  10979. kaiju: {
  10980. height: math.unit(1.75, "meters"),
  10981. weight: math.unit(55, "kg"),
  10982. name: "Kaiju",
  10983. image: {
  10984. source: "./media/characters/lykonous/kaiju.svg",
  10985. extra: 1055 / 946,
  10986. bottom: 0.135
  10987. }
  10988. },
  10989. },
  10990. [
  10991. {
  10992. name: "Normal",
  10993. height: math.unit(2.5, "meters"),
  10994. default: true
  10995. },
  10996. {
  10997. name: "Kaiju Dragon",
  10998. height: math.unit(60, "meters")
  10999. },
  11000. {
  11001. name: "Mega Kaiju",
  11002. height: math.unit(120, "km")
  11003. },
  11004. {
  11005. name: "Giga Kaiju",
  11006. height: math.unit(200, "megameters")
  11007. },
  11008. {
  11009. name: "Terra Kaiju",
  11010. height: math.unit(400, "gigameters")
  11011. },
  11012. {
  11013. name: "Kaiju Dragon God",
  11014. height: math.unit(13000, "exaparsecs")
  11015. },
  11016. ]
  11017. ))
  11018. characterMakers.push(() => makeCharacter(
  11019. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11020. {
  11021. front: {
  11022. height: math.unit(6, "feet"),
  11023. weight: math.unit(150, "lb"),
  11024. name: "Front",
  11025. image: {
  11026. source: "./media/characters/blü/front.svg",
  11027. extra: 1883 / 1564,
  11028. bottom: 0.031
  11029. }
  11030. },
  11031. },
  11032. [
  11033. {
  11034. name: "Normal",
  11035. height: math.unit(13, "feet"),
  11036. default: true
  11037. },
  11038. {
  11039. name: "Big Boi",
  11040. height: math.unit(150, "meters")
  11041. },
  11042. {
  11043. name: "Mini Stomper",
  11044. height: math.unit(300, "meters")
  11045. },
  11046. {
  11047. name: "Macro",
  11048. height: math.unit(1000, "meters")
  11049. },
  11050. {
  11051. name: "Megamacro",
  11052. height: math.unit(11000, "meters")
  11053. },
  11054. {
  11055. name: "Gigamacro",
  11056. height: math.unit(11000, "km")
  11057. },
  11058. {
  11059. name: "Teramacro",
  11060. height: math.unit(420000, "km")
  11061. },
  11062. {
  11063. name: "Examacro",
  11064. height: math.unit(120, "parsecs")
  11065. },
  11066. {
  11067. name: "God Tho",
  11068. height: math.unit(98000000000, "parsecs")
  11069. },
  11070. ]
  11071. ))
  11072. characterMakers.push(() => makeCharacter(
  11073. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11074. {
  11075. taurFront: {
  11076. height: math.unit(6, "feet"),
  11077. weight: math.unit(200, "lb"),
  11078. name: "Taur (Front)",
  11079. image: {
  11080. source: "./media/characters/scales/taur-front.svg",
  11081. extra: 1,
  11082. bottom: 0.05
  11083. }
  11084. },
  11085. taurBack: {
  11086. height: math.unit(6, "feet"),
  11087. weight: math.unit(200, "lb"),
  11088. name: "Taur (Back)",
  11089. image: {
  11090. source: "./media/characters/scales/taur-back.svg",
  11091. extra: 1,
  11092. bottom: 0.08
  11093. }
  11094. },
  11095. anthro: {
  11096. height: math.unit(6 * 7 / 12, "feet"),
  11097. weight: math.unit(100, "lb"),
  11098. name: "Anthro",
  11099. image: {
  11100. source: "./media/characters/scales/anthro.svg",
  11101. extra: 1,
  11102. bottom: 0.06
  11103. }
  11104. },
  11105. },
  11106. [
  11107. {
  11108. name: "Normal",
  11109. height: math.unit(12, "feet"),
  11110. default: true
  11111. },
  11112. ]
  11113. ))
  11114. characterMakers.push(() => makeCharacter(
  11115. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11116. {
  11117. front: {
  11118. height: math.unit(6, "feet"),
  11119. weight: math.unit(150, "lb"),
  11120. name: "Front",
  11121. image: {
  11122. source: "./media/characters/koragos/front.svg",
  11123. extra: 841 / 794,
  11124. bottom: 0.035
  11125. }
  11126. },
  11127. back: {
  11128. height: math.unit(6, "feet"),
  11129. weight: math.unit(150, "lb"),
  11130. name: "Back",
  11131. image: {
  11132. source: "./media/characters/koragos/back.svg",
  11133. extra: 841 / 810,
  11134. bottom: 0.022
  11135. }
  11136. },
  11137. },
  11138. [
  11139. {
  11140. name: "Normal",
  11141. height: math.unit(6 + 11 / 12, "feet"),
  11142. default: true
  11143. },
  11144. {
  11145. name: "Macro",
  11146. height: math.unit(490, "feet")
  11147. },
  11148. {
  11149. name: "Megamacro",
  11150. height: math.unit(10, "miles")
  11151. },
  11152. {
  11153. name: "Gigamacro",
  11154. height: math.unit(50, "miles")
  11155. },
  11156. ]
  11157. ))
  11158. characterMakers.push(() => makeCharacter(
  11159. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11160. {
  11161. front: {
  11162. height: math.unit(6, "feet"),
  11163. weight: math.unit(250, "lb"),
  11164. name: "Front",
  11165. image: {
  11166. source: "./media/characters/xylrem/front.svg",
  11167. extra: 3323 / 3050,
  11168. bottom: 0.065
  11169. }
  11170. },
  11171. },
  11172. [
  11173. {
  11174. name: "Micro",
  11175. height: math.unit(4, "feet")
  11176. },
  11177. {
  11178. name: "Normal",
  11179. height: math.unit(16, "feet"),
  11180. default: true
  11181. },
  11182. {
  11183. name: "Macro",
  11184. height: math.unit(2720, "feet")
  11185. },
  11186. {
  11187. name: "Megamacro",
  11188. height: math.unit(25000, "miles")
  11189. },
  11190. ]
  11191. ))
  11192. characterMakers.push(() => makeCharacter(
  11193. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11194. {
  11195. front: {
  11196. height: math.unit(8, "feet"),
  11197. weight: math.unit(250, "kg"),
  11198. name: "Front",
  11199. image: {
  11200. source: "./media/characters/ikideru/front.svg",
  11201. extra: 930 / 870,
  11202. bottom: 0.087
  11203. }
  11204. },
  11205. back: {
  11206. height: math.unit(8, "feet"),
  11207. weight: math.unit(250, "kg"),
  11208. name: "Back",
  11209. image: {
  11210. source: "./media/characters/ikideru/back.svg",
  11211. extra: 919 / 852,
  11212. bottom: 0.055
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Rare",
  11219. height: math.unit(8, "feet"),
  11220. default: true
  11221. },
  11222. {
  11223. name: "Playful Loom",
  11224. height: math.unit(80, "feet")
  11225. },
  11226. {
  11227. name: "City Leaner",
  11228. height: math.unit(230, "feet")
  11229. },
  11230. {
  11231. name: "Megamacro",
  11232. height: math.unit(2500, "feet")
  11233. },
  11234. {
  11235. name: "Gigamacro",
  11236. height: math.unit(26400, "feet")
  11237. },
  11238. {
  11239. name: "Tectonic Shifter",
  11240. height: math.unit(1.7, "megameters")
  11241. },
  11242. {
  11243. name: "Planet Carer",
  11244. height: math.unit(21, "megameters")
  11245. },
  11246. {
  11247. name: "God",
  11248. height: math.unit(11157.22, "parsecs")
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11254. {
  11255. front: {
  11256. height: math.unit(6, "feet"),
  11257. weight: math.unit(120, "lb"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/neo/front.svg"
  11261. }
  11262. },
  11263. },
  11264. [
  11265. {
  11266. name: "Micro",
  11267. height: math.unit(2, "inches"),
  11268. default: true
  11269. },
  11270. {
  11271. name: "Human Size",
  11272. height: math.unit(5 + 8 / 12, "feet")
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11278. {
  11279. front: {
  11280. height: math.unit(13 + 10 / 12, "feet"),
  11281. weight: math.unit(5320, "lb"),
  11282. name: "Front",
  11283. image: {
  11284. source: "./media/characters/chauncey-chantz/front.svg",
  11285. extra: 1587 / 1435,
  11286. bottom: 0.02
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Normal",
  11293. height: math.unit(13 + 10 / 12, "feet"),
  11294. default: true
  11295. },
  11296. {
  11297. name: "Macro",
  11298. height: math.unit(45, "feet")
  11299. },
  11300. {
  11301. name: "Megamacro",
  11302. height: math.unit(250, "miles")
  11303. },
  11304. {
  11305. name: "Planetary",
  11306. height: math.unit(10000, "miles")
  11307. },
  11308. {
  11309. name: "Galactic",
  11310. height: math.unit(40000, "parsecs")
  11311. },
  11312. {
  11313. name: "Universal",
  11314. height: math.unit(1, "yottameter")
  11315. },
  11316. ]
  11317. ))
  11318. characterMakers.push(() => makeCharacter(
  11319. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11320. {
  11321. front: {
  11322. height: math.unit(6, "feet"),
  11323. weight: math.unit(150, "lb"),
  11324. name: "Front",
  11325. image: {
  11326. source: "./media/characters/epifox/front.svg",
  11327. extra: 1,
  11328. bottom: 0.075
  11329. }
  11330. },
  11331. },
  11332. [
  11333. {
  11334. name: "Micro",
  11335. height: math.unit(6, "inches")
  11336. },
  11337. {
  11338. name: "Normal",
  11339. height: math.unit(12, "feet"),
  11340. default: true
  11341. },
  11342. {
  11343. name: "Macro",
  11344. height: math.unit(3810, "feet")
  11345. },
  11346. {
  11347. name: "Megamacro",
  11348. height: math.unit(500, "miles")
  11349. },
  11350. ]
  11351. ))
  11352. characterMakers.push(() => makeCharacter(
  11353. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11354. {
  11355. front: {
  11356. height: math.unit(1.8796, "m"),
  11357. weight: math.unit(230, "lb"),
  11358. name: "Front",
  11359. image: {
  11360. source: "./media/characters/colin-t/front.svg",
  11361. extra: 1272 / 1193,
  11362. bottom: 0.07
  11363. }
  11364. },
  11365. },
  11366. [
  11367. {
  11368. name: "Micro",
  11369. height: math.unit(0.571, "meters")
  11370. },
  11371. {
  11372. name: "Normal",
  11373. height: math.unit(1.8796, "meters"),
  11374. default: true
  11375. },
  11376. {
  11377. name: "Tall",
  11378. height: math.unit(4, "meters")
  11379. },
  11380. {
  11381. name: "Macro",
  11382. height: math.unit(67.241, "meters")
  11383. },
  11384. {
  11385. name: "Megamacro",
  11386. height: math.unit(371.856, "meters")
  11387. },
  11388. {
  11389. name: "Planetary",
  11390. height: math.unit(12631.5689, "km")
  11391. },
  11392. ]
  11393. ))
  11394. characterMakers.push(() => makeCharacter(
  11395. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11396. {
  11397. front: {
  11398. height: math.unit(1.85, "meters"),
  11399. weight: math.unit(80, "kg"),
  11400. name: "Front",
  11401. image: {
  11402. source: "./media/characters/matvei/front.svg",
  11403. extra: 614 / 594,
  11404. bottom: 0.01
  11405. }
  11406. },
  11407. },
  11408. [
  11409. {
  11410. name: "Normal",
  11411. height: math.unit(1.85, "meters"),
  11412. default: true
  11413. },
  11414. ]
  11415. ))
  11416. characterMakers.push(() => makeCharacter(
  11417. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11418. {
  11419. front: {
  11420. height: math.unit(5 + 9 / 12, "feet"),
  11421. weight: math.unit(70, "lb"),
  11422. name: "Front",
  11423. image: {
  11424. source: "./media/characters/quincy/front.svg",
  11425. extra: 3041 / 2751
  11426. }
  11427. },
  11428. back: {
  11429. height: math.unit(5 + 9 / 12, "feet"),
  11430. weight: math.unit(70, "lb"),
  11431. name: "Back",
  11432. image: {
  11433. source: "./media/characters/quincy/back.svg",
  11434. extra: 3041 / 2751
  11435. }
  11436. },
  11437. flying: {
  11438. height: math.unit(5 + 4 / 12, "feet"),
  11439. weight: math.unit(70, "lb"),
  11440. name: "Flying",
  11441. image: {
  11442. source: "./media/characters/quincy/flying.svg",
  11443. extra: 1044 / 930
  11444. }
  11445. },
  11446. },
  11447. [
  11448. {
  11449. name: "Micro",
  11450. height: math.unit(3, "cm")
  11451. },
  11452. {
  11453. name: "Normal",
  11454. height: math.unit(5 + 9 / 12, "feet")
  11455. },
  11456. {
  11457. name: "Macro",
  11458. height: math.unit(200, "meters"),
  11459. default: true
  11460. },
  11461. {
  11462. name: "Megamacro",
  11463. height: math.unit(1000, "meters")
  11464. },
  11465. ]
  11466. ))
  11467. characterMakers.push(() => makeCharacter(
  11468. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11469. {
  11470. front: {
  11471. height: math.unit(4 + 7 / 12, "feet"),
  11472. weight: math.unit(50, "lb"),
  11473. name: "Front",
  11474. image: {
  11475. source: "./media/characters/vanrel/front.svg",
  11476. extra: 1,
  11477. bottom: 0.02
  11478. }
  11479. },
  11480. frontAlt: {
  11481. height: math.unit(4 + 7 / 12, "feet"),
  11482. weight: math.unit(50, "lb"),
  11483. name: "Front-alt",
  11484. image: {
  11485. source: "./media/characters/vanrel/front-alt.svg",
  11486. extra: 1,
  11487. bottom: 15 / 1511
  11488. }
  11489. },
  11490. elemental: {
  11491. height: math.unit(3, "feet"),
  11492. weight: math.unit(50, "lb"),
  11493. name: "Elemental",
  11494. image: {
  11495. source: "./media/characters/vanrel/elemental.svg",
  11496. extra: 192.3 / 162.8,
  11497. bottom: 1.79 / 194.17
  11498. }
  11499. },
  11500. side: {
  11501. height: math.unit(4 + 7 / 12, "feet"),
  11502. weight: math.unit(50, "lb"),
  11503. name: "Side",
  11504. image: {
  11505. source: "./media/characters/vanrel/side.svg",
  11506. extra: 1,
  11507. bottom: 0.025
  11508. }
  11509. },
  11510. tome: {
  11511. height: math.unit(1.35, "feet"),
  11512. weight: math.unit(10, "lb"),
  11513. name: "Vanrel's Tome",
  11514. rename: true,
  11515. image: {
  11516. source: "./media/characters/vanrel/tome.svg"
  11517. }
  11518. },
  11519. beans: {
  11520. height: math.unit(0.89, "feet"),
  11521. name: "Beans",
  11522. image: {
  11523. source: "./media/characters/vanrel/beans.svg"
  11524. }
  11525. },
  11526. },
  11527. [
  11528. {
  11529. name: "Normal",
  11530. height: math.unit(4 + 7 / 12, "feet"),
  11531. default: true
  11532. },
  11533. ]
  11534. ))
  11535. characterMakers.push(() => makeCharacter(
  11536. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11537. {
  11538. front: {
  11539. height: math.unit(7 + 5 / 12, "feet"),
  11540. weight: math.unit(150, "lb"),
  11541. name: "Front",
  11542. image: {
  11543. source: "./media/characters/kuiper-vanrel/front.svg",
  11544. extra: 1118 / 1068,
  11545. bottom: 0.09
  11546. }
  11547. },
  11548. foot: {
  11549. height: math.unit(0.55, "meters"),
  11550. name: "Foot",
  11551. image: {
  11552. source: "./media/characters/kuiper-vanrel/foot.svg",
  11553. }
  11554. },
  11555. battle: {
  11556. height: math.unit(6.824, "feet"),
  11557. weight: math.unit(150, "lb"),
  11558. name: "Battle",
  11559. image: {
  11560. source: "./media/characters/kuiper-vanrel/battle.svg",
  11561. extra: 1466 / 1327,
  11562. bottom: 29 / 1492.5
  11563. }
  11564. },
  11565. battleAlt: {
  11566. height: math.unit(6.824, "feet"),
  11567. weight: math.unit(150, "lb"),
  11568. name: "Battle (Alt)",
  11569. image: {
  11570. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11571. extra: 2081 / 1965,
  11572. bottom: 40 / 2121
  11573. }
  11574. },
  11575. },
  11576. [
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(7 + 5 / 12, "feet"),
  11580. default: true
  11581. },
  11582. ]
  11583. ))
  11584. characterMakers.push(() => makeCharacter(
  11585. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11586. {
  11587. front: {
  11588. height: math.unit(8 + 5 / 12, "feet"),
  11589. weight: math.unit(150, "lb"),
  11590. name: "Front",
  11591. image: {
  11592. source: "./media/characters/keset-vanrel/front.svg",
  11593. extra: 1150 / 1084,
  11594. bottom: 0.05
  11595. }
  11596. },
  11597. hand: {
  11598. height: math.unit(0.6, "meters"),
  11599. name: "Hand",
  11600. image: {
  11601. source: "./media/characters/keset-vanrel/hand.svg"
  11602. }
  11603. },
  11604. foot: {
  11605. height: math.unit(0.94978, "meters"),
  11606. name: "Foot",
  11607. image: {
  11608. source: "./media/characters/keset-vanrel/foot.svg"
  11609. }
  11610. },
  11611. battle: {
  11612. height: math.unit(7.408, "feet"),
  11613. weight: math.unit(150, "lb"),
  11614. name: "Battle",
  11615. image: {
  11616. source: "./media/characters/keset-vanrel/battle.svg",
  11617. extra: 1890 / 1386,
  11618. bottom: 73.28 / 1970
  11619. }
  11620. },
  11621. },
  11622. [
  11623. {
  11624. name: "Normal",
  11625. height: math.unit(8 + 5 / 12, "feet"),
  11626. default: true
  11627. },
  11628. ]
  11629. ))
  11630. characterMakers.push(() => makeCharacter(
  11631. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11632. {
  11633. front: {
  11634. height: math.unit(6, "feet"),
  11635. weight: math.unit(150, "lb"),
  11636. name: "Front",
  11637. image: {
  11638. source: "./media/characters/neos/front.svg",
  11639. extra: 1696 / 992,
  11640. bottom: 0.14
  11641. }
  11642. },
  11643. },
  11644. [
  11645. {
  11646. name: "Normal",
  11647. height: math.unit(54, "cm"),
  11648. default: true
  11649. },
  11650. {
  11651. name: "Macro",
  11652. height: math.unit(100, "m")
  11653. },
  11654. {
  11655. name: "Megamacro",
  11656. height: math.unit(10, "km")
  11657. },
  11658. {
  11659. name: "Megamacro+",
  11660. height: math.unit(100, "km")
  11661. },
  11662. {
  11663. name: "Gigamacro",
  11664. height: math.unit(100, "Mm")
  11665. },
  11666. {
  11667. name: "Teramacro",
  11668. height: math.unit(100, "Gm")
  11669. },
  11670. {
  11671. name: "Examacro",
  11672. height: math.unit(100, "Em")
  11673. },
  11674. {
  11675. name: "Godly",
  11676. height: math.unit(10000, "Ym")
  11677. },
  11678. {
  11679. name: "Beyond Godly",
  11680. height: math.unit(25, "multiverses")
  11681. },
  11682. ]
  11683. ))
  11684. characterMakers.push(() => makeCharacter(
  11685. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11686. {
  11687. feminine: {
  11688. height: math.unit(5, "feet"),
  11689. weight: math.unit(100, "lb"),
  11690. name: "Feminine",
  11691. image: {
  11692. source: "./media/characters/sammy-mouse/feminine.svg",
  11693. extra: 2526 / 2425,
  11694. bottom: 0.123
  11695. }
  11696. },
  11697. masculine: {
  11698. height: math.unit(5, "feet"),
  11699. weight: math.unit(100, "lb"),
  11700. name: "Masculine",
  11701. image: {
  11702. source: "./media/characters/sammy-mouse/masculine.svg",
  11703. extra: 2526 / 2425,
  11704. bottom: 0.123
  11705. }
  11706. },
  11707. },
  11708. [
  11709. {
  11710. name: "Micro",
  11711. height: math.unit(5, "inches")
  11712. },
  11713. {
  11714. name: "Normal",
  11715. height: math.unit(5, "feet"),
  11716. default: true
  11717. },
  11718. {
  11719. name: "Macro",
  11720. height: math.unit(60, "feet")
  11721. },
  11722. ]
  11723. ))
  11724. characterMakers.push(() => makeCharacter(
  11725. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11726. {
  11727. front: {
  11728. height: math.unit(4, "feet"),
  11729. weight: math.unit(50, "lb"),
  11730. name: "Front",
  11731. image: {
  11732. source: "./media/characters/kole/front.svg",
  11733. extra: 1423 / 1303,
  11734. bottom: 0.025
  11735. }
  11736. },
  11737. back: {
  11738. height: math.unit(4, "feet"),
  11739. weight: math.unit(50, "lb"),
  11740. name: "Back",
  11741. image: {
  11742. source: "./media/characters/kole/back.svg",
  11743. extra: 1426 / 1280,
  11744. bottom: 0.02
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Normal",
  11751. height: math.unit(4, "feet"),
  11752. default: true
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11758. {
  11759. front: {
  11760. height: math.unit(2 + 6 / 12, "feet"),
  11761. weight: math.unit(20, "lb"),
  11762. name: "Front",
  11763. image: {
  11764. source: "./media/characters/rufran/front.svg",
  11765. extra: 2041 / 1839,
  11766. bottom: 0.055
  11767. }
  11768. },
  11769. back: {
  11770. height: math.unit(2 + 6 / 12, "feet"),
  11771. weight: math.unit(20, "lb"),
  11772. name: "Back",
  11773. image: {
  11774. source: "./media/characters/rufran/back.svg",
  11775. extra: 2054 / 1839,
  11776. bottom: 0.01
  11777. }
  11778. },
  11779. hand: {
  11780. height: math.unit(0.2166, "meters"),
  11781. name: "Hand",
  11782. image: {
  11783. source: "./media/characters/rufran/hand.svg"
  11784. }
  11785. },
  11786. foot: {
  11787. height: math.unit(0.185, "meters"),
  11788. name: "Foot",
  11789. image: {
  11790. source: "./media/characters/rufran/foot.svg"
  11791. }
  11792. },
  11793. },
  11794. [
  11795. {
  11796. name: "Micro",
  11797. height: math.unit(1, "inch")
  11798. },
  11799. {
  11800. name: "Normal",
  11801. height: math.unit(2 + 6 / 12, "feet"),
  11802. default: true
  11803. },
  11804. {
  11805. name: "Big",
  11806. height: math.unit(60, "feet")
  11807. },
  11808. {
  11809. name: "Macro",
  11810. height: math.unit(325, "feet")
  11811. },
  11812. ]
  11813. ))
  11814. characterMakers.push(() => makeCharacter(
  11815. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11816. {
  11817. front: {
  11818. height: math.unit(0.3, "meters"),
  11819. weight: math.unit(3.5, "kg"),
  11820. name: "Front",
  11821. image: {
  11822. source: "./media/characters/chip/front.svg",
  11823. extra: 748 / 674
  11824. }
  11825. },
  11826. },
  11827. [
  11828. {
  11829. name: "Micro",
  11830. height: math.unit(1, "inch"),
  11831. default: true
  11832. },
  11833. ]
  11834. ))
  11835. characterMakers.push(() => makeCharacter(
  11836. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11837. {
  11838. side: {
  11839. height: math.unit(2.3, "meters"),
  11840. weight: math.unit(3500, "lb"),
  11841. name: "Side",
  11842. image: {
  11843. source: "./media/characters/torvid/side.svg",
  11844. extra: 1972 / 722,
  11845. bottom: 0.035
  11846. }
  11847. },
  11848. },
  11849. [
  11850. {
  11851. name: "Normal",
  11852. height: math.unit(2.3, "meters"),
  11853. default: true
  11854. },
  11855. ]
  11856. ))
  11857. characterMakers.push(() => makeCharacter(
  11858. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11859. {
  11860. front: {
  11861. height: math.unit(2, "meters"),
  11862. weight: math.unit(150.5, "kg"),
  11863. name: "Front",
  11864. image: {
  11865. source: "./media/characters/susan/front.svg",
  11866. extra: 693 / 635,
  11867. bottom: 0.05
  11868. }
  11869. },
  11870. },
  11871. [
  11872. {
  11873. name: "Megamacro",
  11874. height: math.unit(505, "miles"),
  11875. default: true
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(6, "feet"),
  11884. weight: math.unit(150, "lb"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/raindrops/front.svg",
  11888. extra: 2655 / 2461,
  11889. bottom: 49 / 2705
  11890. }
  11891. },
  11892. back: {
  11893. height: math.unit(6, "feet"),
  11894. weight: math.unit(150, "lb"),
  11895. name: "Back",
  11896. image: {
  11897. source: "./media/characters/raindrops/back.svg",
  11898. extra: 2574 / 2400,
  11899. bottom: 65 / 2634
  11900. }
  11901. },
  11902. },
  11903. [
  11904. {
  11905. name: "Micro",
  11906. height: math.unit(6, "inches")
  11907. },
  11908. {
  11909. name: "Normal",
  11910. height: math.unit(6 + 2 / 12, "feet")
  11911. },
  11912. {
  11913. name: "Macro",
  11914. height: math.unit(131, "feet"),
  11915. default: true
  11916. },
  11917. {
  11918. name: "Megamacro",
  11919. height: math.unit(15, "miles")
  11920. },
  11921. {
  11922. name: "Gigamacro",
  11923. height: math.unit(4000, "miles")
  11924. },
  11925. {
  11926. name: "Teramacro",
  11927. height: math.unit(315000, "miles")
  11928. },
  11929. ]
  11930. ))
  11931. characterMakers.push(() => makeCharacter(
  11932. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11933. {
  11934. front: {
  11935. height: math.unit(2.794, "meters"),
  11936. weight: math.unit(325, "kg"),
  11937. name: "Front",
  11938. image: {
  11939. source: "./media/characters/tezwa/front.svg",
  11940. extra: 2083 / 1906,
  11941. bottom: 0.031
  11942. }
  11943. },
  11944. foot: {
  11945. height: math.unit(0.687, "meters"),
  11946. name: "Foot",
  11947. image: {
  11948. source: "./media/characters/tezwa/foot.svg"
  11949. }
  11950. },
  11951. },
  11952. [
  11953. {
  11954. name: "Normal",
  11955. height: math.unit(9 + 2 / 12, "feet"),
  11956. default: true
  11957. },
  11958. ]
  11959. ))
  11960. characterMakers.push(() => makeCharacter(
  11961. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11962. {
  11963. front: {
  11964. height: math.unit(58, "feet"),
  11965. weight: math.unit(89000, "lb"),
  11966. name: "Front",
  11967. image: {
  11968. source: "./media/characters/typhus/front.svg",
  11969. extra: 816 / 800,
  11970. bottom: 0.065
  11971. }
  11972. },
  11973. },
  11974. [
  11975. {
  11976. name: "Macro",
  11977. height: math.unit(58, "feet"),
  11978. default: true
  11979. },
  11980. ]
  11981. ))
  11982. characterMakers.push(() => makeCharacter(
  11983. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11984. {
  11985. front: {
  11986. height: math.unit(12, "feet"),
  11987. weight: math.unit(6, "tonnes"),
  11988. name: "Front",
  11989. image: {
  11990. source: "./media/characters/lyra-von-wulf/front.svg",
  11991. extra: 1,
  11992. bottom: 0.10
  11993. }
  11994. },
  11995. frontMecha: {
  11996. height: math.unit(12, "feet"),
  11997. weight: math.unit(12, "tonnes"),
  11998. name: "Front (Mecha)",
  11999. image: {
  12000. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12001. extra: 1,
  12002. bottom: 0.042
  12003. }
  12004. },
  12005. maw: {
  12006. height: math.unit(2.2, "feet"),
  12007. name: "Maw",
  12008. image: {
  12009. source: "./media/characters/lyra-von-wulf/maw.svg"
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Normal",
  12016. height: math.unit(12, "feet"),
  12017. default: true
  12018. },
  12019. {
  12020. name: "Classic",
  12021. height: math.unit(50, "feet")
  12022. },
  12023. {
  12024. name: "Macro",
  12025. height: math.unit(500, "feet")
  12026. },
  12027. {
  12028. name: "Megamacro",
  12029. height: math.unit(1, "mile")
  12030. },
  12031. {
  12032. name: "Gigamacro",
  12033. height: math.unit(400, "miles")
  12034. },
  12035. {
  12036. name: "Teramacro",
  12037. height: math.unit(22000, "miles")
  12038. },
  12039. {
  12040. name: "Solarmacro",
  12041. height: math.unit(8600000, "miles")
  12042. },
  12043. {
  12044. name: "Galactic",
  12045. height: math.unit(1057000, "lightyears")
  12046. },
  12047. ]
  12048. ))
  12049. characterMakers.push(() => makeCharacter(
  12050. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12051. {
  12052. front: {
  12053. height: math.unit(6 + 10 / 12, "feet"),
  12054. weight: math.unit(150, "lb"),
  12055. name: "Front",
  12056. image: {
  12057. source: "./media/characters/dixon/front.svg",
  12058. extra: 3361 / 3209,
  12059. bottom: 0.01
  12060. }
  12061. },
  12062. },
  12063. [
  12064. {
  12065. name: "Normal",
  12066. height: math.unit(6 + 10 / 12, "feet"),
  12067. default: true
  12068. },
  12069. {
  12070. name: "Big",
  12071. height: math.unit(12, "meters")
  12072. },
  12073. {
  12074. name: "Macro",
  12075. height: math.unit(500, "meters")
  12076. },
  12077. {
  12078. name: "Megamacro",
  12079. height: math.unit(2, "km")
  12080. },
  12081. ]
  12082. ))
  12083. characterMakers.push(() => makeCharacter(
  12084. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12085. {
  12086. front: {
  12087. height: math.unit(185, "cm"),
  12088. weight: math.unit(68, "kg"),
  12089. name: "Front",
  12090. image: {
  12091. source: "./media/characters/kauko/front.svg",
  12092. extra: 1455 / 1421,
  12093. bottom: 0.03
  12094. }
  12095. },
  12096. back: {
  12097. height: math.unit(185, "cm"),
  12098. weight: math.unit(68, "kg"),
  12099. name: "Back",
  12100. image: {
  12101. source: "./media/characters/kauko/back.svg",
  12102. extra: 1455 / 1421,
  12103. bottom: 0.004
  12104. }
  12105. },
  12106. },
  12107. [
  12108. {
  12109. name: "Normal",
  12110. height: math.unit(185, "cm"),
  12111. default: true
  12112. },
  12113. ]
  12114. ))
  12115. characterMakers.push(() => makeCharacter(
  12116. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12117. {
  12118. front: {
  12119. height: math.unit(6, "feet"),
  12120. weight: math.unit(150, "kg"),
  12121. name: "Front",
  12122. image: {
  12123. source: "./media/characters/varg/front.svg",
  12124. extra: 1108 / 1018,
  12125. bottom: 0.0375
  12126. }
  12127. },
  12128. },
  12129. [
  12130. {
  12131. name: "Normal",
  12132. height: math.unit(5, "meters")
  12133. },
  12134. {
  12135. name: "Macro",
  12136. height: math.unit(200, "meters")
  12137. },
  12138. {
  12139. name: "Megamacro",
  12140. height: math.unit(20, "kilometers")
  12141. },
  12142. {
  12143. name: "True Size",
  12144. height: math.unit(211, "km"),
  12145. default: true
  12146. },
  12147. {
  12148. name: "Gigamacro",
  12149. height: math.unit(1000, "km")
  12150. },
  12151. {
  12152. name: "Gigamacro+",
  12153. height: math.unit(8000, "km")
  12154. },
  12155. {
  12156. name: "Teramacro",
  12157. height: math.unit(1000000, "km")
  12158. },
  12159. ]
  12160. ))
  12161. characterMakers.push(() => makeCharacter(
  12162. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12163. {
  12164. front: {
  12165. height: math.unit(7 + 7 / 12, "feet"),
  12166. weight: math.unit(267, "lb"),
  12167. name: "Front",
  12168. image: {
  12169. source: "./media/characters/dayza/front.svg",
  12170. extra: 1262 / 1200,
  12171. bottom: 0.035
  12172. }
  12173. },
  12174. side: {
  12175. height: math.unit(7 + 7 / 12, "feet"),
  12176. weight: math.unit(267, "lb"),
  12177. name: "Side",
  12178. image: {
  12179. source: "./media/characters/dayza/side.svg",
  12180. extra: 1295 / 1245,
  12181. bottom: 0.05
  12182. }
  12183. },
  12184. back: {
  12185. height: math.unit(7 + 7 / 12, "feet"),
  12186. weight: math.unit(267, "lb"),
  12187. name: "Back",
  12188. image: {
  12189. source: "./media/characters/dayza/back.svg",
  12190. extra: 1241 / 1170
  12191. }
  12192. },
  12193. },
  12194. [
  12195. {
  12196. name: "Normal",
  12197. height: math.unit(7 + 7 / 12, "feet"),
  12198. default: true
  12199. },
  12200. {
  12201. name: "Macro",
  12202. height: math.unit(155, "feet")
  12203. },
  12204. ]
  12205. ))
  12206. characterMakers.push(() => makeCharacter(
  12207. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12208. {
  12209. front: {
  12210. height: math.unit(6 + 5 / 12, "feet"),
  12211. weight: math.unit(160, "lb"),
  12212. name: "Front",
  12213. image: {
  12214. source: "./media/characters/xanthos/front.svg",
  12215. extra: 1,
  12216. bottom: 0.04
  12217. }
  12218. },
  12219. back: {
  12220. height: math.unit(6 + 5 / 12, "feet"),
  12221. weight: math.unit(160, "lb"),
  12222. name: "Back",
  12223. image: {
  12224. source: "./media/characters/xanthos/back.svg",
  12225. extra: 1,
  12226. bottom: 0.03
  12227. }
  12228. },
  12229. hand: {
  12230. height: math.unit(0.928, "feet"),
  12231. name: "Hand",
  12232. image: {
  12233. source: "./media/characters/xanthos/hand.svg"
  12234. }
  12235. },
  12236. foot: {
  12237. height: math.unit(1.286, "feet"),
  12238. name: "Foot",
  12239. image: {
  12240. source: "./media/characters/xanthos/foot.svg"
  12241. }
  12242. },
  12243. },
  12244. [
  12245. {
  12246. name: "Normal",
  12247. height: math.unit(6 + 5 / 12, "feet"),
  12248. default: true
  12249. },
  12250. {
  12251. name: "Normal+",
  12252. height: math.unit(6, "meters")
  12253. },
  12254. {
  12255. name: "Macro",
  12256. height: math.unit(40, "feet")
  12257. },
  12258. {
  12259. name: "Macro+",
  12260. height: math.unit(200, "meters")
  12261. },
  12262. {
  12263. name: "Megamacro",
  12264. height: math.unit(20, "km")
  12265. },
  12266. {
  12267. name: "Megamacro+",
  12268. height: math.unit(100, "km")
  12269. },
  12270. ]
  12271. ))
  12272. characterMakers.push(() => makeCharacter(
  12273. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12274. {
  12275. front: {
  12276. height: math.unit(6 + 3 / 12, "feet"),
  12277. weight: math.unit(215, "lb"),
  12278. name: "Front",
  12279. image: {
  12280. source: "./media/characters/grynn/front.svg",
  12281. extra: 4627 / 4209,
  12282. bottom: 0.047
  12283. }
  12284. },
  12285. },
  12286. [
  12287. {
  12288. name: "Micro",
  12289. height: math.unit(6, "inches")
  12290. },
  12291. {
  12292. name: "Normal",
  12293. height: math.unit(6 + 3 / 12, "feet"),
  12294. default: true
  12295. },
  12296. {
  12297. name: "Big",
  12298. height: math.unit(104, "feet")
  12299. },
  12300. {
  12301. name: "Macro",
  12302. height: math.unit(944, "feet")
  12303. },
  12304. {
  12305. name: "Macro+",
  12306. height: math.unit(9480, "feet")
  12307. },
  12308. {
  12309. name: "Megamacro",
  12310. height: math.unit(78752, "feet")
  12311. },
  12312. {
  12313. name: "Megamacro+",
  12314. height: math.unit(630128, "feet")
  12315. },
  12316. {
  12317. name: "Megamacro++",
  12318. height: math.unit(3150695, "feet")
  12319. },
  12320. ]
  12321. ))
  12322. characterMakers.push(() => makeCharacter(
  12323. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12324. {
  12325. front: {
  12326. height: math.unit(7 + 5 / 12, "feet"),
  12327. weight: math.unit(450, "lb"),
  12328. name: "Front",
  12329. image: {
  12330. source: "./media/characters/mocha-aura/front.svg",
  12331. extra: 1907 / 1817,
  12332. bottom: 0.04
  12333. }
  12334. },
  12335. back: {
  12336. height: math.unit(7 + 5 / 12, "feet"),
  12337. weight: math.unit(450, "lb"),
  12338. name: "Back",
  12339. image: {
  12340. source: "./media/characters/mocha-aura/back.svg",
  12341. extra: 1900 / 1825,
  12342. bottom: 0.045
  12343. }
  12344. },
  12345. },
  12346. [
  12347. {
  12348. name: "Nano",
  12349. height: math.unit(1, "nm")
  12350. },
  12351. {
  12352. name: "Megamicro",
  12353. height: math.unit(1, "mm")
  12354. },
  12355. {
  12356. name: "Micro",
  12357. height: math.unit(3, "inches")
  12358. },
  12359. {
  12360. name: "Normal",
  12361. height: math.unit(7 + 5 / 12, "feet"),
  12362. default: true
  12363. },
  12364. {
  12365. name: "Macro",
  12366. height: math.unit(30, "feet")
  12367. },
  12368. {
  12369. name: "Megamacro",
  12370. height: math.unit(3500, "feet")
  12371. },
  12372. {
  12373. name: "Teramacro",
  12374. height: math.unit(500000, "miles")
  12375. },
  12376. {
  12377. name: "Petamacro",
  12378. height: math.unit(50000000000000000, "parsecs")
  12379. },
  12380. ]
  12381. ))
  12382. characterMakers.push(() => makeCharacter(
  12383. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12384. {
  12385. front: {
  12386. height: math.unit(6, "feet"),
  12387. weight: math.unit(150, "lb"),
  12388. name: "Front",
  12389. image: {
  12390. source: "./media/characters/ilisha-devya/front.svg",
  12391. extra: 1,
  12392. bottom: 0.175
  12393. }
  12394. },
  12395. back: {
  12396. height: math.unit(6, "feet"),
  12397. weight: math.unit(150, "lb"),
  12398. name: "Back",
  12399. image: {
  12400. source: "./media/characters/ilisha-devya/back.svg",
  12401. extra: 1,
  12402. bottom: 0.015
  12403. }
  12404. },
  12405. },
  12406. [
  12407. {
  12408. name: "Macro",
  12409. height: math.unit(500, "feet"),
  12410. default: true
  12411. },
  12412. {
  12413. name: "Megamacro",
  12414. height: math.unit(10, "miles")
  12415. },
  12416. {
  12417. name: "Gigamacro",
  12418. height: math.unit(100000, "miles")
  12419. },
  12420. {
  12421. name: "Examacro",
  12422. height: math.unit(1e9, "lightyears")
  12423. },
  12424. {
  12425. name: "Omniversal",
  12426. height: math.unit(1e33, "lightyears")
  12427. },
  12428. {
  12429. name: "Beyond Infinite",
  12430. height: math.unit(1e100, "lightyears")
  12431. },
  12432. ]
  12433. ))
  12434. characterMakers.push(() => makeCharacter(
  12435. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12436. {
  12437. Side: {
  12438. height: math.unit(6, "feet"),
  12439. weight: math.unit(150, "lb"),
  12440. name: "Side",
  12441. image: {
  12442. source: "./media/characters/mira/side.svg",
  12443. extra: 900 / 799,
  12444. bottom: 0.02
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Human Size",
  12451. height: math.unit(6, "feet")
  12452. },
  12453. {
  12454. name: "Macro",
  12455. height: math.unit(100, "feet"),
  12456. default: true
  12457. },
  12458. {
  12459. name: "Megamacro",
  12460. height: math.unit(10, "miles")
  12461. },
  12462. {
  12463. name: "Gigamacro",
  12464. height: math.unit(25000, "miles")
  12465. },
  12466. {
  12467. name: "Teramacro",
  12468. height: math.unit(300, "AU")
  12469. },
  12470. {
  12471. name: "Full Size",
  12472. height: math.unit(4.5e10, "lightyears")
  12473. },
  12474. ]
  12475. ))
  12476. characterMakers.push(() => makeCharacter(
  12477. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12478. {
  12479. front: {
  12480. height: math.unit(6, "feet"),
  12481. weight: math.unit(150, "lb"),
  12482. name: "Front",
  12483. image: {
  12484. source: "./media/characters/holly/front.svg",
  12485. extra: 639 / 606
  12486. }
  12487. },
  12488. back: {
  12489. height: math.unit(6, "feet"),
  12490. weight: math.unit(150, "lb"),
  12491. name: "Back",
  12492. image: {
  12493. source: "./media/characters/holly/back.svg",
  12494. extra: 623 / 598
  12495. }
  12496. },
  12497. frontWorking: {
  12498. height: math.unit(6, "feet"),
  12499. weight: math.unit(150, "lb"),
  12500. name: "Front (Working)",
  12501. image: {
  12502. source: "./media/characters/holly/front-working.svg",
  12503. extra: 607 / 577,
  12504. bottom: 0.048
  12505. }
  12506. },
  12507. },
  12508. [
  12509. {
  12510. name: "Normal",
  12511. height: math.unit(12 + 3 / 12, "feet"),
  12512. default: true
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12518. {
  12519. front: {
  12520. height: math.unit(6, "feet"),
  12521. weight: math.unit(150, "lb"),
  12522. name: "Front",
  12523. image: {
  12524. source: "./media/characters/porter/front.svg",
  12525. extra: 1,
  12526. bottom: 0.01
  12527. }
  12528. },
  12529. frontRobes: {
  12530. height: math.unit(6, "feet"),
  12531. weight: math.unit(150, "lb"),
  12532. name: "Front (Robes)",
  12533. image: {
  12534. source: "./media/characters/porter/front-robes.svg",
  12535. extra: 1.01,
  12536. bottom: 0.01
  12537. }
  12538. },
  12539. },
  12540. [
  12541. {
  12542. name: "Normal",
  12543. height: math.unit(11 + 9 / 12, "feet"),
  12544. default: true
  12545. },
  12546. ]
  12547. ))
  12548. characterMakers.push(() => makeCharacter(
  12549. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12550. {
  12551. legendary: {
  12552. height: math.unit(6, "feet"),
  12553. weight: math.unit(150, "lb"),
  12554. name: "Legendary",
  12555. image: {
  12556. source: "./media/characters/lucy/legendary.svg",
  12557. extra: 1355 / 1100,
  12558. bottom: 0.045
  12559. }
  12560. },
  12561. },
  12562. [
  12563. {
  12564. name: "Legendary",
  12565. height: math.unit(86882 * 2, "miles"),
  12566. default: true
  12567. },
  12568. ]
  12569. ))
  12570. characterMakers.push(() => makeCharacter(
  12571. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12572. {
  12573. front: {
  12574. height: math.unit(6, "feet"),
  12575. weight: math.unit(150, "lb"),
  12576. name: "Front",
  12577. image: {
  12578. source: "./media/characters/drusilla/front.svg",
  12579. extra: 678 / 635,
  12580. bottom: 0.03
  12581. }
  12582. },
  12583. back: {
  12584. height: math.unit(6, "feet"),
  12585. weight: math.unit(150, "lb"),
  12586. name: "Back",
  12587. image: {
  12588. source: "./media/characters/drusilla/back.svg",
  12589. extra: 678 / 635,
  12590. bottom: 0.005
  12591. }
  12592. },
  12593. },
  12594. [
  12595. {
  12596. name: "Macro",
  12597. height: math.unit(100, "feet")
  12598. },
  12599. {
  12600. name: "Canon Height",
  12601. height: math.unit(2000, "feet"),
  12602. default: true
  12603. },
  12604. ]
  12605. ))
  12606. characterMakers.push(() => makeCharacter(
  12607. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12608. {
  12609. front: {
  12610. height: math.unit(6, "feet"),
  12611. weight: math.unit(180, "lb"),
  12612. name: "Front",
  12613. image: {
  12614. source: "./media/characters/renard-thatch/front.svg",
  12615. extra: 2411 / 2275,
  12616. bottom: 0.01
  12617. }
  12618. },
  12619. frontPosing: {
  12620. height: math.unit(6, "feet"),
  12621. weight: math.unit(180, "lb"),
  12622. name: "Front (Posing)",
  12623. image: {
  12624. source: "./media/characters/renard-thatch/front-posing.svg",
  12625. extra: 2381 / 2261,
  12626. bottom: 0.01
  12627. }
  12628. },
  12629. back: {
  12630. height: math.unit(6, "feet"),
  12631. weight: math.unit(180, "lb"),
  12632. name: "Back",
  12633. image: {
  12634. source: "./media/characters/renard-thatch/back.svg",
  12635. extra: 2428 / 2288
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Micro",
  12642. height: math.unit(3, "inches")
  12643. },
  12644. {
  12645. name: "Default",
  12646. height: math.unit(6, "feet"),
  12647. default: true
  12648. },
  12649. {
  12650. name: "Macro",
  12651. height: math.unit(75, "feet")
  12652. },
  12653. ]
  12654. ))
  12655. characterMakers.push(() => makeCharacter(
  12656. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12657. {
  12658. front: {
  12659. height: math.unit(1450, "feet"),
  12660. weight: math.unit(1.21e6, "tons"),
  12661. name: "Front",
  12662. image: {
  12663. source: "./media/characters/sekvra/front.svg",
  12664. extra: 1,
  12665. bottom: 0.03
  12666. }
  12667. },
  12668. frontClothed: {
  12669. height: math.unit(1450, "feet"),
  12670. weight: math.unit(1.21e6, "tons"),
  12671. name: "Front (Clothed)",
  12672. image: {
  12673. source: "./media/characters/sekvra/front-clothed.svg",
  12674. extra: 1,
  12675. bottom: 0.03
  12676. }
  12677. },
  12678. side: {
  12679. height: math.unit(1450, "feet"),
  12680. weight: math.unit(1.21e6, "tons"),
  12681. name: "Side",
  12682. image: {
  12683. source: "./media/characters/sekvra/side.svg",
  12684. extra: 1,
  12685. bottom: 0.025
  12686. }
  12687. },
  12688. back: {
  12689. height: math.unit(1450, "feet"),
  12690. weight: math.unit(1.21e6, "tons"),
  12691. name: "Back",
  12692. image: {
  12693. source: "./media/characters/sekvra/back.svg",
  12694. extra: 1,
  12695. bottom: 0.005
  12696. }
  12697. },
  12698. },
  12699. [
  12700. {
  12701. name: "Macro",
  12702. height: math.unit(1450, "feet"),
  12703. default: true
  12704. },
  12705. {
  12706. name: "Megamacro",
  12707. height: math.unit(15000, "feet")
  12708. },
  12709. ]
  12710. ))
  12711. characterMakers.push(() => makeCharacter(
  12712. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12713. {
  12714. front: {
  12715. height: math.unit(6, "feet"),
  12716. weight: math.unit(150, "lb"),
  12717. name: "Front",
  12718. image: {
  12719. source: "./media/characters/carmine/front.svg",
  12720. extra: 1,
  12721. bottom: 0.035
  12722. }
  12723. },
  12724. frontArmor: {
  12725. height: math.unit(6, "feet"),
  12726. weight: math.unit(150, "lb"),
  12727. name: "Front (Armor)",
  12728. image: {
  12729. source: "./media/characters/carmine/front-armor.svg",
  12730. extra: 1,
  12731. bottom: 0.035
  12732. }
  12733. },
  12734. },
  12735. [
  12736. {
  12737. name: "Large",
  12738. height: math.unit(1, "mile")
  12739. },
  12740. {
  12741. name: "Huge",
  12742. height: math.unit(40, "miles"),
  12743. default: true
  12744. },
  12745. {
  12746. name: "Colossal",
  12747. height: math.unit(2500, "miles")
  12748. },
  12749. ]
  12750. ))
  12751. characterMakers.push(() => makeCharacter(
  12752. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12753. {
  12754. front: {
  12755. height: math.unit(6, "feet"),
  12756. weight: math.unit(150, "lb"),
  12757. name: "Front",
  12758. image: {
  12759. source: "./media/characters/elyssia/front.svg",
  12760. extra: 2201 / 2035,
  12761. bottom: 0.05
  12762. }
  12763. },
  12764. frontClothed: {
  12765. height: math.unit(6, "feet"),
  12766. weight: math.unit(150, "lb"),
  12767. name: "Front (Clothed)",
  12768. image: {
  12769. source: "./media/characters/elyssia/front-clothed.svg",
  12770. extra: 2201 / 2035,
  12771. bottom: 0.05
  12772. }
  12773. },
  12774. back: {
  12775. height: math.unit(6, "feet"),
  12776. weight: math.unit(150, "lb"),
  12777. name: "Back",
  12778. image: {
  12779. source: "./media/characters/elyssia/back.svg",
  12780. extra: 2201 / 2035,
  12781. bottom: 0.013
  12782. }
  12783. },
  12784. },
  12785. [
  12786. {
  12787. name: "Smaller",
  12788. height: math.unit(150, "feet")
  12789. },
  12790. {
  12791. name: "Standard",
  12792. height: math.unit(1400, "feet"),
  12793. default: true
  12794. },
  12795. {
  12796. name: "Distracted",
  12797. height: math.unit(15000, "feet")
  12798. },
  12799. ]
  12800. ))
  12801. characterMakers.push(() => makeCharacter(
  12802. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12803. {
  12804. front: {
  12805. height: math.unit(7 + 4 / 12, "feet"),
  12806. weight: math.unit(500, "lb"),
  12807. name: "Front",
  12808. image: {
  12809. source: "./media/characters/geno-maxwell/front.svg",
  12810. extra: 2207 / 2040,
  12811. bottom: 0.015
  12812. }
  12813. },
  12814. },
  12815. [
  12816. {
  12817. name: "Micro",
  12818. height: math.unit(3, "inches")
  12819. },
  12820. {
  12821. name: "Normal",
  12822. height: math.unit(7 + 4 / 12, "feet"),
  12823. default: true
  12824. },
  12825. {
  12826. name: "Macro",
  12827. height: math.unit(220, "feet")
  12828. },
  12829. {
  12830. name: "Megamacro",
  12831. height: math.unit(11, "miles")
  12832. },
  12833. ]
  12834. ))
  12835. characterMakers.push(() => makeCharacter(
  12836. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12837. {
  12838. front: {
  12839. height: math.unit(7 + 4 / 12, "feet"),
  12840. weight: math.unit(500, "lb"),
  12841. name: "Front",
  12842. image: {
  12843. source: "./media/characters/regena-maxwell/front.svg",
  12844. extra: 3115 / 2770,
  12845. bottom: 0.02
  12846. }
  12847. },
  12848. },
  12849. [
  12850. {
  12851. name: "Normal",
  12852. height: math.unit(7 + 4 / 12, "feet"),
  12853. default: true
  12854. },
  12855. {
  12856. name: "Macro",
  12857. height: math.unit(220, "feet")
  12858. },
  12859. {
  12860. name: "Megamacro",
  12861. height: math.unit(11, "miles")
  12862. },
  12863. ]
  12864. ))
  12865. characterMakers.push(() => makeCharacter(
  12866. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12867. {
  12868. front: {
  12869. height: math.unit(6, "feet"),
  12870. weight: math.unit(150, "lb"),
  12871. name: "Front",
  12872. image: {
  12873. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12874. extra: 860 / 690,
  12875. bottom: 0.03
  12876. }
  12877. },
  12878. },
  12879. [
  12880. {
  12881. name: "Normal",
  12882. height: math.unit(1.7, "meters"),
  12883. default: true
  12884. },
  12885. ]
  12886. ))
  12887. characterMakers.push(() => makeCharacter(
  12888. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12889. {
  12890. front: {
  12891. height: math.unit(6, "feet"),
  12892. weight: math.unit(150, "lb"),
  12893. name: "Front",
  12894. image: {
  12895. source: "./media/characters/quilly/front.svg",
  12896. extra: 890 / 776
  12897. }
  12898. },
  12899. },
  12900. [
  12901. {
  12902. name: "Gigamacro",
  12903. height: math.unit(404090, "miles"),
  12904. default: true
  12905. },
  12906. ]
  12907. ))
  12908. characterMakers.push(() => makeCharacter(
  12909. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12910. {
  12911. front: {
  12912. height: math.unit(7 + 8 / 12, "feet"),
  12913. weight: math.unit(350, "lb"),
  12914. name: "Front",
  12915. image: {
  12916. source: "./media/characters/tempest/front.svg",
  12917. extra: 1175 / 1086,
  12918. bottom: 0.02
  12919. }
  12920. },
  12921. },
  12922. [
  12923. {
  12924. name: "Normal",
  12925. height: math.unit(7 + 8 / 12, "feet"),
  12926. default: true
  12927. },
  12928. ]
  12929. ))
  12930. characterMakers.push(() => makeCharacter(
  12931. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12932. {
  12933. side: {
  12934. height: math.unit(4 + 5 / 12, "feet"),
  12935. weight: math.unit(80, "lb"),
  12936. name: "Side",
  12937. image: {
  12938. source: "./media/characters/rodger/side.svg",
  12939. extra: 1235 / 1118
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Micro",
  12946. height: math.unit(1, "inch")
  12947. },
  12948. {
  12949. name: "Normal",
  12950. height: math.unit(4 + 5 / 12, "feet"),
  12951. default: true
  12952. },
  12953. {
  12954. name: "Macro",
  12955. height: math.unit(120, "feet")
  12956. },
  12957. ]
  12958. ))
  12959. characterMakers.push(() => makeCharacter(
  12960. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12961. {
  12962. front: {
  12963. height: math.unit(6, "feet"),
  12964. weight: math.unit(150, "lb"),
  12965. name: "Front",
  12966. image: {
  12967. source: "./media/characters/danyel/front.svg",
  12968. extra: 1185 / 1123,
  12969. bottom: 0.05
  12970. }
  12971. },
  12972. },
  12973. [
  12974. {
  12975. name: "Shrunken",
  12976. height: math.unit(0.5, "mm")
  12977. },
  12978. {
  12979. name: "Micro",
  12980. height: math.unit(1, "mm"),
  12981. default: true
  12982. },
  12983. {
  12984. name: "Upsized",
  12985. height: math.unit(5 + 5 / 12, "feet")
  12986. },
  12987. ]
  12988. ))
  12989. characterMakers.push(() => makeCharacter(
  12990. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12991. {
  12992. front: {
  12993. height: math.unit(5 + 6 / 12, "feet"),
  12994. weight: math.unit(200, "lb"),
  12995. name: "Front",
  12996. image: {
  12997. source: "./media/characters/vivian-bijoux/front.svg",
  12998. extra: 1,
  12999. bottom: 0.072
  13000. }
  13001. },
  13002. },
  13003. [
  13004. {
  13005. name: "Normal",
  13006. height: math.unit(5 + 6 / 12, "feet"),
  13007. default: true
  13008. },
  13009. {
  13010. name: "Bad Dream",
  13011. height: math.unit(500, "feet")
  13012. },
  13013. {
  13014. name: "Nightmare",
  13015. height: math.unit(500, "miles")
  13016. },
  13017. ]
  13018. ))
  13019. characterMakers.push(() => makeCharacter(
  13020. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13021. {
  13022. front: {
  13023. height: math.unit(6 + 1 / 12, "feet"),
  13024. weight: math.unit(260, "lb"),
  13025. name: "Front",
  13026. image: {
  13027. source: "./media/characters/zeta/front.svg",
  13028. extra: 1968 / 1889,
  13029. bottom: 0.06
  13030. }
  13031. },
  13032. back: {
  13033. height: math.unit(6 + 1 / 12, "feet"),
  13034. weight: math.unit(260, "lb"),
  13035. name: "Back",
  13036. image: {
  13037. source: "./media/characters/zeta/back.svg",
  13038. extra: 1944 / 1858,
  13039. bottom: 0.03
  13040. }
  13041. },
  13042. hand: {
  13043. height: math.unit(1.112, "feet"),
  13044. name: "Hand",
  13045. image: {
  13046. source: "./media/characters/zeta/hand.svg"
  13047. }
  13048. },
  13049. foot: {
  13050. height: math.unit(1.48, "feet"),
  13051. name: "Foot",
  13052. image: {
  13053. source: "./media/characters/zeta/foot.svg"
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Micro",
  13060. height: math.unit(6, "inches")
  13061. },
  13062. {
  13063. name: "Normal",
  13064. height: math.unit(6 + 1 / 12, "feet"),
  13065. default: true
  13066. },
  13067. {
  13068. name: "Macro",
  13069. height: math.unit(20, "feet")
  13070. },
  13071. ]
  13072. ))
  13073. characterMakers.push(() => makeCharacter(
  13074. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13075. {
  13076. front: {
  13077. height: math.unit(6, "feet"),
  13078. weight: math.unit(150, "lb"),
  13079. name: "Front",
  13080. image: {
  13081. source: "./media/characters/jamie-larsen/front.svg",
  13082. extra: 962 / 933,
  13083. bottom: 0.02
  13084. }
  13085. },
  13086. back: {
  13087. height: math.unit(6, "feet"),
  13088. weight: math.unit(150, "lb"),
  13089. name: "Back",
  13090. image: {
  13091. source: "./media/characters/jamie-larsen/back.svg",
  13092. extra: 997 / 946
  13093. }
  13094. },
  13095. },
  13096. [
  13097. {
  13098. name: "Macro",
  13099. height: math.unit(28 + 7 / 12, "feet"),
  13100. default: true
  13101. },
  13102. {
  13103. name: "Macro+",
  13104. height: math.unit(180, "feet")
  13105. },
  13106. {
  13107. name: "Megamacro",
  13108. height: math.unit(10, "miles")
  13109. },
  13110. {
  13111. name: "Gigamacro",
  13112. height: math.unit(200000, "miles")
  13113. },
  13114. ]
  13115. ))
  13116. characterMakers.push(() => makeCharacter(
  13117. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13118. {
  13119. front: {
  13120. height: math.unit(6, "feet"),
  13121. weight: math.unit(120, "lb"),
  13122. name: "Front",
  13123. image: {
  13124. source: "./media/characters/vance/front.svg",
  13125. extra: 1980 / 1890,
  13126. bottom: 0.09
  13127. }
  13128. },
  13129. back: {
  13130. height: math.unit(6, "feet"),
  13131. weight: math.unit(120, "lb"),
  13132. name: "Back",
  13133. image: {
  13134. source: "./media/characters/vance/back.svg",
  13135. extra: 2081 / 1994,
  13136. bottom: 0.014
  13137. }
  13138. },
  13139. hand: {
  13140. height: math.unit(0.88, "feet"),
  13141. name: "Hand",
  13142. image: {
  13143. source: "./media/characters/vance/hand.svg"
  13144. }
  13145. },
  13146. foot: {
  13147. height: math.unit(0.64, "feet"),
  13148. name: "Foot",
  13149. image: {
  13150. source: "./media/characters/vance/foot.svg"
  13151. }
  13152. },
  13153. },
  13154. [
  13155. {
  13156. name: "Small",
  13157. height: math.unit(90, "feet"),
  13158. default: true
  13159. },
  13160. {
  13161. name: "Macro",
  13162. height: math.unit(100, "meters")
  13163. },
  13164. {
  13165. name: "Megamacro",
  13166. height: math.unit(15, "miles")
  13167. },
  13168. ]
  13169. ))
  13170. characterMakers.push(() => makeCharacter(
  13171. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13172. {
  13173. front: {
  13174. height: math.unit(6, "feet"),
  13175. weight: math.unit(180, "lb"),
  13176. name: "Front",
  13177. image: {
  13178. source: "./media/characters/xochitl/front.svg",
  13179. extra: 2297 / 2261,
  13180. bottom: 0.065
  13181. }
  13182. },
  13183. back: {
  13184. height: math.unit(6, "feet"),
  13185. weight: math.unit(180, "lb"),
  13186. name: "Back",
  13187. image: {
  13188. source: "./media/characters/xochitl/back.svg",
  13189. extra: 2386 / 2354,
  13190. bottom: 0.01
  13191. }
  13192. },
  13193. foot: {
  13194. height: math.unit(6 / 5 * 1.15, "feet"),
  13195. weight: math.unit(150, "lb"),
  13196. name: "Foot",
  13197. image: {
  13198. source: "./media/characters/xochitl/foot.svg"
  13199. }
  13200. },
  13201. },
  13202. [
  13203. {
  13204. name: "Macro",
  13205. height: math.unit(80, "feet")
  13206. },
  13207. {
  13208. name: "Macro+",
  13209. height: math.unit(400, "feet"),
  13210. default: true
  13211. },
  13212. {
  13213. name: "Gigamacro",
  13214. height: math.unit(80000, "miles")
  13215. },
  13216. {
  13217. name: "Gigamacro+",
  13218. height: math.unit(400000, "miles")
  13219. },
  13220. {
  13221. name: "Teramacro",
  13222. height: math.unit(300, "AU")
  13223. },
  13224. ]
  13225. ))
  13226. characterMakers.push(() => makeCharacter(
  13227. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13228. {
  13229. front: {
  13230. height: math.unit(6, "feet"),
  13231. weight: math.unit(150, "lb"),
  13232. name: "Front",
  13233. image: {
  13234. source: "./media/characters/vincent/front.svg",
  13235. extra: 1130 / 1080,
  13236. bottom: 0.055
  13237. }
  13238. },
  13239. beak: {
  13240. height: math.unit(6 * 0.1, "feet"),
  13241. name: "Beak",
  13242. image: {
  13243. source: "./media/characters/vincent/beak.svg"
  13244. }
  13245. },
  13246. hand: {
  13247. height: math.unit(6 * 0.85, "feet"),
  13248. weight: math.unit(150, "lb"),
  13249. name: "Hand",
  13250. image: {
  13251. source: "./media/characters/vincent/hand.svg"
  13252. }
  13253. },
  13254. foot: {
  13255. height: math.unit(6 * 0.19, "feet"),
  13256. weight: math.unit(150, "lb"),
  13257. name: "Foot",
  13258. image: {
  13259. source: "./media/characters/vincent/foot.svg"
  13260. }
  13261. },
  13262. },
  13263. [
  13264. {
  13265. name: "Base",
  13266. height: math.unit(6 + 5 / 12, "feet"),
  13267. default: true
  13268. },
  13269. {
  13270. name: "Macro",
  13271. height: math.unit(300, "feet")
  13272. },
  13273. {
  13274. name: "Megamacro",
  13275. height: math.unit(2, "miles")
  13276. },
  13277. {
  13278. name: "Gigamacro",
  13279. height: math.unit(1000, "miles")
  13280. },
  13281. ]
  13282. ))
  13283. characterMakers.push(() => makeCharacter(
  13284. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13285. {
  13286. front: {
  13287. height: math.unit(6 + 2 / 12, "feet"),
  13288. weight: math.unit(265, "lb"),
  13289. name: "Front",
  13290. image: {
  13291. source: "./media/characters/jay/front.svg",
  13292. extra: 1510 / 1430,
  13293. bottom: 0.042
  13294. }
  13295. },
  13296. back: {
  13297. height: math.unit(6 + 2 / 12, "feet"),
  13298. weight: math.unit(265, "lb"),
  13299. name: "Back",
  13300. image: {
  13301. source: "./media/characters/jay/back.svg",
  13302. extra: 1510 / 1430,
  13303. bottom: 0.025
  13304. }
  13305. },
  13306. clothed: {
  13307. height: math.unit(6 + 2 / 12, "feet"),
  13308. weight: math.unit(265, "lb"),
  13309. name: "Front (Clothed)",
  13310. image: {
  13311. source: "./media/characters/jay/clothed.svg",
  13312. extra: 744 / 699,
  13313. bottom: 0.043
  13314. }
  13315. },
  13316. head: {
  13317. height: math.unit(1.772, "feet"),
  13318. name: "Head",
  13319. image: {
  13320. source: "./media/characters/jay/head.svg"
  13321. }
  13322. },
  13323. sizeRay: {
  13324. height: math.unit(1.331, "feet"),
  13325. name: "Size Ray",
  13326. image: {
  13327. source: "./media/characters/jay/size-ray.svg"
  13328. }
  13329. },
  13330. },
  13331. [
  13332. {
  13333. name: "Micro",
  13334. height: math.unit(1, "inch")
  13335. },
  13336. {
  13337. name: "Normal",
  13338. height: math.unit(6 + 2 / 12, "feet"),
  13339. default: true
  13340. },
  13341. {
  13342. name: "Macro",
  13343. height: math.unit(1, "mile")
  13344. },
  13345. {
  13346. name: "Megamacro",
  13347. height: math.unit(100, "miles")
  13348. },
  13349. ]
  13350. ))
  13351. characterMakers.push(() => makeCharacter(
  13352. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13353. {
  13354. front: {
  13355. height: math.unit(2, "meters"),
  13356. weight: math.unit(500, "kg"),
  13357. name: "Front",
  13358. image: {
  13359. source: "./media/characters/coatl/front.svg",
  13360. extra: 3948 / 3500,
  13361. bottom: 0.082
  13362. }
  13363. },
  13364. },
  13365. [
  13366. {
  13367. name: "Normal",
  13368. height: math.unit(4, "meters")
  13369. },
  13370. {
  13371. name: "Macro",
  13372. height: math.unit(100, "meters"),
  13373. default: true
  13374. },
  13375. {
  13376. name: "Macro+",
  13377. height: math.unit(300, "meters")
  13378. },
  13379. {
  13380. name: "Megamacro",
  13381. height: math.unit(3, "gigameters")
  13382. },
  13383. {
  13384. name: "Megamacro+",
  13385. height: math.unit(300, "terameters")
  13386. },
  13387. {
  13388. name: "Megamacro++",
  13389. height: math.unit(3, "lightyears")
  13390. },
  13391. ]
  13392. ))
  13393. characterMakers.push(() => makeCharacter(
  13394. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13395. {
  13396. front: {
  13397. height: math.unit(6, "feet"),
  13398. weight: math.unit(50, "kg"),
  13399. name: "front",
  13400. image: {
  13401. source: "./media/characters/shiroryu/front.svg",
  13402. extra: 1990 / 1935
  13403. }
  13404. },
  13405. },
  13406. [
  13407. {
  13408. name: "Mortal Mingling",
  13409. height: math.unit(3, "meters")
  13410. },
  13411. {
  13412. name: "Kaiju-ish",
  13413. height: math.unit(250, "meters")
  13414. },
  13415. {
  13416. name: "Somewhat Godly",
  13417. height: math.unit(400, "km"),
  13418. default: true
  13419. },
  13420. {
  13421. name: "Planetary",
  13422. height: math.unit(300, "megameters")
  13423. },
  13424. {
  13425. name: "Galaxy-dwarfing",
  13426. height: math.unit(450, "kiloparsecs")
  13427. },
  13428. {
  13429. name: "Universe Eater",
  13430. height: math.unit(150, "gigaparsecs")
  13431. },
  13432. {
  13433. name: "Almost Immeasurable",
  13434. height: math.unit(1.3e266, "yottaparsecs")
  13435. },
  13436. ]
  13437. ))
  13438. characterMakers.push(() => makeCharacter(
  13439. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13440. {
  13441. front: {
  13442. height: math.unit(6, "feet"),
  13443. weight: math.unit(150, "lb"),
  13444. name: "Front",
  13445. image: {
  13446. source: "./media/characters/umeko/front.svg",
  13447. extra: 1,
  13448. bottom: 0.019
  13449. }
  13450. },
  13451. frontArmored: {
  13452. height: math.unit(6, "feet"),
  13453. weight: math.unit(150, "lb"),
  13454. name: "Front (Armored)",
  13455. image: {
  13456. source: "./media/characters/umeko/front-armored.svg",
  13457. extra: 1,
  13458. bottom: 0.021
  13459. }
  13460. },
  13461. },
  13462. [
  13463. {
  13464. name: "Macro",
  13465. height: math.unit(220, "feet"),
  13466. default: true
  13467. },
  13468. {
  13469. name: "Guardian Dragon",
  13470. height: math.unit(50, "miles")
  13471. },
  13472. {
  13473. name: "Cosmic",
  13474. height: math.unit(800000, "miles")
  13475. },
  13476. ]
  13477. ))
  13478. characterMakers.push(() => makeCharacter(
  13479. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13480. {
  13481. front: {
  13482. height: math.unit(6, "feet"),
  13483. weight: math.unit(150, "lb"),
  13484. name: "Front",
  13485. image: {
  13486. source: "./media/characters/cassidy/front.svg",
  13487. extra: 1,
  13488. bottom: 0.043
  13489. }
  13490. },
  13491. },
  13492. [
  13493. {
  13494. name: "Canon Height",
  13495. height: math.unit(120, "feet"),
  13496. default: true
  13497. },
  13498. {
  13499. name: "Macro+",
  13500. height: math.unit(400, "feet")
  13501. },
  13502. {
  13503. name: "Macro++",
  13504. height: math.unit(4000, "feet")
  13505. },
  13506. {
  13507. name: "Megamacro",
  13508. height: math.unit(3, "miles")
  13509. },
  13510. ]
  13511. ))
  13512. characterMakers.push(() => makeCharacter(
  13513. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13514. {
  13515. front: {
  13516. height: math.unit(6, "feet"),
  13517. weight: math.unit(150, "lb"),
  13518. name: "Front",
  13519. image: {
  13520. source: "./media/characters/isaac/front.svg",
  13521. extra: 896 / 815,
  13522. bottom: 0.11
  13523. }
  13524. },
  13525. },
  13526. [
  13527. {
  13528. name: "Human Size",
  13529. height: math.unit(8, "feet"),
  13530. default: true
  13531. },
  13532. {
  13533. name: "Macro",
  13534. height: math.unit(400, "feet")
  13535. },
  13536. {
  13537. name: "Megamacro",
  13538. height: math.unit(50, "miles")
  13539. },
  13540. {
  13541. name: "Canon Height",
  13542. height: math.unit(200, "AU")
  13543. },
  13544. ]
  13545. ))
  13546. characterMakers.push(() => makeCharacter(
  13547. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13548. {
  13549. front: {
  13550. height: math.unit(6, "feet"),
  13551. weight: math.unit(72, "kg"),
  13552. name: "Front",
  13553. image: {
  13554. source: "./media/characters/sleekit/front.svg",
  13555. extra: 4693 / 4487,
  13556. bottom: 0.012
  13557. }
  13558. },
  13559. },
  13560. [
  13561. {
  13562. name: "Minimum Height",
  13563. height: math.unit(10, "meters")
  13564. },
  13565. {
  13566. name: "Smaller",
  13567. height: math.unit(25, "meters")
  13568. },
  13569. {
  13570. name: "Larger",
  13571. height: math.unit(38, "meters"),
  13572. default: true
  13573. },
  13574. {
  13575. name: "Maximum height",
  13576. height: math.unit(100, "meters")
  13577. },
  13578. ]
  13579. ))
  13580. characterMakers.push(() => makeCharacter(
  13581. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13582. {
  13583. front: {
  13584. height: math.unit(6, "feet"),
  13585. weight: math.unit(150, "lb"),
  13586. name: "Front",
  13587. image: {
  13588. source: "./media/characters/nillia/front.svg",
  13589. extra: 2195 / 2037,
  13590. bottom: 0.005
  13591. }
  13592. },
  13593. back: {
  13594. height: math.unit(6, "feet"),
  13595. weight: math.unit(150, "lb"),
  13596. name: "Back",
  13597. image: {
  13598. source: "./media/characters/nillia/back.svg",
  13599. extra: 2195 / 2037,
  13600. bottom: 0.005
  13601. }
  13602. },
  13603. },
  13604. [
  13605. {
  13606. name: "Canon Height",
  13607. height: math.unit(489, "feet"),
  13608. default: true
  13609. }
  13610. ]
  13611. ))
  13612. characterMakers.push(() => makeCharacter(
  13613. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13614. {
  13615. front: {
  13616. height: math.unit(6, "feet"),
  13617. weight: math.unit(150, "lb"),
  13618. name: "Front",
  13619. image: {
  13620. source: "./media/characters/mesmyriza/front.svg",
  13621. extra: 2067 / 1784,
  13622. bottom: 0.035
  13623. }
  13624. },
  13625. foot: {
  13626. height: math.unit(6 / (250 / 35), "feet"),
  13627. name: "Foot",
  13628. image: {
  13629. source: "./media/characters/mesmyriza/foot.svg"
  13630. }
  13631. },
  13632. },
  13633. [
  13634. {
  13635. name: "Macro",
  13636. height: math.unit(457, "meters"),
  13637. default: true
  13638. },
  13639. {
  13640. name: "Megamacro",
  13641. height: math.unit(8, "megameters")
  13642. },
  13643. ]
  13644. ))
  13645. characterMakers.push(() => makeCharacter(
  13646. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13647. {
  13648. front: {
  13649. height: math.unit(6, "feet"),
  13650. weight: math.unit(250, "lb"),
  13651. name: "Front",
  13652. image: {
  13653. source: "./media/characters/saudade/front.svg",
  13654. extra: 1172 / 1139,
  13655. bottom: 0.035
  13656. }
  13657. },
  13658. },
  13659. [
  13660. {
  13661. name: "Micro",
  13662. height: math.unit(3, "inches")
  13663. },
  13664. {
  13665. name: "Normal",
  13666. height: math.unit(6, "feet"),
  13667. default: true
  13668. },
  13669. {
  13670. name: "Macro",
  13671. height: math.unit(50, "feet")
  13672. },
  13673. {
  13674. name: "Megamacro",
  13675. height: math.unit(2800, "feet")
  13676. },
  13677. ]
  13678. ))
  13679. characterMakers.push(() => makeCharacter(
  13680. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13681. {
  13682. front: {
  13683. height: math.unit(5 + 4 / 12, "feet"),
  13684. weight: math.unit(100, "lb"),
  13685. name: "Front",
  13686. image: {
  13687. source: "./media/characters/keireer/front.svg",
  13688. extra: 716 / 666,
  13689. bottom: 0.05
  13690. }
  13691. },
  13692. },
  13693. [
  13694. {
  13695. name: "Normal",
  13696. height: math.unit(5 + 4 / 12, "feet"),
  13697. default: true
  13698. },
  13699. ]
  13700. ))
  13701. characterMakers.push(() => makeCharacter(
  13702. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13703. {
  13704. front: {
  13705. height: math.unit(6, "feet"),
  13706. weight: math.unit(90, "kg"),
  13707. name: "Front",
  13708. image: {
  13709. source: "./media/characters/mirja/front.svg",
  13710. extra: 1789 / 1683,
  13711. bottom: 0.05
  13712. }
  13713. },
  13714. frontDressed: {
  13715. height: math.unit(6, "feet"),
  13716. weight: math.unit(90, "lb"),
  13717. name: "Front (Dressed)",
  13718. image: {
  13719. source: "./media/characters/mirja/front-dressed.svg",
  13720. extra: 1789 / 1683,
  13721. bottom: 0.05
  13722. }
  13723. },
  13724. back: {
  13725. height: math.unit(6, "feet"),
  13726. weight: math.unit(90, "lb"),
  13727. name: "Back",
  13728. image: {
  13729. source: "./media/characters/mirja/back.svg",
  13730. extra: 953 / 917,
  13731. bottom: 0.017
  13732. }
  13733. },
  13734. },
  13735. [
  13736. {
  13737. name: "\"Incognito\"",
  13738. height: math.unit(3, "meters")
  13739. },
  13740. {
  13741. name: "Strolling Size",
  13742. height: math.unit(15, "km")
  13743. },
  13744. {
  13745. name: "Larger Strolling Size",
  13746. height: math.unit(400, "km")
  13747. },
  13748. {
  13749. name: "Preferred Size",
  13750. height: math.unit(5000, "km")
  13751. },
  13752. {
  13753. name: "True Size",
  13754. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13755. default: true
  13756. },
  13757. ]
  13758. ))
  13759. characterMakers.push(() => makeCharacter(
  13760. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13761. {
  13762. front: {
  13763. height: math.unit(15, "feet"),
  13764. weight: math.unit(880, "kg"),
  13765. name: "Front",
  13766. image: {
  13767. source: "./media/characters/nightraver/front.svg",
  13768. extra: 2444 / 2160,
  13769. bottom: 0.027
  13770. }
  13771. },
  13772. back: {
  13773. height: math.unit(15, "feet"),
  13774. weight: math.unit(880, "kg"),
  13775. name: "Back",
  13776. image: {
  13777. source: "./media/characters/nightraver/back.svg",
  13778. extra: 2309 / 2180,
  13779. bottom: 0.005
  13780. }
  13781. },
  13782. sole: {
  13783. height: math.unit(2.878, "feet"),
  13784. name: "Sole",
  13785. image: {
  13786. source: "./media/characters/nightraver/sole.svg"
  13787. }
  13788. },
  13789. foot: {
  13790. height: math.unit(2.285, "feet"),
  13791. name: "Foot",
  13792. image: {
  13793. source: "./media/characters/nightraver/foot.svg"
  13794. }
  13795. },
  13796. maw: {
  13797. height: math.unit(2.67, "feet"),
  13798. name: "Maw",
  13799. image: {
  13800. source: "./media/characters/nightraver/maw.svg"
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Micro",
  13807. height: math.unit(1, "cm")
  13808. },
  13809. {
  13810. name: "Normal",
  13811. height: math.unit(15, "feet"),
  13812. default: true
  13813. },
  13814. {
  13815. name: "Macro",
  13816. height: math.unit(300, "feet")
  13817. },
  13818. {
  13819. name: "Megamacro",
  13820. height: math.unit(300, "miles")
  13821. },
  13822. {
  13823. name: "Gigamacro",
  13824. height: math.unit(10000, "miles")
  13825. },
  13826. ]
  13827. ))
  13828. characterMakers.push(() => makeCharacter(
  13829. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13830. {
  13831. side: {
  13832. height: math.unit(2, "inches"),
  13833. weight: math.unit(5, "grams"),
  13834. name: "Side",
  13835. image: {
  13836. source: "./media/characters/arc/side.svg"
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Micro",
  13843. height: math.unit(2, "inches"),
  13844. default: true
  13845. },
  13846. ]
  13847. ))
  13848. characterMakers.push(() => makeCharacter(
  13849. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13850. {
  13851. front: {
  13852. height: math.unit(1.1938, "meters"),
  13853. weight: math.unit(54, "kg"),
  13854. name: "Front",
  13855. image: {
  13856. source: "./media/characters/nebula-shahar/front.svg",
  13857. extra: 1642 / 1436,
  13858. bottom: 0.06
  13859. }
  13860. },
  13861. },
  13862. [
  13863. {
  13864. name: "Megamicro",
  13865. height: math.unit(0.3, "mm")
  13866. },
  13867. {
  13868. name: "Micro",
  13869. height: math.unit(3, "cm")
  13870. },
  13871. {
  13872. name: "Normal",
  13873. height: math.unit(138, "cm"),
  13874. default: true
  13875. },
  13876. {
  13877. name: "Macro",
  13878. height: math.unit(30, "m")
  13879. },
  13880. ]
  13881. ))
  13882. characterMakers.push(() => makeCharacter(
  13883. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13884. {
  13885. front: {
  13886. height: math.unit(5.24, "feet"),
  13887. weight: math.unit(150, "lb"),
  13888. name: "Front",
  13889. image: {
  13890. source: "./media/characters/shayla/front.svg",
  13891. extra: 1512 / 1414,
  13892. bottom: 0.01
  13893. }
  13894. },
  13895. back: {
  13896. height: math.unit(5.24, "feet"),
  13897. weight: math.unit(150, "lb"),
  13898. name: "Back",
  13899. image: {
  13900. source: "./media/characters/shayla/back.svg",
  13901. extra: 1512 / 1414
  13902. }
  13903. },
  13904. hand: {
  13905. height: math.unit(0.7781496062992126, "feet"),
  13906. name: "Hand",
  13907. image: {
  13908. source: "./media/characters/shayla/hand.svg"
  13909. }
  13910. },
  13911. foot: {
  13912. height: math.unit(1.4206036745406823, "feet"),
  13913. name: "Foot",
  13914. image: {
  13915. source: "./media/characters/shayla/foot.svg"
  13916. }
  13917. },
  13918. },
  13919. [
  13920. {
  13921. name: "Micro",
  13922. height: math.unit(0.32, "feet")
  13923. },
  13924. {
  13925. name: "Normal",
  13926. height: math.unit(5.24, "feet"),
  13927. default: true
  13928. },
  13929. {
  13930. name: "Macro",
  13931. height: math.unit(492.12, "feet")
  13932. },
  13933. {
  13934. name: "Megamacro",
  13935. height: math.unit(186.41, "miles")
  13936. },
  13937. ]
  13938. ))
  13939. characterMakers.push(() => makeCharacter(
  13940. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13941. {
  13942. front: {
  13943. height: math.unit(2.2, "m"),
  13944. weight: math.unit(120, "kg"),
  13945. name: "Front",
  13946. image: {
  13947. source: "./media/characters/pia-jr/front.svg",
  13948. extra: 1000 / 970,
  13949. bottom: 0.035
  13950. }
  13951. },
  13952. hand: {
  13953. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13954. name: "Hand",
  13955. image: {
  13956. source: "./media/characters/pia-jr/hand.svg"
  13957. }
  13958. },
  13959. paw: {
  13960. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13961. name: "Paw",
  13962. image: {
  13963. source: "./media/characters/pia-jr/paw.svg"
  13964. }
  13965. },
  13966. },
  13967. [
  13968. {
  13969. name: "Micro",
  13970. height: math.unit(1.2, "cm")
  13971. },
  13972. {
  13973. name: "Normal",
  13974. height: math.unit(2.2, "m"),
  13975. default: true
  13976. },
  13977. {
  13978. name: "Macro",
  13979. height: math.unit(180, "m")
  13980. },
  13981. {
  13982. name: "Megamacro",
  13983. height: math.unit(420, "km")
  13984. },
  13985. ]
  13986. ))
  13987. characterMakers.push(() => makeCharacter(
  13988. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13989. {
  13990. front: {
  13991. height: math.unit(2, "m"),
  13992. weight: math.unit(115, "kg"),
  13993. name: "Front",
  13994. image: {
  13995. source: "./media/characters/pia-sr/front.svg",
  13996. extra: 760 / 730,
  13997. bottom: 0.015
  13998. }
  13999. },
  14000. back: {
  14001. height: math.unit(2, "m"),
  14002. weight: math.unit(115, "kg"),
  14003. name: "Back",
  14004. image: {
  14005. source: "./media/characters/pia-sr/back.svg",
  14006. extra: 760 / 730,
  14007. bottom: 0.01
  14008. }
  14009. },
  14010. hand: {
  14011. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14012. name: "Hand",
  14013. image: {
  14014. source: "./media/characters/pia-sr/hand.svg"
  14015. }
  14016. },
  14017. foot: {
  14018. height: math.unit(1.83, "feet"),
  14019. name: "Foot",
  14020. image: {
  14021. source: "./media/characters/pia-sr/foot.svg"
  14022. }
  14023. },
  14024. },
  14025. [
  14026. {
  14027. name: "Micro",
  14028. height: math.unit(88, "mm")
  14029. },
  14030. {
  14031. name: "Normal",
  14032. height: math.unit(2, "m"),
  14033. default: true
  14034. },
  14035. {
  14036. name: "Macro",
  14037. height: math.unit(200, "m")
  14038. },
  14039. {
  14040. name: "Megamacro",
  14041. height: math.unit(420, "km")
  14042. },
  14043. ]
  14044. ))
  14045. characterMakers.push(() => makeCharacter(
  14046. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14047. {
  14048. front: {
  14049. height: math.unit(8 + 2 / 12, "feet"),
  14050. weight: math.unit(300, "lb"),
  14051. name: "Front",
  14052. image: {
  14053. source: "./media/characters/kibibyte/front.svg",
  14054. extra: 2221 / 2098,
  14055. bottom: 0.04
  14056. }
  14057. },
  14058. },
  14059. [
  14060. {
  14061. name: "Normal",
  14062. height: math.unit(8 + 2 / 12, "feet"),
  14063. default: true
  14064. },
  14065. {
  14066. name: "Socialable Macro",
  14067. height: math.unit(50, "feet")
  14068. },
  14069. {
  14070. name: "Macro",
  14071. height: math.unit(300, "feet")
  14072. },
  14073. {
  14074. name: "Megamacro",
  14075. height: math.unit(500, "miles")
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14081. {
  14082. front: {
  14083. height: math.unit(6, "feet"),
  14084. weight: math.unit(150, "lb"),
  14085. name: "Front",
  14086. image: {
  14087. source: "./media/characters/felix/front.svg",
  14088. extra: 762 / 722,
  14089. bottom: 0.02
  14090. }
  14091. },
  14092. frontClothed: {
  14093. height: math.unit(6, "feet"),
  14094. weight: math.unit(150, "lb"),
  14095. name: "Front (Clothed)",
  14096. image: {
  14097. source: "./media/characters/felix/front-clothed.svg",
  14098. extra: 762 / 722,
  14099. bottom: 0.02
  14100. }
  14101. },
  14102. },
  14103. [
  14104. {
  14105. name: "Normal",
  14106. height: math.unit(6 + 8 / 12, "feet"),
  14107. default: true
  14108. },
  14109. {
  14110. name: "Macro",
  14111. height: math.unit(2600, "feet")
  14112. },
  14113. {
  14114. name: "Megamacro",
  14115. height: math.unit(450, "miles")
  14116. },
  14117. ]
  14118. ))
  14119. characterMakers.push(() => makeCharacter(
  14120. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14121. {
  14122. front: {
  14123. height: math.unit(6 + 1 / 12, "feet"),
  14124. weight: math.unit(250, "lb"),
  14125. name: "Front",
  14126. image: {
  14127. source: "./media/characters/tobo/front.svg",
  14128. extra: 608 / 586,
  14129. bottom: 0.023
  14130. }
  14131. },
  14132. back: {
  14133. height: math.unit(6 + 1 / 12, "feet"),
  14134. weight: math.unit(250, "lb"),
  14135. name: "Back",
  14136. image: {
  14137. source: "./media/characters/tobo/back.svg",
  14138. extra: 608 / 586
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Nano",
  14145. height: math.unit(2, "nm")
  14146. },
  14147. {
  14148. name: "Megamicro",
  14149. height: math.unit(0.1, "mm")
  14150. },
  14151. {
  14152. name: "Micro",
  14153. height: math.unit(1, "inch"),
  14154. default: true
  14155. },
  14156. {
  14157. name: "Human-sized",
  14158. height: math.unit(6 + 1 / 12, "feet")
  14159. },
  14160. {
  14161. name: "Macro",
  14162. height: math.unit(250, "feet")
  14163. },
  14164. {
  14165. name: "Megamacro",
  14166. height: math.unit(75, "miles")
  14167. },
  14168. {
  14169. name: "Texas-sized",
  14170. height: math.unit(750, "miles")
  14171. },
  14172. {
  14173. name: "Teramacro",
  14174. height: math.unit(50000, "miles")
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14180. {
  14181. front: {
  14182. height: math.unit(6, "feet"),
  14183. weight: math.unit(269, "lb"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/danny-kapowsky/front.svg",
  14187. extra: 766 / 736,
  14188. bottom: 0.044
  14189. }
  14190. },
  14191. back: {
  14192. height: math.unit(6, "feet"),
  14193. weight: math.unit(269, "lb"),
  14194. name: "Back",
  14195. image: {
  14196. source: "./media/characters/danny-kapowsky/back.svg",
  14197. extra: 797 / 760,
  14198. bottom: 0.025
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Macro",
  14205. height: math.unit(150, "feet"),
  14206. default: true
  14207. },
  14208. {
  14209. name: "Macro+",
  14210. height: math.unit(200, "feet")
  14211. },
  14212. {
  14213. name: "Macro++",
  14214. height: math.unit(300, "feet")
  14215. },
  14216. {
  14217. name: "Macro+++",
  14218. height: math.unit(400, "feet")
  14219. },
  14220. ]
  14221. ))
  14222. characterMakers.push(() => makeCharacter(
  14223. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14224. {
  14225. side: {
  14226. height: math.unit(6, "feet"),
  14227. weight: math.unit(170, "lb"),
  14228. name: "Side",
  14229. image: {
  14230. source: "./media/characters/finn/side.svg",
  14231. extra: 1953 / 1807,
  14232. bottom: 0.057
  14233. }
  14234. },
  14235. },
  14236. [
  14237. {
  14238. name: "Megamacro",
  14239. height: math.unit(14445, "feet"),
  14240. default: true
  14241. },
  14242. ]
  14243. ))
  14244. characterMakers.push(() => makeCharacter(
  14245. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14246. {
  14247. front: {
  14248. height: math.unit(5 + 6 / 12, "feet"),
  14249. weight: math.unit(125, "lb"),
  14250. name: "Front",
  14251. image: {
  14252. source: "./media/characters/roy/front.svg",
  14253. extra: 1,
  14254. bottom: 0.11
  14255. }
  14256. },
  14257. },
  14258. [
  14259. {
  14260. name: "Micro",
  14261. height: math.unit(3, "inches"),
  14262. default: true
  14263. },
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(5 + 6 / 12, "feet")
  14267. },
  14268. {
  14269. name: "Lesser Macro",
  14270. height: math.unit(60, "feet")
  14271. },
  14272. {
  14273. name: "Greater Macro",
  14274. height: math.unit(120, "feet")
  14275. },
  14276. ]
  14277. ))
  14278. characterMakers.push(() => makeCharacter(
  14279. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14280. {
  14281. front: {
  14282. height: math.unit(6, "feet"),
  14283. weight: math.unit(100, "lb"),
  14284. name: "Front",
  14285. image: {
  14286. source: "./media/characters/aevsivs/front.svg",
  14287. extra: 1,
  14288. bottom: 0.03
  14289. }
  14290. },
  14291. back: {
  14292. height: math.unit(6, "feet"),
  14293. weight: math.unit(100, "lb"),
  14294. name: "Back",
  14295. image: {
  14296. source: "./media/characters/aevsivs/back.svg"
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Micro",
  14303. height: math.unit(2, "inches"),
  14304. default: true
  14305. },
  14306. {
  14307. name: "Normal",
  14308. height: math.unit(5, "feet")
  14309. },
  14310. ]
  14311. ))
  14312. characterMakers.push(() => makeCharacter(
  14313. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14314. {
  14315. front: {
  14316. height: math.unit(5 + 7 / 12, "feet"),
  14317. weight: math.unit(159, "lb"),
  14318. name: "Front",
  14319. image: {
  14320. source: "./media/characters/hildegard/front.svg",
  14321. extra: 289 / 269,
  14322. bottom: 7.63 / 297.8
  14323. }
  14324. },
  14325. back: {
  14326. height: math.unit(5 + 7 / 12, "feet"),
  14327. weight: math.unit(159, "lb"),
  14328. name: "Back",
  14329. image: {
  14330. source: "./media/characters/hildegard/back.svg",
  14331. extra: 280 / 260,
  14332. bottom: 2.3 / 282
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Normal",
  14339. height: math.unit(5 + 7 / 12, "feet"),
  14340. default: true
  14341. },
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14346. {
  14347. bernard: {
  14348. height: math.unit(2 + 7 / 12, "feet"),
  14349. weight: math.unit(66, "lb"),
  14350. name: "Bernard",
  14351. rename: true,
  14352. image: {
  14353. source: "./media/characters/bernard-wilder/bernard.svg",
  14354. extra: 192 / 128,
  14355. bottom: 0.05
  14356. }
  14357. },
  14358. wilder: {
  14359. height: math.unit(5 + 8 / 12, "feet"),
  14360. weight: math.unit(143, "lb"),
  14361. name: "Wilder",
  14362. rename: true,
  14363. image: {
  14364. source: "./media/characters/bernard-wilder/wilder.svg",
  14365. extra: 361 / 312,
  14366. bottom: 0.02
  14367. }
  14368. },
  14369. },
  14370. [
  14371. {
  14372. name: "Normal",
  14373. height: math.unit(2 + 7 / 12, "feet"),
  14374. default: true
  14375. },
  14376. ]
  14377. ))
  14378. characterMakers.push(() => makeCharacter(
  14379. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14380. {
  14381. anthro: {
  14382. height: math.unit(6 + 1 / 12, "feet"),
  14383. weight: math.unit(155, "lb"),
  14384. name: "Anthro",
  14385. image: {
  14386. source: "./media/characters/hearth/anthro.svg",
  14387. extra: 260 / 250,
  14388. bottom: 0.02
  14389. }
  14390. },
  14391. feral: {
  14392. height: math.unit(3.78, "feet"),
  14393. weight: math.unit(35, "kg"),
  14394. name: "Feral",
  14395. image: {
  14396. source: "./media/characters/hearth/feral.svg",
  14397. extra: 153 / 135,
  14398. bottom: 0.03
  14399. }
  14400. },
  14401. },
  14402. [
  14403. {
  14404. name: "Normal",
  14405. height: math.unit(6 + 1 / 12, "feet"),
  14406. default: true
  14407. },
  14408. ]
  14409. ))
  14410. characterMakers.push(() => makeCharacter(
  14411. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14412. {
  14413. front: {
  14414. height: math.unit(6, "feet"),
  14415. weight: math.unit(182, "lb"),
  14416. name: "Front",
  14417. image: {
  14418. source: "./media/characters/ingrid/front.svg",
  14419. extra: 294 / 268,
  14420. bottom: 0.027
  14421. }
  14422. },
  14423. },
  14424. [
  14425. {
  14426. name: "Normal",
  14427. height: math.unit(6, "feet"),
  14428. default: true
  14429. },
  14430. ]
  14431. ))
  14432. characterMakers.push(() => makeCharacter(
  14433. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14434. {
  14435. eevee: {
  14436. height: math.unit(2 + 10 / 12, "feet"),
  14437. weight: math.unit(86, "lb"),
  14438. name: "Malgam",
  14439. image: {
  14440. source: "./media/characters/malgam/eevee.svg",
  14441. extra: 218 / 180,
  14442. bottom: 0.2
  14443. }
  14444. },
  14445. sylveon: {
  14446. height: math.unit(4, "feet"),
  14447. weight: math.unit(101, "lb"),
  14448. name: "Future Malgam",
  14449. rename: true,
  14450. image: {
  14451. source: "./media/characters/malgam/sylveon.svg",
  14452. extra: 371 / 325,
  14453. bottom: 0.015
  14454. }
  14455. },
  14456. gigantamax: {
  14457. height: math.unit(50, "feet"),
  14458. name: "Gigantamax Malgam",
  14459. rename: true,
  14460. image: {
  14461. source: "./media/characters/malgam/gigantamax.svg"
  14462. }
  14463. },
  14464. },
  14465. [
  14466. {
  14467. name: "Normal",
  14468. height: math.unit(2 + 10 / 12, "feet"),
  14469. default: true
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14475. {
  14476. front: {
  14477. height: math.unit(5 + 11 / 12, "feet"),
  14478. weight: math.unit(188, "lb"),
  14479. name: "Front",
  14480. image: {
  14481. source: "./media/characters/fleur/front.svg",
  14482. extra: 309 / 283,
  14483. bottom: 0.007
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Normal",
  14490. height: math.unit(5 + 11 / 12, "feet"),
  14491. default: true
  14492. },
  14493. ]
  14494. ))
  14495. characterMakers.push(() => makeCharacter(
  14496. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14497. {
  14498. front: {
  14499. height: math.unit(5 + 4 / 12, "feet"),
  14500. weight: math.unit(122, "lb"),
  14501. name: "Front",
  14502. image: {
  14503. source: "./media/characters/jude/front.svg",
  14504. extra: 288 / 273,
  14505. bottom: 0.03
  14506. }
  14507. },
  14508. },
  14509. [
  14510. {
  14511. name: "Normal",
  14512. height: math.unit(5 + 4 / 12, "feet"),
  14513. default: true
  14514. },
  14515. ]
  14516. ))
  14517. characterMakers.push(() => makeCharacter(
  14518. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14519. {
  14520. front: {
  14521. height: math.unit(5 + 11 / 12, "feet"),
  14522. weight: math.unit(190, "lb"),
  14523. name: "Front",
  14524. image: {
  14525. source: "./media/characters/seara/front.svg",
  14526. extra: 1,
  14527. bottom: 0.05
  14528. }
  14529. },
  14530. },
  14531. [
  14532. {
  14533. name: "Normal",
  14534. height: math.unit(5 + 11 / 12, "feet"),
  14535. default: true
  14536. },
  14537. ]
  14538. ))
  14539. characterMakers.push(() => makeCharacter(
  14540. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14541. {
  14542. front: {
  14543. height: math.unit(16 + 5 / 12, "feet"),
  14544. weight: math.unit(524, "lb"),
  14545. name: "Front",
  14546. image: {
  14547. source: "./media/characters/caspian/front.svg",
  14548. extra: 1,
  14549. bottom: 0.04
  14550. }
  14551. },
  14552. },
  14553. [
  14554. {
  14555. name: "Normal",
  14556. height: math.unit(16 + 5 / 12, "feet"),
  14557. default: true
  14558. },
  14559. ]
  14560. ))
  14561. characterMakers.push(() => makeCharacter(
  14562. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14563. {
  14564. front: {
  14565. height: math.unit(5 + 7 / 12, "feet"),
  14566. weight: math.unit(170, "lb"),
  14567. name: "Front",
  14568. image: {
  14569. source: "./media/characters/mika/front.svg",
  14570. extra: 1,
  14571. bottom: 0.016
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Normal",
  14578. height: math.unit(5 + 7 / 12, "feet"),
  14579. default: true
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14585. {
  14586. front: {
  14587. height: math.unit(6 + 2 / 12, "feet"),
  14588. weight: math.unit(268, "lb"),
  14589. name: "Front",
  14590. image: {
  14591. source: "./media/characters/sol/front.svg",
  14592. extra: 247 / 231,
  14593. bottom: 0.05
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Normal",
  14600. height: math.unit(6 + 2 / 12, "feet"),
  14601. default: true
  14602. },
  14603. ]
  14604. ))
  14605. characterMakers.push(() => makeCharacter(
  14606. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14607. {
  14608. buizel: {
  14609. height: math.unit(2 + 5 / 12, "feet"),
  14610. weight: math.unit(87, "lb"),
  14611. name: "Buizel",
  14612. image: {
  14613. source: "./media/characters/umiko/buizel.svg",
  14614. extra: 172 / 157,
  14615. bottom: 0.01
  14616. }
  14617. },
  14618. floatzel: {
  14619. height: math.unit(5 + 9 / 12, "feet"),
  14620. weight: math.unit(250, "lb"),
  14621. name: "Floatzel",
  14622. image: {
  14623. source: "./media/characters/umiko/floatzel.svg",
  14624. extra: 262 / 248
  14625. }
  14626. },
  14627. },
  14628. [
  14629. {
  14630. name: "Normal",
  14631. height: math.unit(2 + 5 / 12, "feet"),
  14632. default: true
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14638. {
  14639. front: {
  14640. height: math.unit(6 + 2 / 12, "feet"),
  14641. weight: math.unit(146, "lb"),
  14642. name: "Front",
  14643. image: {
  14644. source: "./media/characters/iliac/front.svg",
  14645. extra: 389 / 365,
  14646. bottom: 0.035
  14647. }
  14648. },
  14649. },
  14650. [
  14651. {
  14652. name: "Normal",
  14653. height: math.unit(6 + 2 / 12, "feet"),
  14654. default: true
  14655. },
  14656. ]
  14657. ))
  14658. characterMakers.push(() => makeCharacter(
  14659. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14660. {
  14661. front: {
  14662. height: math.unit(6, "feet"),
  14663. weight: math.unit(170, "lb"),
  14664. name: "Front",
  14665. image: {
  14666. source: "./media/characters/topaz/front.svg",
  14667. extra: 317 / 303,
  14668. bottom: 0.055
  14669. }
  14670. },
  14671. },
  14672. [
  14673. {
  14674. name: "Normal",
  14675. height: math.unit(6, "feet"),
  14676. default: true
  14677. },
  14678. ]
  14679. ))
  14680. characterMakers.push(() => makeCharacter(
  14681. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14682. {
  14683. front: {
  14684. height: math.unit(5 + 11 / 12, "feet"),
  14685. weight: math.unit(144, "lb"),
  14686. name: "Front",
  14687. image: {
  14688. source: "./media/characters/gabriel/front.svg",
  14689. extra: 285 / 262,
  14690. bottom: 0.004
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Normal",
  14697. height: math.unit(5 + 11 / 12, "feet"),
  14698. default: true
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14704. {
  14705. side: {
  14706. height: math.unit(6 + 5 / 12, "feet"),
  14707. weight: math.unit(300, "lb"),
  14708. name: "Side",
  14709. image: {
  14710. source: "./media/characters/tempest-suicune/side.svg",
  14711. extra: 195 / 154,
  14712. bottom: 0.04
  14713. }
  14714. },
  14715. },
  14716. [
  14717. {
  14718. name: "Normal",
  14719. height: math.unit(6 + 5 / 12, "feet"),
  14720. default: true
  14721. },
  14722. ]
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14726. {
  14727. front: {
  14728. height: math.unit(7 + 2 / 12, "feet"),
  14729. weight: math.unit(322, "lb"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/vulcan/front.svg",
  14733. extra: 154 / 147,
  14734. bottom: 0.04
  14735. }
  14736. },
  14737. },
  14738. [
  14739. {
  14740. name: "Normal",
  14741. height: math.unit(7 + 2 / 12, "feet"),
  14742. default: true
  14743. },
  14744. ]
  14745. ))
  14746. characterMakers.push(() => makeCharacter(
  14747. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14748. {
  14749. front: {
  14750. height: math.unit(5 + 10 / 12, "feet"),
  14751. weight: math.unit(264, "lb"),
  14752. name: "Front",
  14753. image: {
  14754. source: "./media/characters/gault/front.svg",
  14755. extra: 161 / 140,
  14756. bottom: 0.028
  14757. }
  14758. },
  14759. },
  14760. [
  14761. {
  14762. name: "Normal",
  14763. height: math.unit(5 + 10 / 12, "feet"),
  14764. default: true
  14765. },
  14766. ]
  14767. ))
  14768. characterMakers.push(() => makeCharacter(
  14769. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14770. {
  14771. front: {
  14772. height: math.unit(6, "feet"),
  14773. weight: math.unit(150, "lb"),
  14774. name: "Front",
  14775. image: {
  14776. source: "./media/characters/shard/front.svg",
  14777. extra: 273 / 238,
  14778. bottom: 0.02
  14779. }
  14780. },
  14781. },
  14782. [
  14783. {
  14784. name: "Normal",
  14785. height: math.unit(3 + 6 / 12, "feet"),
  14786. default: true
  14787. },
  14788. ]
  14789. ))
  14790. characterMakers.push(() => makeCharacter(
  14791. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14792. {
  14793. front: {
  14794. height: math.unit(5 + 11 / 12, "feet"),
  14795. weight: math.unit(146, "lb"),
  14796. name: "Front",
  14797. image: {
  14798. source: "./media/characters/ashe/front.svg",
  14799. extra: 400 / 373,
  14800. bottom: 0.01
  14801. }
  14802. },
  14803. },
  14804. [
  14805. {
  14806. name: "Normal",
  14807. height: math.unit(5 + 11 / 12, "feet"),
  14808. default: true
  14809. },
  14810. ]
  14811. ))
  14812. characterMakers.push(() => makeCharacter(
  14813. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14814. {
  14815. front: {
  14816. height: math.unit(5 + 5 / 12, "feet"),
  14817. weight: math.unit(135, "lb"),
  14818. name: "Front",
  14819. image: {
  14820. source: "./media/characters/beatrix/front.svg",
  14821. extra: 392 / 379,
  14822. bottom: 0.01
  14823. }
  14824. },
  14825. },
  14826. [
  14827. {
  14828. name: "Normal",
  14829. height: math.unit(6, "feet"),
  14830. default: true
  14831. },
  14832. ]
  14833. ))
  14834. characterMakers.push(() => makeCharacter(
  14835. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14836. {
  14837. front: {
  14838. height: math.unit(6, "feet"),
  14839. weight: math.unit(150, "lb"),
  14840. name: "Front",
  14841. image: {
  14842. source: "./media/characters/ignatius/front.svg",
  14843. extra: 245 / 222,
  14844. bottom: 0.01
  14845. }
  14846. },
  14847. },
  14848. [
  14849. {
  14850. name: "Normal",
  14851. height: math.unit(5 + 5 / 12, "feet"),
  14852. default: true
  14853. },
  14854. ]
  14855. ))
  14856. characterMakers.push(() => makeCharacter(
  14857. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14858. {
  14859. front: {
  14860. height: math.unit(6 + 2 / 12, "feet"),
  14861. weight: math.unit(138, "lb"),
  14862. name: "Front",
  14863. image: {
  14864. source: "./media/characters/mei-li/front.svg",
  14865. extra: 237 / 229,
  14866. bottom: 0.03
  14867. }
  14868. },
  14869. },
  14870. [
  14871. {
  14872. name: "Normal",
  14873. height: math.unit(6 + 2 / 12, "feet"),
  14874. default: true
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14880. {
  14881. front: {
  14882. height: math.unit(2 + 4 / 12, "feet"),
  14883. weight: math.unit(62, "lb"),
  14884. name: "Front",
  14885. image: {
  14886. source: "./media/characters/puru/front.svg",
  14887. extra: 206 / 149,
  14888. bottom: 0.06
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Normal",
  14895. height: math.unit(2 + 4 / 12, "feet"),
  14896. default: true
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14902. {
  14903. taur: {
  14904. height: math.unit(11, "feet"),
  14905. weight: math.unit(500, "lb"),
  14906. name: "Taur",
  14907. image: {
  14908. source: "./media/characters/kee/taur.svg",
  14909. extra: 1,
  14910. bottom: 0.04
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Normal",
  14917. height: math.unit(11, "feet"),
  14918. default: true
  14919. },
  14920. ]
  14921. ))
  14922. characterMakers.push(() => makeCharacter(
  14923. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14924. {
  14925. anthro: {
  14926. height: math.unit(7, "feet"),
  14927. weight: math.unit(190, "lb"),
  14928. name: "Anthro",
  14929. image: {
  14930. source: "./media/characters/cobalt-dracha/anthro.svg",
  14931. extra: 231 / 225,
  14932. bottom: 0.04
  14933. }
  14934. },
  14935. feral: {
  14936. height: math.unit(9 + 7 / 12, "feet"),
  14937. weight: math.unit(294, "lb"),
  14938. name: "Feral",
  14939. image: {
  14940. source: "./media/characters/cobalt-dracha/feral.svg",
  14941. extra: 692 / 633,
  14942. bottom: 0.05
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Normal",
  14949. height: math.unit(7, "feet"),
  14950. default: true
  14951. },
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14956. {
  14957. fallen: {
  14958. height: math.unit(11 + 8 / 12, "feet"),
  14959. weight: math.unit(485, "lb"),
  14960. name: "Java (Fallen)",
  14961. rename: true,
  14962. image: {
  14963. source: "./media/characters/java/fallen.svg",
  14964. extra: 226 / 208,
  14965. bottom: 0.005
  14966. }
  14967. },
  14968. godkin: {
  14969. height: math.unit(10 + 6 / 12, "feet"),
  14970. weight: math.unit(328, "lb"),
  14971. name: "Java (Godkin)",
  14972. rename: true,
  14973. image: {
  14974. source: "./media/characters/java/godkin.svg",
  14975. extra: 270 / 262,
  14976. bottom: 0.02
  14977. }
  14978. },
  14979. },
  14980. [
  14981. {
  14982. name: "Normal",
  14983. height: math.unit(11 + 8 / 12, "feet"),
  14984. default: true
  14985. },
  14986. ]
  14987. ))
  14988. characterMakers.push(() => makeCharacter(
  14989. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14990. {
  14991. front: {
  14992. height: math.unit(7 + 8 / 12, "feet"),
  14993. weight: math.unit(320, "lb"),
  14994. name: "Front",
  14995. image: {
  14996. source: "./media/characters/skoll/front.svg",
  14997. extra: 232 / 220,
  14998. bottom: 0.02
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Normal",
  15005. height: math.unit(7 + 8 / 12, "feet"),
  15006. default: true
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15012. {
  15013. front: {
  15014. height: math.unit(5 + 9 / 12, "feet"),
  15015. weight: math.unit(170, "lb"),
  15016. name: "Front",
  15017. image: {
  15018. source: "./media/characters/purna/front.svg",
  15019. extra: 239 / 229,
  15020. bottom: 0.01
  15021. }
  15022. },
  15023. },
  15024. [
  15025. {
  15026. name: "Normal",
  15027. height: math.unit(5 + 9 / 12, "feet"),
  15028. default: true
  15029. },
  15030. ]
  15031. ))
  15032. characterMakers.push(() => makeCharacter(
  15033. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15034. {
  15035. front: {
  15036. height: math.unit(5 + 9 / 12, "feet"),
  15037. weight: math.unit(142, "lb"),
  15038. name: "Front",
  15039. image: {
  15040. source: "./media/characters/kuva/front.svg",
  15041. extra: 281 / 271,
  15042. bottom: 0.006
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Normal",
  15049. height: math.unit(5 + 9 / 12, "feet"),
  15050. default: true
  15051. },
  15052. ]
  15053. ))
  15054. characterMakers.push(() => makeCharacter(
  15055. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15056. {
  15057. anthro: {
  15058. height: math.unit(9 + 2 / 12, "feet"),
  15059. weight: math.unit(270, "lb"),
  15060. name: "Anthro",
  15061. image: {
  15062. source: "./media/characters/embra/anthro.svg",
  15063. extra: 200 / 187,
  15064. bottom: 0.02
  15065. }
  15066. },
  15067. feral: {
  15068. height: math.unit(18 + 8 / 12, "feet"),
  15069. weight: math.unit(576, "lb"),
  15070. name: "Feral",
  15071. image: {
  15072. source: "./media/characters/embra/feral.svg",
  15073. extra: 152 / 137,
  15074. bottom: 0.037
  15075. }
  15076. },
  15077. },
  15078. [
  15079. {
  15080. name: "Normal",
  15081. height: math.unit(9 + 2 / 12, "feet"),
  15082. default: true
  15083. },
  15084. ]
  15085. ))
  15086. characterMakers.push(() => makeCharacter(
  15087. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15088. {
  15089. anthro: {
  15090. height: math.unit(10 + 9 / 12, "feet"),
  15091. weight: math.unit(224, "lb"),
  15092. name: "Anthro",
  15093. image: {
  15094. source: "./media/characters/grottos/anthro.svg",
  15095. extra: 350 / 332,
  15096. bottom: 0.045
  15097. }
  15098. },
  15099. feral: {
  15100. height: math.unit(20 + 7 / 12, "feet"),
  15101. weight: math.unit(629, "lb"),
  15102. name: "Feral",
  15103. image: {
  15104. source: "./media/characters/grottos/feral.svg",
  15105. extra: 207 / 190,
  15106. bottom: 0.05
  15107. }
  15108. },
  15109. },
  15110. [
  15111. {
  15112. name: "Normal",
  15113. height: math.unit(10 + 9 / 12, "feet"),
  15114. default: true
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15120. {
  15121. anthro: {
  15122. height: math.unit(9 + 6 / 12, "feet"),
  15123. weight: math.unit(298, "lb"),
  15124. name: "Anthro",
  15125. image: {
  15126. source: "./media/characters/frifna/anthro.svg",
  15127. extra: 282 / 269,
  15128. bottom: 0.015
  15129. }
  15130. },
  15131. feral: {
  15132. height: math.unit(16 + 2 / 12, "feet"),
  15133. weight: math.unit(624, "lb"),
  15134. name: "Feral",
  15135. image: {
  15136. source: "./media/characters/frifna/feral.svg"
  15137. }
  15138. },
  15139. },
  15140. [
  15141. {
  15142. name: "Normal",
  15143. height: math.unit(9 + 6 / 12, "feet"),
  15144. default: true
  15145. },
  15146. ]
  15147. ))
  15148. characterMakers.push(() => makeCharacter(
  15149. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15150. {
  15151. front: {
  15152. height: math.unit(6 + 2 / 12, "feet"),
  15153. weight: math.unit(168, "lb"),
  15154. name: "Front",
  15155. image: {
  15156. source: "./media/characters/elise/front.svg",
  15157. extra: 276 / 271
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Normal",
  15164. height: math.unit(6 + 2 / 12, "feet"),
  15165. default: true
  15166. },
  15167. ]
  15168. ))
  15169. characterMakers.push(() => makeCharacter(
  15170. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15171. {
  15172. front: {
  15173. height: math.unit(5 + 10 / 12, "feet"),
  15174. weight: math.unit(210, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/glade/front.svg",
  15178. extra: 258 / 247,
  15179. bottom: 0.008
  15180. }
  15181. },
  15182. },
  15183. [
  15184. {
  15185. name: "Normal",
  15186. height: math.unit(5 + 10 / 12, "feet"),
  15187. default: true
  15188. },
  15189. ]
  15190. ))
  15191. characterMakers.push(() => makeCharacter(
  15192. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15193. {
  15194. front: {
  15195. height: math.unit(5 + 10 / 12, "feet"),
  15196. weight: math.unit(129, "lb"),
  15197. name: "Front",
  15198. image: {
  15199. source: "./media/characters/rina/front.svg",
  15200. extra: 266 / 255,
  15201. bottom: 0.005
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(5 + 10 / 12, "feet"),
  15209. default: true
  15210. },
  15211. ]
  15212. ))
  15213. characterMakers.push(() => makeCharacter(
  15214. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15215. {
  15216. front: {
  15217. height: math.unit(6 + 1 / 12, "feet"),
  15218. weight: math.unit(192, "lb"),
  15219. name: "Front",
  15220. image: {
  15221. source: "./media/characters/veronica/front.svg",
  15222. extra: 319 / 309,
  15223. bottom: 0.005
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Normal",
  15230. height: math.unit(6 + 1 / 12, "feet"),
  15231. default: true
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15237. {
  15238. front: {
  15239. height: math.unit(9 + 3 / 12, "feet"),
  15240. weight: math.unit(1100, "lb"),
  15241. name: "Front",
  15242. image: {
  15243. source: "./media/characters/braxton/front.svg",
  15244. extra: 1057 / 984,
  15245. bottom: 0.05
  15246. }
  15247. },
  15248. },
  15249. [
  15250. {
  15251. name: "Normal",
  15252. height: math.unit(9 + 3 / 12, "feet")
  15253. },
  15254. {
  15255. name: "Giant",
  15256. height: math.unit(300, "feet"),
  15257. default: true
  15258. },
  15259. {
  15260. name: "Macro",
  15261. height: math.unit(700, "feet")
  15262. },
  15263. {
  15264. name: "Megamacro",
  15265. height: math.unit(6000, "feet")
  15266. },
  15267. ]
  15268. ))
  15269. characterMakers.push(() => makeCharacter(
  15270. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15271. {
  15272. front: {
  15273. height: math.unit(6 + 7 / 12, "feet"),
  15274. weight: math.unit(150, "lb"),
  15275. name: "Front",
  15276. image: {
  15277. source: "./media/characters/blue-feyonics/front.svg",
  15278. extra: 1403 / 1306,
  15279. bottom: 0.047
  15280. }
  15281. },
  15282. },
  15283. [
  15284. {
  15285. name: "Normal",
  15286. height: math.unit(6 + 7 / 12, "feet"),
  15287. default: true
  15288. },
  15289. ]
  15290. ))
  15291. characterMakers.push(() => makeCharacter(
  15292. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15293. {
  15294. front: {
  15295. height: math.unit(1.8, "meters"),
  15296. weight: math.unit(60, "kg"),
  15297. name: "Front",
  15298. image: {
  15299. source: "./media/characters/maxwell/front.svg",
  15300. extra: 2060 / 1873
  15301. }
  15302. },
  15303. },
  15304. [
  15305. {
  15306. name: "Micro",
  15307. height: math.unit(1, "mm")
  15308. },
  15309. {
  15310. name: "Normal",
  15311. height: math.unit(1.8, "meter"),
  15312. default: true
  15313. },
  15314. {
  15315. name: "Macro",
  15316. height: math.unit(30, "meters")
  15317. },
  15318. {
  15319. name: "Megamacro",
  15320. height: math.unit(10, "km")
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15326. {
  15327. front: {
  15328. height: math.unit(6, "feet"),
  15329. weight: math.unit(150, "lb"),
  15330. name: "Front",
  15331. image: {
  15332. source: "./media/characters/jack/front.svg",
  15333. extra: 1754 / 1640,
  15334. bottom: 0.01
  15335. }
  15336. },
  15337. },
  15338. [
  15339. {
  15340. name: "Normal",
  15341. height: math.unit(80000, "feet"),
  15342. default: true
  15343. },
  15344. {
  15345. name: "Max size",
  15346. height: math.unit(10, "lightyears")
  15347. },
  15348. ]
  15349. ))
  15350. characterMakers.push(() => makeCharacter(
  15351. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15352. {
  15353. upright: {
  15354. height: math.unit(7, "feet"),
  15355. weight: math.unit(170, "lb"),
  15356. name: "Upright",
  15357. image: {
  15358. source: "./media/characters/cafat/upright.svg",
  15359. bottom: 0.01
  15360. }
  15361. },
  15362. uprightFull: {
  15363. height: math.unit(7, "feet"),
  15364. weight: math.unit(170, "lb"),
  15365. name: "Upright (Full)",
  15366. image: {
  15367. source: "./media/characters/cafat/upright-full.svg",
  15368. bottom: 0.01
  15369. }
  15370. },
  15371. side: {
  15372. height: math.unit(5, "feet"),
  15373. weight: math.unit(150, "lb"),
  15374. name: "Side",
  15375. image: {
  15376. source: "./media/characters/cafat/side.svg"
  15377. }
  15378. },
  15379. },
  15380. [
  15381. {
  15382. name: "Small",
  15383. height: math.unit(7, "feet"),
  15384. default: true
  15385. },
  15386. {
  15387. name: "Large",
  15388. height: math.unit(15.5, "feet")
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15394. {
  15395. front: {
  15396. height: math.unit(6, "feet"),
  15397. weight: math.unit(150, "lb"),
  15398. name: "Front",
  15399. image: {
  15400. source: "./media/characters/verin-raharra/front.svg",
  15401. extra: 5019 / 4835,
  15402. bottom: 0.023
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Normal",
  15409. height: math.unit(7 + 5 / 12, "feet"),
  15410. default: true
  15411. },
  15412. {
  15413. name: "Upsized",
  15414. height: math.unit(20, "feet")
  15415. },
  15416. ]
  15417. ))
  15418. characterMakers.push(() => makeCharacter(
  15419. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15420. {
  15421. front: {
  15422. height: math.unit(7, "feet"),
  15423. weight: math.unit(230, "lb"),
  15424. name: "Front",
  15425. image: {
  15426. source: "./media/characters/nakata/front.svg",
  15427. extra: 1.005,
  15428. bottom: 0.01
  15429. }
  15430. },
  15431. },
  15432. [
  15433. {
  15434. name: "Normal",
  15435. height: math.unit(7, "feet"),
  15436. default: true
  15437. },
  15438. {
  15439. name: "Big",
  15440. height: math.unit(14, "feet")
  15441. },
  15442. {
  15443. name: "Macro",
  15444. height: math.unit(400, "feet")
  15445. },
  15446. ]
  15447. ))
  15448. characterMakers.push(() => makeCharacter(
  15449. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15450. {
  15451. front: {
  15452. height: math.unit(4.91, "feet"),
  15453. weight: math.unit(100, "lb"),
  15454. name: "Front",
  15455. image: {
  15456. source: "./media/characters/lily/front.svg",
  15457. extra: 1585 / 1415,
  15458. bottom: 0.02
  15459. }
  15460. },
  15461. },
  15462. [
  15463. {
  15464. name: "Normal",
  15465. height: math.unit(4.91, "feet"),
  15466. default: true
  15467. },
  15468. ]
  15469. ))
  15470. characterMakers.push(() => makeCharacter(
  15471. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15472. {
  15473. laying: {
  15474. height: math.unit(4 + 4 / 12, "feet"),
  15475. weight: math.unit(600, "lb"),
  15476. name: "Laying",
  15477. image: {
  15478. source: "./media/characters/sheila/laying.svg",
  15479. extra: 1333 / 1265,
  15480. bottom: 0.16
  15481. }
  15482. },
  15483. },
  15484. [
  15485. {
  15486. name: "Normal",
  15487. height: math.unit(4 + 4 / 12, "feet"),
  15488. default: true
  15489. },
  15490. ]
  15491. ))
  15492. characterMakers.push(() => makeCharacter(
  15493. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15494. {
  15495. front: {
  15496. height: math.unit(6, "feet"),
  15497. weight: math.unit(190, "lb"),
  15498. name: "Front",
  15499. image: {
  15500. source: "./media/characters/sax/front.svg",
  15501. extra: 1187 / 973,
  15502. bottom: 0.042
  15503. }
  15504. },
  15505. },
  15506. [
  15507. {
  15508. name: "Micro",
  15509. height: math.unit(4, "inches"),
  15510. default: true
  15511. },
  15512. ]
  15513. ))
  15514. characterMakers.push(() => makeCharacter(
  15515. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15516. {
  15517. front: {
  15518. height: math.unit(6, "feet"),
  15519. weight: math.unit(150, "lb"),
  15520. name: "Front",
  15521. image: {
  15522. source: "./media/characters/pandora/front.svg",
  15523. extra: 2720 / 2556,
  15524. bottom: 0.015
  15525. }
  15526. },
  15527. back: {
  15528. height: math.unit(6, "feet"),
  15529. weight: math.unit(150, "lb"),
  15530. name: "Back",
  15531. image: {
  15532. source: "./media/characters/pandora/back.svg",
  15533. extra: 2720 / 2556,
  15534. bottom: 0.01
  15535. }
  15536. },
  15537. beans: {
  15538. height: math.unit(6 / 8, "feet"),
  15539. name: "Beans",
  15540. image: {
  15541. source: "./media/characters/pandora/beans.svg"
  15542. }
  15543. },
  15544. skirt: {
  15545. height: math.unit(6, "feet"),
  15546. weight: math.unit(150, "lb"),
  15547. name: "Skirt",
  15548. image: {
  15549. source: "./media/characters/pandora/skirt.svg",
  15550. extra: 1622 / 1525,
  15551. bottom: 0.015
  15552. }
  15553. },
  15554. hoodie: {
  15555. height: math.unit(6, "feet"),
  15556. weight: math.unit(150, "lb"),
  15557. name: "Hoodie",
  15558. image: {
  15559. source: "./media/characters/pandora/hoodie.svg",
  15560. extra: 1622 / 1525,
  15561. bottom: 0.015
  15562. }
  15563. },
  15564. casual: {
  15565. height: math.unit(6, "feet"),
  15566. weight: math.unit(150, "lb"),
  15567. name: "Casual",
  15568. image: {
  15569. source: "./media/characters/pandora/casual.svg",
  15570. extra: 1622 / 1525,
  15571. bottom: 0.015
  15572. }
  15573. },
  15574. },
  15575. [
  15576. {
  15577. name: "Normal",
  15578. height: math.unit(6, "feet")
  15579. },
  15580. {
  15581. name: "Big Steppy",
  15582. height: math.unit(1, "km"),
  15583. default: true
  15584. },
  15585. ]
  15586. ))
  15587. characterMakers.push(() => makeCharacter(
  15588. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15589. {
  15590. side: {
  15591. height: math.unit(10, "feet"),
  15592. weight: math.unit(800, "kg"),
  15593. name: "Side",
  15594. image: {
  15595. source: "./media/characters/venio-darcony/side.svg",
  15596. extra: 1373 / 1003,
  15597. bottom: 0.037
  15598. }
  15599. },
  15600. front: {
  15601. height: math.unit(19, "feet"),
  15602. weight: math.unit(800, "kg"),
  15603. name: "Front",
  15604. image: {
  15605. source: "./media/characters/venio-darcony/front.svg"
  15606. }
  15607. },
  15608. back: {
  15609. height: math.unit(19, "feet"),
  15610. weight: math.unit(800, "kg"),
  15611. name: "Back",
  15612. image: {
  15613. source: "./media/characters/venio-darcony/back.svg"
  15614. }
  15615. },
  15616. sideNsfw: {
  15617. height: math.unit(10, "feet"),
  15618. weight: math.unit(800, "kg"),
  15619. name: "Side (NSFW)",
  15620. image: {
  15621. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15622. extra: 1373 / 1003,
  15623. bottom: 0.037
  15624. }
  15625. },
  15626. frontNsfw: {
  15627. height: math.unit(19, "feet"),
  15628. weight: math.unit(800, "kg"),
  15629. name: "Front (NSFW)",
  15630. image: {
  15631. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15632. }
  15633. },
  15634. backNsfw: {
  15635. height: math.unit(19, "feet"),
  15636. weight: math.unit(800, "kg"),
  15637. name: "Back (NSFW)",
  15638. image: {
  15639. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15640. }
  15641. },
  15642. sideArmored: {
  15643. height: math.unit(10, "feet"),
  15644. weight: math.unit(800, "kg"),
  15645. name: "Side (Armored)",
  15646. image: {
  15647. source: "./media/characters/venio-darcony/side-armored.svg",
  15648. extra: 1373 / 1003,
  15649. bottom: 0.037
  15650. }
  15651. },
  15652. frontArmored: {
  15653. height: math.unit(19, "feet"),
  15654. weight: math.unit(900, "kg"),
  15655. name: "Front (Armored)",
  15656. image: {
  15657. source: "./media/characters/venio-darcony/front-armored.svg"
  15658. }
  15659. },
  15660. backArmored: {
  15661. height: math.unit(19, "feet"),
  15662. weight: math.unit(900, "kg"),
  15663. name: "Back (Armored)",
  15664. image: {
  15665. source: "./media/characters/venio-darcony/back-armored.svg"
  15666. }
  15667. },
  15668. sword: {
  15669. height: math.unit(10, "feet"),
  15670. weight: math.unit(50, "lb"),
  15671. name: "Sword",
  15672. image: {
  15673. source: "./media/characters/venio-darcony/sword.svg"
  15674. }
  15675. },
  15676. },
  15677. [
  15678. {
  15679. name: "Normal",
  15680. height: math.unit(10, "feet")
  15681. },
  15682. {
  15683. name: "Macro",
  15684. height: math.unit(130, "feet"),
  15685. default: true
  15686. },
  15687. {
  15688. name: "Macro+",
  15689. height: math.unit(240, "feet")
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15695. {
  15696. front: {
  15697. height: math.unit(6, "feet"),
  15698. weight: math.unit(150, "lb"),
  15699. name: "Front",
  15700. image: {
  15701. source: "./media/characters/veski/front.svg",
  15702. extra: 1299 / 1225,
  15703. bottom: 0.04
  15704. }
  15705. },
  15706. back: {
  15707. height: math.unit(6, "feet"),
  15708. weight: math.unit(150, "lb"),
  15709. name: "Back",
  15710. image: {
  15711. source: "./media/characters/veski/back.svg",
  15712. extra: 1299 / 1225,
  15713. bottom: 0.008
  15714. }
  15715. },
  15716. maw: {
  15717. height: math.unit(1.5 * 1.21, "feet"),
  15718. name: "Maw",
  15719. image: {
  15720. source: "./media/characters/veski/maw.svg"
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Macro",
  15727. height: math.unit(2, "km"),
  15728. default: true
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(5 + 7 / 12, "feet"),
  15737. name: "Front",
  15738. image: {
  15739. source: "./media/characters/isabelle/front.svg",
  15740. extra: 2130 / 1976,
  15741. bottom: 0.05
  15742. }
  15743. },
  15744. },
  15745. [
  15746. {
  15747. name: "Supermicro",
  15748. height: math.unit(10, "micrometers")
  15749. },
  15750. {
  15751. name: "Micro",
  15752. height: math.unit(1, "inch")
  15753. },
  15754. {
  15755. name: "Tiny",
  15756. height: math.unit(5, "inches")
  15757. },
  15758. {
  15759. name: "Standard",
  15760. height: math.unit(5 + 7 / 12, "inches")
  15761. },
  15762. {
  15763. name: "Macro",
  15764. height: math.unit(80, "meters"),
  15765. default: true
  15766. },
  15767. {
  15768. name: "Megamacro",
  15769. height: math.unit(250, "meters")
  15770. },
  15771. {
  15772. name: "Gigamacro",
  15773. height: math.unit(5, "km")
  15774. },
  15775. {
  15776. name: "Cosmic",
  15777. height: math.unit(2.5e6, "miles")
  15778. },
  15779. ]
  15780. ))
  15781. characterMakers.push(() => makeCharacter(
  15782. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15783. {
  15784. front: {
  15785. height: math.unit(6, "feet"),
  15786. weight: math.unit(150, "lb"),
  15787. name: "Front",
  15788. image: {
  15789. source: "./media/characters/hanzo/front.svg",
  15790. extra: 374 / 344,
  15791. bottom: 0.02
  15792. }
  15793. },
  15794. },
  15795. [
  15796. {
  15797. name: "Normal",
  15798. height: math.unit(8, "feet"),
  15799. default: true
  15800. },
  15801. ]
  15802. ))
  15803. characterMakers.push(() => makeCharacter(
  15804. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15805. {
  15806. front: {
  15807. height: math.unit(7, "feet"),
  15808. weight: math.unit(130, "lb"),
  15809. name: "Front",
  15810. image: {
  15811. source: "./media/characters/anna/front.svg",
  15812. extra: 169 / 145,
  15813. bottom: 0.06
  15814. }
  15815. },
  15816. full: {
  15817. height: math.unit(4.96, "feet"),
  15818. weight: math.unit(220, "lb"),
  15819. name: "Full",
  15820. image: {
  15821. source: "./media/characters/anna/full.svg",
  15822. extra: 138 / 114,
  15823. bottom: 0.15
  15824. }
  15825. },
  15826. tongue: {
  15827. height: math.unit(2.53, "feet"),
  15828. name: "Tongue",
  15829. image: {
  15830. source: "./media/characters/anna/tongue.svg"
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(7, "feet"),
  15838. default: true
  15839. },
  15840. ]
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15844. {
  15845. front: {
  15846. height: math.unit(7, "feet"),
  15847. weight: math.unit(150, "lb"),
  15848. name: "Front",
  15849. image: {
  15850. source: "./media/characters/ian-corvid/front.svg",
  15851. extra: 150 / 142,
  15852. bottom: 0.02
  15853. }
  15854. },
  15855. back: {
  15856. height: math.unit(7, "feet"),
  15857. weight: math.unit(150, "lb"),
  15858. name: "Back",
  15859. image: {
  15860. source: "./media/characters/ian-corvid/back.svg",
  15861. extra: 150 / 143,
  15862. bottom: 0.01
  15863. }
  15864. },
  15865. stomping: {
  15866. height: math.unit(7, "feet"),
  15867. weight: math.unit(150, "lb"),
  15868. name: "Stomping",
  15869. image: {
  15870. source: "./media/characters/ian-corvid/stomping.svg",
  15871. extra: 76 / 72
  15872. }
  15873. },
  15874. sitting: {
  15875. height: math.unit(7 / 1.8, "feet"),
  15876. weight: math.unit(150, "lb"),
  15877. name: "Sitting",
  15878. image: {
  15879. source: "./media/characters/ian-corvid/sitting.svg",
  15880. extra: 1400 / 1269,
  15881. bottom: 0.15
  15882. }
  15883. },
  15884. },
  15885. [
  15886. {
  15887. name: "Tiny Microw",
  15888. height: math.unit(1, "inch")
  15889. },
  15890. {
  15891. name: "Microw",
  15892. height: math.unit(6, "inches")
  15893. },
  15894. {
  15895. name: "Crow",
  15896. height: math.unit(7 + 1 / 12, "feet"),
  15897. default: true
  15898. },
  15899. {
  15900. name: "Macrow",
  15901. height: math.unit(176, "feet")
  15902. },
  15903. ]
  15904. ))
  15905. characterMakers.push(() => makeCharacter(
  15906. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15907. {
  15908. front: {
  15909. height: math.unit(5 + 7 / 12, "feet"),
  15910. weight: math.unit(147, "lb"),
  15911. name: "Front",
  15912. image: {
  15913. source: "./media/characters/natalie-kellon/front.svg",
  15914. extra: 1214 / 1141,
  15915. bottom: 0.02
  15916. }
  15917. },
  15918. },
  15919. [
  15920. {
  15921. name: "Micro",
  15922. height: math.unit(1 / 16, "inch")
  15923. },
  15924. {
  15925. name: "Tiny",
  15926. height: math.unit(4, "inches")
  15927. },
  15928. {
  15929. name: "Normal",
  15930. height: math.unit(5 + 7 / 12, "feet"),
  15931. default: true
  15932. },
  15933. {
  15934. name: "Amazon",
  15935. height: math.unit(12, "feet")
  15936. },
  15937. {
  15938. name: "Giantess",
  15939. height: math.unit(160, "meters")
  15940. },
  15941. {
  15942. name: "Titaness",
  15943. height: math.unit(800, "meters")
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(6, "feet"),
  15952. weight: math.unit(150, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/alluria/front.svg",
  15956. extra: 806 / 738,
  15957. bottom: 0.01
  15958. }
  15959. },
  15960. side: {
  15961. height: math.unit(6, "feet"),
  15962. weight: math.unit(150, "lb"),
  15963. name: "Side",
  15964. image: {
  15965. source: "./media/characters/alluria/side.svg",
  15966. extra: 800 / 750,
  15967. }
  15968. },
  15969. back: {
  15970. height: math.unit(6, "feet"),
  15971. weight: math.unit(150, "lb"),
  15972. name: "Back",
  15973. image: {
  15974. source: "./media/characters/alluria/back.svg",
  15975. extra: 806 / 738,
  15976. }
  15977. },
  15978. frontMaid: {
  15979. height: math.unit(6, "feet"),
  15980. weight: math.unit(150, "lb"),
  15981. name: "Front (Maid)",
  15982. image: {
  15983. source: "./media/characters/alluria/front-maid.svg",
  15984. extra: 806 / 738,
  15985. bottom: 0.01
  15986. }
  15987. },
  15988. sideMaid: {
  15989. height: math.unit(6, "feet"),
  15990. weight: math.unit(150, "lb"),
  15991. name: "Side (Maid)",
  15992. image: {
  15993. source: "./media/characters/alluria/side-maid.svg",
  15994. extra: 800 / 750,
  15995. bottom: 0.005
  15996. }
  15997. },
  15998. backMaid: {
  15999. height: math.unit(6, "feet"),
  16000. weight: math.unit(150, "lb"),
  16001. name: "Back (Maid)",
  16002. image: {
  16003. source: "./media/characters/alluria/back-maid.svg",
  16004. extra: 806 / 738,
  16005. }
  16006. },
  16007. },
  16008. [
  16009. {
  16010. name: "Micro",
  16011. height: math.unit(6, "inches"),
  16012. default: true
  16013. },
  16014. ]
  16015. ))
  16016. characterMakers.push(() => makeCharacter(
  16017. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16018. {
  16019. front: {
  16020. height: math.unit(6, "feet"),
  16021. weight: math.unit(150, "lb"),
  16022. name: "Front",
  16023. image: {
  16024. source: "./media/characters/kyle/front.svg",
  16025. extra: 1069 / 962,
  16026. bottom: 77.228 / 1727.45
  16027. }
  16028. },
  16029. },
  16030. [
  16031. {
  16032. name: "Macro",
  16033. height: math.unit(150, "feet"),
  16034. default: true
  16035. },
  16036. ]
  16037. ))
  16038. characterMakers.push(() => makeCharacter(
  16039. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16040. {
  16041. front: {
  16042. height: math.unit(6, "feet"),
  16043. weight: math.unit(300, "lb"),
  16044. name: "Front",
  16045. image: {
  16046. source: "./media/characters/duncan/front.svg",
  16047. extra: 1650 / 1482,
  16048. bottom: 0.05
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Macro",
  16055. height: math.unit(100, "feet"),
  16056. default: true
  16057. },
  16058. ]
  16059. ))
  16060. characterMakers.push(() => makeCharacter(
  16061. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16062. {
  16063. front: {
  16064. height: math.unit(5 + 4 / 12, "feet"),
  16065. weight: math.unit(220, "lb"),
  16066. name: "Front",
  16067. image: {
  16068. source: "./media/characters/memory/front.svg",
  16069. extra: 3641 / 3545,
  16070. bottom: 0.03
  16071. }
  16072. },
  16073. back: {
  16074. height: math.unit(5 + 4 / 12, "feet"),
  16075. weight: math.unit(220, "lb"),
  16076. name: "Back",
  16077. image: {
  16078. source: "./media/characters/memory/back.svg",
  16079. extra: 3641 / 3545,
  16080. bottom: 0.025
  16081. }
  16082. },
  16083. frontSkirt: {
  16084. height: math.unit(5 + 4 / 12, "feet"),
  16085. weight: math.unit(220, "lb"),
  16086. name: "Front (Skirt)",
  16087. image: {
  16088. source: "./media/characters/memory/front-skirt.svg",
  16089. extra: 3641 / 3545,
  16090. bottom: 0.03
  16091. }
  16092. },
  16093. frontDress: {
  16094. height: math.unit(5 + 4 / 12, "feet"),
  16095. weight: math.unit(220, "lb"),
  16096. name: "Front (Dress)",
  16097. image: {
  16098. source: "./media/characters/memory/front-dress.svg",
  16099. extra: 3641 / 3545,
  16100. bottom: 0.03
  16101. }
  16102. },
  16103. },
  16104. [
  16105. {
  16106. name: "Micro",
  16107. height: math.unit(6, "inches"),
  16108. default: true
  16109. },
  16110. {
  16111. name: "Normal",
  16112. height: math.unit(5 + 4 / 12, "feet")
  16113. },
  16114. ]
  16115. ))
  16116. characterMakers.push(() => makeCharacter(
  16117. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16118. {
  16119. front: {
  16120. height: math.unit(4 + 11 / 12, "feet"),
  16121. weight: math.unit(100, "lb"),
  16122. name: "Front",
  16123. image: {
  16124. source: "./media/characters/luno/front.svg",
  16125. extra: 1535 / 1487,
  16126. bottom: 0.03
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Micro",
  16133. height: math.unit(3, "inches")
  16134. },
  16135. {
  16136. name: "Normal",
  16137. height: math.unit(4 + 11 / 12, "feet"),
  16138. default: true
  16139. },
  16140. {
  16141. name: "Macro",
  16142. height: math.unit(300, "feet")
  16143. },
  16144. {
  16145. name: "Megamacro",
  16146. height: math.unit(700, "miles")
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(6 + 2 / 12, "feet"),
  16155. weight: math.unit(170, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/jamesy/front.svg",
  16159. extra: 440 / 382,
  16160. bottom: 0.005
  16161. }
  16162. },
  16163. },
  16164. [
  16165. {
  16166. name: "Micro",
  16167. height: math.unit(3, "inches")
  16168. },
  16169. {
  16170. name: "Normal",
  16171. height: math.unit(6 + 2 / 12, "feet"),
  16172. default: true
  16173. },
  16174. {
  16175. name: "Macro",
  16176. height: math.unit(300, "feet")
  16177. },
  16178. {
  16179. name: "Megamacro",
  16180. height: math.unit(700, "miles")
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16186. {
  16187. front: {
  16188. height: math.unit(6, "feet"),
  16189. weight: math.unit(160, "lb"),
  16190. name: "Front",
  16191. image: {
  16192. source: "./media/characters/mark/front.svg",
  16193. extra: 3300 / 3100,
  16194. bottom: 136.42 / 3440.47
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Macro",
  16201. height: math.unit(120, "meters")
  16202. },
  16203. {
  16204. name: "Bigger Macro",
  16205. height: math.unit(350, "meters")
  16206. },
  16207. {
  16208. name: "Megamacro",
  16209. height: math.unit(8, "km"),
  16210. default: true
  16211. },
  16212. {
  16213. name: "Continental",
  16214. height: math.unit(4550, "km")
  16215. },
  16216. {
  16217. name: "Planetary",
  16218. height: math.unit(65000, "km")
  16219. },
  16220. ]
  16221. ))
  16222. characterMakers.push(() => makeCharacter(
  16223. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16224. {
  16225. front: {
  16226. height: math.unit(6, "feet"),
  16227. weight: math.unit(400, "lb"),
  16228. name: "Front",
  16229. image: {
  16230. source: "./media/characters/mac/front.svg",
  16231. extra: 1048 / 987.7,
  16232. bottom: 60 / 1107.6,
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Macro",
  16239. height: math.unit(500, "feet"),
  16240. default: true
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16246. {
  16247. front: {
  16248. height: math.unit(5 + 2 / 12, "feet"),
  16249. weight: math.unit(190, "lb"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/bari/front.svg",
  16253. extra: 3156 / 2880,
  16254. bottom: 0.03
  16255. }
  16256. },
  16257. back: {
  16258. height: math.unit(5 + 2 / 12, "feet"),
  16259. weight: math.unit(190, "lb"),
  16260. name: "Back",
  16261. image: {
  16262. source: "./media/characters/bari/back.svg",
  16263. extra: 3260 / 2834,
  16264. bottom: 0.025
  16265. }
  16266. },
  16267. frontPlush: {
  16268. height: math.unit(5 + 2 / 12, "feet"),
  16269. weight: math.unit(190, "lb"),
  16270. name: "Front (Plush)",
  16271. image: {
  16272. source: "./media/characters/bari/front-plush.svg",
  16273. extra: 1112 / 1061,
  16274. bottom: 0.002
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Micro",
  16281. height: math.unit(3, "inches")
  16282. },
  16283. {
  16284. name: "Normal",
  16285. height: math.unit(5 + 2 / 12, "feet"),
  16286. default: true
  16287. },
  16288. {
  16289. name: "Macro",
  16290. height: math.unit(20, "feet")
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6 + 1 / 12, "feet"),
  16299. weight: math.unit(275, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/hunter-misha-raven/front.svg"
  16303. }
  16304. },
  16305. },
  16306. [
  16307. {
  16308. name: "Mortal",
  16309. height: math.unit(6 + 1 / 12, "feet")
  16310. },
  16311. {
  16312. name: "Divine",
  16313. height: math.unit(1.12134e34, "parsecs"),
  16314. default: true
  16315. },
  16316. ]
  16317. ))
  16318. characterMakers.push(() => makeCharacter(
  16319. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16320. {
  16321. front: {
  16322. height: math.unit(6 + 3 / 12, "feet"),
  16323. weight: math.unit(220, "lb"),
  16324. name: "Front",
  16325. image: {
  16326. source: "./media/characters/max-calore/front.svg",
  16327. extra: 1700 / 1648,
  16328. bottom: 0.01
  16329. }
  16330. },
  16331. back: {
  16332. height: math.unit(6 + 3 / 12, "feet"),
  16333. weight: math.unit(220, "lb"),
  16334. name: "Back",
  16335. image: {
  16336. source: "./media/characters/max-calore/back.svg",
  16337. extra: 1700 / 1648,
  16338. bottom: 0.01
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Normal",
  16345. height: math.unit(6 + 3 / 12, "feet"),
  16346. default: true
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16352. {
  16353. side: {
  16354. height: math.unit(2 + 8 / 12, "feet"),
  16355. weight: math.unit(99, "lb"),
  16356. name: "Side",
  16357. image: {
  16358. source: "./media/characters/aspen/side.svg",
  16359. extra: 152 / 138,
  16360. bottom: 0.032
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Normal",
  16367. height: math.unit(2 + 8 / 12, "feet"),
  16368. default: true
  16369. },
  16370. ]
  16371. ))
  16372. characterMakers.push(() => makeCharacter(
  16373. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16374. {
  16375. side: {
  16376. height: math.unit(3 + 2 / 12, "feet"),
  16377. weight: math.unit(224, "lb"),
  16378. name: "Side",
  16379. image: {
  16380. source: "./media/characters/sheila-feral-wolf/side.svg",
  16381. extra: 179 / 166,
  16382. bottom: 0.03
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Normal",
  16389. height: math.unit(3 + 2 / 12, "feet"),
  16390. default: true
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16396. {
  16397. side: {
  16398. height: math.unit(1 + 9 / 12, "feet"),
  16399. weight: math.unit(38, "lb"),
  16400. name: "Side",
  16401. image: {
  16402. source: "./media/characters/michelle/side.svg",
  16403. extra: 147 / 136.7,
  16404. bottom: 0.03
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(1 + 9 / 12, "feet"),
  16412. default: true
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16418. {
  16419. front: {
  16420. height: math.unit(1 + 1 / 12, "feet"),
  16421. weight: math.unit(18, "lb"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/nino/front.svg"
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Normal",
  16431. height: math.unit(1 + 1 / 12, "feet"),
  16432. default: true
  16433. },
  16434. ]
  16435. ))
  16436. characterMakers.push(() => makeCharacter(
  16437. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16438. {
  16439. front: {
  16440. height: math.unit(1, "feet"),
  16441. weight: math.unit(16, "lb"),
  16442. name: "Front",
  16443. image: {
  16444. source: "./media/characters/viola/front.svg"
  16445. }
  16446. },
  16447. },
  16448. [
  16449. {
  16450. name: "Normal",
  16451. height: math.unit(1, "feet"),
  16452. default: true
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16458. {
  16459. front: {
  16460. height: math.unit(6 + 5 / 12, "feet"),
  16461. weight: math.unit(580, "lb"),
  16462. name: "Front",
  16463. image: {
  16464. source: "./media/characters/atlas/front.svg",
  16465. extra: 298.5 / 290,
  16466. bottom: 0.015
  16467. }
  16468. },
  16469. },
  16470. [
  16471. {
  16472. name: "Normal",
  16473. height: math.unit(6 + 5 / 12, "feet"),
  16474. default: true
  16475. },
  16476. ]
  16477. ))
  16478. characterMakers.push(() => makeCharacter(
  16479. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16480. {
  16481. side: {
  16482. height: math.unit(1 + 10 / 12, "feet"),
  16483. weight: math.unit(25, "lb"),
  16484. name: "Side",
  16485. image: {
  16486. source: "./media/characters/davy/side.svg",
  16487. extra: 200 / 170,
  16488. bottom: 0.01
  16489. }
  16490. },
  16491. },
  16492. [
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(1 + 10 / 12, "feet"),
  16496. default: true
  16497. },
  16498. ]
  16499. ))
  16500. characterMakers.push(() => makeCharacter(
  16501. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16502. {
  16503. side: {
  16504. height: math.unit(4 + 8 / 12, "feet"),
  16505. weight: math.unit(166, "lb"),
  16506. name: "Side",
  16507. image: {
  16508. source: "./media/characters/fiona/side.svg",
  16509. extra: 232 / 220,
  16510. bottom: 0.03
  16511. }
  16512. },
  16513. },
  16514. [
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(4 + 8 / 12, "feet"),
  16518. default: true
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16524. {
  16525. front: {
  16526. height: math.unit(2, "feet"),
  16527. weight: math.unit(62, "lb"),
  16528. name: "Front",
  16529. image: {
  16530. source: "./media/characters/lyla/front.svg",
  16531. bottom: 0.1
  16532. }
  16533. },
  16534. },
  16535. [
  16536. {
  16537. name: "Normal",
  16538. height: math.unit(2, "feet"),
  16539. default: true
  16540. },
  16541. ]
  16542. ))
  16543. characterMakers.push(() => makeCharacter(
  16544. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16545. {
  16546. side: {
  16547. height: math.unit(1.8, "feet"),
  16548. weight: math.unit(44, "lb"),
  16549. name: "Side",
  16550. image: {
  16551. source: "./media/characters/perseus/side.svg",
  16552. bottom: 0.21
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(1.8, "feet"),
  16560. default: true
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16566. {
  16567. side: {
  16568. height: math.unit(4 + 2 / 12, "feet"),
  16569. weight: math.unit(20, "lb"),
  16570. name: "Side",
  16571. image: {
  16572. source: "./media/characters/remus/side.svg"
  16573. }
  16574. },
  16575. },
  16576. [
  16577. {
  16578. name: "Normal",
  16579. height: math.unit(4 + 2 / 12, "feet"),
  16580. default: true
  16581. },
  16582. ]
  16583. ))
  16584. characterMakers.push(() => makeCharacter(
  16585. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16586. {
  16587. front: {
  16588. height: math.unit(4 + 11 / 12, "feet"),
  16589. weight: math.unit(114, "lb"),
  16590. name: "Front",
  16591. image: {
  16592. source: "./media/characters/raf/front.svg",
  16593. bottom: 20.5 / 1863
  16594. }
  16595. },
  16596. side: {
  16597. height: math.unit(4 + 11 / 12, "feet"),
  16598. weight: math.unit(114, "lb"),
  16599. name: "Side",
  16600. image: {
  16601. source: "./media/characters/raf/side.svg",
  16602. bottom: 22 / 1822
  16603. }
  16604. },
  16605. },
  16606. [
  16607. {
  16608. name: "Micro",
  16609. height: math.unit(2, "inches")
  16610. },
  16611. {
  16612. name: "Normal",
  16613. height: math.unit(4 + 11 / 12, "feet"),
  16614. default: true
  16615. },
  16616. {
  16617. name: "Macro",
  16618. height: math.unit(70, "feet")
  16619. },
  16620. ]
  16621. ))
  16622. characterMakers.push(() => makeCharacter(
  16623. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16624. {
  16625. front: {
  16626. height: math.unit(1.5, "meters"),
  16627. weight: math.unit(68, "kg"),
  16628. name: "Front",
  16629. image: {
  16630. source: "./media/characters/liam-einarr/front.svg",
  16631. extra: 2822 / 2666
  16632. }
  16633. },
  16634. back: {
  16635. height: math.unit(1.5, "meters"),
  16636. weight: math.unit(68, "kg"),
  16637. name: "Back",
  16638. image: {
  16639. source: "./media/characters/liam-einarr/back.svg",
  16640. extra: 2822 / 2666,
  16641. bottom: 0.015
  16642. }
  16643. },
  16644. },
  16645. [
  16646. {
  16647. name: "Normal",
  16648. height: math.unit(1.5, "meters"),
  16649. default: true
  16650. },
  16651. {
  16652. name: "Macro",
  16653. height: math.unit(150, "meters")
  16654. },
  16655. {
  16656. name: "Megamacro",
  16657. height: math.unit(35, "km")
  16658. },
  16659. ]
  16660. ))
  16661. characterMakers.push(() => makeCharacter(
  16662. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16663. {
  16664. front: {
  16665. height: math.unit(6, "feet"),
  16666. weight: math.unit(75, "kg"),
  16667. name: "Front",
  16668. image: {
  16669. source: "./media/characters/linda/front.svg",
  16670. extra: 930 / 874,
  16671. bottom: 0.004
  16672. }
  16673. },
  16674. },
  16675. [
  16676. {
  16677. name: "Normal",
  16678. height: math.unit(6, "feet"),
  16679. default: true
  16680. },
  16681. ]
  16682. ))
  16683. characterMakers.push(() => makeCharacter(
  16684. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16685. {
  16686. front: {
  16687. height: math.unit(6 + 8 / 12, "feet"),
  16688. weight: math.unit(220, "lb"),
  16689. name: "Front",
  16690. image: {
  16691. source: "./media/characters/caylex/front.svg",
  16692. extra: 821 / 772,
  16693. bottom: 0.07
  16694. }
  16695. },
  16696. back: {
  16697. height: math.unit(6 + 8 / 12, "feet"),
  16698. weight: math.unit(220, "lb"),
  16699. name: "Back",
  16700. image: {
  16701. source: "./media/characters/caylex/back.svg",
  16702. extra: 821 / 772,
  16703. bottom: 0.022
  16704. }
  16705. },
  16706. hand: {
  16707. height: math.unit(1.25, "feet"),
  16708. name: "Hand",
  16709. image: {
  16710. source: "./media/characters/caylex/hand.svg"
  16711. }
  16712. },
  16713. foot: {
  16714. height: math.unit(1.6, "feet"),
  16715. name: "Foot",
  16716. image: {
  16717. source: "./media/characters/caylex/foot.svg"
  16718. }
  16719. },
  16720. armored: {
  16721. height: math.unit(6 + 8 / 12, "feet"),
  16722. weight: math.unit(250, "lb"),
  16723. name: "Armored",
  16724. image: {
  16725. source: "./media/characters/caylex/armored.svg",
  16726. extra: 1420 / 1310,
  16727. bottom: 0.045
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(6 + 8 / 12, "feet"),
  16735. default: true
  16736. },
  16737. {
  16738. name: "Normal+",
  16739. height: math.unit(12, "feet")
  16740. },
  16741. ]
  16742. ))
  16743. characterMakers.push(() => makeCharacter(
  16744. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16745. {
  16746. front: {
  16747. height: math.unit(7 + 6 / 12, "feet"),
  16748. weight: math.unit(288, "lb"),
  16749. name: "Front",
  16750. image: {
  16751. source: "./media/characters/alana/front.svg",
  16752. extra: 679 / 653,
  16753. bottom: 22.5 / 701
  16754. }
  16755. },
  16756. },
  16757. [
  16758. {
  16759. name: "Normal",
  16760. height: math.unit(7 + 6 / 12, "feet")
  16761. },
  16762. {
  16763. name: "Large",
  16764. height: math.unit(50, "feet")
  16765. },
  16766. {
  16767. name: "Macro",
  16768. height: math.unit(100, "feet"),
  16769. default: true
  16770. },
  16771. {
  16772. name: "Macro+",
  16773. height: math.unit(200, "feet")
  16774. },
  16775. ]
  16776. ))
  16777. characterMakers.push(() => makeCharacter(
  16778. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16779. {
  16780. front: {
  16781. height: math.unit(6 + 1 / 12, "feet"),
  16782. weight: math.unit(210, "lb"),
  16783. name: "Front",
  16784. image: {
  16785. source: "./media/characters/hasani/front.svg",
  16786. extra: 244 / 232,
  16787. bottom: 0.01
  16788. }
  16789. },
  16790. back: {
  16791. height: math.unit(6 + 1 / 12, "feet"),
  16792. weight: math.unit(210, "lb"),
  16793. name: "Back",
  16794. image: {
  16795. source: "./media/characters/hasani/back.svg",
  16796. extra: 244 / 232,
  16797. bottom: 0.01
  16798. }
  16799. },
  16800. },
  16801. [
  16802. {
  16803. name: "Normal",
  16804. height: math.unit(6 + 1 / 12, "feet")
  16805. },
  16806. {
  16807. name: "Macro",
  16808. height: math.unit(175, "feet"),
  16809. default: true
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(1.82, "meters"),
  16818. weight: math.unit(140, "lb"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/nita/front.svg",
  16822. extra: 2473 / 2363,
  16823. bottom: 0.01
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(1.82, "m")
  16831. },
  16832. {
  16833. name: "Macro",
  16834. height: math.unit(300, "m")
  16835. },
  16836. {
  16837. name: "Mistake Canon",
  16838. height: math.unit(0.5, "miles"),
  16839. default: true
  16840. },
  16841. {
  16842. name: "Big Mistake",
  16843. height: math.unit(13, "miles")
  16844. },
  16845. {
  16846. name: "Playing God",
  16847. height: math.unit(2450, "miles")
  16848. },
  16849. ]
  16850. ))
  16851. characterMakers.push(() => makeCharacter(
  16852. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16853. {
  16854. front: {
  16855. height: math.unit(4, "feet"),
  16856. weight: math.unit(120, "lb"),
  16857. name: "Front",
  16858. image: {
  16859. source: "./media/characters/shiriko/front.svg",
  16860. extra: 195 / 188
  16861. }
  16862. },
  16863. },
  16864. [
  16865. {
  16866. name: "Normal",
  16867. height: math.unit(4, "feet"),
  16868. default: true
  16869. },
  16870. ]
  16871. ))
  16872. characterMakers.push(() => makeCharacter(
  16873. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16874. {
  16875. front: {
  16876. height: math.unit(6, "feet"),
  16877. name: "front",
  16878. image: {
  16879. source: "./media/characters/deja/front.svg",
  16880. extra: 926 / 840,
  16881. bottom: 0.07
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Planck Length",
  16888. height: math.unit(1.6e-35, "meters")
  16889. },
  16890. {
  16891. name: "Normal",
  16892. height: math.unit(30.48, "meters"),
  16893. default: true
  16894. },
  16895. {
  16896. name: "Universal",
  16897. height: math.unit(8.8e26, "meters")
  16898. },
  16899. ]
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16903. {
  16904. side: {
  16905. height: math.unit(8, "feet"),
  16906. weight: math.unit(6300, "lb"),
  16907. name: "Side",
  16908. image: {
  16909. source: "./media/characters/anima/side.svg",
  16910. bottom: 0.035
  16911. }
  16912. },
  16913. },
  16914. [
  16915. {
  16916. name: "Normal",
  16917. height: math.unit(8, "feet"),
  16918. default: true
  16919. },
  16920. ]
  16921. ))
  16922. characterMakers.push(() => makeCharacter(
  16923. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16924. {
  16925. front: {
  16926. height: math.unit(8, "feet"),
  16927. weight: math.unit(350, "lb"),
  16928. name: "Front",
  16929. image: {
  16930. source: "./media/characters/bianca/front.svg",
  16931. extra: 234 / 225,
  16932. bottom: 0.03
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Normal",
  16939. height: math.unit(8, "feet"),
  16940. default: true
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16946. {
  16947. front: {
  16948. height: math.unit(6, "feet"),
  16949. weight: math.unit(150, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/adinia/front.svg",
  16953. extra: 1845 / 1672,
  16954. bottom: 0.02
  16955. }
  16956. },
  16957. back: {
  16958. height: math.unit(6, "feet"),
  16959. weight: math.unit(150, "lb"),
  16960. name: "Back",
  16961. image: {
  16962. source: "./media/characters/adinia/back.svg",
  16963. extra: 1845 / 1672,
  16964. bottom: 0.002
  16965. }
  16966. },
  16967. },
  16968. [
  16969. {
  16970. name: "Normal",
  16971. height: math.unit(11 + 5 / 12, "feet"),
  16972. default: true
  16973. },
  16974. ]
  16975. ))
  16976. characterMakers.push(() => makeCharacter(
  16977. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16978. {
  16979. front: {
  16980. height: math.unit(3, "meters"),
  16981. weight: math.unit(200, "kg"),
  16982. name: "Front",
  16983. image: {
  16984. source: "./media/characters/lykasa/front.svg",
  16985. extra: 1076 / 976,
  16986. bottom: 0.06
  16987. }
  16988. },
  16989. },
  16990. [
  16991. {
  16992. name: "Normal",
  16993. height: math.unit(3, "meters")
  16994. },
  16995. {
  16996. name: "Kaiju",
  16997. height: math.unit(120, "meters"),
  16998. default: true
  16999. },
  17000. {
  17001. name: "Mega Kaiju",
  17002. height: math.unit(240, "km")
  17003. },
  17004. {
  17005. name: "Giga Kaiju",
  17006. height: math.unit(400, "megameters")
  17007. },
  17008. {
  17009. name: "Tera Kaiju",
  17010. height: math.unit(800, "gigameters")
  17011. },
  17012. {
  17013. name: "Kaiju Dragon Goddess",
  17014. height: math.unit(26, "zettaparsecs")
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17020. {
  17021. side: {
  17022. height: math.unit(283 / 124 * 6, "feet"),
  17023. weight: math.unit(35000, "lb"),
  17024. name: "Side",
  17025. image: {
  17026. source: "./media/characters/malfaren/side.svg",
  17027. extra: 2500 / 1010,
  17028. bottom: 0.01
  17029. }
  17030. },
  17031. front: {
  17032. height: math.unit(22.36, "feet"),
  17033. weight: math.unit(35000, "lb"),
  17034. name: "Front",
  17035. image: {
  17036. source: "./media/characters/malfaren/front.svg",
  17037. extra: 1631 / 1476,
  17038. bottom: 0.01
  17039. }
  17040. },
  17041. maw: {
  17042. height: math.unit(6.9, "feet"),
  17043. name: "Maw",
  17044. image: {
  17045. source: "./media/characters/malfaren/maw.svg"
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Big",
  17052. height: math.unit(283 / 162 * 6, "feet"),
  17053. },
  17054. {
  17055. name: "Bigger",
  17056. height: math.unit(283 / 124 * 6, "feet")
  17057. },
  17058. {
  17059. name: "Massive",
  17060. height: math.unit(283 / 92 * 6, "feet"),
  17061. default: true
  17062. },
  17063. {
  17064. name: "👀💦",
  17065. height: math.unit(283 / 73 * 6, "feet"),
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17071. {
  17072. front: {
  17073. height: math.unit(1.7, "m"),
  17074. weight: math.unit(70, "kg"),
  17075. name: "Front",
  17076. image: {
  17077. source: "./media/characters/kernel/front.svg",
  17078. extra: 222 / 210,
  17079. bottom: 0.007
  17080. }
  17081. },
  17082. },
  17083. [
  17084. {
  17085. name: "Nano",
  17086. height: math.unit(17, "micrometers")
  17087. },
  17088. {
  17089. name: "Micro",
  17090. height: math.unit(1.7, "mm")
  17091. },
  17092. {
  17093. name: "Small",
  17094. height: math.unit(1.7, "cm")
  17095. },
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(1.7, "m"),
  17099. default: true
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17105. {
  17106. front: {
  17107. height: math.unit(1.75, "meters"),
  17108. weight: math.unit(65, "kg"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/jayne-folest/front.svg",
  17112. extra: 2115 / 2007,
  17113. bottom: 0.02
  17114. }
  17115. },
  17116. back: {
  17117. height: math.unit(1.75, "meters"),
  17118. weight: math.unit(65, "kg"),
  17119. name: "Back",
  17120. image: {
  17121. source: "./media/characters/jayne-folest/back.svg",
  17122. extra: 2115 / 2007,
  17123. bottom: 0.005
  17124. }
  17125. },
  17126. frontClothed: {
  17127. height: math.unit(1.75, "meters"),
  17128. weight: math.unit(65, "kg"),
  17129. name: "Front (Clothed)",
  17130. image: {
  17131. source: "./media/characters/jayne-folest/front-clothed.svg",
  17132. extra: 2115 / 2007,
  17133. bottom: 0.035
  17134. }
  17135. },
  17136. hand: {
  17137. height: math.unit(1 / 1.260, "feet"),
  17138. name: "Hand",
  17139. image: {
  17140. source: "./media/characters/jayne-folest/hand.svg"
  17141. }
  17142. },
  17143. foot: {
  17144. height: math.unit(1 / 0.918, "feet"),
  17145. name: "Foot",
  17146. image: {
  17147. source: "./media/characters/jayne-folest/foot.svg"
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Micro",
  17154. height: math.unit(4, "cm")
  17155. },
  17156. {
  17157. name: "Normal",
  17158. height: math.unit(1.75, "meters")
  17159. },
  17160. {
  17161. name: "Macro",
  17162. height: math.unit(47.5, "meters"),
  17163. default: true
  17164. },
  17165. ]
  17166. ))
  17167. characterMakers.push(() => makeCharacter(
  17168. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17169. {
  17170. front: {
  17171. height: math.unit(180, "cm"),
  17172. weight: math.unit(70, "kg"),
  17173. name: "Front",
  17174. image: {
  17175. source: "./media/characters/algier/front.svg",
  17176. extra: 596 / 572,
  17177. bottom: 0.04
  17178. }
  17179. },
  17180. back: {
  17181. height: math.unit(180, "cm"),
  17182. weight: math.unit(70, "kg"),
  17183. name: "Back",
  17184. image: {
  17185. source: "./media/characters/algier/back.svg",
  17186. extra: 596 / 572,
  17187. bottom: 0.025
  17188. }
  17189. },
  17190. frontdressed: {
  17191. height: math.unit(180, "cm"),
  17192. weight: math.unit(150, "kg"),
  17193. name: "Front-dressed",
  17194. image: {
  17195. source: "./media/characters/algier/front-dressed.svg",
  17196. extra: 596 / 572,
  17197. bottom: 0.038
  17198. }
  17199. },
  17200. },
  17201. [
  17202. {
  17203. name: "Micro",
  17204. height: math.unit(5, "cm")
  17205. },
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(180, "cm"),
  17209. default: true
  17210. },
  17211. {
  17212. name: "Macro",
  17213. height: math.unit(64, "m")
  17214. },
  17215. ]
  17216. ))
  17217. characterMakers.push(() => makeCharacter(
  17218. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17219. {
  17220. upright: {
  17221. height: math.unit(7, "feet"),
  17222. weight: math.unit(300, "lb"),
  17223. name: "Upright",
  17224. image: {
  17225. source: "./media/characters/pretzel/upright.svg",
  17226. extra: 534 / 522,
  17227. bottom: 0.065
  17228. }
  17229. },
  17230. sprawling: {
  17231. height: math.unit(3.75, "feet"),
  17232. weight: math.unit(300, "lb"),
  17233. name: "Sprawling",
  17234. image: {
  17235. source: "./media/characters/pretzel/sprawling.svg",
  17236. extra: 314 / 281,
  17237. bottom: 0.1
  17238. }
  17239. },
  17240. tongue: {
  17241. height: math.unit(2, "feet"),
  17242. name: "Tongue",
  17243. image: {
  17244. source: "./media/characters/pretzel/tongue.svg"
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(7, "feet"),
  17252. default: true
  17253. },
  17254. {
  17255. name: "Oversized",
  17256. height: math.unit(15, "feet")
  17257. },
  17258. {
  17259. name: "Huge",
  17260. height: math.unit(30, "feet")
  17261. },
  17262. {
  17263. name: "Macro",
  17264. height: math.unit(250, "feet")
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17270. {
  17271. sideFront: {
  17272. height: math.unit(5 + 2 / 12, "feet"),
  17273. weight: math.unit(120, "lb"),
  17274. name: "Front Side",
  17275. image: {
  17276. source: "./media/characters/roxi/side-front.svg",
  17277. extra: 2924 / 2717,
  17278. bottom: 0.08
  17279. }
  17280. },
  17281. sideBack: {
  17282. height: math.unit(5 + 2 / 12, "feet"),
  17283. weight: math.unit(120, "lb"),
  17284. name: "Back Side",
  17285. image: {
  17286. source: "./media/characters/roxi/side-back.svg",
  17287. extra: 2904 / 2693,
  17288. bottom: 0.06
  17289. }
  17290. },
  17291. front: {
  17292. height: math.unit(5 + 2 / 12, "feet"),
  17293. weight: math.unit(120, "lb"),
  17294. name: "Front",
  17295. image: {
  17296. source: "./media/characters/roxi/front.svg",
  17297. extra: 2028 / 1907,
  17298. bottom: 0.01
  17299. }
  17300. },
  17301. frontAlt: {
  17302. height: math.unit(5 + 2 / 12, "feet"),
  17303. weight: math.unit(120, "lb"),
  17304. name: "Front (Alt)",
  17305. image: {
  17306. source: "./media/characters/roxi/front-alt.svg",
  17307. extra: 1828 / 1798,
  17308. bottom: 0.01
  17309. }
  17310. },
  17311. sitting: {
  17312. height: math.unit(2.8, "feet"),
  17313. weight: math.unit(120, "lb"),
  17314. name: "Sitting",
  17315. image: {
  17316. source: "./media/characters/roxi/sitting.svg",
  17317. extra: 2660 / 2462,
  17318. bottom: 0.1
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(5 + 2 / 12, "feet"),
  17326. default: true
  17327. },
  17328. ]
  17329. ))
  17330. characterMakers.push(() => makeCharacter(
  17331. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17332. {
  17333. side: {
  17334. height: math.unit(55, "feet"),
  17335. weight: math.unit(153, "tons"),
  17336. name: "Side",
  17337. image: {
  17338. source: "./media/characters/shadow/side.svg",
  17339. extra: 701 / 628,
  17340. bottom: 0.02
  17341. }
  17342. },
  17343. flying: {
  17344. height: math.unit(145, "feet"),
  17345. weight: math.unit(153, "tons"),
  17346. name: "Flying",
  17347. image: {
  17348. source: "./media/characters/shadow/flying.svg"
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Normal",
  17355. height: math.unit(55, "feet"),
  17356. default: true
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17362. {
  17363. front: {
  17364. height: math.unit(6, "feet"),
  17365. weight: math.unit(200, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/marcie/front.svg",
  17369. extra: 960 / 876,
  17370. bottom: 58 / 1017.87
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Macro",
  17377. height: math.unit(1, "mile"),
  17378. default: true
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17384. {
  17385. front: {
  17386. height: math.unit(7, "feet"),
  17387. weight: math.unit(200, "lb"),
  17388. name: "Front",
  17389. image: {
  17390. source: "./media/characters/kachina/front.svg",
  17391. extra: 1290.68 / 1119,
  17392. bottom: 36.5 / 1327.18
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Normal",
  17399. height: math.unit(7, "feet"),
  17400. default: true
  17401. },
  17402. ]
  17403. ))
  17404. characterMakers.push(() => makeCharacter(
  17405. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17406. {
  17407. looking: {
  17408. height: math.unit(2, "meters"),
  17409. weight: math.unit(300, "kg"),
  17410. name: "Looking",
  17411. image: {
  17412. source: "./media/characters/kash/looking.svg",
  17413. extra: 474 / 344,
  17414. bottom: 0.03
  17415. }
  17416. },
  17417. side: {
  17418. height: math.unit(2, "meters"),
  17419. weight: math.unit(300, "kg"),
  17420. name: "Side",
  17421. image: {
  17422. source: "./media/characters/kash/side.svg",
  17423. extra: 302 / 251,
  17424. bottom: 0.03
  17425. }
  17426. },
  17427. front: {
  17428. height: math.unit(2, "meters"),
  17429. weight: math.unit(300, "kg"),
  17430. name: "Front",
  17431. image: {
  17432. source: "./media/characters/kash/front.svg",
  17433. extra: 495 / 360,
  17434. bottom: 0.015
  17435. }
  17436. },
  17437. },
  17438. [
  17439. {
  17440. name: "Normal",
  17441. height: math.unit(2, "meters"),
  17442. default: true
  17443. },
  17444. {
  17445. name: "Big",
  17446. height: math.unit(3, "meters")
  17447. },
  17448. {
  17449. name: "Large",
  17450. height: math.unit(5, "meters")
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17456. {
  17457. feeding: {
  17458. height: math.unit(6.7, "feet"),
  17459. weight: math.unit(350, "lb"),
  17460. name: "Feeding",
  17461. image: {
  17462. source: "./media/characters/lalim/feeding.svg",
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(6.7, "feet"),
  17470. default: true
  17471. },
  17472. ]
  17473. ))
  17474. characterMakers.push(() => makeCharacter(
  17475. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17476. {
  17477. front: {
  17478. height: math.unit(9.5, "feet"),
  17479. weight: math.unit(600, "lb"),
  17480. name: "Front",
  17481. image: {
  17482. source: "./media/characters/de'vout/front.svg",
  17483. extra: 1443 / 1328,
  17484. bottom: 0.025
  17485. }
  17486. },
  17487. back: {
  17488. height: math.unit(9.5, "feet"),
  17489. weight: math.unit(600, "lb"),
  17490. name: "Back",
  17491. image: {
  17492. source: "./media/characters/de'vout/back.svg",
  17493. extra: 1443 / 1328
  17494. }
  17495. },
  17496. frontDressed: {
  17497. height: math.unit(9.5, "feet"),
  17498. weight: math.unit(600, "lb"),
  17499. name: "Front (Dressed",
  17500. image: {
  17501. source: "./media/characters/de'vout/front-dressed.svg",
  17502. extra: 1443 / 1328,
  17503. bottom: 0.025
  17504. }
  17505. },
  17506. backDressed: {
  17507. height: math.unit(9.5, "feet"),
  17508. weight: math.unit(600, "lb"),
  17509. name: "Back (Dressed",
  17510. image: {
  17511. source: "./media/characters/de'vout/back-dressed.svg",
  17512. extra: 1443 / 1328
  17513. }
  17514. },
  17515. },
  17516. [
  17517. {
  17518. name: "Normal",
  17519. height: math.unit(9.5, "feet"),
  17520. default: true
  17521. },
  17522. ]
  17523. ))
  17524. characterMakers.push(() => makeCharacter(
  17525. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17526. {
  17527. front: {
  17528. height: math.unit(8, "feet"),
  17529. weight: math.unit(225, "lb"),
  17530. name: "Front",
  17531. image: {
  17532. source: "./media/characters/talana/front.svg",
  17533. extra: 1410 / 1300,
  17534. bottom: 0.015
  17535. }
  17536. },
  17537. frontDressed: {
  17538. height: math.unit(8, "feet"),
  17539. weight: math.unit(225, "lb"),
  17540. name: "Front (Dressed",
  17541. image: {
  17542. source: "./media/characters/talana/front-dressed.svg",
  17543. extra: 1410 / 1300,
  17544. bottom: 0.015
  17545. }
  17546. },
  17547. },
  17548. [
  17549. {
  17550. name: "Normal",
  17551. height: math.unit(8, "feet"),
  17552. default: true
  17553. },
  17554. ]
  17555. ))
  17556. characterMakers.push(() => makeCharacter(
  17557. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17558. {
  17559. side: {
  17560. height: math.unit(7.2, "feet"),
  17561. weight: math.unit(150, "lb"),
  17562. name: "Side",
  17563. image: {
  17564. source: "./media/characters/xeauvok/side.svg",
  17565. extra: 1975 / 1523,
  17566. bottom: 0.07
  17567. }
  17568. },
  17569. },
  17570. [
  17571. {
  17572. name: "Normal",
  17573. height: math.unit(7.2, "feet"),
  17574. default: true
  17575. },
  17576. ]
  17577. ))
  17578. characterMakers.push(() => makeCharacter(
  17579. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17580. {
  17581. side: {
  17582. height: math.unit(10, "feet"),
  17583. weight: math.unit(900, "kg"),
  17584. name: "Side",
  17585. image: {
  17586. source: "./media/characters/zara/side.svg",
  17587. extra: 504 / 498
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(10, "feet"),
  17595. default: true
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17601. {
  17602. side: {
  17603. height: math.unit(6, "feet"),
  17604. weight: math.unit(150, "lb"),
  17605. name: "Side",
  17606. image: {
  17607. source: "./media/characters/richard-dragon/side.svg",
  17608. extra: 845 / 340,
  17609. bottom: 0.017
  17610. }
  17611. },
  17612. maw: {
  17613. height: math.unit(2.97, "feet"),
  17614. name: "Maw",
  17615. image: {
  17616. source: "./media/characters/richard-dragon/maw.svg"
  17617. }
  17618. },
  17619. },
  17620. [
  17621. ]
  17622. ))
  17623. characterMakers.push(() => makeCharacter(
  17624. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17625. {
  17626. front: {
  17627. height: math.unit(4, "feet"),
  17628. weight: math.unit(100, "lb"),
  17629. name: "Front",
  17630. image: {
  17631. source: "./media/characters/richard-smeargle/front.svg",
  17632. extra: 2952 / 2820,
  17633. bottom: 0.028
  17634. }
  17635. },
  17636. },
  17637. [
  17638. {
  17639. name: "Normal",
  17640. height: math.unit(4, "feet"),
  17641. default: true
  17642. },
  17643. {
  17644. name: "Dynamax",
  17645. height: math.unit(20, "meters")
  17646. },
  17647. ]
  17648. ))
  17649. characterMakers.push(() => makeCharacter(
  17650. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17651. {
  17652. front: {
  17653. height: math.unit(6, "feet"),
  17654. weight: math.unit(110, "lb"),
  17655. name: "Front",
  17656. image: {
  17657. source: "./media/characters/klay/front.svg",
  17658. extra: 962 / 883,
  17659. bottom: 0.04
  17660. }
  17661. },
  17662. back: {
  17663. height: math.unit(6, "feet"),
  17664. weight: math.unit(110, "lb"),
  17665. name: "Back",
  17666. image: {
  17667. source: "./media/characters/klay/back.svg",
  17668. extra: 962 / 883
  17669. }
  17670. },
  17671. beans: {
  17672. height: math.unit(1.15, "feet"),
  17673. name: "Beans",
  17674. image: {
  17675. source: "./media/characters/klay/beans.svg"
  17676. }
  17677. },
  17678. },
  17679. [
  17680. {
  17681. name: "Micro",
  17682. height: math.unit(6, "inches")
  17683. },
  17684. {
  17685. name: "Mini",
  17686. height: math.unit(3, "feet")
  17687. },
  17688. {
  17689. name: "Normal",
  17690. height: math.unit(6, "feet"),
  17691. default: true
  17692. },
  17693. {
  17694. name: "Big",
  17695. height: math.unit(25, "feet")
  17696. },
  17697. {
  17698. name: "Macro",
  17699. height: math.unit(100, "feet")
  17700. },
  17701. {
  17702. name: "Megamacro",
  17703. height: math.unit(400, "feet")
  17704. },
  17705. ]
  17706. ))
  17707. characterMakers.push(() => makeCharacter(
  17708. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17709. {
  17710. front: {
  17711. height: math.unit(6, "feet"),
  17712. weight: math.unit(160, "lb"),
  17713. name: "Front",
  17714. image: {
  17715. source: "./media/characters/marcus/front.svg",
  17716. extra: 734 / 676,
  17717. bottom: 0.03
  17718. }
  17719. },
  17720. },
  17721. [
  17722. {
  17723. name: "Little",
  17724. height: math.unit(6, "feet")
  17725. },
  17726. {
  17727. name: "Normal",
  17728. height: math.unit(110, "feet"),
  17729. default: true
  17730. },
  17731. {
  17732. name: "Macro",
  17733. height: math.unit(250, "feet")
  17734. },
  17735. {
  17736. name: "Megamacro",
  17737. height: math.unit(1000, "feet")
  17738. },
  17739. ]
  17740. ))
  17741. characterMakers.push(() => makeCharacter(
  17742. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17743. {
  17744. front: {
  17745. height: math.unit(7, "feet"),
  17746. weight: math.unit(275, "lb"),
  17747. name: "Front",
  17748. image: {
  17749. source: "./media/characters/claude-delroute/front.svg",
  17750. extra: 230 / 214,
  17751. bottom: 0.007
  17752. }
  17753. },
  17754. side: {
  17755. height: math.unit(7, "feet"),
  17756. weight: math.unit(275, "lb"),
  17757. name: "Side",
  17758. image: {
  17759. source: "./media/characters/claude-delroute/side.svg",
  17760. extra: 222 / 214,
  17761. bottom: 0.01
  17762. }
  17763. },
  17764. back: {
  17765. height: math.unit(7, "feet"),
  17766. weight: math.unit(275, "lb"),
  17767. name: "Back",
  17768. image: {
  17769. source: "./media/characters/claude-delroute/back.svg",
  17770. extra: 230 / 214,
  17771. bottom: 0.015
  17772. }
  17773. },
  17774. maw: {
  17775. height: math.unit(0.6407, "meters"),
  17776. name: "Maw",
  17777. image: {
  17778. source: "./media/characters/claude-delroute/maw.svg"
  17779. }
  17780. },
  17781. },
  17782. [
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(7, "feet"),
  17786. default: true
  17787. },
  17788. {
  17789. name: "Lorge",
  17790. height: math.unit(20, "feet")
  17791. },
  17792. ]
  17793. ))
  17794. characterMakers.push(() => makeCharacter(
  17795. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17796. {
  17797. front: {
  17798. height: math.unit(8 + 4 / 12, "feet"),
  17799. weight: math.unit(600, "lb"),
  17800. name: "Front",
  17801. image: {
  17802. source: "./media/characters/dragonien/front.svg",
  17803. extra: 100 / 94,
  17804. bottom: 3.3 / 103.3445
  17805. }
  17806. },
  17807. back: {
  17808. height: math.unit(8 + 4 / 12, "feet"),
  17809. weight: math.unit(600, "lb"),
  17810. name: "Back",
  17811. image: {
  17812. source: "./media/characters/dragonien/back.svg",
  17813. extra: 776 / 746,
  17814. bottom: 6.4 / 782.0616
  17815. }
  17816. },
  17817. foot: {
  17818. height: math.unit(1.54, "feet"),
  17819. name: "Foot",
  17820. image: {
  17821. source: "./media/characters/dragonien/foot.svg",
  17822. }
  17823. },
  17824. },
  17825. [
  17826. {
  17827. name: "Normal",
  17828. height: math.unit(8 + 4 / 12, "feet"),
  17829. default: true
  17830. },
  17831. {
  17832. name: "Macro",
  17833. height: math.unit(200, "feet")
  17834. },
  17835. {
  17836. name: "Megamacro",
  17837. height: math.unit(1, "mile")
  17838. },
  17839. {
  17840. name: "Gigamacro",
  17841. height: math.unit(1000, "miles")
  17842. },
  17843. ]
  17844. ))
  17845. characterMakers.push(() => makeCharacter(
  17846. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17847. {
  17848. front: {
  17849. height: math.unit(5 + 2 / 12, "feet"),
  17850. weight: math.unit(110, "lb"),
  17851. name: "Front",
  17852. image: {
  17853. source: "./media/characters/desta/front.svg",
  17854. extra: 767 / 726,
  17855. bottom: 11.7 / 779
  17856. }
  17857. },
  17858. back: {
  17859. height: math.unit(5 + 2 / 12, "feet"),
  17860. weight: math.unit(110, "lb"),
  17861. name: "Back",
  17862. image: {
  17863. source: "./media/characters/desta/back.svg",
  17864. extra: 777 / 728,
  17865. bottom: 6 / 784
  17866. }
  17867. },
  17868. frontAlt: {
  17869. height: math.unit(5 + 2 / 12, "feet"),
  17870. weight: math.unit(110, "lb"),
  17871. name: "Front",
  17872. image: {
  17873. source: "./media/characters/desta/front-alt.svg",
  17874. extra: 1482 / 1417
  17875. }
  17876. },
  17877. side: {
  17878. height: math.unit(5 + 2 / 12, "feet"),
  17879. weight: math.unit(110, "lb"),
  17880. name: "Side",
  17881. image: {
  17882. source: "./media/characters/desta/side.svg",
  17883. extra: 2579 / 2491,
  17884. bottom: 0.053
  17885. }
  17886. },
  17887. },
  17888. [
  17889. {
  17890. name: "Micro",
  17891. height: math.unit(6, "inches")
  17892. },
  17893. {
  17894. name: "Normal",
  17895. height: math.unit(5 + 2 / 12, "feet"),
  17896. default: true
  17897. },
  17898. {
  17899. name: "Macro",
  17900. height: math.unit(62, "feet")
  17901. },
  17902. {
  17903. name: "Megamacro",
  17904. height: math.unit(1800, "feet")
  17905. },
  17906. ]
  17907. ))
  17908. characterMakers.push(() => makeCharacter(
  17909. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17910. {
  17911. front: {
  17912. height: math.unit(10, "feet"),
  17913. weight: math.unit(700, "lb"),
  17914. name: "Front",
  17915. image: {
  17916. source: "./media/characters/storm-alystar/front.svg",
  17917. extra: 2112 / 1898,
  17918. bottom: 0.034
  17919. }
  17920. },
  17921. },
  17922. [
  17923. {
  17924. name: "Micro",
  17925. height: math.unit(3.5, "inches")
  17926. },
  17927. {
  17928. name: "Normal",
  17929. height: math.unit(10, "feet"),
  17930. default: true
  17931. },
  17932. {
  17933. name: "Macro",
  17934. height: math.unit(400, "feet")
  17935. },
  17936. {
  17937. name: "Deific",
  17938. height: math.unit(60, "miles")
  17939. },
  17940. ]
  17941. ))
  17942. characterMakers.push(() => makeCharacter(
  17943. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17944. {
  17945. front: {
  17946. height: math.unit(2.35, "meters"),
  17947. weight: math.unit(119, "kg"),
  17948. name: "Front",
  17949. image: {
  17950. source: "./media/characters/ilia/front.svg",
  17951. extra: 1285 / 1255,
  17952. bottom: 0.06
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Normal",
  17959. height: math.unit(2.35, "meters")
  17960. },
  17961. {
  17962. name: "Macro",
  17963. height: math.unit(140, "meters"),
  17964. default: true
  17965. },
  17966. {
  17967. name: "Megamacro",
  17968. height: math.unit(100, "miles")
  17969. },
  17970. ]
  17971. ))
  17972. characterMakers.push(() => makeCharacter(
  17973. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17974. {
  17975. front: {
  17976. height: math.unit(6 + 5 / 12, "feet"),
  17977. weight: math.unit(190, "lb"),
  17978. name: "Front",
  17979. image: {
  17980. source: "./media/characters/kingdead/front.svg",
  17981. extra: 1228 / 1177
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Micro",
  17988. height: math.unit(7, "inches")
  17989. },
  17990. {
  17991. name: "Normal",
  17992. height: math.unit(6 + 5 / 12, "feet")
  17993. },
  17994. {
  17995. name: "Macro",
  17996. height: math.unit(150, "feet"),
  17997. default: true
  17998. },
  17999. {
  18000. name: "Megamacro",
  18001. height: math.unit(200, "miles")
  18002. },
  18003. ]
  18004. ))
  18005. characterMakers.push(() => makeCharacter(
  18006. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18007. {
  18008. front: {
  18009. height: math.unit(8, "feet"),
  18010. weight: math.unit(600, "lb"),
  18011. name: "Front",
  18012. image: {
  18013. source: "./media/characters/kyrehx/front.svg",
  18014. extra: 1195 / 1095,
  18015. bottom: 0.034
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Micro",
  18022. height: math.unit(2, "inches")
  18023. },
  18024. {
  18025. name: "Normal",
  18026. height: math.unit(8, "feet"),
  18027. default: true
  18028. },
  18029. {
  18030. name: "Macro",
  18031. height: math.unit(255, "feet")
  18032. },
  18033. ]
  18034. ))
  18035. characterMakers.push(() => makeCharacter(
  18036. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18037. {
  18038. front: {
  18039. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18040. weight: math.unit(184, "lb"),
  18041. name: "Front",
  18042. image: {
  18043. source: "./media/characters/xang/front.svg",
  18044. extra: 845 / 755
  18045. }
  18046. },
  18047. },
  18048. [
  18049. {
  18050. name: "Normal",
  18051. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18052. default: true
  18053. },
  18054. {
  18055. name: "Macro",
  18056. height: math.unit(0.935 * 146, "feet")
  18057. },
  18058. {
  18059. name: "Megamacro",
  18060. height: math.unit(0.935 * 3, "miles")
  18061. },
  18062. ]
  18063. ))
  18064. characterMakers.push(() => makeCharacter(
  18065. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18066. {
  18067. frontDressed: {
  18068. height: math.unit(5 + 7 / 12, "feet"),
  18069. weight: math.unit(140, "lb"),
  18070. name: "Front (Dressed)",
  18071. image: {
  18072. source: "./media/characters/doc-weardno/front-dressed.svg",
  18073. extra: 263 / 234
  18074. }
  18075. },
  18076. backDressed: {
  18077. height: math.unit(5 + 7 / 12, "feet"),
  18078. weight: math.unit(140, "lb"),
  18079. name: "Back (Dressed)",
  18080. image: {
  18081. source: "./media/characters/doc-weardno/back-dressed.svg",
  18082. extra: 266 / 238
  18083. }
  18084. },
  18085. front: {
  18086. height: math.unit(5 + 7 / 12, "feet"),
  18087. weight: math.unit(140, "lb"),
  18088. name: "Front",
  18089. image: {
  18090. source: "./media/characters/doc-weardno/front.svg",
  18091. extra: 254 / 233
  18092. }
  18093. },
  18094. },
  18095. [
  18096. {
  18097. name: "Micro",
  18098. height: math.unit(3, "inches")
  18099. },
  18100. {
  18101. name: "Normal",
  18102. height: math.unit(5 + 7 / 12, "feet"),
  18103. default: true
  18104. },
  18105. {
  18106. name: "Macro",
  18107. height: math.unit(25, "feet")
  18108. },
  18109. {
  18110. name: "Megamacro",
  18111. height: math.unit(2, "miles")
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18117. {
  18118. front: {
  18119. height: math.unit(6 + 2 / 12, "feet"),
  18120. weight: math.unit(153, "lb"),
  18121. name: "Front",
  18122. image: {
  18123. source: "./media/characters/seth-whilst/front.svg",
  18124. bottom: 0.07
  18125. }
  18126. },
  18127. },
  18128. [
  18129. {
  18130. name: "Micro",
  18131. height: math.unit(5, "inches")
  18132. },
  18133. {
  18134. name: "Normal",
  18135. height: math.unit(6 + 2 / 12, "feet"),
  18136. default: true
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18142. {
  18143. front: {
  18144. height: math.unit(3, "inches"),
  18145. weight: math.unit(8, "grams"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/pocket-jabari/front.svg",
  18149. extra: 1024 / 974,
  18150. bottom: 0.039
  18151. }
  18152. },
  18153. },
  18154. [
  18155. {
  18156. name: "Minimicro",
  18157. height: math.unit(8, "mm")
  18158. },
  18159. {
  18160. name: "Micro",
  18161. height: math.unit(3, "inches"),
  18162. default: true
  18163. },
  18164. {
  18165. name: "Normal",
  18166. height: math.unit(3, "feet")
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18172. {
  18173. front: {
  18174. height: math.unit(15, "feet"),
  18175. weight: math.unit(3280, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/sapphy/front.svg",
  18179. extra: 671 / 577,
  18180. bottom: 0.085
  18181. }
  18182. },
  18183. back: {
  18184. height: math.unit(15, "feet"),
  18185. weight: math.unit(3280, "lb"),
  18186. name: "Back",
  18187. image: {
  18188. source: "./media/characters/sapphy/back.svg",
  18189. extra: 631 / 607,
  18190. bottom: 0.045
  18191. }
  18192. },
  18193. },
  18194. [
  18195. {
  18196. name: "Normal",
  18197. height: math.unit(15, "feet")
  18198. },
  18199. {
  18200. name: "Casual Macro",
  18201. height: math.unit(120, "feet")
  18202. },
  18203. {
  18204. name: "Macro",
  18205. height: math.unit(2150, "feet"),
  18206. default: true
  18207. },
  18208. {
  18209. name: "Megamacro",
  18210. height: math.unit(8, "miles")
  18211. },
  18212. {
  18213. name: "Galaxy Mom",
  18214. height: math.unit(6, "megalightyears")
  18215. },
  18216. ]
  18217. ))
  18218. characterMakers.push(() => makeCharacter(
  18219. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18220. {
  18221. front: {
  18222. height: math.unit(6, "feet"),
  18223. weight: math.unit(170, "lb"),
  18224. name: "Front",
  18225. image: {
  18226. source: "./media/characters/kiro/front.svg",
  18227. extra: 1064 / 1012,
  18228. bottom: 0.052
  18229. }
  18230. },
  18231. },
  18232. [
  18233. {
  18234. name: "Micro",
  18235. height: math.unit(6, "inches")
  18236. },
  18237. {
  18238. name: "Normal",
  18239. height: math.unit(6, "feet"),
  18240. default: true
  18241. },
  18242. {
  18243. name: "Macro",
  18244. height: math.unit(72, "feet")
  18245. },
  18246. ]
  18247. ))
  18248. characterMakers.push(() => makeCharacter(
  18249. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18250. {
  18251. front: {
  18252. height: math.unit(5 + 9 / 12, "feet"),
  18253. weight: math.unit(175, "lb"),
  18254. name: "Front",
  18255. image: {
  18256. source: "./media/characters/irishfox/front.svg",
  18257. extra: 1912 / 1680,
  18258. bottom: 0.02
  18259. }
  18260. },
  18261. },
  18262. [
  18263. {
  18264. name: "Nano",
  18265. height: math.unit(1, "mm")
  18266. },
  18267. {
  18268. name: "Micro",
  18269. height: math.unit(2, "inches")
  18270. },
  18271. {
  18272. name: "Normal",
  18273. height: math.unit(5 + 9 / 12, "feet"),
  18274. default: true
  18275. },
  18276. {
  18277. name: "Macro",
  18278. height: math.unit(45, "feet")
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18284. {
  18285. front: {
  18286. height: math.unit(6 + 1 / 12, "feet"),
  18287. weight: math.unit(150, "lb"),
  18288. name: "Front",
  18289. image: {
  18290. source: "./media/characters/aronai-sieyes/front.svg",
  18291. extra: 1556 / 1480,
  18292. bottom: 0.015
  18293. }
  18294. },
  18295. side: {
  18296. height: math.unit(6 + 1 / 12, "feet"),
  18297. weight: math.unit(150, "lb"),
  18298. name: "Side",
  18299. image: {
  18300. source: "./media/characters/aronai-sieyes/side.svg",
  18301. extra: 1433 / 1390,
  18302. bottom: 0.0393
  18303. }
  18304. },
  18305. back: {
  18306. height: math.unit(6 + 1 / 12, "feet"),
  18307. weight: math.unit(150, "lb"),
  18308. name: "Back",
  18309. image: {
  18310. source: "./media/characters/aronai-sieyes/back.svg",
  18311. extra: 1544 / 1494,
  18312. bottom: 0.02
  18313. }
  18314. },
  18315. frontClothed: {
  18316. height: math.unit(6 + 1 / 12, "feet"),
  18317. weight: math.unit(150, "lb"),
  18318. name: "Front (Clothed)",
  18319. image: {
  18320. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18321. extra: 1582 / 1527
  18322. }
  18323. },
  18324. feral: {
  18325. height: math.unit(18, "feet"),
  18326. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18327. name: "Feral",
  18328. image: {
  18329. source: "./media/characters/aronai-sieyes/feral.svg",
  18330. extra: 1530 / 1240,
  18331. bottom: 0.035
  18332. }
  18333. },
  18334. },
  18335. [
  18336. {
  18337. name: "Micro",
  18338. height: math.unit(2, "inches")
  18339. },
  18340. {
  18341. name: "Normal",
  18342. height: math.unit(6 + 1 / 12, "feet"),
  18343. default: true
  18344. }
  18345. ]
  18346. ))
  18347. characterMakers.push(() => makeCharacter(
  18348. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18349. {
  18350. front: {
  18351. height: math.unit(12, "feet"),
  18352. weight: math.unit(410, "kg"),
  18353. name: "Front",
  18354. image: {
  18355. source: "./media/characters/xuna/front.svg",
  18356. extra: 2184 / 1980
  18357. }
  18358. },
  18359. side: {
  18360. height: math.unit(12, "feet"),
  18361. weight: math.unit(410, "kg"),
  18362. name: "Side",
  18363. image: {
  18364. source: "./media/characters/xuna/side.svg",
  18365. extra: 2184 / 1980
  18366. }
  18367. },
  18368. back: {
  18369. height: math.unit(12, "feet"),
  18370. weight: math.unit(410, "kg"),
  18371. name: "Back",
  18372. image: {
  18373. source: "./media/characters/xuna/back.svg",
  18374. extra: 2184 / 1980
  18375. }
  18376. },
  18377. },
  18378. [
  18379. {
  18380. name: "Nano glow",
  18381. height: math.unit(10, "nm")
  18382. },
  18383. {
  18384. name: "Micro floof",
  18385. height: math.unit(0.3, "m")
  18386. },
  18387. {
  18388. name: "Huggable softy boi",
  18389. height: math.unit(3.6576, "m"),
  18390. default: true
  18391. },
  18392. {
  18393. name: "Admirable floof",
  18394. height: math.unit(80, "meters")
  18395. },
  18396. {
  18397. name: "Gentle macro",
  18398. height: math.unit(300, "meters")
  18399. },
  18400. {
  18401. name: "Very careful floof",
  18402. height: math.unit(3200, "meters")
  18403. },
  18404. {
  18405. name: "The mega floof",
  18406. height: math.unit(36000, "meters")
  18407. },
  18408. {
  18409. name: "Giga-fur-Wicker",
  18410. height: math.unit(4800000, "meters")
  18411. },
  18412. {
  18413. name: "Licky world",
  18414. height: math.unit(20000000, "meters")
  18415. },
  18416. {
  18417. name: "Floofy cyan sun",
  18418. height: math.unit(1500000000, "meters")
  18419. },
  18420. {
  18421. name: "Milky Wicker",
  18422. height: math.unit(1000000000000000000000, "meters")
  18423. },
  18424. {
  18425. name: "The observing Wicker",
  18426. height: math.unit(999999999999999999999999999, "meters")
  18427. },
  18428. ]
  18429. ))
  18430. characterMakers.push(() => makeCharacter(
  18431. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18432. {
  18433. front: {
  18434. height: math.unit(5 + 9 / 12, "feet"),
  18435. weight: math.unit(150, "lb"),
  18436. name: "Front",
  18437. image: {
  18438. source: "./media/characters/arokha-sieyes/front.svg",
  18439. extra: 1425 / 1284,
  18440. bottom: 0.05
  18441. }
  18442. },
  18443. },
  18444. [
  18445. {
  18446. name: "Normal",
  18447. height: math.unit(5 + 9 / 12, "feet")
  18448. },
  18449. {
  18450. name: "Macro",
  18451. height: math.unit(30, "meters"),
  18452. default: true
  18453. },
  18454. ]
  18455. ))
  18456. characterMakers.push(() => makeCharacter(
  18457. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18458. {
  18459. front: {
  18460. height: math.unit(6, "feet"),
  18461. weight: math.unit(180, "lb"),
  18462. name: "Front",
  18463. image: {
  18464. source: "./media/characters/arokh-sieyes/front.svg",
  18465. extra: 1830 / 1769,
  18466. bottom: 0.01
  18467. }
  18468. },
  18469. },
  18470. [
  18471. {
  18472. name: "Normal",
  18473. height: math.unit(6, "feet")
  18474. },
  18475. {
  18476. name: "Macro",
  18477. height: math.unit(30, "meters"),
  18478. default: true
  18479. },
  18480. ]
  18481. ))
  18482. characterMakers.push(() => makeCharacter(
  18483. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18484. {
  18485. side: {
  18486. height: math.unit(13 + 1 / 12, "feet"),
  18487. weight: math.unit(8.5, "tonnes"),
  18488. name: "Side",
  18489. image: {
  18490. source: "./media/characters/goldeneye/side.svg",
  18491. extra: 1182 / 778,
  18492. bottom: 0.067
  18493. }
  18494. },
  18495. paw: {
  18496. height: math.unit(3.4, "feet"),
  18497. name: "Paw",
  18498. image: {
  18499. source: "./media/characters/goldeneye/paw.svg"
  18500. }
  18501. },
  18502. },
  18503. [
  18504. {
  18505. name: "Normal",
  18506. height: math.unit(13 + 1 / 12, "feet"),
  18507. default: true
  18508. },
  18509. ]
  18510. ))
  18511. characterMakers.push(() => makeCharacter(
  18512. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18513. {
  18514. front: {
  18515. height: math.unit(6 + 1 / 12, "feet"),
  18516. weight: math.unit(210, "lb"),
  18517. name: "Front",
  18518. image: {
  18519. source: "./media/characters/leonardo-lycheborne/front.svg",
  18520. extra: 390 / 365,
  18521. bottom: 0.032
  18522. }
  18523. },
  18524. side: {
  18525. height: math.unit(6 + 1 / 12, "feet"),
  18526. weight: math.unit(210, "lb"),
  18527. name: "Side",
  18528. image: {
  18529. source: "./media/characters/leonardo-lycheborne/side.svg",
  18530. extra: 390 / 365,
  18531. bottom: 0.005
  18532. }
  18533. },
  18534. back: {
  18535. height: math.unit(6 + 1 / 12, "feet"),
  18536. weight: math.unit(210, "lb"),
  18537. name: "Back",
  18538. image: {
  18539. source: "./media/characters/leonardo-lycheborne/back.svg",
  18540. extra: 392 / 366,
  18541. bottom: 0.01
  18542. }
  18543. },
  18544. hand: {
  18545. height: math.unit(1.08, "feet"),
  18546. name: "Hand",
  18547. image: {
  18548. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18549. }
  18550. },
  18551. foot: {
  18552. height: math.unit(1.32, "feet"),
  18553. name: "Foot",
  18554. image: {
  18555. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18556. }
  18557. },
  18558. were: {
  18559. height: math.unit(20, "feet"),
  18560. weight: math.unit(7800, "lb"),
  18561. name: "Were",
  18562. image: {
  18563. source: "./media/characters/leonardo-lycheborne/were.svg",
  18564. extra: 308 / 294,
  18565. bottom: 0.048
  18566. }
  18567. },
  18568. feral: {
  18569. height: math.unit(7.5, "feet"),
  18570. weight: math.unit(600, "lb"),
  18571. name: "Feral",
  18572. image: {
  18573. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18574. extra: 210 / 186,
  18575. bottom: 0.108
  18576. }
  18577. },
  18578. taur: {
  18579. height: math.unit(11, "feet"),
  18580. weight: math.unit(3300, "lb"),
  18581. name: "Taur",
  18582. image: {
  18583. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18584. extra: 320 / 303,
  18585. bottom: 0.025
  18586. }
  18587. },
  18588. barghest: {
  18589. height: math.unit(11, "feet"),
  18590. weight: math.unit(1300, "lb"),
  18591. name: "Barghest",
  18592. image: {
  18593. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18594. extra: 323 / 302,
  18595. bottom: 0.027
  18596. }
  18597. },
  18598. dick: {
  18599. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18600. name: "Dick",
  18601. image: {
  18602. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18603. }
  18604. },
  18605. dickWere: {
  18606. height: math.unit((20) / 3.8, "feet"),
  18607. name: "Dick (Were)",
  18608. image: {
  18609. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18610. }
  18611. },
  18612. },
  18613. [
  18614. {
  18615. name: "Normal",
  18616. height: math.unit(6 + 1 / 12, "feet"),
  18617. default: true
  18618. },
  18619. ]
  18620. ))
  18621. characterMakers.push(() => makeCharacter(
  18622. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18623. {
  18624. front: {
  18625. height: math.unit(10, "feet"),
  18626. weight: math.unit(350, "lb"),
  18627. name: "Front",
  18628. image: {
  18629. source: "./media/characters/jet/front.svg",
  18630. extra: 2050 / 1980,
  18631. bottom: 0.013
  18632. }
  18633. },
  18634. back: {
  18635. height: math.unit(10, "feet"),
  18636. weight: math.unit(350, "lb"),
  18637. name: "Back",
  18638. image: {
  18639. source: "./media/characters/jet/back.svg",
  18640. extra: 2050 / 1980,
  18641. bottom: 0.013
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Micro",
  18648. height: math.unit(6, "inches")
  18649. },
  18650. {
  18651. name: "Normal",
  18652. height: math.unit(10, "feet"),
  18653. default: true
  18654. },
  18655. {
  18656. name: "Macro",
  18657. height: math.unit(100, "feet")
  18658. },
  18659. ]
  18660. ))
  18661. characterMakers.push(() => makeCharacter(
  18662. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18663. {
  18664. front: {
  18665. height: math.unit(15, "feet"),
  18666. weight: math.unit(2800, "lb"),
  18667. name: "Front",
  18668. image: {
  18669. source: "./media/characters/tanarath/front.svg",
  18670. extra: 2392 / 2220,
  18671. bottom: 0.03
  18672. }
  18673. },
  18674. back: {
  18675. height: math.unit(15, "feet"),
  18676. weight: math.unit(2800, "lb"),
  18677. name: "Back",
  18678. image: {
  18679. source: "./media/characters/tanarath/back.svg",
  18680. extra: 2392 / 2220,
  18681. bottom: 0.03
  18682. }
  18683. },
  18684. },
  18685. [
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(15, "feet"),
  18689. default: true
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18695. {
  18696. front: {
  18697. height: math.unit(7 + 1 / 12, "feet"),
  18698. weight: math.unit(175, "lb"),
  18699. name: "Front",
  18700. image: {
  18701. source: "./media/characters/patty-cattybatty/front.svg",
  18702. extra: 908 / 874,
  18703. bottom: 0.025
  18704. }
  18705. },
  18706. },
  18707. [
  18708. {
  18709. name: "Micro",
  18710. height: math.unit(1, "inch")
  18711. },
  18712. {
  18713. name: "Normal",
  18714. height: math.unit(7 + 1 / 12, "feet")
  18715. },
  18716. {
  18717. name: "Mini Macro",
  18718. height: math.unit(155, "feet")
  18719. },
  18720. {
  18721. name: "Macro",
  18722. height: math.unit(1077, "feet")
  18723. },
  18724. {
  18725. name: "Mega Macro",
  18726. height: math.unit(47650, "feet"),
  18727. default: true
  18728. },
  18729. {
  18730. name: "Giga Macro",
  18731. height: math.unit(440, "miles")
  18732. },
  18733. {
  18734. name: "Tera Macro",
  18735. height: math.unit(8700, "miles")
  18736. },
  18737. {
  18738. name: "Planetary Macro",
  18739. height: math.unit(32700, "miles")
  18740. },
  18741. {
  18742. name: "Solar Macro",
  18743. height: math.unit(550000, "miles")
  18744. },
  18745. {
  18746. name: "Celestial Macro",
  18747. height: math.unit(2.5, "AU")
  18748. },
  18749. ]
  18750. ))
  18751. characterMakers.push(() => makeCharacter(
  18752. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18753. {
  18754. front: {
  18755. height: math.unit(4 + 5 / 12, "feet"),
  18756. weight: math.unit(90, "lb"),
  18757. name: "Front",
  18758. image: {
  18759. source: "./media/characters/cappu/front.svg",
  18760. extra: 1247 / 1152,
  18761. bottom: 0.012
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Normal",
  18768. height: math.unit(4 + 5 / 12, "feet"),
  18769. default: true
  18770. },
  18771. ]
  18772. ))
  18773. characterMakers.push(() => makeCharacter(
  18774. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18775. {
  18776. frontDressed: {
  18777. height: math.unit(70, "cm"),
  18778. weight: math.unit(6, "kg"),
  18779. name: "Front (Dressed)",
  18780. image: {
  18781. source: "./media/characters/sebi/front-dressed.svg",
  18782. extra: 713.5 / 686.5,
  18783. bottom: 0.003
  18784. }
  18785. },
  18786. front: {
  18787. height: math.unit(70, "cm"),
  18788. weight: math.unit(5, "kg"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/sebi/front.svg",
  18792. extra: 713.5 / 686.5,
  18793. bottom: 0.003
  18794. }
  18795. }
  18796. },
  18797. [
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(70, "cm"),
  18801. default: true
  18802. },
  18803. {
  18804. name: "Macro",
  18805. height: math.unit(8, "meters")
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18811. {
  18812. front: {
  18813. height: math.unit(6, "feet"),
  18814. weight: math.unit(150, "lb"),
  18815. name: "Front",
  18816. image: {
  18817. source: "./media/characters/typhek/front.svg",
  18818. extra: 1948 / 1929,
  18819. bottom: 0.025
  18820. }
  18821. },
  18822. side: {
  18823. height: math.unit(6, "feet"),
  18824. weight: math.unit(150, "lb"),
  18825. name: "Side",
  18826. image: {
  18827. source: "./media/characters/typhek/side.svg",
  18828. extra: 2034 / 2010,
  18829. bottom: 0.003
  18830. }
  18831. },
  18832. back: {
  18833. height: math.unit(6, "feet"),
  18834. weight: math.unit(150, "lb"),
  18835. name: "Back",
  18836. image: {
  18837. source: "./media/characters/typhek/back.svg",
  18838. extra: 2005 / 1978,
  18839. bottom: 0.004
  18840. }
  18841. },
  18842. palm: {
  18843. height: math.unit(1.2, "feet"),
  18844. name: "Palm",
  18845. image: {
  18846. source: "./media/characters/typhek/palm.svg"
  18847. }
  18848. },
  18849. fist: {
  18850. height: math.unit(1.1, "feet"),
  18851. name: "Fist",
  18852. image: {
  18853. source: "./media/characters/typhek/fist.svg"
  18854. }
  18855. },
  18856. foot: {
  18857. height: math.unit(1.57, "feet"),
  18858. name: "Foot",
  18859. image: {
  18860. source: "./media/characters/typhek/foot.svg"
  18861. }
  18862. },
  18863. sole: {
  18864. height: math.unit(2.05, "feet"),
  18865. name: "Sole",
  18866. image: {
  18867. source: "./media/characters/typhek/sole.svg"
  18868. }
  18869. },
  18870. },
  18871. [
  18872. {
  18873. name: "Macro",
  18874. height: math.unit(40, "stories"),
  18875. default: true
  18876. },
  18877. {
  18878. name: "Megamacro",
  18879. height: math.unit(1, "mile")
  18880. },
  18881. {
  18882. name: "Gigamacro",
  18883. height: math.unit(4000, "solarradii")
  18884. },
  18885. {
  18886. name: "Universal",
  18887. height: math.unit(1.1, "universes")
  18888. }
  18889. ]
  18890. ))
  18891. characterMakers.push(() => makeCharacter(
  18892. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18893. {
  18894. side: {
  18895. height: math.unit(5 + 7 / 12, "feet"),
  18896. weight: math.unit(150, "lb"),
  18897. name: "Side",
  18898. image: {
  18899. source: "./media/characters/kassy/side.svg",
  18900. extra: 1280 / 1225,
  18901. bottom: 0.002
  18902. }
  18903. },
  18904. front: {
  18905. height: math.unit(5 + 7 / 12, "feet"),
  18906. weight: math.unit(150, "lb"),
  18907. name: "Front",
  18908. image: {
  18909. source: "./media/characters/kassy/front.svg",
  18910. extra: 1280 / 1225,
  18911. bottom: 0.025
  18912. }
  18913. },
  18914. back: {
  18915. height: math.unit(5 + 7 / 12, "feet"),
  18916. weight: math.unit(150, "lb"),
  18917. name: "Back",
  18918. image: {
  18919. source: "./media/characters/kassy/back.svg",
  18920. extra: 1280 / 1225,
  18921. bottom: 0.002
  18922. }
  18923. },
  18924. foot: {
  18925. height: math.unit(1.266, "feet"),
  18926. name: "Foot",
  18927. image: {
  18928. source: "./media/characters/kassy/foot.svg"
  18929. }
  18930. },
  18931. },
  18932. [
  18933. {
  18934. name: "Normal",
  18935. height: math.unit(5 + 7 / 12, "feet")
  18936. },
  18937. {
  18938. name: "Macro",
  18939. height: math.unit(137, "feet"),
  18940. default: true
  18941. },
  18942. {
  18943. name: "Megamacro",
  18944. height: math.unit(1, "mile")
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18950. {
  18951. front: {
  18952. height: math.unit(6 + 1 / 12, "feet"),
  18953. weight: math.unit(200, "lb"),
  18954. name: "Front",
  18955. image: {
  18956. source: "./media/characters/neil/front.svg",
  18957. extra: 1326 / 1250,
  18958. bottom: 0.023
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(6 + 1 / 12, "feet"),
  18966. default: true
  18967. },
  18968. {
  18969. name: "Macro",
  18970. height: math.unit(200, "feet")
  18971. },
  18972. ]
  18973. ))
  18974. characterMakers.push(() => makeCharacter(
  18975. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18976. {
  18977. front: {
  18978. height: math.unit(5 + 9 / 12, "feet"),
  18979. weight: math.unit(190, "lb"),
  18980. name: "Front",
  18981. image: {
  18982. source: "./media/characters/atticus/front.svg",
  18983. extra: 2934 / 2785,
  18984. bottom: 0.025
  18985. }
  18986. },
  18987. },
  18988. [
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(5 + 9 / 12, "feet"),
  18992. default: true
  18993. },
  18994. {
  18995. name: "Macro",
  18996. height: math.unit(180, "feet")
  18997. },
  18998. ]
  18999. ))
  19000. characterMakers.push(() => makeCharacter(
  19001. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19002. {
  19003. side: {
  19004. height: math.unit(9, "feet"),
  19005. weight: math.unit(650, "lb"),
  19006. name: "Side",
  19007. image: {
  19008. source: "./media/characters/milo/side.svg",
  19009. extra: 2644 / 2310,
  19010. bottom: 0.032
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(9, "feet"),
  19018. default: true
  19019. },
  19020. {
  19021. name: "Macro",
  19022. height: math.unit(300, "feet")
  19023. },
  19024. ]
  19025. ))
  19026. characterMakers.push(() => makeCharacter(
  19027. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19028. {
  19029. side: {
  19030. height: math.unit(8, "meters"),
  19031. weight: math.unit(90000, "kg"),
  19032. name: "Side",
  19033. image: {
  19034. source: "./media/characters/ijzer/side.svg",
  19035. extra: 2756 / 1600,
  19036. bottom: 0.01
  19037. }
  19038. },
  19039. },
  19040. [
  19041. {
  19042. name: "Small",
  19043. height: math.unit(3, "meters")
  19044. },
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(8, "meters"),
  19048. default: true
  19049. },
  19050. {
  19051. name: "Normal+",
  19052. height: math.unit(10, "meters")
  19053. },
  19054. {
  19055. name: "Bigger",
  19056. height: math.unit(24, "meters")
  19057. },
  19058. {
  19059. name: "Huge",
  19060. height: math.unit(80, "meters")
  19061. },
  19062. ]
  19063. ))
  19064. characterMakers.push(() => makeCharacter(
  19065. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19066. {
  19067. front: {
  19068. height: math.unit(6 + 2 / 12, "feet"),
  19069. weight: math.unit(153, "lb"),
  19070. name: "Front",
  19071. image: {
  19072. source: "./media/characters/luca-cervicum/front.svg",
  19073. extra: 370 / 327,
  19074. bottom: 0.015
  19075. }
  19076. },
  19077. back: {
  19078. height: math.unit(6 + 2 / 12, "feet"),
  19079. weight: math.unit(153, "lb"),
  19080. name: "Back",
  19081. image: {
  19082. source: "./media/characters/luca-cervicum/back.svg",
  19083. extra: 367 / 333,
  19084. bottom: 0.005
  19085. }
  19086. },
  19087. frontGear: {
  19088. height: math.unit(6 + 2 / 12, "feet"),
  19089. weight: math.unit(173, "lb"),
  19090. name: "Front (Gear)",
  19091. image: {
  19092. source: "./media/characters/luca-cervicum/front-gear.svg",
  19093. extra: 377 / 333,
  19094. bottom: 0.006
  19095. }
  19096. },
  19097. },
  19098. [
  19099. {
  19100. name: "Normal",
  19101. height: math.unit(6 + 2 / 12, "feet"),
  19102. default: true
  19103. },
  19104. ]
  19105. ))
  19106. characterMakers.push(() => makeCharacter(
  19107. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19108. {
  19109. front: {
  19110. height: math.unit(6 + 1 / 12, "feet"),
  19111. weight: math.unit(304, "lb"),
  19112. name: "Front",
  19113. image: {
  19114. source: "./media/characters/oliver/front.svg",
  19115. extra: 157 / 143,
  19116. bottom: 0.08
  19117. }
  19118. },
  19119. },
  19120. [
  19121. {
  19122. name: "Normal",
  19123. height: math.unit(6 + 1 / 12, "feet"),
  19124. default: true
  19125. },
  19126. ]
  19127. ))
  19128. characterMakers.push(() => makeCharacter(
  19129. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19130. {
  19131. front: {
  19132. height: math.unit(5 + 7 / 12, "feet"),
  19133. weight: math.unit(140, "lb"),
  19134. name: "Front",
  19135. image: {
  19136. source: "./media/characters/shane/front.svg",
  19137. extra: 304 / 289,
  19138. bottom: 0.005
  19139. }
  19140. },
  19141. },
  19142. [
  19143. {
  19144. name: "Normal",
  19145. height: math.unit(5 + 7 / 12, "feet"),
  19146. default: true
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19152. {
  19153. front: {
  19154. height: math.unit(5 + 9 / 12, "feet"),
  19155. weight: math.unit(178, "lb"),
  19156. name: "Front",
  19157. image: {
  19158. source: "./media/characters/shin/front.svg",
  19159. extra: 159 / 151,
  19160. bottom: 0.015
  19161. }
  19162. },
  19163. },
  19164. [
  19165. {
  19166. name: "Normal",
  19167. height: math.unit(5 + 9 / 12, "feet"),
  19168. default: true
  19169. },
  19170. ]
  19171. ))
  19172. characterMakers.push(() => makeCharacter(
  19173. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19174. {
  19175. front: {
  19176. height: math.unit(5 + 10 / 12, "feet"),
  19177. weight: math.unit(168, "lb"),
  19178. name: "Front",
  19179. image: {
  19180. source: "./media/characters/xerxes/front.svg",
  19181. extra: 282 / 260,
  19182. bottom: 0.045
  19183. }
  19184. },
  19185. },
  19186. [
  19187. {
  19188. name: "Normal",
  19189. height: math.unit(5 + 10 / 12, "feet"),
  19190. default: true
  19191. },
  19192. ]
  19193. ))
  19194. characterMakers.push(() => makeCharacter(
  19195. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19196. {
  19197. front: {
  19198. height: math.unit(6 + 7 / 12, "feet"),
  19199. weight: math.unit(208, "lb"),
  19200. name: "Front",
  19201. image: {
  19202. source: "./media/characters/chaska/front.svg",
  19203. extra: 332 / 319,
  19204. bottom: 0.015
  19205. }
  19206. },
  19207. },
  19208. [
  19209. {
  19210. name: "Normal",
  19211. height: math.unit(6 + 7 / 12, "feet"),
  19212. default: true
  19213. },
  19214. ]
  19215. ))
  19216. characterMakers.push(() => makeCharacter(
  19217. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19218. {
  19219. front: {
  19220. height: math.unit(5 + 8 / 12, "feet"),
  19221. weight: math.unit(208, "lb"),
  19222. name: "Front",
  19223. image: {
  19224. source: "./media/characters/enuk/front.svg",
  19225. extra: 437 / 406,
  19226. bottom: 0.02
  19227. }
  19228. },
  19229. },
  19230. [
  19231. {
  19232. name: "Normal",
  19233. height: math.unit(5 + 8 / 12, "feet"),
  19234. default: true
  19235. },
  19236. ]
  19237. ))
  19238. characterMakers.push(() => makeCharacter(
  19239. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19240. {
  19241. front: {
  19242. height: math.unit(5 + 10 / 12, "feet"),
  19243. weight: math.unit(252, "lb"),
  19244. name: "Front",
  19245. image: {
  19246. source: "./media/characters/bruun/front.svg",
  19247. extra: 197 / 187,
  19248. bottom: 0.012
  19249. }
  19250. },
  19251. },
  19252. [
  19253. {
  19254. name: "Normal",
  19255. height: math.unit(5 + 10 / 12, "feet"),
  19256. default: true
  19257. },
  19258. ]
  19259. ))
  19260. characterMakers.push(() => makeCharacter(
  19261. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19262. {
  19263. front: {
  19264. height: math.unit(6 + 10 / 12, "feet"),
  19265. weight: math.unit(255, "lb"),
  19266. name: "Front",
  19267. image: {
  19268. source: "./media/characters/alexeev/front.svg",
  19269. extra: 213 / 200,
  19270. bottom: 0.05
  19271. }
  19272. },
  19273. },
  19274. [
  19275. {
  19276. name: "Normal",
  19277. height: math.unit(6 + 10 / 12, "feet"),
  19278. default: true
  19279. },
  19280. ]
  19281. ))
  19282. characterMakers.push(() => makeCharacter(
  19283. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19284. {
  19285. front: {
  19286. height: math.unit(2 + 8 / 12, "feet"),
  19287. weight: math.unit(22, "lb"),
  19288. name: "Front",
  19289. image: {
  19290. source: "./media/characters/evelyn/front.svg",
  19291. extra: 208 / 180
  19292. }
  19293. },
  19294. },
  19295. [
  19296. {
  19297. name: "Normal",
  19298. height: math.unit(2 + 8 / 12, "feet"),
  19299. default: true
  19300. },
  19301. ]
  19302. ))
  19303. characterMakers.push(() => makeCharacter(
  19304. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19305. {
  19306. front: {
  19307. height: math.unit(5 + 9 / 12, "feet"),
  19308. weight: math.unit(139, "lb"),
  19309. name: "Front",
  19310. image: {
  19311. source: "./media/characters/inca/front.svg",
  19312. extra: 294 / 291,
  19313. bottom: 0.03
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Normal",
  19320. height: math.unit(5 + 9 / 12, "feet"),
  19321. default: true
  19322. },
  19323. ]
  19324. ))
  19325. characterMakers.push(() => makeCharacter(
  19326. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19327. {
  19328. front: {
  19329. height: math.unit(5 + 1 / 12, "feet"),
  19330. weight: math.unit(84, "lb"),
  19331. name: "Front",
  19332. image: {
  19333. source: "./media/characters/magdalene/front.svg",
  19334. extra: 293 / 273
  19335. }
  19336. },
  19337. },
  19338. [
  19339. {
  19340. name: "Normal",
  19341. height: math.unit(5 + 1 / 12, "feet"),
  19342. default: true
  19343. },
  19344. ]
  19345. ))
  19346. characterMakers.push(() => makeCharacter(
  19347. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19348. {
  19349. front: {
  19350. height: math.unit(6 + 3 / 12, "feet"),
  19351. weight: math.unit(185, "lb"),
  19352. name: "Front",
  19353. image: {
  19354. source: "./media/characters/mera/front.svg",
  19355. extra: 291 / 277,
  19356. bottom: 0.03
  19357. }
  19358. },
  19359. },
  19360. [
  19361. {
  19362. name: "Normal",
  19363. height: math.unit(6 + 3 / 12, "feet"),
  19364. default: true
  19365. },
  19366. ]
  19367. ))
  19368. characterMakers.push(() => makeCharacter(
  19369. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19370. {
  19371. front: {
  19372. height: math.unit(6 + 7 / 12, "feet"),
  19373. weight: math.unit(160, "lb"),
  19374. name: "Front",
  19375. image: {
  19376. source: "./media/characters/ceres/front.svg",
  19377. extra: 1023 / 950,
  19378. bottom: 0.027
  19379. }
  19380. },
  19381. back: {
  19382. height: math.unit(6 + 7 / 12, "feet"),
  19383. weight: math.unit(160, "lb"),
  19384. name: "Back",
  19385. image: {
  19386. source: "./media/characters/ceres/back.svg",
  19387. extra: 1023 / 950
  19388. }
  19389. },
  19390. },
  19391. [
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(6 + 7 / 12, "feet"),
  19395. default: true
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19401. {
  19402. front: {
  19403. height: math.unit(5 + 10 / 12, "feet"),
  19404. weight: math.unit(150, "lb"),
  19405. name: "Front",
  19406. image: {
  19407. source: "./media/characters/kris/front.svg",
  19408. extra: 885 / 803,
  19409. bottom: 0.03
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(5 + 10 / 12, "feet"),
  19417. default: true
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19423. {
  19424. front: {
  19425. height: math.unit(7, "feet"),
  19426. weight: math.unit(120, "kg"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/taluthus/front.svg",
  19430. extra: 903 / 833,
  19431. bottom: 0.015
  19432. }
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Normal",
  19438. height: math.unit(7, "feet"),
  19439. default: true
  19440. },
  19441. {
  19442. name: "Macro",
  19443. height: math.unit(300, "feet")
  19444. },
  19445. ]
  19446. ))
  19447. characterMakers.push(() => makeCharacter(
  19448. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19449. {
  19450. front: {
  19451. height: math.unit(5 + 9 / 12, "feet"),
  19452. weight: math.unit(145, "lb"),
  19453. name: "Front",
  19454. image: {
  19455. source: "./media/characters/dawn/front.svg",
  19456. extra: 2094 / 2016,
  19457. bottom: 0.025
  19458. }
  19459. },
  19460. back: {
  19461. height: math.unit(5 + 9 / 12, "feet"),
  19462. weight: math.unit(160, "lb"),
  19463. name: "Back",
  19464. image: {
  19465. source: "./media/characters/dawn/back.svg",
  19466. extra: 2112 / 2080,
  19467. bottom: 0.005
  19468. }
  19469. },
  19470. },
  19471. [
  19472. {
  19473. name: "Normal",
  19474. height: math.unit(6 + 7 / 12, "feet"),
  19475. default: true
  19476. },
  19477. ]
  19478. ))
  19479. characterMakers.push(() => makeCharacter(
  19480. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19481. {
  19482. anthro: {
  19483. height: math.unit(8 + 3 / 12, "feet"),
  19484. weight: math.unit(450, "lb"),
  19485. name: "Anthro",
  19486. image: {
  19487. source: "./media/characters/arador/anthro.svg",
  19488. extra: 1835 / 1718,
  19489. bottom: 0.025
  19490. }
  19491. },
  19492. feral: {
  19493. height: math.unit(4, "feet"),
  19494. weight: math.unit(200, "lb"),
  19495. name: "Feral",
  19496. image: {
  19497. source: "./media/characters/arador/feral.svg",
  19498. extra: 1683 / 1514,
  19499. bottom: 0.07
  19500. }
  19501. },
  19502. },
  19503. [
  19504. {
  19505. name: "Normal",
  19506. height: math.unit(8 + 3 / 12, "feet")
  19507. },
  19508. {
  19509. name: "Macro",
  19510. height: math.unit(82.5, "feet"),
  19511. default: true
  19512. },
  19513. ]
  19514. ))
  19515. characterMakers.push(() => makeCharacter(
  19516. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19517. {
  19518. front: {
  19519. height: math.unit(5 + 10 / 12, "feet"),
  19520. weight: math.unit(125, "lb"),
  19521. name: "Front",
  19522. image: {
  19523. source: "./media/characters/dharsi/front.svg",
  19524. extra: 716 / 630,
  19525. bottom: 0.035
  19526. }
  19527. },
  19528. },
  19529. [
  19530. {
  19531. name: "Nano",
  19532. height: math.unit(100, "nm")
  19533. },
  19534. {
  19535. name: "Micro",
  19536. height: math.unit(2, "inches")
  19537. },
  19538. {
  19539. name: "Normal",
  19540. height: math.unit(5 + 10 / 12, "feet"),
  19541. default: true
  19542. },
  19543. {
  19544. name: "Macro",
  19545. height: math.unit(1000, "feet")
  19546. },
  19547. {
  19548. name: "Megamacro",
  19549. height: math.unit(10, "miles")
  19550. },
  19551. {
  19552. name: "Gigamacro",
  19553. height: math.unit(3000, "miles")
  19554. },
  19555. {
  19556. name: "Teramacro",
  19557. height: math.unit(500000, "miles")
  19558. },
  19559. {
  19560. name: "Teramacro+",
  19561. height: math.unit(30, "galaxies")
  19562. },
  19563. ]
  19564. ))
  19565. characterMakers.push(() => makeCharacter(
  19566. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19567. {
  19568. front: {
  19569. height: math.unit(6, "feet"),
  19570. weight: math.unit(150, "lb"),
  19571. name: "Front",
  19572. image: {
  19573. source: "./media/characters/deathy/front.svg",
  19574. extra: 1552 / 1463,
  19575. bottom: 0.025
  19576. }
  19577. },
  19578. side: {
  19579. height: math.unit(6, "feet"),
  19580. weight: math.unit(150, "lb"),
  19581. name: "Side",
  19582. image: {
  19583. source: "./media/characters/deathy/side.svg",
  19584. extra: 1604 / 1455,
  19585. bottom: 0.025
  19586. }
  19587. },
  19588. back: {
  19589. height: math.unit(6, "feet"),
  19590. weight: math.unit(150, "lb"),
  19591. name: "Back",
  19592. image: {
  19593. source: "./media/characters/deathy/back.svg",
  19594. extra: 1580 / 1463,
  19595. bottom: 0.005
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Micro",
  19602. height: math.unit(5, "millimeters")
  19603. },
  19604. {
  19605. name: "Normal",
  19606. height: math.unit(6 + 5 / 12, "feet"),
  19607. default: true
  19608. },
  19609. ]
  19610. ))
  19611. characterMakers.push(() => makeCharacter(
  19612. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19613. {
  19614. front: {
  19615. height: math.unit(16, "feet"),
  19616. weight: math.unit(4000, "lb"),
  19617. name: "Front",
  19618. image: {
  19619. source: "./media/characters/juniper/front.svg",
  19620. bottom: 0.04
  19621. }
  19622. },
  19623. },
  19624. [
  19625. {
  19626. name: "Normal",
  19627. height: math.unit(16, "feet"),
  19628. default: true
  19629. },
  19630. ]
  19631. ))
  19632. characterMakers.push(() => makeCharacter(
  19633. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19634. {
  19635. front: {
  19636. height: math.unit(6, "feet"),
  19637. weight: math.unit(150, "lb"),
  19638. name: "Front",
  19639. image: {
  19640. source: "./media/characters/hipster/front.svg",
  19641. extra: 1312 / 1209,
  19642. bottom: 0.025
  19643. }
  19644. },
  19645. back: {
  19646. height: math.unit(6, "feet"),
  19647. weight: math.unit(150, "lb"),
  19648. name: "Back",
  19649. image: {
  19650. source: "./media/characters/hipster/back.svg",
  19651. extra: 1281 / 1196,
  19652. bottom: 0.01
  19653. }
  19654. },
  19655. },
  19656. [
  19657. {
  19658. name: "Micro",
  19659. height: math.unit(1, "mm")
  19660. },
  19661. {
  19662. name: "Normal",
  19663. height: math.unit(4, "inches"),
  19664. default: true
  19665. },
  19666. {
  19667. name: "Macro",
  19668. height: math.unit(500, "feet")
  19669. },
  19670. {
  19671. name: "Megamacro",
  19672. height: math.unit(1000, "miles")
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19678. {
  19679. front: {
  19680. height: math.unit(6, "feet"),
  19681. weight: math.unit(150, "lb"),
  19682. name: "Front",
  19683. image: {
  19684. source: "./media/characters/tendirmuldr/front.svg",
  19685. extra: 1878 / 1772,
  19686. bottom: 0.015
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Megamacro",
  19693. height: math.unit(1500, "miles"),
  19694. default: true
  19695. },
  19696. ]
  19697. ))
  19698. characterMakers.push(() => makeCharacter(
  19699. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19700. {
  19701. front: {
  19702. height: math.unit(14, "feet"),
  19703. weight: math.unit(12000, "lb"),
  19704. name: "Front",
  19705. image: {
  19706. source: "./media/characters/mort/front.svg",
  19707. extra: 365 / 318,
  19708. bottom: 0.01
  19709. }
  19710. },
  19711. side: {
  19712. height: math.unit(14, "feet"),
  19713. weight: math.unit(12000, "lb"),
  19714. name: "Side",
  19715. image: {
  19716. source: "./media/characters/mort/side.svg",
  19717. extra: 365 / 318,
  19718. bottom: 0.052
  19719. },
  19720. default: true
  19721. },
  19722. back: {
  19723. height: math.unit(14, "feet"),
  19724. weight: math.unit(12000, "lb"),
  19725. name: "Back",
  19726. image: {
  19727. source: "./media/characters/mort/back.svg",
  19728. extra: 371 / 332,
  19729. bottom: 0.18
  19730. }
  19731. },
  19732. },
  19733. [
  19734. {
  19735. name: "Normal",
  19736. height: math.unit(14, "feet"),
  19737. default: true
  19738. },
  19739. ]
  19740. ))
  19741. characterMakers.push(() => makeCharacter(
  19742. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19743. {
  19744. front: {
  19745. height: math.unit(8, "feet"),
  19746. weight: math.unit(1, "ton"),
  19747. name: "Front",
  19748. image: {
  19749. source: "./media/characters/lycoa/front.svg",
  19750. extra: 1875 / 1789,
  19751. bottom: 0.022
  19752. }
  19753. },
  19754. back: {
  19755. height: math.unit(8, "feet"),
  19756. weight: math.unit(1, "ton"),
  19757. name: "Back",
  19758. image: {
  19759. source: "./media/characters/lycoa/back.svg",
  19760. extra: 1835 / 1781,
  19761. bottom: 0.03
  19762. }
  19763. },
  19764. head: {
  19765. height: math.unit(2.1, "feet"),
  19766. name: "Head",
  19767. image: {
  19768. source: "./media/characters/lycoa/head.svg"
  19769. }
  19770. },
  19771. tailmaw: {
  19772. height: math.unit(1.9, "feet"),
  19773. name: "Tailmaw",
  19774. image: {
  19775. source: "./media/characters/lycoa/tailmaw.svg"
  19776. }
  19777. },
  19778. tentacles: {
  19779. height: math.unit(2.1, "feet"),
  19780. name: "Tentacles",
  19781. image: {
  19782. source: "./media/characters/lycoa/tentacles.svg"
  19783. }
  19784. },
  19785. dick: {
  19786. height: math.unit(1.73, "feet"),
  19787. name: "Dick",
  19788. image: {
  19789. source: "./media/characters/lycoa/dick.svg"
  19790. }
  19791. },
  19792. },
  19793. [
  19794. {
  19795. name: "Normal",
  19796. height: math.unit(8, "feet"),
  19797. default: true
  19798. },
  19799. {
  19800. name: "Macro",
  19801. height: math.unit(30, "feet")
  19802. },
  19803. ]
  19804. ))
  19805. characterMakers.push(() => makeCharacter(
  19806. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19807. {
  19808. front: {
  19809. height: math.unit(4 + 2 / 12, "feet"),
  19810. weight: math.unit(70, "lb"),
  19811. name: "Front",
  19812. image: {
  19813. source: "./media/characters/naldara/front.svg",
  19814. extra: 841 / 720,
  19815. bottom: 0.04
  19816. }
  19817. },
  19818. naga: {
  19819. height: math.unit(23, "feet"),
  19820. weight: math.unit(15000, "kg"),
  19821. name: "Naga",
  19822. image: {
  19823. source: "./media/characters/naldara/naga.svg",
  19824. extra: 3290 / 2959,
  19825. bottom: 124 / 3432
  19826. }
  19827. },
  19828. },
  19829. [
  19830. {
  19831. name: "Normal",
  19832. height: math.unit(4 + 2 / 12, "feet"),
  19833. default: true
  19834. },
  19835. ]
  19836. ))
  19837. characterMakers.push(() => makeCharacter(
  19838. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19839. {
  19840. front: {
  19841. height: math.unit(13 + 7 / 12, "feet"),
  19842. weight: math.unit(1500, "lb"),
  19843. name: "Front",
  19844. image: {
  19845. source: "./media/characters/briar/front.svg",
  19846. extra: 626 / 596,
  19847. bottom: 0.08
  19848. }
  19849. },
  19850. },
  19851. [
  19852. {
  19853. name: "Normal",
  19854. height: math.unit(13 + 7 / 12, "feet"),
  19855. default: true
  19856. },
  19857. ]
  19858. ))
  19859. characterMakers.push(() => makeCharacter(
  19860. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19861. {
  19862. side: {
  19863. height: math.unit(10, "feet"),
  19864. weight: math.unit(500, "lb"),
  19865. name: "Side",
  19866. image: {
  19867. source: "./media/characters/vanguard/side.svg",
  19868. extra: 502 / 425,
  19869. bottom: 0.087
  19870. }
  19871. },
  19872. },
  19873. [
  19874. {
  19875. name: "Normal",
  19876. height: math.unit(10, "feet"),
  19877. default: true
  19878. },
  19879. ]
  19880. ))
  19881. characterMakers.push(() => makeCharacter(
  19882. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19883. {
  19884. front: {
  19885. height: math.unit(7.5, "feet"),
  19886. weight: math.unit(2, "lb"),
  19887. name: "Front",
  19888. image: {
  19889. source: "./media/characters/artemis/front.svg",
  19890. extra: 1192 / 1075,
  19891. bottom: 0.07
  19892. }
  19893. },
  19894. frontNsfw: {
  19895. height: math.unit(7.5, "feet"),
  19896. weight: math.unit(2, "lb"),
  19897. name: "Front (NSFW)",
  19898. image: {
  19899. source: "./media/characters/artemis/front-nsfw.svg",
  19900. extra: 1192 / 1075,
  19901. bottom: 0.07
  19902. }
  19903. },
  19904. frontNsfwer: {
  19905. height: math.unit(7.5, "feet"),
  19906. weight: math.unit(2, "lb"),
  19907. name: "Front (NSFW-er)",
  19908. image: {
  19909. source: "./media/characters/artemis/front-nsfwer.svg",
  19910. extra: 1192 / 1075,
  19911. bottom: 0.07
  19912. }
  19913. },
  19914. side: {
  19915. height: math.unit(7.5, "feet"),
  19916. weight: math.unit(2, "lb"),
  19917. name: "Side",
  19918. image: {
  19919. source: "./media/characters/artemis/side.svg",
  19920. extra: 1192 / 1075,
  19921. bottom: 0.07
  19922. }
  19923. },
  19924. sideNsfw: {
  19925. height: math.unit(7.5, "feet"),
  19926. weight: math.unit(2, "lb"),
  19927. name: "Side (NSFW)",
  19928. image: {
  19929. source: "./media/characters/artemis/side-nsfw.svg",
  19930. extra: 1192 / 1075,
  19931. bottom: 0.07
  19932. }
  19933. },
  19934. sideNsfwer: {
  19935. height: math.unit(7.5, "feet"),
  19936. weight: math.unit(2, "lb"),
  19937. name: "Side (NSFW-er)",
  19938. image: {
  19939. source: "./media/characters/artemis/side-nsfwer.svg",
  19940. extra: 1192 / 1075,
  19941. bottom: 0.07
  19942. }
  19943. },
  19944. maw: {
  19945. height: math.unit(1.1, "feet"),
  19946. name: "Maw",
  19947. image: {
  19948. source: "./media/characters/artemis/maw.svg"
  19949. }
  19950. },
  19951. stomach: {
  19952. height: math.unit(0.95, "feet"),
  19953. name: "Stomach",
  19954. image: {
  19955. source: "./media/characters/artemis/stomach.svg"
  19956. }
  19957. },
  19958. dickCanine: {
  19959. height: math.unit(1, "feet"),
  19960. name: "Dick (Canine)",
  19961. image: {
  19962. source: "./media/characters/artemis/dick-canine.svg"
  19963. }
  19964. },
  19965. dickEquine: {
  19966. height: math.unit(0.85, "feet"),
  19967. name: "Dick (Equine)",
  19968. image: {
  19969. source: "./media/characters/artemis/dick-equine.svg"
  19970. }
  19971. },
  19972. dickExotic: {
  19973. height: math.unit(0.85, "feet"),
  19974. name: "Dick (Exotic)",
  19975. image: {
  19976. source: "./media/characters/artemis/dick-exotic.svg"
  19977. }
  19978. },
  19979. },
  19980. [
  19981. {
  19982. name: "Normal",
  19983. height: math.unit(7.5, "feet"),
  19984. default: true
  19985. },
  19986. {
  19987. name: "Enlarged",
  19988. height: math.unit(12, "feet")
  19989. },
  19990. ]
  19991. ))
  19992. characterMakers.push(() => makeCharacter(
  19993. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19994. {
  19995. front: {
  19996. height: math.unit(5 + 3 / 12, "feet"),
  19997. weight: math.unit(160, "lb"),
  19998. name: "Front",
  19999. image: {
  20000. source: "./media/characters/kira/front.svg",
  20001. extra: 906 / 786,
  20002. bottom: 0.01
  20003. }
  20004. },
  20005. back: {
  20006. height: math.unit(5 + 3 / 12, "feet"),
  20007. weight: math.unit(160, "lb"),
  20008. name: "Back",
  20009. image: {
  20010. source: "./media/characters/kira/back.svg",
  20011. extra: 882 / 757,
  20012. bottom: 0.005
  20013. }
  20014. },
  20015. frontDressed: {
  20016. height: math.unit(5 + 3 / 12, "feet"),
  20017. weight: math.unit(160, "lb"),
  20018. name: "Front (Dressed)",
  20019. image: {
  20020. source: "./media/characters/kira/front-dressed.svg",
  20021. extra: 906 / 786,
  20022. bottom: 0.01
  20023. }
  20024. },
  20025. beans: {
  20026. height: math.unit(0.92, "feet"),
  20027. name: "Beans",
  20028. image: {
  20029. source: "./media/characters/kira/beans.svg"
  20030. }
  20031. },
  20032. },
  20033. [
  20034. {
  20035. name: "Normal",
  20036. height: math.unit(5 + 3 / 12, "feet"),
  20037. default: true
  20038. },
  20039. ]
  20040. ))
  20041. characterMakers.push(() => makeCharacter(
  20042. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20043. {
  20044. front: {
  20045. height: math.unit(5 + 4 / 12, "feet"),
  20046. weight: math.unit(145, "lb"),
  20047. name: "Front",
  20048. image: {
  20049. source: "./media/characters/scramble/front.svg",
  20050. extra: 763 / 727,
  20051. bottom: 0.05
  20052. }
  20053. },
  20054. back: {
  20055. height: math.unit(5 + 4 / 12, "feet"),
  20056. weight: math.unit(145, "lb"),
  20057. name: "Back",
  20058. image: {
  20059. source: "./media/characters/scramble/back.svg",
  20060. extra: 826 / 737,
  20061. bottom: 0.002
  20062. }
  20063. },
  20064. },
  20065. [
  20066. {
  20067. name: "Normal",
  20068. height: math.unit(5 + 4 / 12, "feet"),
  20069. default: true
  20070. },
  20071. ]
  20072. ))
  20073. characterMakers.push(() => makeCharacter(
  20074. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20075. {
  20076. side: {
  20077. height: math.unit(6 + 2 / 12, "feet"),
  20078. weight: math.unit(190, "lb"),
  20079. name: "Side",
  20080. image: {
  20081. source: "./media/characters/biscuit/side.svg",
  20082. extra: 858 / 791,
  20083. bottom: 0.044
  20084. }
  20085. },
  20086. },
  20087. [
  20088. {
  20089. name: "Normal",
  20090. height: math.unit(6 + 2 / 12, "feet"),
  20091. default: true
  20092. },
  20093. ]
  20094. ))
  20095. characterMakers.push(() => makeCharacter(
  20096. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20097. {
  20098. front: {
  20099. height: math.unit(5 + 2 / 12, "feet"),
  20100. weight: math.unit(120, "lb"),
  20101. name: "Front",
  20102. image: {
  20103. source: "./media/characters/poffin/front.svg",
  20104. extra: 786 / 680,
  20105. bottom: 0.005
  20106. }
  20107. },
  20108. },
  20109. [
  20110. {
  20111. name: "Normal",
  20112. height: math.unit(5 + 2 / 12, "feet"),
  20113. default: true
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20119. {
  20120. front: {
  20121. height: math.unit(6 + 3 / 12, "feet"),
  20122. weight: math.unit(519, "lb"),
  20123. name: "Front",
  20124. image: {
  20125. source: "./media/characters/dhari/front.svg",
  20126. extra: 1048 / 946,
  20127. bottom: 0.015
  20128. }
  20129. },
  20130. back: {
  20131. height: math.unit(6 + 3 / 12, "feet"),
  20132. weight: math.unit(519, "lb"),
  20133. name: "Back",
  20134. image: {
  20135. source: "./media/characters/dhari/back.svg",
  20136. extra: 1048 / 931,
  20137. bottom: 0.005
  20138. }
  20139. },
  20140. frontDressed: {
  20141. height: math.unit(6 + 3 / 12, "feet"),
  20142. weight: math.unit(519, "lb"),
  20143. name: "Front (Dressed)",
  20144. image: {
  20145. source: "./media/characters/dhari/front-dressed.svg",
  20146. extra: 1713 / 1546,
  20147. bottom: 0.02
  20148. }
  20149. },
  20150. backDressed: {
  20151. height: math.unit(6 + 3 / 12, "feet"),
  20152. weight: math.unit(519, "lb"),
  20153. name: "Back (Dressed)",
  20154. image: {
  20155. source: "./media/characters/dhari/back-dressed.svg",
  20156. extra: 1699 / 1537,
  20157. bottom: 0.01
  20158. }
  20159. },
  20160. maw: {
  20161. height: math.unit(0.95, "feet"),
  20162. name: "Maw",
  20163. image: {
  20164. source: "./media/characters/dhari/maw.svg"
  20165. }
  20166. },
  20167. wereFront: {
  20168. height: math.unit(12 + 8 / 12, "feet"),
  20169. weight: math.unit(4000, "lb"),
  20170. name: "Front (Were)",
  20171. image: {
  20172. source: "./media/characters/dhari/were-front.svg",
  20173. extra: 1065 / 969,
  20174. bottom: 0.015
  20175. }
  20176. },
  20177. wereBack: {
  20178. height: math.unit(12 + 8 / 12, "feet"),
  20179. weight: math.unit(4000, "lb"),
  20180. name: "Back (Were)",
  20181. image: {
  20182. source: "./media/characters/dhari/were-back.svg",
  20183. extra: 1065 / 969,
  20184. bottom: 0.012
  20185. }
  20186. },
  20187. wereMaw: {
  20188. height: math.unit(0.625, "meters"),
  20189. name: "Maw (Were)",
  20190. image: {
  20191. source: "./media/characters/dhari/were-maw.svg"
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(6 + 3 / 12, "feet"),
  20199. default: true
  20200. },
  20201. ]
  20202. ))
  20203. characterMakers.push(() => makeCharacter(
  20204. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20205. {
  20206. anthro: {
  20207. height: math.unit(5 + 7 / 12, "feet"),
  20208. weight: math.unit(175, "lb"),
  20209. name: "Anthro",
  20210. image: {
  20211. source: "./media/characters/rena-dyne/anthro.svg",
  20212. extra: 1849 / 1785,
  20213. bottom: 0.005
  20214. }
  20215. },
  20216. taur: {
  20217. height: math.unit(15 + 6 / 12, "feet"),
  20218. weight: math.unit(8000, "lb"),
  20219. name: "Taur",
  20220. image: {
  20221. source: "./media/characters/rena-dyne/taur.svg",
  20222. extra: 2315 / 2234,
  20223. bottom: 0.033
  20224. }
  20225. },
  20226. },
  20227. [
  20228. {
  20229. name: "Normal",
  20230. height: math.unit(5 + 7 / 12, "feet"),
  20231. default: true
  20232. },
  20233. ]
  20234. ))
  20235. characterMakers.push(() => makeCharacter(
  20236. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20237. {
  20238. front: {
  20239. height: math.unit(8, "feet"),
  20240. weight: math.unit(600, "lb"),
  20241. name: "Front",
  20242. image: {
  20243. source: "./media/characters/weremeep/front.svg",
  20244. extra: 967 / 862,
  20245. bottom: 0.01
  20246. }
  20247. },
  20248. },
  20249. [
  20250. {
  20251. name: "Normal",
  20252. height: math.unit(8, "feet"),
  20253. default: true
  20254. },
  20255. {
  20256. name: "Lorg",
  20257. height: math.unit(12, "feet")
  20258. },
  20259. {
  20260. name: "Oh Lawd She Comin'",
  20261. height: math.unit(20, "feet")
  20262. },
  20263. ]
  20264. ))
  20265. characterMakers.push(() => makeCharacter(
  20266. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20267. {
  20268. front: {
  20269. height: math.unit(4, "feet"),
  20270. weight: math.unit(90, "lb"),
  20271. name: "Front",
  20272. image: {
  20273. source: "./media/characters/reza/front.svg",
  20274. extra: 1183 / 1111,
  20275. bottom: 0.017
  20276. }
  20277. },
  20278. back: {
  20279. height: math.unit(4, "feet"),
  20280. weight: math.unit(90, "lb"),
  20281. name: "Back",
  20282. image: {
  20283. source: "./media/characters/reza/back.svg",
  20284. extra: 1183 / 1111,
  20285. bottom: 0.01
  20286. }
  20287. },
  20288. drake: {
  20289. height: math.unit(30, "feet"),
  20290. weight: math.unit(246960, "lb"),
  20291. name: "Drake",
  20292. image: {
  20293. source: "./media/characters/reza/drake.svg",
  20294. extra: 2350 / 2024,
  20295. bottom: 60.7 / 2403
  20296. }
  20297. },
  20298. },
  20299. [
  20300. {
  20301. name: "Normal",
  20302. height: math.unit(4, "feet"),
  20303. default: true
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20309. {
  20310. side: {
  20311. height: math.unit(15, "feet"),
  20312. weight: math.unit(14, "tons"),
  20313. name: "Side",
  20314. image: {
  20315. source: "./media/characters/athea/side.svg",
  20316. extra: 960 / 540,
  20317. bottom: 0.003
  20318. }
  20319. },
  20320. sitting: {
  20321. height: math.unit(6 * 2.85, "feet"),
  20322. weight: math.unit(14, "tons"),
  20323. name: "Sitting",
  20324. image: {
  20325. source: "./media/characters/athea/sitting.svg",
  20326. extra: 621 / 581,
  20327. bottom: 0.075
  20328. }
  20329. },
  20330. maw: {
  20331. height: math.unit(7.59498031496063, "feet"),
  20332. name: "Maw",
  20333. image: {
  20334. source: "./media/characters/athea/maw.svg"
  20335. }
  20336. },
  20337. },
  20338. [
  20339. {
  20340. name: "Lap Cat",
  20341. height: math.unit(2.5, "feet")
  20342. },
  20343. {
  20344. name: "Minimacro",
  20345. height: math.unit(15, "feet"),
  20346. default: true
  20347. },
  20348. {
  20349. name: "Macro",
  20350. height: math.unit(120, "feet")
  20351. },
  20352. {
  20353. name: "Macro+",
  20354. height: math.unit(640, "feet")
  20355. },
  20356. {
  20357. name: "Colossus",
  20358. height: math.unit(2.2, "miles")
  20359. },
  20360. ]
  20361. ))
  20362. characterMakers.push(() => makeCharacter(
  20363. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20364. {
  20365. front: {
  20366. height: math.unit(8 + 8 / 12, "feet"),
  20367. weight: math.unit(130, "kg"),
  20368. name: "Front",
  20369. image: {
  20370. source: "./media/characters/seroko/front.svg",
  20371. extra: 1385 / 1280,
  20372. bottom: 0.025
  20373. }
  20374. },
  20375. back: {
  20376. height: math.unit(8 + 8 / 12, "feet"),
  20377. weight: math.unit(130, "kg"),
  20378. name: "Back",
  20379. image: {
  20380. source: "./media/characters/seroko/back.svg",
  20381. extra: 1369 / 1238,
  20382. bottom: 0.018
  20383. }
  20384. },
  20385. frontDressed: {
  20386. height: math.unit(8 + 8 / 12, "feet"),
  20387. weight: math.unit(130, "kg"),
  20388. name: "Front (Dressed)",
  20389. image: {
  20390. source: "./media/characters/seroko/front-dressed.svg",
  20391. extra: 1366 / 1275,
  20392. bottom: 0.03
  20393. }
  20394. },
  20395. },
  20396. [
  20397. {
  20398. name: "Normal",
  20399. height: math.unit(8 + 8 / 12, "feet"),
  20400. default: true
  20401. },
  20402. ]
  20403. ))
  20404. characterMakers.push(() => makeCharacter(
  20405. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20406. {
  20407. front: {
  20408. height: math.unit(5.5, "feet"),
  20409. weight: math.unit(160, "lb"),
  20410. name: "Front",
  20411. image: {
  20412. source: "./media/characters/quatzi/front.svg",
  20413. extra: 2346 / 2242,
  20414. bottom: 0.015
  20415. }
  20416. },
  20417. },
  20418. [
  20419. {
  20420. name: "Normal",
  20421. height: math.unit(5.5, "feet"),
  20422. default: true
  20423. },
  20424. {
  20425. name: "Big",
  20426. height: math.unit(7.7, "feet")
  20427. },
  20428. ]
  20429. ))
  20430. characterMakers.push(() => makeCharacter(
  20431. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20432. {
  20433. front: {
  20434. height: math.unit(5 + 11 / 12, "feet"),
  20435. weight: math.unit(180, "lb"),
  20436. name: "Front",
  20437. image: {
  20438. source: "./media/characters/sen/front.svg",
  20439. extra: 1321 / 1254,
  20440. bottom: 0.015
  20441. }
  20442. },
  20443. side: {
  20444. height: math.unit(5 + 11 / 12, "feet"),
  20445. weight: math.unit(180, "lb"),
  20446. name: "Side",
  20447. image: {
  20448. source: "./media/characters/sen/side.svg",
  20449. extra: 1321 / 1254,
  20450. bottom: 0.007
  20451. }
  20452. },
  20453. back: {
  20454. height: math.unit(5 + 11 / 12, "feet"),
  20455. weight: math.unit(180, "lb"),
  20456. name: "Back",
  20457. image: {
  20458. source: "./media/characters/sen/back.svg",
  20459. extra: 1321 / 1254
  20460. }
  20461. },
  20462. },
  20463. [
  20464. {
  20465. name: "Normal",
  20466. height: math.unit(5 + 11 / 12, "feet"),
  20467. default: true
  20468. },
  20469. ]
  20470. ))
  20471. characterMakers.push(() => makeCharacter(
  20472. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20473. {
  20474. front: {
  20475. height: math.unit(166.6, "cm"),
  20476. weight: math.unit(66.6, "kg"),
  20477. name: "Front",
  20478. image: {
  20479. source: "./media/characters/fruity/front.svg",
  20480. extra: 1510 / 1386,
  20481. bottom: 0.04
  20482. }
  20483. },
  20484. back: {
  20485. height: math.unit(166.6, "cm"),
  20486. weight: math.unit(66.6, "lb"),
  20487. name: "Back",
  20488. image: {
  20489. source: "./media/characters/fruity/back.svg",
  20490. extra: 1563 / 1435,
  20491. bottom: 0.005
  20492. }
  20493. },
  20494. },
  20495. [
  20496. {
  20497. name: "Normal",
  20498. height: math.unit(166.6, "cm"),
  20499. default: true
  20500. },
  20501. {
  20502. name: "Demonic",
  20503. height: math.unit(166.6, "feet")
  20504. },
  20505. ]
  20506. ))
  20507. characterMakers.push(() => makeCharacter(
  20508. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20509. {
  20510. side: {
  20511. height: math.unit(10, "feet"),
  20512. weight: math.unit(500, "lb"),
  20513. name: "Side",
  20514. image: {
  20515. source: "./media/characters/zost/side.svg",
  20516. extra: 966 / 880,
  20517. bottom: 0.075
  20518. }
  20519. },
  20520. mawFront: {
  20521. height: math.unit(1.08, "meters"),
  20522. name: "Maw (Front)",
  20523. image: {
  20524. source: "./media/characters/zost/maw-front.svg"
  20525. }
  20526. },
  20527. mawSide: {
  20528. height: math.unit(2.66, "feet"),
  20529. name: "Maw (Side)",
  20530. image: {
  20531. source: "./media/characters/zost/maw-side.svg"
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(10, "feet"),
  20539. default: true
  20540. },
  20541. ]
  20542. ))
  20543. characterMakers.push(() => makeCharacter(
  20544. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20545. {
  20546. front: {
  20547. height: math.unit(5 + 4 / 12, "feet"),
  20548. weight: math.unit(120, "lb"),
  20549. name: "Front",
  20550. image: {
  20551. source: "./media/characters/luci/front.svg",
  20552. extra: 1985 / 1884,
  20553. bottom: 0.04
  20554. }
  20555. },
  20556. back: {
  20557. height: math.unit(5 + 4 / 12, "feet"),
  20558. weight: math.unit(120, "lb"),
  20559. name: "Back",
  20560. image: {
  20561. source: "./media/characters/luci/back.svg",
  20562. extra: 1892 / 1791,
  20563. bottom: 0.002
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(5 + 4 / 12, "feet"),
  20571. default: true
  20572. },
  20573. ]
  20574. ))
  20575. characterMakers.push(() => makeCharacter(
  20576. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20577. {
  20578. front: {
  20579. height: math.unit(1500, "feet"),
  20580. weight: math.unit(3.8e6, "tons"),
  20581. name: "Front",
  20582. image: {
  20583. source: "./media/characters/2th/front.svg",
  20584. extra: 3489 / 3350,
  20585. bottom: 0.1
  20586. }
  20587. },
  20588. foot: {
  20589. height: math.unit(461, "feet"),
  20590. name: "Foot",
  20591. image: {
  20592. source: "./media/characters/2th/foot.svg"
  20593. }
  20594. },
  20595. },
  20596. [
  20597. {
  20598. name: "\"Micro\"",
  20599. height: math.unit(15 + 7 / 12, "feet")
  20600. },
  20601. {
  20602. name: "Normal",
  20603. height: math.unit(1500, "feet"),
  20604. default: true
  20605. },
  20606. {
  20607. name: "Macro",
  20608. height: math.unit(5000, "feet")
  20609. },
  20610. {
  20611. name: "Megamacro",
  20612. height: math.unit(15, "miles")
  20613. },
  20614. {
  20615. name: "Gigamacro",
  20616. height: math.unit(4000, "miles")
  20617. },
  20618. {
  20619. name: "Galactic",
  20620. height: math.unit(50, "AU")
  20621. },
  20622. ]
  20623. ))
  20624. characterMakers.push(() => makeCharacter(
  20625. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20626. {
  20627. front: {
  20628. height: math.unit(5 + 6 / 12, "feet"),
  20629. weight: math.unit(220, "lb"),
  20630. name: "Front",
  20631. image: {
  20632. source: "./media/characters/amethyst/front.svg",
  20633. extra: 2078 / 2040,
  20634. bottom: 0.045
  20635. }
  20636. },
  20637. back: {
  20638. height: math.unit(5 + 6 / 12, "feet"),
  20639. weight: math.unit(220, "lb"),
  20640. name: "Back",
  20641. image: {
  20642. source: "./media/characters/amethyst/back.svg",
  20643. extra: 2021 / 1989,
  20644. bottom: 0.02
  20645. }
  20646. },
  20647. },
  20648. [
  20649. {
  20650. name: "Normal",
  20651. height: math.unit(5 + 6 / 12, "feet"),
  20652. default: true
  20653. },
  20654. ]
  20655. ))
  20656. characterMakers.push(() => makeCharacter(
  20657. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20658. {
  20659. front: {
  20660. height: math.unit(4 + 11 / 12, "feet"),
  20661. weight: math.unit(120, "lb"),
  20662. name: "Front",
  20663. image: {
  20664. source: "./media/characters/yumi-akiyama/front.svg",
  20665. extra: 1327 / 1235,
  20666. bottom: 0.02
  20667. }
  20668. },
  20669. back: {
  20670. height: math.unit(4 + 11 / 12, "feet"),
  20671. weight: math.unit(120, "lb"),
  20672. name: "Back",
  20673. image: {
  20674. source: "./media/characters/yumi-akiyama/back.svg",
  20675. extra: 1287 / 1245,
  20676. bottom: 0.002
  20677. }
  20678. },
  20679. },
  20680. [
  20681. {
  20682. name: "Galactic",
  20683. height: math.unit(50, "galaxies"),
  20684. default: true
  20685. },
  20686. {
  20687. name: "Universal",
  20688. height: math.unit(100, "universes")
  20689. },
  20690. ]
  20691. ))
  20692. characterMakers.push(() => makeCharacter(
  20693. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20694. {
  20695. front: {
  20696. height: math.unit(8, "feet"),
  20697. weight: math.unit(500, "lb"),
  20698. name: "Front",
  20699. image: {
  20700. source: "./media/characters/rifter-yrmori/front.svg",
  20701. extra: 1180 / 1125,
  20702. bottom: 0.02
  20703. }
  20704. },
  20705. back: {
  20706. height: math.unit(8, "feet"),
  20707. weight: math.unit(500, "lb"),
  20708. name: "Back",
  20709. image: {
  20710. source: "./media/characters/rifter-yrmori/back.svg",
  20711. extra: 1190 / 1145,
  20712. bottom: 0.001
  20713. }
  20714. },
  20715. wings: {
  20716. height: math.unit(7.75, "feet"),
  20717. weight: math.unit(500, "lb"),
  20718. name: "Wings",
  20719. image: {
  20720. source: "./media/characters/rifter-yrmori/wings.svg",
  20721. extra: 1357 / 1285
  20722. }
  20723. },
  20724. maw: {
  20725. height: math.unit(0.8, "feet"),
  20726. name: "Maw",
  20727. image: {
  20728. source: "./media/characters/rifter-yrmori/maw.svg"
  20729. }
  20730. },
  20731. mawfront: {
  20732. height: math.unit(1.45, "feet"),
  20733. name: "Maw (Front)",
  20734. image: {
  20735. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20736. }
  20737. },
  20738. },
  20739. [
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(8, "feet"),
  20743. default: true
  20744. },
  20745. {
  20746. name: "Macro",
  20747. height: math.unit(42, "meters")
  20748. },
  20749. ]
  20750. ))
  20751. characterMakers.push(() => makeCharacter(
  20752. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20753. {
  20754. were: {
  20755. height: math.unit(25 + 6 / 12, "feet"),
  20756. weight: math.unit(10000, "lb"),
  20757. name: "Were",
  20758. image: {
  20759. source: "./media/characters/tahajin/were.svg",
  20760. extra: 801 / 770,
  20761. bottom: 0.042
  20762. }
  20763. },
  20764. aquatic: {
  20765. height: math.unit(6 + 4 / 12, "feet"),
  20766. weight: math.unit(160, "lb"),
  20767. name: "Aquatic",
  20768. image: {
  20769. source: "./media/characters/tahajin/aquatic.svg",
  20770. extra: 572 / 542,
  20771. bottom: 0.04
  20772. }
  20773. },
  20774. chow: {
  20775. height: math.unit(8 + 11 / 12, "feet"),
  20776. weight: math.unit(450, "lb"),
  20777. name: "Chow",
  20778. image: {
  20779. source: "./media/characters/tahajin/chow.svg",
  20780. extra: 660 / 640,
  20781. bottom: 0.015
  20782. }
  20783. },
  20784. demiNaga: {
  20785. height: math.unit(6 + 8 / 12, "feet"),
  20786. weight: math.unit(300, "lb"),
  20787. name: "Demi Naga",
  20788. image: {
  20789. source: "./media/characters/tahajin/demi-naga.svg",
  20790. extra: 643 / 615,
  20791. bottom: 0.1
  20792. }
  20793. },
  20794. data: {
  20795. height: math.unit(5, "inches"),
  20796. weight: math.unit(0.1, "lb"),
  20797. name: "Data",
  20798. image: {
  20799. source: "./media/characters/tahajin/data.svg"
  20800. }
  20801. },
  20802. fluu: {
  20803. height: math.unit(5 + 7 / 12, "feet"),
  20804. weight: math.unit(140, "lb"),
  20805. name: "Fluu",
  20806. image: {
  20807. source: "./media/characters/tahajin/fluu.svg",
  20808. extra: 628 / 592,
  20809. bottom: 0.02
  20810. }
  20811. },
  20812. starWarrior: {
  20813. height: math.unit(4 + 5 / 12, "feet"),
  20814. weight: math.unit(50, "lb"),
  20815. name: "Star Warrior",
  20816. image: {
  20817. source: "./media/characters/tahajin/star-warrior.svg"
  20818. }
  20819. },
  20820. },
  20821. [
  20822. {
  20823. name: "Normal",
  20824. height: math.unit(25 + 6 / 12, "feet"),
  20825. default: true
  20826. },
  20827. ]
  20828. ))
  20829. characterMakers.push(() => makeCharacter(
  20830. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20831. {
  20832. front: {
  20833. height: math.unit(8, "feet"),
  20834. weight: math.unit(350, "lb"),
  20835. name: "Front",
  20836. image: {
  20837. source: "./media/characters/gabira/front.svg",
  20838. extra: 608 / 580,
  20839. bottom: 0.03
  20840. }
  20841. },
  20842. back: {
  20843. height: math.unit(8, "feet"),
  20844. weight: math.unit(350, "lb"),
  20845. name: "Back",
  20846. image: {
  20847. source: "./media/characters/gabira/back.svg",
  20848. extra: 608 / 580,
  20849. bottom: 0.03
  20850. }
  20851. },
  20852. },
  20853. [
  20854. {
  20855. name: "Normal",
  20856. height: math.unit(8, "feet"),
  20857. default: true
  20858. },
  20859. ]
  20860. ))
  20861. characterMakers.push(() => makeCharacter(
  20862. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20863. {
  20864. front: {
  20865. height: math.unit(5 + 3 / 12, "feet"),
  20866. weight: math.unit(137, "lb"),
  20867. name: "Front",
  20868. image: {
  20869. source: "./media/characters/sasha-katraine/front.svg",
  20870. bottom: 0.045
  20871. }
  20872. },
  20873. },
  20874. [
  20875. {
  20876. name: "Micro",
  20877. height: math.unit(5, "inches")
  20878. },
  20879. {
  20880. name: "Normal",
  20881. height: math.unit(5 + 3 / 12, "feet"),
  20882. default: true
  20883. },
  20884. ]
  20885. ))
  20886. characterMakers.push(() => makeCharacter(
  20887. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20888. {
  20889. side: {
  20890. height: math.unit(4, "inches"),
  20891. weight: math.unit(200, "grams"),
  20892. name: "Side",
  20893. image: {
  20894. source: "./media/characters/der/side.svg",
  20895. extra: 719 / 400,
  20896. bottom: 30.6 / 749.9187
  20897. }
  20898. },
  20899. },
  20900. [
  20901. {
  20902. name: "Micro",
  20903. height: math.unit(4, "inches"),
  20904. default: true
  20905. },
  20906. ]
  20907. ))
  20908. characterMakers.push(() => makeCharacter(
  20909. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20910. {
  20911. side: {
  20912. height: math.unit(30, "meters"),
  20913. weight: math.unit(700, "tonnes"),
  20914. name: "Side",
  20915. image: {
  20916. source: "./media/characters/fixerdragon/side.svg",
  20917. extra: (1293.0514 - 116.03) / 1106.86,
  20918. bottom: 116.03 / 1293.0514
  20919. }
  20920. },
  20921. },
  20922. [
  20923. {
  20924. name: "Planck",
  20925. height: math.unit(1.6e-35, "meters")
  20926. },
  20927. {
  20928. name: "Micro",
  20929. height: math.unit(0.4, "meters")
  20930. },
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(30, "meters"),
  20934. default: true
  20935. },
  20936. {
  20937. name: "Megamacro",
  20938. height: math.unit(1.2, "megameters")
  20939. },
  20940. {
  20941. name: "Teramacro",
  20942. height: math.unit(130, "terameters")
  20943. },
  20944. {
  20945. name: "Yottamacro",
  20946. height: math.unit(6200, "yottameters")
  20947. },
  20948. ]
  20949. ));
  20950. characterMakers.push(() => makeCharacter(
  20951. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20952. {
  20953. front: {
  20954. height: math.unit(8, "feet"),
  20955. weight: math.unit(250, "lb"),
  20956. name: "Front",
  20957. image: {
  20958. source: "./media/characters/kite/front.svg",
  20959. extra: 2796 / 2659,
  20960. bottom: 0.002
  20961. }
  20962. },
  20963. },
  20964. [
  20965. {
  20966. name: "Normal",
  20967. height: math.unit(8, "feet"),
  20968. default: true
  20969. },
  20970. {
  20971. name: "Macro",
  20972. height: math.unit(360, "feet")
  20973. },
  20974. {
  20975. name: "Megamacro",
  20976. height: math.unit(1500, "feet")
  20977. },
  20978. ]
  20979. ))
  20980. characterMakers.push(() => makeCharacter(
  20981. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20982. {
  20983. front: {
  20984. height: math.unit(5 + 10 / 12, "feet"),
  20985. weight: math.unit(150, "lb"),
  20986. name: "Front",
  20987. image: {
  20988. source: "./media/characters/poojawa-vynar/front.svg",
  20989. extra: (1506.1547 - 55) / 1356.6,
  20990. bottom: 55 / 1506.1547
  20991. }
  20992. },
  20993. frontTailless: {
  20994. height: math.unit(5 + 10 / 12, "feet"),
  20995. weight: math.unit(150, "lb"),
  20996. name: "Front (Tailless)",
  20997. image: {
  20998. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20999. extra: (1506.1547 - 55) / 1356.6,
  21000. bottom: 55 / 1506.1547
  21001. }
  21002. },
  21003. },
  21004. [
  21005. {
  21006. name: "Normal",
  21007. height: math.unit(5 + 10 / 12, "feet"),
  21008. default: true
  21009. },
  21010. ]
  21011. ))
  21012. characterMakers.push(() => makeCharacter(
  21013. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21014. {
  21015. front: {
  21016. height: math.unit(293, "meters"),
  21017. weight: math.unit(70400, "tons"),
  21018. name: "Front",
  21019. image: {
  21020. source: "./media/characters/violette/front.svg",
  21021. extra: 1227 / 1180,
  21022. bottom: 0.005
  21023. }
  21024. },
  21025. back: {
  21026. height: math.unit(293, "meters"),
  21027. weight: math.unit(70400, "tons"),
  21028. name: "Back",
  21029. image: {
  21030. source: "./media/characters/violette/back.svg",
  21031. extra: 1227 / 1180,
  21032. bottom: 0.005
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Macro",
  21039. height: math.unit(293, "meters"),
  21040. default: true
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21046. {
  21047. front: {
  21048. height: math.unit(1050, "feet"),
  21049. weight: math.unit(200000, "tons"),
  21050. name: "Front",
  21051. image: {
  21052. source: "./media/characters/alessandra/front.svg",
  21053. extra: 960 / 912,
  21054. bottom: 0.06
  21055. }
  21056. },
  21057. },
  21058. [
  21059. {
  21060. name: "Macro",
  21061. height: math.unit(1050, "feet")
  21062. },
  21063. {
  21064. name: "Macro+",
  21065. height: math.unit(900, "meters"),
  21066. default: true
  21067. },
  21068. ]
  21069. ))
  21070. characterMakers.push(() => makeCharacter(
  21071. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21072. {
  21073. front: {
  21074. height: math.unit(5, "feet"),
  21075. weight: math.unit(187, "lb"),
  21076. name: "Front",
  21077. image: {
  21078. source: "./media/characters/person/front.svg",
  21079. extra: 3087 / 2945,
  21080. bottom: 91 / 3181
  21081. }
  21082. },
  21083. },
  21084. [
  21085. {
  21086. name: "Micro",
  21087. height: math.unit(3, "inches")
  21088. },
  21089. {
  21090. name: "Normal",
  21091. height: math.unit(5, "feet"),
  21092. default: true
  21093. },
  21094. {
  21095. name: "Macro",
  21096. height: math.unit(90, "feet")
  21097. },
  21098. {
  21099. name: "Max Size",
  21100. height: math.unit(280, "feet")
  21101. },
  21102. ]
  21103. ))
  21104. characterMakers.push(() => makeCharacter(
  21105. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21106. {
  21107. front: {
  21108. height: math.unit(4.5, "meters"),
  21109. weight: math.unit(3200, "lb"),
  21110. name: "Front",
  21111. image: {
  21112. source: "./media/characters/ty/front.svg",
  21113. extra: 1038 / 960,
  21114. bottom: 31.156 / 1068
  21115. }
  21116. },
  21117. back: {
  21118. height: math.unit(4.5, "meters"),
  21119. weight: math.unit(3200, "lb"),
  21120. name: "Back",
  21121. image: {
  21122. source: "./media/characters/ty/back.svg",
  21123. extra: 1044 / 966,
  21124. bottom: 7.48 / 1049
  21125. }
  21126. },
  21127. },
  21128. [
  21129. {
  21130. name: "Normal",
  21131. height: math.unit(4.5, "meters"),
  21132. default: true
  21133. },
  21134. ]
  21135. ))
  21136. characterMakers.push(() => makeCharacter(
  21137. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21138. {
  21139. front: {
  21140. height: math.unit(5 + 4 / 12, "feet"),
  21141. weight: math.unit(115, "lb"),
  21142. name: "Front",
  21143. image: {
  21144. source: "./media/characters/rocky/front.svg",
  21145. extra: 1012 / 975,
  21146. bottom: 54 / 1066
  21147. }
  21148. },
  21149. },
  21150. [
  21151. {
  21152. name: "Normal",
  21153. height: math.unit(5 + 4 / 12, "feet"),
  21154. default: true
  21155. },
  21156. ]
  21157. ))
  21158. characterMakers.push(() => makeCharacter(
  21159. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21160. {
  21161. upright: {
  21162. height: math.unit(6, "meters"),
  21163. weight: math.unit(4000, "kg"),
  21164. name: "Upright",
  21165. image: {
  21166. source: "./media/characters/ruin/upright.svg",
  21167. extra: 668 / 661,
  21168. bottom: 42 / 799.8396
  21169. }
  21170. },
  21171. },
  21172. [
  21173. {
  21174. name: "Normal",
  21175. height: math.unit(6, "meters"),
  21176. default: true
  21177. },
  21178. ]
  21179. ))
  21180. characterMakers.push(() => makeCharacter(
  21181. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21182. {
  21183. front: {
  21184. height: math.unit(5, "feet"),
  21185. weight: math.unit(106, "lb"),
  21186. name: "Front",
  21187. image: {
  21188. source: "./media/characters/robin/front.svg",
  21189. extra: 862 / 799,
  21190. bottom: 42.4 / 914.8856
  21191. }
  21192. },
  21193. },
  21194. [
  21195. {
  21196. name: "Normal",
  21197. height: math.unit(5, "feet"),
  21198. default: true
  21199. },
  21200. ]
  21201. ))
  21202. characterMakers.push(() => makeCharacter(
  21203. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21204. {
  21205. side: {
  21206. height: math.unit(3, "feet"),
  21207. weight: math.unit(225, "lb"),
  21208. name: "Side",
  21209. image: {
  21210. source: "./media/characters/saian/side.svg",
  21211. extra: 566 / 356,
  21212. bottom: 79.7 / 643
  21213. }
  21214. },
  21215. maw: {
  21216. height: math.unit(2.85, "feet"),
  21217. name: "Maw",
  21218. image: {
  21219. source: "./media/characters/saian/maw.svg"
  21220. }
  21221. },
  21222. },
  21223. [
  21224. {
  21225. name: "Normal",
  21226. height: math.unit(3, "feet"),
  21227. default: true
  21228. },
  21229. ]
  21230. ))
  21231. characterMakers.push(() => makeCharacter(
  21232. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21233. {
  21234. side: {
  21235. height: math.unit(8, "feet"),
  21236. weight: math.unit(300, "lb"),
  21237. name: "Side",
  21238. image: {
  21239. source: "./media/characters/equus-silvermane/side.svg",
  21240. extra: 2176 / 2050,
  21241. bottom: 65.7 / 2245
  21242. }
  21243. },
  21244. front: {
  21245. height: math.unit(8, "feet"),
  21246. weight: math.unit(300, "lb"),
  21247. name: "Front",
  21248. image: {
  21249. source: "./media/characters/equus-silvermane/front.svg",
  21250. extra: 4633 / 4400,
  21251. bottom: 71.3 / 4706.915
  21252. }
  21253. },
  21254. sideStepping: {
  21255. height: math.unit(8, "feet"),
  21256. weight: math.unit(300, "lb"),
  21257. name: "Side (Stepping)",
  21258. image: {
  21259. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21260. extra: 1968 / 1860,
  21261. bottom: 16.4 / 1989
  21262. }
  21263. },
  21264. },
  21265. [
  21266. {
  21267. name: "Normal",
  21268. height: math.unit(8, "feet")
  21269. },
  21270. {
  21271. name: "Minimacro",
  21272. height: math.unit(75, "feet"),
  21273. default: true
  21274. },
  21275. {
  21276. name: "Macro",
  21277. height: math.unit(150, "feet")
  21278. },
  21279. {
  21280. name: "Macro+",
  21281. height: math.unit(1000, "feet")
  21282. },
  21283. {
  21284. name: "Megamacro",
  21285. height: math.unit(1, "mile")
  21286. },
  21287. ]
  21288. ))
  21289. characterMakers.push(() => makeCharacter(
  21290. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21291. {
  21292. side: {
  21293. height: math.unit(20, "feet"),
  21294. weight: math.unit(30000, "kg"),
  21295. name: "Side",
  21296. image: {
  21297. source: "./media/characters/windar/side.svg",
  21298. extra: 1491 / 1248,
  21299. bottom: 82.56 / 1568
  21300. }
  21301. },
  21302. },
  21303. [
  21304. {
  21305. name: "Normal",
  21306. height: math.unit(20, "feet"),
  21307. default: true
  21308. },
  21309. ]
  21310. ))
  21311. characterMakers.push(() => makeCharacter(
  21312. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21313. {
  21314. side: {
  21315. height: math.unit(15.66, "feet"),
  21316. weight: math.unit(150, "lb"),
  21317. name: "Side",
  21318. image: {
  21319. source: "./media/characters/melody/side.svg",
  21320. extra: 1097 / 944,
  21321. bottom: 11.8 / 1109
  21322. }
  21323. },
  21324. sideOutfit: {
  21325. height: math.unit(15.66, "feet"),
  21326. weight: math.unit(150, "lb"),
  21327. name: "Side (Outfit)",
  21328. image: {
  21329. source: "./media/characters/melody/side-outfit.svg",
  21330. extra: 1097 / 944,
  21331. bottom: 11.8 / 1109
  21332. }
  21333. },
  21334. },
  21335. [
  21336. {
  21337. name: "Normal",
  21338. height: math.unit(15.66, "feet"),
  21339. default: true
  21340. },
  21341. ]
  21342. ))
  21343. characterMakers.push(() => makeCharacter(
  21344. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21345. {
  21346. front: {
  21347. height: math.unit(8, "feet"),
  21348. weight: math.unit(325, "lb"),
  21349. name: "Front",
  21350. image: {
  21351. source: "./media/characters/windera/front.svg",
  21352. extra: 3180 / 2845,
  21353. bottom: 178 / 3365
  21354. }
  21355. },
  21356. },
  21357. [
  21358. {
  21359. name: "Normal",
  21360. height: math.unit(8, "feet"),
  21361. default: true
  21362. },
  21363. ]
  21364. ))
  21365. characterMakers.push(() => makeCharacter(
  21366. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21367. {
  21368. front: {
  21369. height: math.unit(28.75, "feet"),
  21370. weight: math.unit(2000, "kg"),
  21371. name: "Front",
  21372. image: {
  21373. source: "./media/characters/sonear/front.svg",
  21374. extra: 1041.1 / 964.9,
  21375. bottom: 53.7 / 1096.6
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(28.75, "feet"),
  21383. default: true
  21384. },
  21385. ]
  21386. ))
  21387. characterMakers.push(() => makeCharacter(
  21388. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21389. {
  21390. side: {
  21391. height: math.unit(25.5, "feet"),
  21392. weight: math.unit(23000, "kg"),
  21393. name: "Side",
  21394. image: {
  21395. source: "./media/characters/kanara/side.svg"
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(25.5, "feet"),
  21403. default: true
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21409. {
  21410. side: {
  21411. height: math.unit(10, "feet"),
  21412. weight: math.unit(1000, "kg"),
  21413. name: "Side",
  21414. image: {
  21415. source: "./media/characters/ereus/side.svg",
  21416. extra: 1157 / 959,
  21417. bottom: 153 / 1312.5
  21418. }
  21419. },
  21420. },
  21421. [
  21422. {
  21423. name: "Normal",
  21424. height: math.unit(10, "feet"),
  21425. default: true
  21426. },
  21427. ]
  21428. ))
  21429. characterMakers.push(() => makeCharacter(
  21430. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21431. {
  21432. side: {
  21433. height: math.unit(4.5, "feet"),
  21434. weight: math.unit(500, "lb"),
  21435. name: "Side",
  21436. image: {
  21437. source: "./media/characters/e-ter/side.svg",
  21438. extra: 1550 / 1248,
  21439. bottom: 146 / 1694
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(4.5, "feet"),
  21447. default: true
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21453. {
  21454. side: {
  21455. height: math.unit(9.7, "feet"),
  21456. weight: math.unit(4000, "kg"),
  21457. name: "Side",
  21458. image: {
  21459. source: "./media/characters/yamie/side.svg"
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Normal",
  21466. height: math.unit(9.7, "feet"),
  21467. default: true
  21468. },
  21469. ]
  21470. ))
  21471. characterMakers.push(() => makeCharacter(
  21472. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21473. {
  21474. front: {
  21475. height: math.unit(50, "feet"),
  21476. weight: math.unit(50000, "kg"),
  21477. name: "Front",
  21478. image: {
  21479. source: "./media/characters/anders/front.svg",
  21480. extra: 570 / 539,
  21481. bottom: 14.7 / 586.7
  21482. }
  21483. },
  21484. },
  21485. [
  21486. {
  21487. name: "Large",
  21488. height: math.unit(50, "feet")
  21489. },
  21490. {
  21491. name: "Macro",
  21492. height: math.unit(2000, "feet"),
  21493. default: true
  21494. },
  21495. {
  21496. name: "Megamacro",
  21497. height: math.unit(12, "miles")
  21498. },
  21499. ]
  21500. ))
  21501. characterMakers.push(() => makeCharacter(
  21502. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21503. {
  21504. front: {
  21505. height: math.unit(7 + 2 / 12, "feet"),
  21506. weight: math.unit(300, "lb"),
  21507. name: "Front",
  21508. image: {
  21509. source: "./media/characters/reban/front.svg",
  21510. extra: 516 / 487,
  21511. bottom: 42.82 / 558.356
  21512. }
  21513. },
  21514. dick: {
  21515. height: math.unit(7 / 5, "feet"),
  21516. name: "Dick",
  21517. image: {
  21518. source: "./media/characters/reban/dick.svg"
  21519. }
  21520. },
  21521. },
  21522. [
  21523. {
  21524. name: "Natural Height",
  21525. height: math.unit(7 + 2 / 12, "feet")
  21526. },
  21527. {
  21528. name: "Macro",
  21529. height: math.unit(500, "feet"),
  21530. default: true
  21531. },
  21532. {
  21533. name: "Canon Height",
  21534. height: math.unit(50, "AU")
  21535. },
  21536. ]
  21537. ))
  21538. characterMakers.push(() => makeCharacter(
  21539. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21540. {
  21541. front: {
  21542. height: math.unit(6, "feet"),
  21543. weight: math.unit(150, "lb"),
  21544. name: "Front",
  21545. image: {
  21546. source: "./media/characters/terrance-keayes/front.svg",
  21547. extra: 1.005,
  21548. bottom: 151 / 1615
  21549. }
  21550. },
  21551. side: {
  21552. height: math.unit(6, "feet"),
  21553. weight: math.unit(150, "lb"),
  21554. name: "Side",
  21555. image: {
  21556. source: "./media/characters/terrance-keayes/side.svg",
  21557. extra: 1.005,
  21558. bottom: 129.4 / 1544
  21559. }
  21560. },
  21561. back: {
  21562. height: math.unit(6, "feet"),
  21563. weight: math.unit(150, "lb"),
  21564. name: "Back",
  21565. image: {
  21566. source: "./media/characters/terrance-keayes/back.svg",
  21567. extra: 1.005,
  21568. bottom: 58.4 / 1557.3
  21569. }
  21570. },
  21571. dick: {
  21572. height: math.unit(6 * 0.208, "feet"),
  21573. name: "Dick",
  21574. image: {
  21575. source: "./media/characters/terrance-keayes/dick.svg"
  21576. }
  21577. },
  21578. },
  21579. [
  21580. {
  21581. name: "Canon Height",
  21582. height: math.unit(35, "miles"),
  21583. default: true
  21584. },
  21585. ]
  21586. ))
  21587. characterMakers.push(() => makeCharacter(
  21588. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21589. {
  21590. front: {
  21591. height: math.unit(6, "feet"),
  21592. weight: math.unit(150, "lb"),
  21593. name: "Front",
  21594. image: {
  21595. source: "./media/characters/ofelia/front.svg",
  21596. extra: 546 / 541,
  21597. bottom: 39 / 583
  21598. }
  21599. },
  21600. back: {
  21601. height: math.unit(6, "feet"),
  21602. weight: math.unit(150, "lb"),
  21603. name: "Back",
  21604. image: {
  21605. source: "./media/characters/ofelia/back.svg",
  21606. extra: 564 / 559.5,
  21607. bottom: 8.69 / 573.02
  21608. }
  21609. },
  21610. maw: {
  21611. height: math.unit(1, "feet"),
  21612. name: "Maw",
  21613. image: {
  21614. source: "./media/characters/ofelia/maw.svg"
  21615. }
  21616. },
  21617. foot: {
  21618. height: math.unit(1.949, "feet"),
  21619. name: "Foot",
  21620. image: {
  21621. source: "./media/characters/ofelia/foot.svg"
  21622. }
  21623. },
  21624. },
  21625. [
  21626. {
  21627. name: "Canon Height",
  21628. height: math.unit(2000, "miles"),
  21629. default: true
  21630. },
  21631. ]
  21632. ))
  21633. characterMakers.push(() => makeCharacter(
  21634. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21635. {
  21636. front: {
  21637. height: math.unit(6, "feet"),
  21638. weight: math.unit(150, "lb"),
  21639. name: "Front",
  21640. image: {
  21641. source: "./media/characters/samuel/front.svg",
  21642. extra: 265 / 258,
  21643. bottom: 2 / 266.1566
  21644. }
  21645. },
  21646. },
  21647. [
  21648. {
  21649. name: "Macro",
  21650. height: math.unit(100, "feet"),
  21651. default: true
  21652. },
  21653. {
  21654. name: "Full Size",
  21655. height: math.unit(1000, "miles")
  21656. },
  21657. ]
  21658. ))
  21659. characterMakers.push(() => makeCharacter(
  21660. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21661. {
  21662. front: {
  21663. height: math.unit(6, "feet"),
  21664. weight: math.unit(300, "lb"),
  21665. name: "Front",
  21666. image: {
  21667. source: "./media/characters/beishir-kiel/front.svg",
  21668. extra: 569 / 547,
  21669. bottom: 41.9 / 609
  21670. }
  21671. },
  21672. maw: {
  21673. height: math.unit(6 * 0.202, "feet"),
  21674. name: "Maw",
  21675. image: {
  21676. source: "./media/characters/beishir-kiel/maw.svg"
  21677. }
  21678. },
  21679. },
  21680. [
  21681. {
  21682. name: "Macro",
  21683. height: math.unit(300, "feet"),
  21684. default: true
  21685. },
  21686. ]
  21687. ))
  21688. characterMakers.push(() => makeCharacter(
  21689. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21690. {
  21691. front: {
  21692. height: math.unit(5 + 8 / 12, "feet"),
  21693. weight: math.unit(120, "lb"),
  21694. name: "Front",
  21695. image: {
  21696. source: "./media/characters/logan-grey/front.svg",
  21697. extra: 2539 / 2393,
  21698. bottom: 97.6 / 2636.37
  21699. }
  21700. },
  21701. frontAlt: {
  21702. height: math.unit(5 + 8 / 12, "feet"),
  21703. weight: math.unit(120, "lb"),
  21704. name: "Front (Alt)",
  21705. image: {
  21706. source: "./media/characters/logan-grey/front-alt.svg",
  21707. extra: 958 / 893,
  21708. bottom: 15 / 970.768
  21709. }
  21710. },
  21711. back: {
  21712. height: math.unit(5 + 8 / 12, "feet"),
  21713. weight: math.unit(120, "lb"),
  21714. name: "Back",
  21715. image: {
  21716. source: "./media/characters/logan-grey/back.svg",
  21717. extra: 958 / 893,
  21718. bottom: 2.1881 / 970.9788
  21719. }
  21720. },
  21721. dick: {
  21722. height: math.unit(1.437, "feet"),
  21723. name: "Dick",
  21724. image: {
  21725. source: "./media/characters/logan-grey/dick.svg"
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Normal",
  21732. height: math.unit(5 + 8 / 12, "feet")
  21733. },
  21734. {
  21735. name: "The 500 Foot Femboy",
  21736. height: math.unit(500, "feet"),
  21737. default: true
  21738. },
  21739. {
  21740. name: "Megmacro",
  21741. height: math.unit(20, "miles")
  21742. },
  21743. ]
  21744. ))
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21747. {
  21748. front: {
  21749. height: math.unit(8 + 2 / 12, "feet"),
  21750. weight: math.unit(275, "lb"),
  21751. name: "Front",
  21752. image: {
  21753. source: "./media/characters/draganta/front.svg",
  21754. extra: 1177 / 1135,
  21755. bottom: 33.46 / 1212.1
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(8 + 6 / 12, "feet"),
  21763. default: true
  21764. },
  21765. {
  21766. name: "Macro",
  21767. height: math.unit(150, "feet")
  21768. },
  21769. {
  21770. name: "Megamacro",
  21771. height: math.unit(1000, "miles")
  21772. },
  21773. ]
  21774. ))
  21775. characterMakers.push(() => makeCharacter(
  21776. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21777. {
  21778. front: {
  21779. height: math.unit(1.72, "m"),
  21780. weight: math.unit(80, "lb"),
  21781. name: "Front",
  21782. image: {
  21783. source: "./media/characters/voski/front.svg",
  21784. extra: 2076.22 / 2022.4,
  21785. bottom: 102.7 / 2177.3866
  21786. }
  21787. },
  21788. frontNsfw: {
  21789. height: math.unit(1.72, "m"),
  21790. weight: math.unit(80, "lb"),
  21791. name: "Front (NSFW)",
  21792. image: {
  21793. source: "./media/characters/voski/front-nsfw.svg",
  21794. extra: 2076.22 / 2022.4,
  21795. bottom: 102.7 / 2177.3866
  21796. }
  21797. },
  21798. back: {
  21799. height: math.unit(1.72, "m"),
  21800. weight: math.unit(80, "lb"),
  21801. name: "Back",
  21802. image: {
  21803. source: "./media/characters/voski/back.svg",
  21804. extra: 2104 / 2051,
  21805. bottom: 10.45 / 2113.63
  21806. }
  21807. },
  21808. },
  21809. [
  21810. {
  21811. name: "Normal",
  21812. height: math.unit(1.72, "m")
  21813. },
  21814. {
  21815. name: "Macro",
  21816. height: math.unit(55, "m"),
  21817. default: true
  21818. },
  21819. {
  21820. name: "Macro+",
  21821. height: math.unit(300, "m")
  21822. },
  21823. {
  21824. name: "Macro++",
  21825. height: math.unit(700, "m")
  21826. },
  21827. {
  21828. name: "Macro+++",
  21829. height: math.unit(4500, "m")
  21830. },
  21831. {
  21832. name: "Macro++++",
  21833. height: math.unit(45, "km")
  21834. },
  21835. {
  21836. name: "Macro+++++",
  21837. height: math.unit(1220, "km")
  21838. },
  21839. ]
  21840. ))
  21841. characterMakers.push(() => makeCharacter(
  21842. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21843. {
  21844. front: {
  21845. height: math.unit(2.3, "m"),
  21846. weight: math.unit(304, "kg"),
  21847. name: "Front",
  21848. image: {
  21849. source: "./media/characters/icowom-lee/front.svg",
  21850. extra: 985 / 955,
  21851. bottom: 25.4 / 1012
  21852. }
  21853. },
  21854. fronttentacles: {
  21855. height: math.unit(2.3, "m"),
  21856. weight: math.unit(304, "kg"),
  21857. name: "Front-tentacles",
  21858. image: {
  21859. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21860. extra: 985 / 955,
  21861. bottom: 25.4 / 1012
  21862. }
  21863. },
  21864. back: {
  21865. height: math.unit(2.3, "m"),
  21866. weight: math.unit(304, "kg"),
  21867. name: "Back",
  21868. image: {
  21869. source: "./media/characters/icowom-lee/back.svg",
  21870. extra: 975 / 954,
  21871. bottom: 9.5 / 985
  21872. }
  21873. },
  21874. backtentacles: {
  21875. height: math.unit(2.3, "m"),
  21876. weight: math.unit(304, "kg"),
  21877. name: "Back-tentacles",
  21878. image: {
  21879. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21880. extra: 975 / 954,
  21881. bottom: 9.5 / 985
  21882. }
  21883. },
  21884. frontDressed: {
  21885. height: math.unit(2.3, "m"),
  21886. weight: math.unit(304, "kg"),
  21887. name: "Front (Dressed)",
  21888. image: {
  21889. source: "./media/characters/icowom-lee/front-dressed.svg",
  21890. extra: 3076 / 2933,
  21891. bottom: 51.4 / 3125.1889
  21892. }
  21893. },
  21894. rump: {
  21895. height: math.unit(0.776, "meters"),
  21896. name: "Rump",
  21897. image: {
  21898. source: "./media/characters/icowom-lee/rump.svg"
  21899. }
  21900. },
  21901. genitals: {
  21902. height: math.unit(0.78, "meters"),
  21903. name: "Genitals",
  21904. image: {
  21905. source: "./media/characters/icowom-lee/genitals.svg"
  21906. }
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Normal",
  21912. height: math.unit(2.3, "meters"),
  21913. default: true
  21914. },
  21915. {
  21916. name: "Macro",
  21917. height: math.unit(94, "meters"),
  21918. default: true
  21919. },
  21920. ]
  21921. ))
  21922. characterMakers.push(() => makeCharacter(
  21923. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21924. {
  21925. front: {
  21926. height: math.unit(22, "meters"),
  21927. weight: math.unit(21000, "kg"),
  21928. name: "Front",
  21929. image: {
  21930. source: "./media/characters/shock-diamond/front.svg",
  21931. extra: 2204 / 2053,
  21932. bottom: 65 / 2239.47
  21933. }
  21934. },
  21935. frontNude: {
  21936. height: math.unit(22, "meters"),
  21937. weight: math.unit(21000, "kg"),
  21938. name: "Front (Nude)",
  21939. image: {
  21940. source: "./media/characters/shock-diamond/front-nude.svg",
  21941. extra: 2514 / 2285,
  21942. bottom: 13 / 2527.56
  21943. }
  21944. },
  21945. },
  21946. [
  21947. {
  21948. name: "Normal",
  21949. height: math.unit(3, "meters")
  21950. },
  21951. {
  21952. name: "Macro",
  21953. height: math.unit(22, "meters"),
  21954. default: true
  21955. },
  21956. ]
  21957. ))
  21958. characterMakers.push(() => makeCharacter(
  21959. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21960. {
  21961. front: {
  21962. height: math.unit(5 + 4 / 12, "feet"),
  21963. weight: math.unit(120, "lb"),
  21964. name: "Front",
  21965. image: {
  21966. source: "./media/characters/rory/front.svg",
  21967. extra: 589 / 556,
  21968. bottom: 45.7 / 635.76
  21969. }
  21970. },
  21971. frontNude: {
  21972. height: math.unit(5 + 4 / 12, "feet"),
  21973. weight: math.unit(120, "lb"),
  21974. name: "Front (Nude)",
  21975. image: {
  21976. source: "./media/characters/rory/front-nude.svg",
  21977. extra: 589 / 556,
  21978. bottom: 45.7 / 635.76
  21979. }
  21980. },
  21981. side: {
  21982. height: math.unit(5 + 4 / 12, "feet"),
  21983. weight: math.unit(120, "lb"),
  21984. name: "Side",
  21985. image: {
  21986. source: "./media/characters/rory/side.svg",
  21987. extra: 597 / 564,
  21988. bottom: 55 / 653
  21989. }
  21990. },
  21991. back: {
  21992. height: math.unit(5 + 4 / 12, "feet"),
  21993. weight: math.unit(120, "lb"),
  21994. name: "Back",
  21995. image: {
  21996. source: "./media/characters/rory/back.svg",
  21997. extra: 620 / 585,
  21998. bottom: 8.86 / 630.43
  21999. }
  22000. },
  22001. dick: {
  22002. height: math.unit(0.86, "feet"),
  22003. name: "Dick",
  22004. image: {
  22005. source: "./media/characters/rory/dick.svg"
  22006. }
  22007. },
  22008. },
  22009. [
  22010. {
  22011. name: "Normal",
  22012. height: math.unit(5 + 4 / 12, "feet"),
  22013. default: true
  22014. },
  22015. {
  22016. name: "Macro",
  22017. height: math.unit(100, "feet")
  22018. },
  22019. {
  22020. name: "Macro+",
  22021. height: math.unit(140, "feet")
  22022. },
  22023. {
  22024. name: "Macro++",
  22025. height: math.unit(300, "feet")
  22026. },
  22027. ]
  22028. ))
  22029. characterMakers.push(() => makeCharacter(
  22030. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22031. {
  22032. front: {
  22033. height: math.unit(5 + 9 / 12, "feet"),
  22034. weight: math.unit(190, "lb"),
  22035. name: "Front",
  22036. image: {
  22037. source: "./media/characters/sprisk/front.svg",
  22038. extra: 1225 / 1180,
  22039. bottom: 42.7 / 1266.4
  22040. }
  22041. },
  22042. frontNsfw: {
  22043. height: math.unit(5 + 9 / 12, "feet"),
  22044. weight: math.unit(190, "lb"),
  22045. name: "Front (NSFW)",
  22046. image: {
  22047. source: "./media/characters/sprisk/front-nsfw.svg",
  22048. extra: 1225 / 1180,
  22049. bottom: 42.7 / 1266.4
  22050. }
  22051. },
  22052. back: {
  22053. height: math.unit(5 + 9 / 12, "feet"),
  22054. weight: math.unit(190, "lb"),
  22055. name: "Back",
  22056. image: {
  22057. source: "./media/characters/sprisk/back.svg",
  22058. extra: 1247 / 1200,
  22059. bottom: 5.6 / 1253.04
  22060. }
  22061. },
  22062. },
  22063. [
  22064. {
  22065. name: "Tiny",
  22066. height: math.unit(2, "inches")
  22067. },
  22068. {
  22069. name: "Normal",
  22070. height: math.unit(5 + 9 / 12, "feet"),
  22071. default: true
  22072. },
  22073. {
  22074. name: "Mini Macro",
  22075. height: math.unit(18, "feet")
  22076. },
  22077. {
  22078. name: "Macro",
  22079. height: math.unit(100, "feet")
  22080. },
  22081. {
  22082. name: "MACRO",
  22083. height: math.unit(50, "miles")
  22084. },
  22085. {
  22086. name: "M A C R O",
  22087. height: math.unit(300, "miles")
  22088. },
  22089. ]
  22090. ))
  22091. characterMakers.push(() => makeCharacter(
  22092. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22093. {
  22094. side: {
  22095. height: math.unit(15.6, "meters"),
  22096. weight: math.unit(700000, "kg"),
  22097. name: "Side",
  22098. image: {
  22099. source: "./media/characters/bunsen/side.svg",
  22100. extra: 1644 / 358
  22101. }
  22102. },
  22103. foot: {
  22104. height: math.unit(1.611 * 1644 / 358, "meter"),
  22105. name: "Foot",
  22106. image: {
  22107. source: "./media/characters/bunsen/foot.svg"
  22108. }
  22109. },
  22110. },
  22111. [
  22112. {
  22113. name: "Small",
  22114. height: math.unit(10, "feet")
  22115. },
  22116. {
  22117. name: "Normal",
  22118. height: math.unit(15.6, "meters"),
  22119. default: true
  22120. },
  22121. ]
  22122. ))
  22123. characterMakers.push(() => makeCharacter(
  22124. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22125. {
  22126. front: {
  22127. height: math.unit(4 + 11 / 12, "feet"),
  22128. weight: math.unit(140, "lb"),
  22129. name: "Front",
  22130. image: {
  22131. source: "./media/characters/sesh/front.svg",
  22132. extra: 3420 / 3231,
  22133. bottom: 72 / 3949.5
  22134. }
  22135. },
  22136. },
  22137. [
  22138. {
  22139. name: "Normal",
  22140. height: math.unit(4 + 11 / 12, "feet")
  22141. },
  22142. {
  22143. name: "Grown",
  22144. height: math.unit(15, "feet"),
  22145. default: true
  22146. },
  22147. {
  22148. name: "Macro",
  22149. height: math.unit(1500, "feet")
  22150. },
  22151. {
  22152. name: "Megamacro",
  22153. height: math.unit(30, "miles")
  22154. },
  22155. {
  22156. name: "Continental",
  22157. height: math.unit(3000, "miles")
  22158. },
  22159. {
  22160. name: "Gravity Mass",
  22161. height: math.unit(300000, "miles")
  22162. },
  22163. {
  22164. name: "Planet Buster",
  22165. height: math.unit(30000000, "miles")
  22166. },
  22167. {
  22168. name: "Big",
  22169. height: math.unit(3000000000, "miles")
  22170. },
  22171. ]
  22172. ))
  22173. characterMakers.push(() => makeCharacter(
  22174. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22175. {
  22176. front: {
  22177. height: math.unit(9, "feet"),
  22178. weight: math.unit(350, "lb"),
  22179. name: "Front",
  22180. image: {
  22181. source: "./media/characters/pepper/front.svg",
  22182. extra: 1448 / 1312,
  22183. bottom: 9.4 / 1457.88
  22184. }
  22185. },
  22186. back: {
  22187. height: math.unit(9, "feet"),
  22188. weight: math.unit(350, "lb"),
  22189. name: "Back",
  22190. image: {
  22191. source: "./media/characters/pepper/back.svg",
  22192. extra: 1423 / 1300,
  22193. bottom: 4.6 / 1429
  22194. }
  22195. },
  22196. maw: {
  22197. height: math.unit(0.932, "feet"),
  22198. name: "Maw",
  22199. image: {
  22200. source: "./media/characters/pepper/maw.svg"
  22201. }
  22202. },
  22203. },
  22204. [
  22205. {
  22206. name: "Normal",
  22207. height: math.unit(9, "feet"),
  22208. default: true
  22209. },
  22210. ]
  22211. ))
  22212. characterMakers.push(() => makeCharacter(
  22213. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22214. {
  22215. front: {
  22216. height: math.unit(6, "feet"),
  22217. weight: math.unit(150, "lb"),
  22218. name: "Front",
  22219. image: {
  22220. source: "./media/characters/maelstrom/front.svg",
  22221. extra: 2100 / 1883,
  22222. bottom: 94 / 2196.7
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Less Kaiju",
  22229. height: math.unit(200, "feet")
  22230. },
  22231. {
  22232. name: "Kaiju",
  22233. height: math.unit(400, "feet"),
  22234. default: true
  22235. },
  22236. {
  22237. name: "Kaiju-er",
  22238. height: math.unit(600, "feet")
  22239. },
  22240. ]
  22241. ))
  22242. characterMakers.push(() => makeCharacter(
  22243. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22244. {
  22245. front: {
  22246. height: math.unit(6 + 5 / 12, "feet"),
  22247. weight: math.unit(180, "lb"),
  22248. name: "Front",
  22249. image: {
  22250. source: "./media/characters/lexir/front.svg",
  22251. extra: 180 / 172,
  22252. bottom: 12 / 192
  22253. }
  22254. },
  22255. back: {
  22256. height: math.unit(6 + 5 / 12, "feet"),
  22257. weight: math.unit(180, "lb"),
  22258. name: "Back",
  22259. image: {
  22260. source: "./media/characters/lexir/back.svg",
  22261. extra: 183.84 / 175.5,
  22262. bottom: 3.1 / 187
  22263. }
  22264. },
  22265. },
  22266. [
  22267. {
  22268. name: "Very Smal",
  22269. height: math.unit(1, "nm")
  22270. },
  22271. {
  22272. name: "Normal",
  22273. height: math.unit(6 + 5 / 12, "feet"),
  22274. default: true
  22275. },
  22276. {
  22277. name: "Macro",
  22278. height: math.unit(1, "mile")
  22279. },
  22280. {
  22281. name: "Megamacro",
  22282. height: math.unit(50, "miles")
  22283. },
  22284. ]
  22285. ))
  22286. characterMakers.push(() => makeCharacter(
  22287. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22288. {
  22289. front: {
  22290. height: math.unit(1.5, "meters"),
  22291. weight: math.unit(100, "lb"),
  22292. name: "Front",
  22293. image: {
  22294. source: "./media/characters/maksio/front.svg",
  22295. extra: 1549 / 1531,
  22296. bottom: 123.7 / 1674.5429
  22297. }
  22298. },
  22299. back: {
  22300. height: math.unit(1.5, "meters"),
  22301. weight: math.unit(100, "lb"),
  22302. name: "Back",
  22303. image: {
  22304. source: "./media/characters/maksio/back.svg",
  22305. extra: 1541 / 1509,
  22306. bottom: 97 / 1639
  22307. }
  22308. },
  22309. hand: {
  22310. height: math.unit(0.621, "feet"),
  22311. name: "Hand",
  22312. image: {
  22313. source: "./media/characters/maksio/hand.svg"
  22314. }
  22315. },
  22316. foot: {
  22317. height: math.unit(1.611, "feet"),
  22318. name: "Foot",
  22319. image: {
  22320. source: "./media/characters/maksio/foot.svg"
  22321. }
  22322. },
  22323. },
  22324. [
  22325. {
  22326. name: "Shrunken",
  22327. height: math.unit(10, "cm")
  22328. },
  22329. {
  22330. name: "Normal",
  22331. height: math.unit(150, "cm"),
  22332. default: true
  22333. },
  22334. ]
  22335. ))
  22336. characterMakers.push(() => makeCharacter(
  22337. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22338. {
  22339. front: {
  22340. height: math.unit(100, "feet"),
  22341. name: "Front",
  22342. image: {
  22343. source: "./media/characters/erza-bear/front.svg",
  22344. extra: 2449 / 2390,
  22345. bottom: 46 / 2494
  22346. }
  22347. },
  22348. back: {
  22349. height: math.unit(100, "feet"),
  22350. name: "Back",
  22351. image: {
  22352. source: "./media/characters/erza-bear/back.svg",
  22353. extra: 2489 / 2430,
  22354. bottom: 85.4 / 2480
  22355. }
  22356. },
  22357. tail: {
  22358. height: math.unit(42, "feet"),
  22359. name: "Tail",
  22360. image: {
  22361. source: "./media/characters/erza-bear/tail.svg"
  22362. }
  22363. },
  22364. tongue: {
  22365. height: math.unit(8, "feet"),
  22366. name: "Tongue",
  22367. image: {
  22368. source: "./media/characters/erza-bear/tongue.svg"
  22369. }
  22370. },
  22371. dick: {
  22372. height: math.unit(10.5, "feet"),
  22373. name: "Dick",
  22374. image: {
  22375. source: "./media/characters/erza-bear/dick.svg"
  22376. }
  22377. },
  22378. dickVertical: {
  22379. height: math.unit(16.9, "feet"),
  22380. name: "Dick (Vertical)",
  22381. image: {
  22382. source: "./media/characters/erza-bear/dick-vertical.svg"
  22383. }
  22384. },
  22385. },
  22386. [
  22387. {
  22388. name: "Macro",
  22389. height: math.unit(100, "feet"),
  22390. default: true
  22391. },
  22392. ]
  22393. ))
  22394. characterMakers.push(() => makeCharacter(
  22395. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22396. {
  22397. front: {
  22398. height: math.unit(172, "cm"),
  22399. weight: math.unit(73, "kg"),
  22400. name: "Front",
  22401. image: {
  22402. source: "./media/characters/violet-flor/front.svg",
  22403. extra: 1530 / 1442,
  22404. bottom: 61.9 / 1588.8
  22405. }
  22406. },
  22407. back: {
  22408. height: math.unit(180, "cm"),
  22409. weight: math.unit(73, "kg"),
  22410. name: "Back",
  22411. image: {
  22412. source: "./media/characters/violet-flor/back.svg",
  22413. extra: 1692 / 1630,
  22414. bottom: 20 / 1712
  22415. }
  22416. },
  22417. },
  22418. [
  22419. {
  22420. name: "Normal",
  22421. height: math.unit(172, "cm"),
  22422. default: true
  22423. },
  22424. ]
  22425. ))
  22426. characterMakers.push(() => makeCharacter(
  22427. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22428. {
  22429. front: {
  22430. height: math.unit(6, "feet"),
  22431. weight: math.unit(220, "lb"),
  22432. name: "Front",
  22433. image: {
  22434. source: "./media/characters/lynn-rhea/front.svg",
  22435. extra: 310 / 273
  22436. }
  22437. },
  22438. back: {
  22439. height: math.unit(6, "feet"),
  22440. weight: math.unit(220, "lb"),
  22441. name: "Back",
  22442. image: {
  22443. source: "./media/characters/lynn-rhea/back.svg",
  22444. extra: 310 / 273
  22445. }
  22446. },
  22447. dicks: {
  22448. height: math.unit(0.9, "feet"),
  22449. name: "Dicks",
  22450. image: {
  22451. source: "./media/characters/lynn-rhea/dicks.svg"
  22452. }
  22453. },
  22454. slit: {
  22455. height: math.unit(0.4, "feet"),
  22456. name: "Slit",
  22457. image: {
  22458. source: "./media/characters/lynn-rhea/slit.svg"
  22459. }
  22460. },
  22461. },
  22462. [
  22463. {
  22464. name: "Micro",
  22465. height: math.unit(1, "inch")
  22466. },
  22467. {
  22468. name: "Macro",
  22469. height: math.unit(60, "feet"),
  22470. default: true
  22471. },
  22472. {
  22473. name: "Megamacro",
  22474. height: math.unit(2, "miles")
  22475. },
  22476. {
  22477. name: "Gigamacro",
  22478. height: math.unit(3, "earths")
  22479. },
  22480. {
  22481. name: "Galactic",
  22482. height: math.unit(0.8, "galaxies")
  22483. },
  22484. ]
  22485. ))
  22486. characterMakers.push(() => makeCharacter(
  22487. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22488. {
  22489. front: {
  22490. height: math.unit(1600, "feet"),
  22491. weight: math.unit(85758785169, "kg"),
  22492. name: "Front",
  22493. image: {
  22494. source: "./media/characters/valathos/front.svg",
  22495. extra: 1451 / 1339
  22496. }
  22497. },
  22498. },
  22499. [
  22500. {
  22501. name: "Macro",
  22502. height: math.unit(1600, "feet"),
  22503. default: true
  22504. },
  22505. ]
  22506. ))
  22507. characterMakers.push(() => makeCharacter(
  22508. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22509. {
  22510. front: {
  22511. height: math.unit(7 + 5 / 12, "feet"),
  22512. weight: math.unit(300, "lb"),
  22513. name: "Front",
  22514. image: {
  22515. source: "./media/characters/azula/front.svg",
  22516. extra: 3208 / 2880,
  22517. bottom: 80.2 / 3277
  22518. }
  22519. },
  22520. back: {
  22521. height: math.unit(7 + 5 / 12, "feet"),
  22522. weight: math.unit(300, "lb"),
  22523. name: "Back",
  22524. image: {
  22525. source: "./media/characters/azula/back.svg",
  22526. extra: 3169 / 2822,
  22527. bottom: 150.6 / 3321
  22528. }
  22529. },
  22530. },
  22531. [
  22532. {
  22533. name: "Normal",
  22534. height: math.unit(7 + 5 / 12, "feet"),
  22535. default: true
  22536. },
  22537. {
  22538. name: "Big",
  22539. height: math.unit(20, "feet")
  22540. },
  22541. ]
  22542. ))
  22543. characterMakers.push(() => makeCharacter(
  22544. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22545. {
  22546. front: {
  22547. height: math.unit(5 + 1 / 12, "feet"),
  22548. weight: math.unit(110, "lb"),
  22549. name: "Front",
  22550. image: {
  22551. source: "./media/characters/rupert/front.svg",
  22552. extra: 1549 / 1495,
  22553. bottom: 54.2 / 1604.4
  22554. }
  22555. },
  22556. },
  22557. [
  22558. {
  22559. name: "Normal",
  22560. height: math.unit(5 + 1 / 12, "feet"),
  22561. default: true
  22562. },
  22563. ]
  22564. ))
  22565. characterMakers.push(() => makeCharacter(
  22566. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22567. {
  22568. front: {
  22569. height: math.unit(8 + 4 / 12, "feet"),
  22570. weight: math.unit(350, "lb"),
  22571. name: "Front",
  22572. image: {
  22573. source: "./media/characters/sheera-castellar/front.svg",
  22574. extra: 1957 / 1894,
  22575. bottom: 26.97 / 1975.017
  22576. }
  22577. },
  22578. side: {
  22579. height: math.unit(8 + 4 / 12, "feet"),
  22580. weight: math.unit(350, "lb"),
  22581. name: "Side",
  22582. image: {
  22583. source: "./media/characters/sheera-castellar/side.svg",
  22584. extra: 1957 / 1894
  22585. }
  22586. },
  22587. back: {
  22588. height: math.unit(8 + 4 / 12, "feet"),
  22589. weight: math.unit(350, "lb"),
  22590. name: "Back",
  22591. image: {
  22592. source: "./media/characters/sheera-castellar/back.svg",
  22593. extra: 1957 / 1894
  22594. }
  22595. },
  22596. angled: {
  22597. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22598. weight: math.unit(350, "lb"),
  22599. name: "Angled",
  22600. image: {
  22601. source: "./media/characters/sheera-castellar/angled.svg",
  22602. extra: 1807 / 1707,
  22603. bottom: 68 / 1875
  22604. }
  22605. },
  22606. genitals: {
  22607. height: math.unit(2.2, "feet"),
  22608. name: "Genitals",
  22609. image: {
  22610. source: "./media/characters/sheera-castellar/genitals.svg"
  22611. }
  22612. },
  22613. },
  22614. [
  22615. {
  22616. name: "Normal",
  22617. height: math.unit(8 + 4 / 12, "feet")
  22618. },
  22619. {
  22620. name: "Macro",
  22621. height: math.unit(150, "feet"),
  22622. default: true
  22623. },
  22624. {
  22625. name: "Macro+",
  22626. height: math.unit(800, "feet")
  22627. },
  22628. ]
  22629. ))
  22630. characterMakers.push(() => makeCharacter(
  22631. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22632. {
  22633. front: {
  22634. height: math.unit(6, "feet"),
  22635. weight: math.unit(150, "lb"),
  22636. name: "Front",
  22637. image: {
  22638. source: "./media/characters/jaipur/front.svg",
  22639. extra: 3860 / 3731,
  22640. bottom: 287 / 4140
  22641. }
  22642. },
  22643. back: {
  22644. height: math.unit(6, "feet"),
  22645. weight: math.unit(150, "lb"),
  22646. name: "Back",
  22647. image: {
  22648. source: "./media/characters/jaipur/back.svg",
  22649. extra: 4060 / 3930,
  22650. bottom: 151 / 4200
  22651. }
  22652. },
  22653. },
  22654. [
  22655. {
  22656. name: "Normal",
  22657. height: math.unit(1.85, "meters"),
  22658. default: true
  22659. },
  22660. {
  22661. name: "Macro",
  22662. height: math.unit(150, "meters")
  22663. },
  22664. {
  22665. name: "Macro+",
  22666. height: math.unit(0.5, "miles")
  22667. },
  22668. {
  22669. name: "Macro++",
  22670. height: math.unit(2.5, "miles")
  22671. },
  22672. {
  22673. name: "Macro+++",
  22674. height: math.unit(12, "miles")
  22675. },
  22676. {
  22677. name: "Macro++++",
  22678. height: math.unit(120, "miles")
  22679. },
  22680. {
  22681. name: "Macro+++++",
  22682. height: math.unit(1200, "miles")
  22683. },
  22684. ]
  22685. ))
  22686. characterMakers.push(() => makeCharacter(
  22687. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22688. {
  22689. front: {
  22690. height: math.unit(6, "feet"),
  22691. weight: math.unit(150, "lb"),
  22692. name: "Front",
  22693. image: {
  22694. source: "./media/characters/sheila-wolf/front.svg",
  22695. extra: 1931 / 1808,
  22696. bottom: 29.5 / 1960
  22697. }
  22698. },
  22699. dick: {
  22700. height: math.unit(1.464, "feet"),
  22701. name: "Dick",
  22702. image: {
  22703. source: "./media/characters/sheila-wolf/dick.svg"
  22704. }
  22705. },
  22706. muzzle: {
  22707. height: math.unit(0.513, "feet"),
  22708. name: "Muzzle",
  22709. image: {
  22710. source: "./media/characters/sheila-wolf/muzzle.svg"
  22711. }
  22712. },
  22713. },
  22714. [
  22715. {
  22716. name: "Macro",
  22717. height: math.unit(70, "feet"),
  22718. default: true
  22719. },
  22720. ]
  22721. ))
  22722. characterMakers.push(() => makeCharacter(
  22723. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22724. {
  22725. front: {
  22726. height: math.unit(32, "meters"),
  22727. weight: math.unit(300000, "kg"),
  22728. name: "Front",
  22729. image: {
  22730. source: "./media/characters/almor/front.svg",
  22731. extra: 1408 / 1322,
  22732. bottom: 94.6 / 1506.5
  22733. }
  22734. },
  22735. },
  22736. [
  22737. {
  22738. name: "Macro",
  22739. height: math.unit(32, "meters"),
  22740. default: true
  22741. },
  22742. ]
  22743. ))
  22744. characterMakers.push(() => makeCharacter(
  22745. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22746. {
  22747. front: {
  22748. height: math.unit(7, "feet"),
  22749. weight: math.unit(200, "lb"),
  22750. name: "Front",
  22751. image: {
  22752. source: "./media/characters/silver/front.svg",
  22753. extra: 472.1 / 450.5,
  22754. bottom: 26.5 / 499.424
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Normal",
  22761. height: math.unit(7, "feet"),
  22762. default: true
  22763. },
  22764. {
  22765. name: "Macro",
  22766. height: math.unit(800, "feet")
  22767. },
  22768. {
  22769. name: "Megamacro",
  22770. height: math.unit(250, "miles")
  22771. },
  22772. ]
  22773. ))
  22774. characterMakers.push(() => makeCharacter(
  22775. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22776. {
  22777. front: {
  22778. height: math.unit(6, "feet"),
  22779. weight: math.unit(150, "lb"),
  22780. name: "Front",
  22781. image: {
  22782. source: "./media/characters/pliskin/front.svg",
  22783. extra: 1469 / 1359,
  22784. bottom: 70 / 1540
  22785. }
  22786. },
  22787. },
  22788. [
  22789. {
  22790. name: "Micro",
  22791. height: math.unit(3, "inches")
  22792. },
  22793. {
  22794. name: "Normal",
  22795. height: math.unit(5 + 11 / 12, "feet"),
  22796. default: true
  22797. },
  22798. {
  22799. name: "Macro",
  22800. height: math.unit(120, "feet")
  22801. },
  22802. ]
  22803. ))
  22804. characterMakers.push(() => makeCharacter(
  22805. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22806. {
  22807. front: {
  22808. height: math.unit(6, "feet"),
  22809. weight: math.unit(150, "lb"),
  22810. name: "Front",
  22811. image: {
  22812. source: "./media/characters/sammy/front.svg",
  22813. extra: 1193 / 1089,
  22814. bottom: 30.5 / 1226
  22815. }
  22816. },
  22817. },
  22818. [
  22819. {
  22820. name: "Macro",
  22821. height: math.unit(1700, "feet"),
  22822. default: true
  22823. },
  22824. {
  22825. name: "Examacro",
  22826. height: math.unit(2.5e9, "lightyears")
  22827. },
  22828. ]
  22829. ))
  22830. characterMakers.push(() => makeCharacter(
  22831. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22832. {
  22833. front: {
  22834. height: math.unit(21, "meters"),
  22835. weight: math.unit(12, "tonnes"),
  22836. name: "Front",
  22837. image: {
  22838. source: "./media/characters/kuru/front.svg",
  22839. extra: 4301 / 3785,
  22840. bottom: 371.3 / 4691
  22841. }
  22842. },
  22843. },
  22844. [
  22845. {
  22846. name: "Macro",
  22847. height: math.unit(21, "meters"),
  22848. default: true
  22849. },
  22850. ]
  22851. ))
  22852. characterMakers.push(() => makeCharacter(
  22853. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22854. {
  22855. front: {
  22856. height: math.unit(23, "meters"),
  22857. weight: math.unit(12.2, "tonnes"),
  22858. name: "Front",
  22859. image: {
  22860. source: "./media/characters/rakka/front.svg",
  22861. extra: 4670 / 4169,
  22862. bottom: 301 / 4968.7
  22863. }
  22864. },
  22865. },
  22866. [
  22867. {
  22868. name: "Macro",
  22869. height: math.unit(23, "meters"),
  22870. default: true
  22871. },
  22872. ]
  22873. ))
  22874. characterMakers.push(() => makeCharacter(
  22875. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22876. {
  22877. front: {
  22878. height: math.unit(6, "feet"),
  22879. weight: math.unit(150, "lb"),
  22880. name: "Front",
  22881. image: {
  22882. source: "./media/characters/rhys-feline/front.svg",
  22883. extra: 2488 / 2308,
  22884. bottom: 35.67 / 2519.19
  22885. }
  22886. },
  22887. },
  22888. [
  22889. {
  22890. name: "Really Small",
  22891. height: math.unit(1, "nm")
  22892. },
  22893. {
  22894. name: "Micro",
  22895. height: math.unit(4, "inches")
  22896. },
  22897. {
  22898. name: "Normal",
  22899. height: math.unit(4 + 10 / 12, "feet"),
  22900. default: true
  22901. },
  22902. {
  22903. name: "Macro",
  22904. height: math.unit(100, "feet")
  22905. },
  22906. {
  22907. name: "Megamacto",
  22908. height: math.unit(50, "miles")
  22909. },
  22910. ]
  22911. ))
  22912. characterMakers.push(() => makeCharacter(
  22913. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22914. {
  22915. side: {
  22916. height: math.unit(30, "feet"),
  22917. weight: math.unit(35000, "kg"),
  22918. name: "Side",
  22919. image: {
  22920. source: "./media/characters/alydar/side.svg",
  22921. extra: 234 / 222,
  22922. bottom: 6.5 / 241
  22923. }
  22924. },
  22925. front: {
  22926. height: math.unit(30, "feet"),
  22927. weight: math.unit(35000, "kg"),
  22928. name: "Front",
  22929. image: {
  22930. source: "./media/characters/alydar/front.svg",
  22931. extra: 223.37 / 210.2,
  22932. bottom: 22.3 / 246.76
  22933. }
  22934. },
  22935. top: {
  22936. height: math.unit(64.54, "feet"),
  22937. weight: math.unit(35000, "kg"),
  22938. name: "Top",
  22939. image: {
  22940. source: "./media/characters/alydar/top.svg"
  22941. }
  22942. },
  22943. anthro: {
  22944. height: math.unit(30, "feet"),
  22945. weight: math.unit(9000, "kg"),
  22946. name: "Anthro",
  22947. image: {
  22948. source: "./media/characters/alydar/anthro.svg",
  22949. extra: 432 / 421,
  22950. bottom: 7.18 / 440
  22951. }
  22952. },
  22953. maw: {
  22954. height: math.unit(11.693, "feet"),
  22955. name: "Maw",
  22956. image: {
  22957. source: "./media/characters/alydar/maw.svg"
  22958. }
  22959. },
  22960. head: {
  22961. height: math.unit(11.693, "feet"),
  22962. name: "Head",
  22963. image: {
  22964. source: "./media/characters/alydar/head.svg"
  22965. }
  22966. },
  22967. headAlt: {
  22968. height: math.unit(12.861, "feet"),
  22969. name: "Head (Alt)",
  22970. image: {
  22971. source: "./media/characters/alydar/head-alt.svg"
  22972. }
  22973. },
  22974. wing: {
  22975. height: math.unit(20.712, "feet"),
  22976. name: "Wing",
  22977. image: {
  22978. source: "./media/characters/alydar/wing.svg"
  22979. }
  22980. },
  22981. wingFeather: {
  22982. height: math.unit(9.662, "feet"),
  22983. name: "Wing Feather",
  22984. image: {
  22985. source: "./media/characters/alydar/wing-feather.svg"
  22986. }
  22987. },
  22988. countourFeather: {
  22989. height: math.unit(4.154, "feet"),
  22990. name: "Contour Feather",
  22991. image: {
  22992. source: "./media/characters/alydar/contour-feather.svg"
  22993. }
  22994. },
  22995. },
  22996. [
  22997. {
  22998. name: "Diplomatic",
  22999. height: math.unit(13, "feet"),
  23000. default: true
  23001. },
  23002. {
  23003. name: "Small",
  23004. height: math.unit(30, "feet")
  23005. },
  23006. {
  23007. name: "Normal",
  23008. height: math.unit(95, "feet"),
  23009. default: true
  23010. },
  23011. {
  23012. name: "Large",
  23013. height: math.unit(285, "feet")
  23014. },
  23015. {
  23016. name: "Incomprehensible",
  23017. height: math.unit(450, "megameters")
  23018. },
  23019. ]
  23020. ))
  23021. characterMakers.push(() => makeCharacter(
  23022. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23023. {
  23024. side: {
  23025. height: math.unit(11, "feet"),
  23026. weight: math.unit(1750, "kg"),
  23027. name: "Side",
  23028. image: {
  23029. source: "./media/characters/selicia/side.svg",
  23030. extra: 440 / 396,
  23031. bottom: 24.8 / 465.979
  23032. }
  23033. },
  23034. maw: {
  23035. height: math.unit(4.665, "feet"),
  23036. name: "Maw",
  23037. image: {
  23038. source: "./media/characters/selicia/maw.svg"
  23039. }
  23040. },
  23041. },
  23042. [
  23043. {
  23044. name: "Normal",
  23045. height: math.unit(11, "feet"),
  23046. default: true
  23047. },
  23048. ]
  23049. ))
  23050. characterMakers.push(() => makeCharacter(
  23051. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23052. {
  23053. side: {
  23054. height: math.unit(2 + 6 / 12, "feet"),
  23055. weight: math.unit(30, "lb"),
  23056. name: "Side",
  23057. image: {
  23058. source: "./media/characters/layla/side.svg",
  23059. extra: 244 / 188,
  23060. bottom: 18.2 / 262.1
  23061. }
  23062. },
  23063. back: {
  23064. height: math.unit(2 + 6 / 12, "feet"),
  23065. weight: math.unit(30, "lb"),
  23066. name: "Back",
  23067. image: {
  23068. source: "./media/characters/layla/back.svg",
  23069. extra: 308 / 241.5,
  23070. bottom: 8.9 / 316.8
  23071. }
  23072. },
  23073. cumming: {
  23074. height: math.unit(2 + 6 / 12, "feet"),
  23075. weight: math.unit(30, "lb"),
  23076. name: "Cumming",
  23077. image: {
  23078. source: "./media/characters/layla/cumming.svg",
  23079. extra: 342 / 279,
  23080. bottom: 595 / 938
  23081. }
  23082. },
  23083. dickFlaccid: {
  23084. height: math.unit(2.595, "feet"),
  23085. name: "Flaccid Genitals",
  23086. image: {
  23087. source: "./media/characters/layla/dick-flaccid.svg"
  23088. }
  23089. },
  23090. dickErect: {
  23091. height: math.unit(2.359, "feet"),
  23092. name: "Erect Genitals",
  23093. image: {
  23094. source: "./media/characters/layla/dick-erect.svg"
  23095. }
  23096. },
  23097. },
  23098. [
  23099. {
  23100. name: "Micro",
  23101. height: math.unit(1, "inch")
  23102. },
  23103. {
  23104. name: "Small",
  23105. height: math.unit(1, "foot")
  23106. },
  23107. {
  23108. name: "Normal",
  23109. height: math.unit(2 + 6 / 12, "feet"),
  23110. default: true
  23111. },
  23112. {
  23113. name: "Macro",
  23114. height: math.unit(200, "feet")
  23115. },
  23116. {
  23117. name: "Megamacro",
  23118. height: math.unit(1000, "miles")
  23119. },
  23120. {
  23121. name: "Planetary",
  23122. height: math.unit(8000, "miles")
  23123. },
  23124. {
  23125. name: "True Layla",
  23126. height: math.unit(200000 * 7, "multiverses")
  23127. },
  23128. ]
  23129. ))
  23130. characterMakers.push(() => makeCharacter(
  23131. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23132. {
  23133. back: {
  23134. height: math.unit(10.5, "feet"),
  23135. weight: math.unit(800, "lb"),
  23136. name: "Back",
  23137. image: {
  23138. source: "./media/characters/knox/back.svg",
  23139. extra: 1486 / 1089,
  23140. bottom: 107 / 1601.4
  23141. }
  23142. },
  23143. side: {
  23144. height: math.unit(10.5, "feet"),
  23145. weight: math.unit(800, "lb"),
  23146. name: "Side",
  23147. image: {
  23148. source: "./media/characters/knox/side.svg",
  23149. extra: 244 / 218,
  23150. bottom: 14 / 260
  23151. }
  23152. },
  23153. },
  23154. [
  23155. {
  23156. name: "Compact",
  23157. height: math.unit(10.5, "feet"),
  23158. default: true
  23159. },
  23160. {
  23161. name: "Dynamax",
  23162. height: math.unit(210, "feet")
  23163. },
  23164. {
  23165. name: "Full Macro",
  23166. height: math.unit(850, "feet")
  23167. },
  23168. ]
  23169. ))
  23170. characterMakers.push(() => makeCharacter(
  23171. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23172. {
  23173. front: {
  23174. height: math.unit(6, "feet"),
  23175. weight: math.unit(152, "lb"),
  23176. name: "Front",
  23177. image: {
  23178. source: "./media/characters/shin-pikachu/front.svg",
  23179. extra: 1574 / 1480,
  23180. bottom: 53.3 / 1626
  23181. }
  23182. },
  23183. hand: {
  23184. height: math.unit(1.055, "feet"),
  23185. name: "Hand",
  23186. image: {
  23187. source: "./media/characters/shin-pikachu/hand.svg"
  23188. }
  23189. },
  23190. foot: {
  23191. height: math.unit(1.1, "feet"),
  23192. name: "Foot",
  23193. image: {
  23194. source: "./media/characters/shin-pikachu/foot.svg"
  23195. }
  23196. },
  23197. collar: {
  23198. height: math.unit(0.386, "feet"),
  23199. name: "Collar",
  23200. image: {
  23201. source: "./media/characters/shin-pikachu/collar.svg"
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Smallest",
  23208. height: math.unit(0.5, "inches")
  23209. },
  23210. {
  23211. name: "Micro",
  23212. height: math.unit(6, "inches")
  23213. },
  23214. {
  23215. name: "Normal",
  23216. height: math.unit(6, "feet"),
  23217. default: true
  23218. },
  23219. {
  23220. name: "Macro",
  23221. height: math.unit(150, "feet")
  23222. },
  23223. ]
  23224. ))
  23225. characterMakers.push(() => makeCharacter(
  23226. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23227. {
  23228. front: {
  23229. height: math.unit(28, "feet"),
  23230. weight: math.unit(10500, "lb"),
  23231. name: "Front",
  23232. image: {
  23233. source: "./media/characters/kayda/front.svg",
  23234. extra: 1536 / 1428,
  23235. bottom: 68.7 / 1603
  23236. }
  23237. },
  23238. back: {
  23239. height: math.unit(28, "feet"),
  23240. weight: math.unit(10500, "lb"),
  23241. name: "Back",
  23242. image: {
  23243. source: "./media/characters/kayda/back.svg",
  23244. extra: 1557 / 1464,
  23245. bottom: 39.5 / 1597.49
  23246. }
  23247. },
  23248. dick: {
  23249. height: math.unit(3.858, "feet"),
  23250. name: "Dick",
  23251. image: {
  23252. source: "./media/characters/kayda/dick.svg"
  23253. }
  23254. },
  23255. },
  23256. [
  23257. {
  23258. name: "Macro",
  23259. height: math.unit(28, "feet"),
  23260. default: true
  23261. },
  23262. ]
  23263. ))
  23264. characterMakers.push(() => makeCharacter(
  23265. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23266. {
  23267. front: {
  23268. height: math.unit(10 + 11 / 12, "feet"),
  23269. weight: math.unit(1400, "lb"),
  23270. name: "Front",
  23271. image: {
  23272. source: "./media/characters/brian/front.svg",
  23273. extra: 737 / 692,
  23274. bottom: 55.4 / 785
  23275. }
  23276. },
  23277. },
  23278. [
  23279. {
  23280. name: "Normal",
  23281. height: math.unit(10 + 11 / 12, "feet"),
  23282. default: true
  23283. },
  23284. ]
  23285. ))
  23286. characterMakers.push(() => makeCharacter(
  23287. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23288. {
  23289. front: {
  23290. height: math.unit(5 + 8 / 12, "feet"),
  23291. weight: math.unit(140, "lb"),
  23292. name: "Front",
  23293. image: {
  23294. source: "./media/characters/khemri/front.svg",
  23295. extra: 4780 / 4059,
  23296. bottom: 80.1 / 4859.25
  23297. }
  23298. },
  23299. },
  23300. [
  23301. {
  23302. name: "Micro",
  23303. height: math.unit(6, "inches")
  23304. },
  23305. {
  23306. name: "Normal",
  23307. height: math.unit(5 + 8 / 12, "feet"),
  23308. default: true
  23309. },
  23310. ]
  23311. ))
  23312. characterMakers.push(() => makeCharacter(
  23313. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23314. {
  23315. front: {
  23316. height: math.unit(13, "feet"),
  23317. weight: math.unit(1700, "lb"),
  23318. name: "Front",
  23319. image: {
  23320. source: "./media/characters/felix-braveheart/front.svg",
  23321. extra: 1222 / 1157,
  23322. bottom: 53.2 / 1280
  23323. }
  23324. },
  23325. back: {
  23326. height: math.unit(13, "feet"),
  23327. weight: math.unit(1700, "lb"),
  23328. name: "Back",
  23329. image: {
  23330. source: "./media/characters/felix-braveheart/back.svg",
  23331. extra: 1277 / 1203,
  23332. bottom: 50.2 / 1327
  23333. }
  23334. },
  23335. feral: {
  23336. height: math.unit(6, "feet"),
  23337. weight: math.unit(400, "lb"),
  23338. name: "Feral",
  23339. image: {
  23340. source: "./media/characters/felix-braveheart/feral.svg",
  23341. extra: 682 / 625,
  23342. bottom: 6.9 / 688
  23343. }
  23344. },
  23345. },
  23346. [
  23347. {
  23348. name: "Normal",
  23349. height: math.unit(13, "feet"),
  23350. default: true
  23351. },
  23352. ]
  23353. ))
  23354. characterMakers.push(() => makeCharacter(
  23355. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23356. {
  23357. side: {
  23358. height: math.unit(5 + 11 / 12, "feet"),
  23359. weight: math.unit(1400, "lb"),
  23360. name: "Side",
  23361. image: {
  23362. source: "./media/characters/shadow-blade/side.svg",
  23363. extra: 1726 / 1267,
  23364. bottom: 58.4 / 1785
  23365. }
  23366. },
  23367. },
  23368. [
  23369. {
  23370. name: "Normal",
  23371. height: math.unit(5 + 11 / 12, "feet"),
  23372. default: true
  23373. },
  23374. ]
  23375. ))
  23376. characterMakers.push(() => makeCharacter(
  23377. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23378. {
  23379. front: {
  23380. height: math.unit(1 + 6 / 12, "feet"),
  23381. weight: math.unit(25, "lb"),
  23382. name: "Front",
  23383. image: {
  23384. source: "./media/characters/karla-halldor/front.svg",
  23385. extra: 1459 / 1383,
  23386. bottom: 12 / 1472
  23387. }
  23388. },
  23389. },
  23390. [
  23391. {
  23392. name: "Normal",
  23393. height: math.unit(1 + 6 / 12, "feet"),
  23394. default: true
  23395. },
  23396. ]
  23397. ))
  23398. characterMakers.push(() => makeCharacter(
  23399. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23400. {
  23401. front: {
  23402. height: math.unit(6 + 2 / 12, "feet"),
  23403. weight: math.unit(160, "lb"),
  23404. name: "Front",
  23405. image: {
  23406. source: "./media/characters/ariam/front.svg",
  23407. extra: 714 / 617,
  23408. bottom: 23.4 / 737,
  23409. }
  23410. },
  23411. squatting: {
  23412. height: math.unit(4.1, "feet"),
  23413. weight: math.unit(160, "lb"),
  23414. name: "Squatting",
  23415. image: {
  23416. source: "./media/characters/ariam/squatting.svg",
  23417. extra: 2617 / 2112,
  23418. bottom: 61.2 / 2681,
  23419. }
  23420. },
  23421. },
  23422. [
  23423. {
  23424. name: "Normal",
  23425. height: math.unit(6 + 2 / 12, "feet"),
  23426. default: true
  23427. },
  23428. {
  23429. name: "Normal+",
  23430. height: math.unit(4, "meters")
  23431. },
  23432. {
  23433. name: "Macro",
  23434. height: math.unit(50, "meters")
  23435. },
  23436. {
  23437. name: "Macro+",
  23438. height: math.unit(100, "meters")
  23439. },
  23440. {
  23441. name: "Megamacro",
  23442. height: math.unit(20, "km")
  23443. },
  23444. ]
  23445. ))
  23446. characterMakers.push(() => makeCharacter(
  23447. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23448. {
  23449. front: {
  23450. height: math.unit(1.67, "meters"),
  23451. weight: math.unit(140, "lb"),
  23452. name: "Front",
  23453. image: {
  23454. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23455. extra: 438 / 410,
  23456. bottom: 0.75 / 439
  23457. }
  23458. },
  23459. },
  23460. [
  23461. {
  23462. name: "Shrunken",
  23463. height: math.unit(7.6, "cm")
  23464. },
  23465. {
  23466. name: "Human Scale",
  23467. height: math.unit(1.67, "meters")
  23468. },
  23469. {
  23470. name: "Wolxi Scale",
  23471. height: math.unit(36.7, "meters"),
  23472. default: true
  23473. },
  23474. ]
  23475. ))
  23476. characterMakers.push(() => makeCharacter(
  23477. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23478. {
  23479. front: {
  23480. height: math.unit(1.73, "meters"),
  23481. weight: math.unit(240, "lb"),
  23482. name: "Front",
  23483. image: {
  23484. source: "./media/characters/izue-two-mothers/front.svg",
  23485. extra: 469 / 437,
  23486. bottom: 1.24 / 470.6
  23487. }
  23488. },
  23489. },
  23490. [
  23491. {
  23492. name: "Shrunken",
  23493. height: math.unit(7.86, "cm")
  23494. },
  23495. {
  23496. name: "Human Scale",
  23497. height: math.unit(1.73, "meters")
  23498. },
  23499. {
  23500. name: "Wolxi Scale",
  23501. height: math.unit(38, "meters"),
  23502. default: true
  23503. },
  23504. ]
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23508. {
  23509. front: {
  23510. height: math.unit(1.55, "meters"),
  23511. weight: math.unit(120, "lb"),
  23512. name: "Front",
  23513. image: {
  23514. source: "./media/characters/teeku-love-shack/front.svg",
  23515. extra: 387 / 362,
  23516. bottom: 1.51 / 388
  23517. }
  23518. },
  23519. },
  23520. [
  23521. {
  23522. name: "Shrunken",
  23523. height: math.unit(7, "cm")
  23524. },
  23525. {
  23526. name: "Human Scale",
  23527. height: math.unit(1.55, "meters")
  23528. },
  23529. {
  23530. name: "Wolxi Scale",
  23531. height: math.unit(34.1, "meters"),
  23532. default: true
  23533. },
  23534. ]
  23535. ))
  23536. characterMakers.push(() => makeCharacter(
  23537. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23538. {
  23539. front: {
  23540. height: math.unit(1.83, "meters"),
  23541. weight: math.unit(135, "lb"),
  23542. name: "Front",
  23543. image: {
  23544. source: "./media/characters/dejma-the-red/front.svg",
  23545. extra: 480 / 458,
  23546. bottom: 1.8 / 482
  23547. }
  23548. },
  23549. },
  23550. [
  23551. {
  23552. name: "Shrunken",
  23553. height: math.unit(8.3, "cm")
  23554. },
  23555. {
  23556. name: "Human Scale",
  23557. height: math.unit(1.83, "meters")
  23558. },
  23559. {
  23560. name: "Wolxi Scale",
  23561. height: math.unit(40, "meters"),
  23562. default: true
  23563. },
  23564. ]
  23565. ))
  23566. characterMakers.push(() => makeCharacter(
  23567. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23568. {
  23569. front: {
  23570. height: math.unit(1.78, "meters"),
  23571. weight: math.unit(65, "kg"),
  23572. name: "Front",
  23573. image: {
  23574. source: "./media/characters/aki/front.svg",
  23575. extra: 452 / 415
  23576. }
  23577. },
  23578. frontNsfw: {
  23579. height: math.unit(1.78, "meters"),
  23580. weight: math.unit(65, "kg"),
  23581. name: "Front (NSFW)",
  23582. image: {
  23583. source: "./media/characters/aki/front-nsfw.svg",
  23584. extra: 452 / 415
  23585. }
  23586. },
  23587. back: {
  23588. height: math.unit(1.78, "meters"),
  23589. weight: math.unit(65, "kg"),
  23590. name: "Back",
  23591. image: {
  23592. source: "./media/characters/aki/back.svg",
  23593. extra: 452 / 415
  23594. }
  23595. },
  23596. rump: {
  23597. height: math.unit(2.05, "feet"),
  23598. name: "Rump",
  23599. image: {
  23600. source: "./media/characters/aki/rump.svg"
  23601. }
  23602. },
  23603. dick: {
  23604. height: math.unit(0.95, "feet"),
  23605. name: "Dick",
  23606. image: {
  23607. source: "./media/characters/aki/dick.svg"
  23608. }
  23609. },
  23610. },
  23611. [
  23612. {
  23613. name: "Micro",
  23614. height: math.unit(15, "cm")
  23615. },
  23616. {
  23617. name: "Normal",
  23618. height: math.unit(178, "cm"),
  23619. default: true
  23620. },
  23621. {
  23622. name: "Macro",
  23623. height: math.unit(214, "m")
  23624. },
  23625. {
  23626. name: "Macro+",
  23627. height: math.unit(534, "m")
  23628. },
  23629. ]
  23630. ))
  23631. characterMakers.push(() => makeCharacter(
  23632. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23633. {
  23634. front: {
  23635. height: math.unit(5 + 5 / 12, "feet"),
  23636. weight: math.unit(120, "lb"),
  23637. name: "Front",
  23638. image: {
  23639. source: "./media/characters/ari/front.svg",
  23640. extra: 714.5 / 682,
  23641. bottom: 8 / 722.5
  23642. }
  23643. },
  23644. },
  23645. [
  23646. {
  23647. name: "Normal",
  23648. height: math.unit(5 + 5 / 12, "feet")
  23649. },
  23650. {
  23651. name: "Macro",
  23652. height: math.unit(100, "feet"),
  23653. default: true
  23654. },
  23655. {
  23656. name: "Megamacro",
  23657. height: math.unit(100, "miles")
  23658. },
  23659. {
  23660. name: "Gigamacro",
  23661. height: math.unit(80000, "miles")
  23662. },
  23663. ]
  23664. ))
  23665. characterMakers.push(() => makeCharacter(
  23666. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23667. {
  23668. side: {
  23669. height: math.unit(9, "feet"),
  23670. weight: math.unit(400, "kg"),
  23671. name: "Side",
  23672. image: {
  23673. source: "./media/characters/bolt/side.svg",
  23674. extra: 1126 / 896,
  23675. bottom: 60 / 1187.3,
  23676. }
  23677. },
  23678. },
  23679. [
  23680. {
  23681. name: "Micro",
  23682. height: math.unit(5, "inches")
  23683. },
  23684. {
  23685. name: "Normal",
  23686. height: math.unit(9, "feet"),
  23687. default: true
  23688. },
  23689. {
  23690. name: "Macro",
  23691. height: math.unit(700, "feet")
  23692. },
  23693. {
  23694. name: "Max Size",
  23695. height: math.unit(1.52e22, "yottameters")
  23696. },
  23697. ]
  23698. ))
  23699. characterMakers.push(() => makeCharacter(
  23700. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23701. {
  23702. front: {
  23703. height: math.unit(4.53, "meters"),
  23704. weight: math.unit(3, "tons"),
  23705. name: "Front",
  23706. image: {
  23707. source: "./media/characters/draekon-sylviar/front.svg",
  23708. extra: 1228 / 1068,
  23709. bottom: 41 / 1270
  23710. }
  23711. },
  23712. tail: {
  23713. height: math.unit(1.772, "meter"),
  23714. name: "Tail",
  23715. image: {
  23716. source: "./media/characters/draekon-sylviar/tail.svg"
  23717. }
  23718. },
  23719. head: {
  23720. height: math.unit(1.331, "meter"),
  23721. name: "Head",
  23722. image: {
  23723. source: "./media/characters/draekon-sylviar/head.svg"
  23724. }
  23725. },
  23726. hand: {
  23727. height: math.unit(0.564, "meter"),
  23728. name: "Hand",
  23729. image: {
  23730. source: "./media/characters/draekon-sylviar/hand.svg"
  23731. }
  23732. },
  23733. foot: {
  23734. height: math.unit(0.621, "meter"),
  23735. name: "Foot",
  23736. image: {
  23737. source: "./media/characters/draekon-sylviar/foot.svg",
  23738. bottom: 32 / 324
  23739. }
  23740. },
  23741. dick: {
  23742. height: math.unit(61, "cm"),
  23743. name: "Dick",
  23744. image: {
  23745. source: "./media/characters/draekon-sylviar/dick.svg"
  23746. }
  23747. },
  23748. dickseparated: {
  23749. height: math.unit(61, "cm"),
  23750. name: "Dick-separated",
  23751. image: {
  23752. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23753. }
  23754. },
  23755. },
  23756. [
  23757. {
  23758. name: "Small",
  23759. height: math.unit(4.53 / 2, "meters"),
  23760. default: true
  23761. },
  23762. {
  23763. name: "Normal",
  23764. height: math.unit(4.53, "meters"),
  23765. default: true
  23766. },
  23767. {
  23768. name: "Large",
  23769. height: math.unit(4.53 * 2, "meters"),
  23770. },
  23771. ]
  23772. ))
  23773. characterMakers.push(() => makeCharacter(
  23774. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23775. {
  23776. front: {
  23777. height: math.unit(6 + 2 / 12, "feet"),
  23778. weight: math.unit(180, "lb"),
  23779. name: "Front",
  23780. image: {
  23781. source: "./media/characters/brawler/front.svg",
  23782. extra: 3301 / 3027,
  23783. bottom: 138 / 3439
  23784. }
  23785. },
  23786. },
  23787. [
  23788. {
  23789. name: "Normal",
  23790. height: math.unit(6 + 2 / 12, "feet"),
  23791. default: true
  23792. },
  23793. ]
  23794. ))
  23795. characterMakers.push(() => makeCharacter(
  23796. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23797. {
  23798. front: {
  23799. height: math.unit(11, "feet"),
  23800. weight: math.unit(1000, "lb"),
  23801. name: "Front",
  23802. image: {
  23803. source: "./media/characters/alex/front.svg",
  23804. bottom: 44.5 / 620
  23805. }
  23806. },
  23807. },
  23808. [
  23809. {
  23810. name: "Micro",
  23811. height: math.unit(5, "inches")
  23812. },
  23813. {
  23814. name: "Normal",
  23815. height: math.unit(11, "feet"),
  23816. default: true
  23817. },
  23818. {
  23819. name: "Macro",
  23820. height: math.unit(9.5e9, "feet")
  23821. },
  23822. {
  23823. name: "Max Size",
  23824. height: math.unit(1.4e283, "yottameters")
  23825. },
  23826. ]
  23827. ))
  23828. characterMakers.push(() => makeCharacter(
  23829. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23830. {
  23831. female: {
  23832. height: math.unit(29.9, "m"),
  23833. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23834. name: "Female",
  23835. image: {
  23836. source: "./media/characters/zenari/female.svg",
  23837. extra: 3281.6 / 3217,
  23838. bottom: 72.2 / 3353
  23839. }
  23840. },
  23841. male: {
  23842. height: math.unit(27.7, "m"),
  23843. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23844. name: "Male",
  23845. image: {
  23846. source: "./media/characters/zenari/male.svg",
  23847. extra: 3008 / 2991,
  23848. bottom: 54.6 / 3069
  23849. }
  23850. },
  23851. },
  23852. [
  23853. {
  23854. name: "Macro",
  23855. height: math.unit(29.7, "meters"),
  23856. default: true
  23857. },
  23858. ]
  23859. ))
  23860. characterMakers.push(() => makeCharacter(
  23861. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23862. {
  23863. female: {
  23864. height: math.unit(23.8, "m"),
  23865. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23866. name: "Female",
  23867. image: {
  23868. source: "./media/characters/mactarian/female.svg",
  23869. extra: 2662 / 2569,
  23870. bottom: 73 / 2736
  23871. }
  23872. },
  23873. male: {
  23874. height: math.unit(23.8, "m"),
  23875. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23876. name: "Male",
  23877. image: {
  23878. source: "./media/characters/mactarian/male.svg",
  23879. extra: 2673 / 2600,
  23880. bottom: 76 / 2750
  23881. }
  23882. },
  23883. },
  23884. [
  23885. {
  23886. name: "Macro",
  23887. height: math.unit(23.8, "meters"),
  23888. default: true
  23889. },
  23890. ]
  23891. ))
  23892. characterMakers.push(() => makeCharacter(
  23893. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23894. {
  23895. female: {
  23896. height: math.unit(19.3, "m"),
  23897. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23898. name: "Female",
  23899. image: {
  23900. source: "./media/characters/umok/female.svg",
  23901. extra: 2186 / 2078,
  23902. bottom: 87 / 2277
  23903. }
  23904. },
  23905. male: {
  23906. height: math.unit(19.5, "m"),
  23907. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23908. name: "Male",
  23909. image: {
  23910. source: "./media/characters/umok/male.svg",
  23911. extra: 2233 / 2140,
  23912. bottom: 24.4 / 2258
  23913. }
  23914. },
  23915. },
  23916. [
  23917. {
  23918. name: "Macro",
  23919. height: math.unit(19.3, "meters"),
  23920. default: true
  23921. },
  23922. ]
  23923. ))
  23924. characterMakers.push(() => makeCharacter(
  23925. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23926. {
  23927. female: {
  23928. height: math.unit(26.15, "m"),
  23929. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23930. name: "Female",
  23931. image: {
  23932. source: "./media/characters/joraxian/female.svg",
  23933. extra: 2912 / 2824,
  23934. bottom: 36 / 2956
  23935. }
  23936. },
  23937. male: {
  23938. height: math.unit(25.4, "m"),
  23939. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23940. name: "Male",
  23941. image: {
  23942. source: "./media/characters/joraxian/male.svg",
  23943. extra: 2877 / 2721,
  23944. bottom: 82 / 2967
  23945. }
  23946. },
  23947. },
  23948. [
  23949. {
  23950. name: "Macro",
  23951. height: math.unit(26.15, "meters"),
  23952. default: true
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23958. {
  23959. female: {
  23960. height: math.unit(21.6, "m"),
  23961. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23962. name: "Female",
  23963. image: {
  23964. source: "./media/characters/sthara/female.svg",
  23965. extra: 2516 / 2347,
  23966. bottom: 21.5 / 2537
  23967. }
  23968. },
  23969. male: {
  23970. height: math.unit(24, "m"),
  23971. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23972. name: "Male",
  23973. image: {
  23974. source: "./media/characters/sthara/male.svg",
  23975. extra: 2732 / 2607,
  23976. bottom: 23 / 2732
  23977. }
  23978. },
  23979. },
  23980. [
  23981. {
  23982. name: "Macro",
  23983. height: math.unit(21.6, "meters"),
  23984. default: true
  23985. },
  23986. ]
  23987. ))
  23988. characterMakers.push(() => makeCharacter(
  23989. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23990. {
  23991. front: {
  23992. height: math.unit(6 + 4 / 12, "feet"),
  23993. weight: math.unit(175, "lb"),
  23994. name: "Front",
  23995. image: {
  23996. source: "./media/characters/luka-bryzant/front.svg",
  23997. extra: 311 / 289,
  23998. bottom: 4 / 315
  23999. }
  24000. },
  24001. back: {
  24002. height: math.unit(6 + 4 / 12, "feet"),
  24003. weight: math.unit(175, "lb"),
  24004. name: "Back",
  24005. image: {
  24006. source: "./media/characters/luka-bryzant/back.svg",
  24007. extra: 311 / 289,
  24008. bottom: 3.8 / 313.7
  24009. }
  24010. },
  24011. },
  24012. [
  24013. {
  24014. name: "Micro",
  24015. height: math.unit(10, "inches")
  24016. },
  24017. {
  24018. name: "Normal",
  24019. height: math.unit(6 + 4 / 12, "feet"),
  24020. default: true
  24021. },
  24022. {
  24023. name: "Large",
  24024. height: math.unit(12, "feet")
  24025. },
  24026. ]
  24027. ))
  24028. characterMakers.push(() => makeCharacter(
  24029. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24030. {
  24031. front: {
  24032. height: math.unit(5 + 7 / 12, "feet"),
  24033. weight: math.unit(185, "lb"),
  24034. name: "Front",
  24035. image: {
  24036. source: "./media/characters/aman-aquila/front.svg",
  24037. extra: 1013 / 976,
  24038. bottom: 45.6 / 1057
  24039. }
  24040. },
  24041. side: {
  24042. height: math.unit(5 + 7 / 12, "feet"),
  24043. weight: math.unit(185, "lb"),
  24044. name: "Side",
  24045. image: {
  24046. source: "./media/characters/aman-aquila/side.svg",
  24047. extra: 1054 / 1011,
  24048. bottom: 15 / 1070
  24049. }
  24050. },
  24051. back: {
  24052. height: math.unit(5 + 7 / 12, "feet"),
  24053. weight: math.unit(185, "lb"),
  24054. name: "Back",
  24055. image: {
  24056. source: "./media/characters/aman-aquila/back.svg",
  24057. extra: 1026 / 970,
  24058. bottom: 12 / 1039
  24059. }
  24060. },
  24061. head: {
  24062. height: math.unit(1.211, "feet"),
  24063. name: "Head",
  24064. image: {
  24065. source: "./media/characters/aman-aquila/head.svg",
  24066. }
  24067. },
  24068. },
  24069. [
  24070. {
  24071. name: "Minimicro",
  24072. height: math.unit(0.057, "inches")
  24073. },
  24074. {
  24075. name: "Micro",
  24076. height: math.unit(7, "inches")
  24077. },
  24078. {
  24079. name: "Mini",
  24080. height: math.unit(3 + 7 / 12, "feet")
  24081. },
  24082. {
  24083. name: "Normal",
  24084. height: math.unit(5 + 7 / 12, "feet"),
  24085. default: true
  24086. },
  24087. {
  24088. name: "Macro",
  24089. height: math.unit(157 + 7 / 12, "feet")
  24090. },
  24091. {
  24092. name: "Megamacro",
  24093. height: math.unit(1557 + 7 / 12, "feet")
  24094. },
  24095. {
  24096. name: "Gigamacro",
  24097. height: math.unit(15557 + 7 / 12, "feet")
  24098. },
  24099. ]
  24100. ))
  24101. characterMakers.push(() => makeCharacter(
  24102. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24103. {
  24104. front: {
  24105. height: math.unit(3 + 2 / 12, "inches"),
  24106. weight: math.unit(0.3, "ounces"),
  24107. name: "Front",
  24108. image: {
  24109. source: "./media/characters/hiphae/front.svg",
  24110. extra: 1931 / 1683,
  24111. bottom: 24 / 1955
  24112. }
  24113. },
  24114. },
  24115. [
  24116. {
  24117. name: "Normal",
  24118. height: math.unit(3 + 1 / 2, "inches"),
  24119. default: true
  24120. },
  24121. ]
  24122. ))
  24123. characterMakers.push(() => makeCharacter(
  24124. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24125. {
  24126. front: {
  24127. height: math.unit(5 + 10 / 12, "feet"),
  24128. weight: math.unit(165, "lb"),
  24129. name: "Front",
  24130. image: {
  24131. source: "./media/characters/nicky/front.svg",
  24132. extra: 3144 / 2886,
  24133. bottom: 45.6 / 3192
  24134. }
  24135. },
  24136. back: {
  24137. height: math.unit(5 + 10 / 12, "feet"),
  24138. weight: math.unit(165, "lb"),
  24139. name: "Back",
  24140. image: {
  24141. source: "./media/characters/nicky/back.svg",
  24142. extra: 3055 / 2804,
  24143. bottom: 28.4 / 3087
  24144. }
  24145. },
  24146. frontclothed: {
  24147. height: math.unit(5 + 10 / 12, "feet"),
  24148. weight: math.unit(165, "lb"),
  24149. name: "Front-clothed",
  24150. image: {
  24151. source: "./media/characters/nicky/front-clothed.svg",
  24152. extra: 3184.9 / 2926.9,
  24153. bottom: 86.5 / 3239.9
  24154. }
  24155. },
  24156. foot: {
  24157. height: math.unit(1.16, "feet"),
  24158. name: "Foot",
  24159. image: {
  24160. source: "./media/characters/nicky/foot.svg"
  24161. }
  24162. },
  24163. feet: {
  24164. height: math.unit(1.34, "feet"),
  24165. name: "Feet",
  24166. image: {
  24167. source: "./media/characters/nicky/feet.svg"
  24168. }
  24169. },
  24170. maw: {
  24171. height: math.unit(0.9, "feet"),
  24172. name: "Maw",
  24173. image: {
  24174. source: "./media/characters/nicky/maw.svg"
  24175. }
  24176. },
  24177. },
  24178. [
  24179. {
  24180. name: "Normal",
  24181. height: math.unit(5 + 10 / 12, "feet"),
  24182. default: true
  24183. },
  24184. {
  24185. name: "Macro",
  24186. height: math.unit(60, "feet")
  24187. },
  24188. {
  24189. name: "Megamacro",
  24190. height: math.unit(1, "mile")
  24191. },
  24192. ]
  24193. ))
  24194. characterMakers.push(() => makeCharacter(
  24195. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24196. {
  24197. side: {
  24198. height: math.unit(10, "feet"),
  24199. weight: math.unit(600, "lb"),
  24200. name: "Side",
  24201. image: {
  24202. source: "./media/characters/blair/side.svg",
  24203. bottom: 16.6 / 475,
  24204. extra: 458 / 431
  24205. }
  24206. },
  24207. },
  24208. [
  24209. {
  24210. name: "Micro",
  24211. height: math.unit(8, "inches")
  24212. },
  24213. {
  24214. name: "Normal",
  24215. height: math.unit(10, "feet"),
  24216. default: true
  24217. },
  24218. {
  24219. name: "Macro",
  24220. height: math.unit(180, "feet")
  24221. },
  24222. ]
  24223. ))
  24224. characterMakers.push(() => makeCharacter(
  24225. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24226. {
  24227. front: {
  24228. height: math.unit(5 + 4 / 12, "feet"),
  24229. weight: math.unit(125, "lb"),
  24230. name: "Front",
  24231. image: {
  24232. source: "./media/characters/fisher/front.svg",
  24233. extra: 444 / 390,
  24234. bottom: 2 / 444.8
  24235. }
  24236. },
  24237. },
  24238. [
  24239. {
  24240. name: "Micro",
  24241. height: math.unit(4, "inches")
  24242. },
  24243. {
  24244. name: "Normal",
  24245. height: math.unit(5 + 4 / 12, "feet"),
  24246. default: true
  24247. },
  24248. {
  24249. name: "Macro",
  24250. height: math.unit(100, "feet")
  24251. },
  24252. ]
  24253. ))
  24254. characterMakers.push(() => makeCharacter(
  24255. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24256. {
  24257. front: {
  24258. height: math.unit(6.71, "feet"),
  24259. weight: math.unit(200, "lb"),
  24260. capacity: math.unit(1000000, "people"),
  24261. name: "Front",
  24262. image: {
  24263. source: "./media/characters/gliss/front.svg",
  24264. extra: 2347 / 2231,
  24265. bottom: 113 / 2462
  24266. }
  24267. },
  24268. hammerspaceSize: {
  24269. height: math.unit(6.71 * 717, "feet"),
  24270. weight: math.unit(200, "lb"),
  24271. capacity: math.unit(1000000, "people"),
  24272. name: "Hammerspace Size",
  24273. image: {
  24274. source: "./media/characters/gliss/front.svg",
  24275. extra: 2347 / 2231,
  24276. bottom: 113 / 2462
  24277. }
  24278. },
  24279. },
  24280. [
  24281. {
  24282. name: "Normal",
  24283. height: math.unit(6.71, "feet"),
  24284. default: true
  24285. },
  24286. ]
  24287. ))
  24288. characterMakers.push(() => makeCharacter(
  24289. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24290. {
  24291. side: {
  24292. height: math.unit(1.44, "m"),
  24293. weight: math.unit(80, "kg"),
  24294. name: "Side",
  24295. image: {
  24296. source: "./media/characters/dune-anderson/side.svg",
  24297. bottom: 49 / 1426
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Wolf-sized",
  24304. height: math.unit(1.44, "meters")
  24305. },
  24306. {
  24307. name: "Normal",
  24308. height: math.unit(5.05, "meters"),
  24309. default: true
  24310. },
  24311. {
  24312. name: "Big",
  24313. height: math.unit(14.4, "meters")
  24314. },
  24315. {
  24316. name: "Huge",
  24317. height: math.unit(144, "meters")
  24318. },
  24319. ]
  24320. ))
  24321. characterMakers.push(() => makeCharacter(
  24322. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24323. {
  24324. front: {
  24325. height: math.unit(7, "feet"),
  24326. weight: math.unit(425, "lb"),
  24327. name: "Front",
  24328. image: {
  24329. source: "./media/characters/hind/front.svg",
  24330. extra: 2091 / 1860,
  24331. bottom: 129 / 2220
  24332. }
  24333. },
  24334. back: {
  24335. height: math.unit(7, "feet"),
  24336. weight: math.unit(425, "lb"),
  24337. name: "Back",
  24338. image: {
  24339. source: "./media/characters/hind/back.svg",
  24340. extra: 2091 / 1860,
  24341. bottom: 24.6 / 2309
  24342. }
  24343. },
  24344. tail: {
  24345. height: math.unit(2.8, "feet"),
  24346. name: "Tail",
  24347. image: {
  24348. source: "./media/characters/hind/tail.svg"
  24349. }
  24350. },
  24351. head: {
  24352. height: math.unit(2.55, "feet"),
  24353. name: "Head",
  24354. image: {
  24355. source: "./media/characters/hind/head.svg"
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "XS",
  24362. height: math.unit(0.7, "feet")
  24363. },
  24364. {
  24365. name: "Normal",
  24366. height: math.unit(7, "feet"),
  24367. default: true
  24368. },
  24369. {
  24370. name: "XL",
  24371. height: math.unit(70, "feet")
  24372. },
  24373. ]
  24374. ))
  24375. characterMakers.push(() => makeCharacter(
  24376. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24377. {
  24378. front: {
  24379. height: math.unit(6, "feet"),
  24380. weight: math.unit(150, "lb"),
  24381. name: "Front",
  24382. image: {
  24383. source: "./media/characters/dylan-skaven/front.svg",
  24384. extra: 2318 / 2063,
  24385. bottom: 93.4 / 2410
  24386. }
  24387. },
  24388. },
  24389. [
  24390. {
  24391. name: "Nano",
  24392. height: math.unit(1, "mm")
  24393. },
  24394. {
  24395. name: "Micro",
  24396. height: math.unit(1, "cm")
  24397. },
  24398. {
  24399. name: "Normal",
  24400. height: math.unit(2.1, "meters"),
  24401. default: true
  24402. },
  24403. ]
  24404. ))
  24405. characterMakers.push(() => makeCharacter(
  24406. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24407. {
  24408. front: {
  24409. height: math.unit(7 + 5 / 12, "feet"),
  24410. weight: math.unit(357, "lb"),
  24411. name: "Front",
  24412. image: {
  24413. source: "./media/characters/solex-draconov/front.svg",
  24414. extra: 1993 / 1865,
  24415. bottom: 117 / 2111
  24416. }
  24417. },
  24418. },
  24419. [
  24420. {
  24421. name: "Natural Height",
  24422. height: math.unit(7 + 5 / 12, "feet"),
  24423. default: true
  24424. },
  24425. {
  24426. name: "Macro",
  24427. height: math.unit(350, "feet")
  24428. },
  24429. {
  24430. name: "Macro+",
  24431. height: math.unit(1000, "feet")
  24432. },
  24433. {
  24434. name: "Megamacro",
  24435. height: math.unit(20, "km")
  24436. },
  24437. {
  24438. name: "Megamacro+",
  24439. height: math.unit(1000, "km")
  24440. },
  24441. {
  24442. name: "Gigamacro",
  24443. height: math.unit(2.5, "Gm")
  24444. },
  24445. {
  24446. name: "Teramacro",
  24447. height: math.unit(15, "Tm")
  24448. },
  24449. {
  24450. name: "Galactic",
  24451. height: math.unit(30, "Zm")
  24452. },
  24453. {
  24454. name: "Universal",
  24455. height: math.unit(21000, "Ym")
  24456. },
  24457. {
  24458. name: "Omniversal",
  24459. height: math.unit(9.861e50, "Ym")
  24460. },
  24461. {
  24462. name: "Existential",
  24463. height: math.unit(1e300, "meters")
  24464. },
  24465. ]
  24466. ))
  24467. characterMakers.push(() => makeCharacter(
  24468. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24469. {
  24470. side: {
  24471. height: math.unit(25, "feet"),
  24472. weight: math.unit(90000, "lb"),
  24473. name: "Side",
  24474. image: {
  24475. source: "./media/characters/mandarax/side.svg",
  24476. extra: 614 / 332,
  24477. bottom: 55 / 630
  24478. }
  24479. },
  24480. head: {
  24481. height: math.unit(11.4, "feet"),
  24482. name: "Head",
  24483. image: {
  24484. source: "./media/characters/mandarax/head.svg"
  24485. }
  24486. },
  24487. belly: {
  24488. height: math.unit(33, "feet"),
  24489. name: "Belly",
  24490. capacity: math.unit(500, "people"),
  24491. image: {
  24492. source: "./media/characters/mandarax/belly.svg"
  24493. }
  24494. },
  24495. dick: {
  24496. height: math.unit(8.46, "feet"),
  24497. name: "Dick",
  24498. image: {
  24499. source: "./media/characters/mandarax/dick.svg"
  24500. }
  24501. },
  24502. top: {
  24503. height: math.unit(28, "meters"),
  24504. name: "Top",
  24505. image: {
  24506. source: "./media/characters/mandarax/top.svg"
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(25, "feet"),
  24514. default: true
  24515. },
  24516. ]
  24517. ))
  24518. characterMakers.push(() => makeCharacter(
  24519. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24520. {
  24521. front: {
  24522. height: math.unit(5, "feet"),
  24523. weight: math.unit(90, "lb"),
  24524. name: "Front",
  24525. image: {
  24526. source: "./media/characters/pixil/front.svg",
  24527. extra: 2000 / 1618,
  24528. bottom: 12.3 / 2011
  24529. }
  24530. },
  24531. },
  24532. [
  24533. {
  24534. name: "Normal",
  24535. height: math.unit(5, "feet"),
  24536. default: true
  24537. },
  24538. {
  24539. name: "Megamacro",
  24540. height: math.unit(10, "miles"),
  24541. },
  24542. ]
  24543. ))
  24544. characterMakers.push(() => makeCharacter(
  24545. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24546. {
  24547. front: {
  24548. height: math.unit(7 + 2 / 12, "feet"),
  24549. weight: math.unit(200, "lb"),
  24550. name: "Front",
  24551. image: {
  24552. source: "./media/characters/angel/front.svg",
  24553. extra: 1830 / 1737,
  24554. bottom: 22.6 / 1854,
  24555. }
  24556. },
  24557. },
  24558. [
  24559. {
  24560. name: "Normal",
  24561. height: math.unit(7 + 2 / 12, "feet"),
  24562. default: true
  24563. },
  24564. {
  24565. name: "Macro",
  24566. height: math.unit(1000, "feet")
  24567. },
  24568. {
  24569. name: "Megamacro",
  24570. height: math.unit(2, "miles")
  24571. },
  24572. {
  24573. name: "Gigamacro",
  24574. height: math.unit(20, "earths")
  24575. },
  24576. ]
  24577. ))
  24578. characterMakers.push(() => makeCharacter(
  24579. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24580. {
  24581. front: {
  24582. height: math.unit(5, "feet"),
  24583. weight: math.unit(180, "lb"),
  24584. name: "Front",
  24585. image: {
  24586. source: "./media/characters/mekana/front.svg",
  24587. extra: 1671 / 1605,
  24588. bottom: 3.5 / 1691
  24589. }
  24590. },
  24591. side: {
  24592. height: math.unit(5, "feet"),
  24593. weight: math.unit(180, "lb"),
  24594. name: "Side",
  24595. image: {
  24596. source: "./media/characters/mekana/side.svg",
  24597. extra: 1671 / 1605,
  24598. bottom: 3.5 / 1691
  24599. }
  24600. },
  24601. back: {
  24602. height: math.unit(5, "feet"),
  24603. weight: math.unit(180, "lb"),
  24604. name: "Back",
  24605. image: {
  24606. source: "./media/characters/mekana/back.svg",
  24607. extra: 1671 / 1605,
  24608. bottom: 3.5 / 1691
  24609. }
  24610. },
  24611. },
  24612. [
  24613. {
  24614. name: "Normal",
  24615. height: math.unit(5, "feet"),
  24616. default: true
  24617. },
  24618. ]
  24619. ))
  24620. characterMakers.push(() => makeCharacter(
  24621. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24622. {
  24623. front: {
  24624. height: math.unit(4 + 6 / 12, "feet"),
  24625. weight: math.unit(80, "lb"),
  24626. name: "Front",
  24627. image: {
  24628. source: "./media/characters/pixie/front.svg",
  24629. extra: 1924 / 1825,
  24630. bottom: 22.4 / 1946
  24631. }
  24632. },
  24633. },
  24634. [
  24635. {
  24636. name: "Normal",
  24637. height: math.unit(4 + 6 / 12, "feet"),
  24638. default: true
  24639. },
  24640. {
  24641. name: "Macro",
  24642. height: math.unit(40, "feet")
  24643. },
  24644. ]
  24645. ))
  24646. characterMakers.push(() => makeCharacter(
  24647. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24648. {
  24649. front: {
  24650. height: math.unit(2.1, "meters"),
  24651. weight: math.unit(200, "lb"),
  24652. name: "Front",
  24653. image: {
  24654. source: "./media/characters/the-lascivious/front.svg",
  24655. extra: 1 / 0.893,
  24656. bottom: 3.5 / 573.7
  24657. }
  24658. },
  24659. },
  24660. [
  24661. {
  24662. name: "Human Scale",
  24663. height: math.unit(2.1, "meters")
  24664. },
  24665. {
  24666. name: "Wolxi Scale",
  24667. height: math.unit(46.2, "m"),
  24668. default: true
  24669. },
  24670. {
  24671. name: "Boinker of Buildings",
  24672. height: math.unit(10, "km")
  24673. },
  24674. {
  24675. name: "Shagger of Skyscrapers",
  24676. height: math.unit(40, "km")
  24677. },
  24678. {
  24679. name: "Banger of Boroughs",
  24680. height: math.unit(4000, "km")
  24681. },
  24682. {
  24683. name: "Screwer of States",
  24684. height: math.unit(100000, "km")
  24685. },
  24686. {
  24687. name: "Pounder of Planets",
  24688. height: math.unit(2000000, "km")
  24689. },
  24690. ]
  24691. ))
  24692. characterMakers.push(() => makeCharacter(
  24693. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24694. {
  24695. front: {
  24696. height: math.unit(6, "feet"),
  24697. weight: math.unit(150, "lb"),
  24698. name: "Front",
  24699. image: {
  24700. source: "./media/characters/aj/front.svg",
  24701. extra: 2039 / 1562,
  24702. bottom: 40 / 2079
  24703. }
  24704. },
  24705. },
  24706. [
  24707. {
  24708. name: "Normal",
  24709. height: math.unit(11 + 6 / 12, "feet"),
  24710. default: true
  24711. },
  24712. {
  24713. name: "Megamacro",
  24714. height: math.unit(60, "megameters")
  24715. },
  24716. ]
  24717. ))
  24718. characterMakers.push(() => makeCharacter(
  24719. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24720. {
  24721. side: {
  24722. height: math.unit(31 + 8 / 12, "feet"),
  24723. weight: math.unit(75000, "kg"),
  24724. name: "Side",
  24725. image: {
  24726. source: "./media/characters/koros/side.svg",
  24727. extra: 1442 / 1297,
  24728. bottom: 122.7 / 1562
  24729. }
  24730. },
  24731. dicksKingsCrown: {
  24732. height: math.unit(6, "feet"),
  24733. name: "Dicks (King's Crown)",
  24734. image: {
  24735. source: "./media/characters/koros/dicks-kings-crown.svg"
  24736. }
  24737. },
  24738. dicksTailSet: {
  24739. height: math.unit(3, "feet"),
  24740. name: "Dicks (Tail Set)",
  24741. image: {
  24742. source: "./media/characters/koros/dicks-tail-set.svg"
  24743. }
  24744. },
  24745. dickCumming: {
  24746. height: math.unit(7.98, "feet"),
  24747. name: "Dick (Cumming)",
  24748. image: {
  24749. source: "./media/characters/koros/dick-cumming.svg"
  24750. }
  24751. },
  24752. dicksBack: {
  24753. height: math.unit(5.9, "feet"),
  24754. name: "Dicks (Back)",
  24755. image: {
  24756. source: "./media/characters/koros/dicks-back.svg"
  24757. }
  24758. },
  24759. dicksFront: {
  24760. height: math.unit(3.72, "feet"),
  24761. name: "Dicks (Front)",
  24762. image: {
  24763. source: "./media/characters/koros/dicks-front.svg"
  24764. }
  24765. },
  24766. dicksPeeking: {
  24767. height: math.unit(3.0, "feet"),
  24768. name: "Dicks (Peeking)",
  24769. image: {
  24770. source: "./media/characters/koros/dicks-peeking.svg"
  24771. }
  24772. },
  24773. eye: {
  24774. height: math.unit(1.7, "feet"),
  24775. name: "Eye",
  24776. image: {
  24777. source: "./media/characters/koros/eye.svg"
  24778. }
  24779. },
  24780. headFront: {
  24781. height: math.unit(11.69, "feet"),
  24782. name: "Head (Front)",
  24783. image: {
  24784. source: "./media/characters/koros/head-front.svg"
  24785. }
  24786. },
  24787. headSide: {
  24788. height: math.unit(14, "feet"),
  24789. name: "Head (Side)",
  24790. image: {
  24791. source: "./media/characters/koros/head-side.svg"
  24792. }
  24793. },
  24794. leg: {
  24795. height: math.unit(17, "feet"),
  24796. name: "Leg",
  24797. image: {
  24798. source: "./media/characters/koros/leg.svg"
  24799. }
  24800. },
  24801. mawSide: {
  24802. height: math.unit(12.8, "feet"),
  24803. name: "Maw (Side)",
  24804. image: {
  24805. source: "./media/characters/koros/maw-side.svg"
  24806. }
  24807. },
  24808. mawSpitting: {
  24809. height: math.unit(17, "feet"),
  24810. name: "Maw (Spitting)",
  24811. image: {
  24812. source: "./media/characters/koros/maw-spitting.svg"
  24813. }
  24814. },
  24815. slit: {
  24816. height: math.unit(2.8, "feet"),
  24817. name: "Slit",
  24818. image: {
  24819. source: "./media/characters/koros/slit.svg"
  24820. }
  24821. },
  24822. stomach: {
  24823. height: math.unit(6.8, "feet"),
  24824. capacity: math.unit(20, "people"),
  24825. name: "Stomach",
  24826. image: {
  24827. source: "./media/characters/koros/stomach.svg"
  24828. }
  24829. },
  24830. wingspanBottom: {
  24831. height: math.unit(114, "feet"),
  24832. name: "Wingspan (Bottom)",
  24833. image: {
  24834. source: "./media/characters/koros/wingspan-bottom.svg"
  24835. }
  24836. },
  24837. wingspanTop: {
  24838. height: math.unit(104, "feet"),
  24839. name: "Wingspan (Top)",
  24840. image: {
  24841. source: "./media/characters/koros/wingspan-top.svg"
  24842. }
  24843. },
  24844. },
  24845. [
  24846. {
  24847. name: "Normal",
  24848. height: math.unit(31 + 8 / 12, "feet"),
  24849. default: true
  24850. },
  24851. ]
  24852. ))
  24853. characterMakers.push(() => makeCharacter(
  24854. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24855. {
  24856. front: {
  24857. height: math.unit(18 + 5 / 12, "feet"),
  24858. weight: math.unit(3750, "kg"),
  24859. name: "Front",
  24860. image: {
  24861. source: "./media/characters/vexx/front.svg",
  24862. extra: 426 / 396,
  24863. bottom: 31.5 / 458
  24864. }
  24865. },
  24866. maw: {
  24867. height: math.unit(6, "feet"),
  24868. name: "Maw",
  24869. image: {
  24870. source: "./media/characters/vexx/maw.svg"
  24871. }
  24872. },
  24873. },
  24874. [
  24875. {
  24876. name: "Normal",
  24877. height: math.unit(18 + 5 / 12, "feet"),
  24878. default: true
  24879. },
  24880. ]
  24881. ))
  24882. characterMakers.push(() => makeCharacter(
  24883. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24884. {
  24885. front: {
  24886. height: math.unit(17 + 6 / 12, "feet"),
  24887. weight: math.unit(150, "lb"),
  24888. name: "Front",
  24889. image: {
  24890. source: "./media/characters/baadra/front.svg",
  24891. extra: 3137 / 2890,
  24892. bottom: 168.4 / 3305
  24893. }
  24894. },
  24895. back: {
  24896. height: math.unit(17 + 6 / 12, "feet"),
  24897. weight: math.unit(150, "lb"),
  24898. name: "Back",
  24899. image: {
  24900. source: "./media/characters/baadra/back.svg",
  24901. extra: 3142 / 2890,
  24902. bottom: 220 / 3371
  24903. }
  24904. },
  24905. head: {
  24906. height: math.unit(5.45, "feet"),
  24907. name: "Head",
  24908. image: {
  24909. source: "./media/characters/baadra/head.svg"
  24910. }
  24911. },
  24912. headAngry: {
  24913. height: math.unit(4.95, "feet"),
  24914. name: "Head (Angry)",
  24915. image: {
  24916. source: "./media/characters/baadra/head-angry.svg"
  24917. }
  24918. },
  24919. headOpen: {
  24920. height: math.unit(6, "feet"),
  24921. name: "Head (Open)",
  24922. image: {
  24923. source: "./media/characters/baadra/head-open.svg"
  24924. }
  24925. },
  24926. },
  24927. [
  24928. {
  24929. name: "Normal",
  24930. height: math.unit(17 + 6 / 12, "feet"),
  24931. default: true
  24932. },
  24933. ]
  24934. ))
  24935. characterMakers.push(() => makeCharacter(
  24936. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24937. {
  24938. front: {
  24939. height: math.unit(7 + 3 / 12, "feet"),
  24940. weight: math.unit(180, "lb"),
  24941. name: "Front",
  24942. image: {
  24943. source: "./media/characters/juri/front.svg",
  24944. extra: 1401 / 1237,
  24945. bottom: 18.5 / 1418
  24946. }
  24947. },
  24948. side: {
  24949. height: math.unit(7 + 3 / 12, "feet"),
  24950. weight: math.unit(180, "lb"),
  24951. name: "Side",
  24952. image: {
  24953. source: "./media/characters/juri/side.svg",
  24954. extra: 1424 / 1242,
  24955. bottom: 18.5 / 1447
  24956. }
  24957. },
  24958. sitting: {
  24959. height: math.unit(6, "feet"),
  24960. weight: math.unit(180, "lb"),
  24961. name: "Sitting",
  24962. image: {
  24963. source: "./media/characters/juri/sitting.svg",
  24964. extra: 1270 / 1143,
  24965. bottom: 100 / 1343
  24966. }
  24967. },
  24968. back: {
  24969. height: math.unit(7 + 3 / 12, "feet"),
  24970. weight: math.unit(180, "lb"),
  24971. name: "Back",
  24972. image: {
  24973. source: "./media/characters/juri/back.svg",
  24974. extra: 1377 / 1240,
  24975. bottom: 23.7 / 1405
  24976. }
  24977. },
  24978. maw: {
  24979. height: math.unit(2.8, "feet"),
  24980. name: "Maw",
  24981. image: {
  24982. source: "./media/characters/juri/maw.svg"
  24983. }
  24984. },
  24985. stomach: {
  24986. height: math.unit(0.89, "feet"),
  24987. capacity: math.unit(4, "liters"),
  24988. name: "Stomach",
  24989. image: {
  24990. source: "./media/characters/juri/stomach.svg"
  24991. }
  24992. },
  24993. },
  24994. [
  24995. {
  24996. name: "Normal",
  24997. height: math.unit(7 + 3 / 12, "feet"),
  24998. default: true
  24999. },
  25000. ]
  25001. ))
  25002. characterMakers.push(() => makeCharacter(
  25003. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25004. {
  25005. fox: {
  25006. height: math.unit(5 + 6 / 12, "feet"),
  25007. weight: math.unit(140, "lb"),
  25008. name: "Fox",
  25009. image: {
  25010. source: "./media/characters/maxene-sita/fox.svg",
  25011. extra: 146 / 138,
  25012. bottom: 2.1 / 148.19
  25013. }
  25014. },
  25015. foxLaying: {
  25016. height: math.unit(1.70, "feet"),
  25017. weight: math.unit(140, "lb"),
  25018. name: "Fox (Laying)",
  25019. image: {
  25020. source: "./media/characters/maxene-sita/fox-laying.svg",
  25021. extra: 910 / 572,
  25022. bottom: 71 / 981
  25023. }
  25024. },
  25025. kitsune: {
  25026. height: math.unit(10, "feet"),
  25027. weight: math.unit(800, "lb"),
  25028. name: "Kitsune",
  25029. image: {
  25030. source: "./media/characters/maxene-sita/kitsune.svg",
  25031. extra: 185 / 176,
  25032. bottom: 4.7 / 189.9
  25033. }
  25034. },
  25035. hellhound: {
  25036. height: math.unit(10, "feet"),
  25037. weight: math.unit(700, "lb"),
  25038. name: "Hellhound",
  25039. image: {
  25040. source: "./media/characters/maxene-sita/hellhound.svg",
  25041. extra: 1600 / 1545,
  25042. bottom: 81 / 1681
  25043. }
  25044. },
  25045. },
  25046. [
  25047. {
  25048. name: "Normal",
  25049. height: math.unit(5 + 6 / 12, "feet"),
  25050. default: true
  25051. },
  25052. ]
  25053. ))
  25054. characterMakers.push(() => makeCharacter(
  25055. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25056. {
  25057. front: {
  25058. height: math.unit(3 + 4 / 12, "feet"),
  25059. weight: math.unit(70, "lb"),
  25060. name: "Front",
  25061. image: {
  25062. source: "./media/characters/maia/front.svg",
  25063. extra: 227 / 219.5,
  25064. bottom: 40 / 267
  25065. }
  25066. },
  25067. back: {
  25068. height: math.unit(3 + 4 / 12, "feet"),
  25069. weight: math.unit(70, "lb"),
  25070. name: "Back",
  25071. image: {
  25072. source: "./media/characters/maia/back.svg",
  25073. extra: 237 / 225
  25074. }
  25075. },
  25076. },
  25077. [
  25078. {
  25079. name: "Normal",
  25080. height: math.unit(3 + 4 / 12, "feet"),
  25081. default: true
  25082. },
  25083. ]
  25084. ))
  25085. characterMakers.push(() => makeCharacter(
  25086. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25087. {
  25088. front: {
  25089. height: math.unit(5 + 10 / 12, "feet"),
  25090. weight: math.unit(197, "lb"),
  25091. name: "Front",
  25092. image: {
  25093. source: "./media/characters/jabaro/front.svg",
  25094. extra: 225 / 216,
  25095. bottom: 5.06 / 230
  25096. }
  25097. },
  25098. back: {
  25099. height: math.unit(5 + 10 / 12, "feet"),
  25100. weight: math.unit(197, "lb"),
  25101. name: "Back",
  25102. image: {
  25103. source: "./media/characters/jabaro/back.svg",
  25104. extra: 225 / 219,
  25105. bottom: 1.9 / 227
  25106. }
  25107. },
  25108. },
  25109. [
  25110. {
  25111. name: "Normal",
  25112. height: math.unit(5 + 10 / 12, "feet"),
  25113. default: true
  25114. },
  25115. ]
  25116. ))
  25117. characterMakers.push(() => makeCharacter(
  25118. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25119. {
  25120. front: {
  25121. height: math.unit(5 + 8 / 12, "feet"),
  25122. weight: math.unit(139, "lb"),
  25123. name: "Front",
  25124. image: {
  25125. source: "./media/characters/risa/front.svg",
  25126. extra: 270 / 260,
  25127. bottom: 11.2 / 282
  25128. }
  25129. },
  25130. back: {
  25131. height: math.unit(5 + 8 / 12, "feet"),
  25132. weight: math.unit(139, "lb"),
  25133. name: "Back",
  25134. image: {
  25135. source: "./media/characters/risa/back.svg",
  25136. extra: 264 / 255,
  25137. bottom: 4 / 268
  25138. }
  25139. },
  25140. },
  25141. [
  25142. {
  25143. name: "Normal",
  25144. height: math.unit(5 + 8 / 12, "feet"),
  25145. default: true
  25146. },
  25147. ]
  25148. ))
  25149. characterMakers.push(() => makeCharacter(
  25150. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25151. {
  25152. front: {
  25153. height: math.unit(2 + 11 / 12, "feet"),
  25154. weight: math.unit(30, "lb"),
  25155. name: "Front",
  25156. image: {
  25157. source: "./media/characters/weatley/front.svg",
  25158. bottom: 10.7 / 414,
  25159. extra: 403.5 / 362
  25160. }
  25161. },
  25162. back: {
  25163. height: math.unit(2 + 11 / 12, "feet"),
  25164. weight: math.unit(30, "lb"),
  25165. name: "Back",
  25166. image: {
  25167. source: "./media/characters/weatley/back.svg",
  25168. bottom: 10.7 / 414,
  25169. extra: 403.5 / 362
  25170. }
  25171. },
  25172. },
  25173. [
  25174. {
  25175. name: "Normal",
  25176. height: math.unit(2 + 11 / 12, "feet"),
  25177. default: true
  25178. },
  25179. ]
  25180. ))
  25181. characterMakers.push(() => makeCharacter(
  25182. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25183. {
  25184. front: {
  25185. height: math.unit(5 + 2 / 12, "feet"),
  25186. weight: math.unit(50, "kg"),
  25187. name: "Front",
  25188. image: {
  25189. source: "./media/characters/mercury-crescent/front.svg",
  25190. extra: 1088 / 1033,
  25191. bottom: 18.9 / 1109
  25192. }
  25193. },
  25194. },
  25195. [
  25196. {
  25197. name: "Normal",
  25198. height: math.unit(5 + 2 / 12, "feet"),
  25199. default: true
  25200. },
  25201. ]
  25202. ))
  25203. characterMakers.push(() => makeCharacter(
  25204. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25205. {
  25206. front: {
  25207. height: math.unit(2, "feet"),
  25208. weight: math.unit(15, "kg"),
  25209. name: "Front",
  25210. image: {
  25211. source: "./media/characters/diamond-jones/front.svg",
  25212. bottom: 16 / 568
  25213. }
  25214. },
  25215. },
  25216. [
  25217. {
  25218. name: "Normal",
  25219. height: math.unit(2, "feet"),
  25220. default: true
  25221. },
  25222. ]
  25223. ))
  25224. characterMakers.push(() => makeCharacter(
  25225. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25226. {
  25227. front: {
  25228. height: math.unit(3, "feet"),
  25229. weight: math.unit(30, "kg"),
  25230. name: "Front",
  25231. image: {
  25232. source: "./media/characters/sweet-bit/front.svg",
  25233. extra: 675 / 567,
  25234. bottom: 27.7 / 703
  25235. }
  25236. },
  25237. },
  25238. [
  25239. {
  25240. name: "Normal",
  25241. height: math.unit(3, "feet"),
  25242. default: true
  25243. },
  25244. ]
  25245. ))
  25246. characterMakers.push(() => makeCharacter(
  25247. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25248. {
  25249. side: {
  25250. height: math.unit(9.178, "feet"),
  25251. weight: math.unit(500, "lb"),
  25252. name: "Side",
  25253. image: {
  25254. source: "./media/characters/umbrazen/side.svg",
  25255. extra: 1730 / 1473,
  25256. bottom: 34.6 / 1765
  25257. }
  25258. },
  25259. },
  25260. [
  25261. {
  25262. name: "Normal",
  25263. height: math.unit(9.178, "feet"),
  25264. default: true
  25265. },
  25266. ]
  25267. ))
  25268. characterMakers.push(() => makeCharacter(
  25269. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25270. {
  25271. front: {
  25272. height: math.unit(10, "feet"),
  25273. weight: math.unit(750, "lb"),
  25274. name: "Front",
  25275. image: {
  25276. source: "./media/characters/arlist/front.svg",
  25277. extra: 961 / 778,
  25278. bottom: 6.2 / 986
  25279. }
  25280. },
  25281. },
  25282. [
  25283. {
  25284. name: "Normal",
  25285. height: math.unit(10, "feet"),
  25286. default: true
  25287. },
  25288. ]
  25289. ))
  25290. characterMakers.push(() => makeCharacter(
  25291. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25292. {
  25293. front: {
  25294. height: math.unit(5 + 1 / 12, "feet"),
  25295. weight: math.unit(110, "lb"),
  25296. name: "Front",
  25297. image: {
  25298. source: "./media/characters/aradel/front.svg",
  25299. extra: 324 / 303,
  25300. bottom: 3.6 / 329.4
  25301. }
  25302. },
  25303. },
  25304. [
  25305. {
  25306. name: "Normal",
  25307. height: math.unit(5 + 1 / 12, "feet"),
  25308. default: true
  25309. },
  25310. ]
  25311. ))
  25312. characterMakers.push(() => makeCharacter(
  25313. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25314. {
  25315. front: {
  25316. height: math.unit(3 + 8 / 12, "feet"),
  25317. weight: math.unit(50, "lb"),
  25318. name: "Front",
  25319. image: {
  25320. source: "./media/characters/serryn/front.svg",
  25321. extra: 1792 / 1656,
  25322. bottom: 43.5 / 1840
  25323. }
  25324. },
  25325. },
  25326. [
  25327. {
  25328. name: "Normal",
  25329. height: math.unit(3 + 8 / 12, "feet"),
  25330. default: true
  25331. },
  25332. ]
  25333. ))
  25334. characterMakers.push(() => makeCharacter(
  25335. { name: "Xavier Thyme" },
  25336. {
  25337. front: {
  25338. height: math.unit(7 + 10 / 12, "feet"),
  25339. weight: math.unit(255, "lb"),
  25340. name: "Front",
  25341. image: {
  25342. source: "./media/characters/xavier-thyme/front.svg",
  25343. extra: 3733 / 3642,
  25344. bottom: 131 / 3869
  25345. }
  25346. },
  25347. frontRaven: {
  25348. height: math.unit(7 + 10 / 12, "feet"),
  25349. weight: math.unit(255, "lb"),
  25350. name: "Front (Raven)",
  25351. image: {
  25352. source: "./media/characters/xavier-thyme/front-raven.svg",
  25353. extra: 4385 / 3642,
  25354. bottom: 131 / 4517
  25355. }
  25356. },
  25357. },
  25358. [
  25359. {
  25360. name: "Normal",
  25361. height: math.unit(7 + 10 / 12, "feet"),
  25362. default: true
  25363. },
  25364. ]
  25365. ))
  25366. characterMakers.push(() => makeCharacter(
  25367. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25368. {
  25369. front: {
  25370. height: math.unit(1.6, "m"),
  25371. weight: math.unit(50, "kg"),
  25372. name: "Front",
  25373. image: {
  25374. source: "./media/characters/kiki/front.svg",
  25375. extra: 4682 / 3610,
  25376. bottom: 115 / 4777
  25377. }
  25378. },
  25379. },
  25380. [
  25381. {
  25382. name: "Normal",
  25383. height: math.unit(1.6, "meters"),
  25384. default: true
  25385. },
  25386. ]
  25387. ))
  25388. characterMakers.push(() => makeCharacter(
  25389. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25390. {
  25391. front: {
  25392. height: math.unit(50, "m"),
  25393. weight: math.unit(500, "tonnes"),
  25394. name: "Front",
  25395. image: {
  25396. source: "./media/characters/ryoko/front.svg",
  25397. extra: 4632 / 3926,
  25398. bottom: 193 / 4823
  25399. }
  25400. },
  25401. },
  25402. [
  25403. {
  25404. name: "Normal",
  25405. height: math.unit(50, "meters"),
  25406. default: true
  25407. },
  25408. ]
  25409. ))
  25410. characterMakers.push(() => makeCharacter(
  25411. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25412. {
  25413. front: {
  25414. height: math.unit(30, "m"),
  25415. weight: math.unit(22, "tonnes"),
  25416. name: "Front",
  25417. image: {
  25418. source: "./media/characters/elio/front.svg",
  25419. extra: 4582 / 3720,
  25420. bottom: 236 / 4828
  25421. }
  25422. },
  25423. },
  25424. [
  25425. {
  25426. name: "Normal",
  25427. height: math.unit(30, "meters"),
  25428. default: true
  25429. },
  25430. ]
  25431. ))
  25432. characterMakers.push(() => makeCharacter(
  25433. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25434. {
  25435. front: {
  25436. height: math.unit(6 + 3 / 12, "feet"),
  25437. weight: math.unit(120, "lb"),
  25438. name: "Front",
  25439. image: {
  25440. source: "./media/characters/azura/front.svg",
  25441. extra: 1149 / 1135,
  25442. bottom: 45 / 1194
  25443. }
  25444. },
  25445. frontClothed: {
  25446. height: math.unit(6 + 3 / 12, "feet"),
  25447. weight: math.unit(120, "lb"),
  25448. name: "Front (Clothed)",
  25449. image: {
  25450. source: "./media/characters/azura/front-clothed.svg",
  25451. extra: 1149 / 1135,
  25452. bottom: 45 / 1194
  25453. }
  25454. },
  25455. },
  25456. [
  25457. {
  25458. name: "Normal",
  25459. height: math.unit(6 + 3 / 12, "feet"),
  25460. default: true
  25461. },
  25462. {
  25463. name: "Macro",
  25464. height: math.unit(20 + 6 / 12, "feet")
  25465. },
  25466. {
  25467. name: "Megamacro",
  25468. height: math.unit(12, "miles")
  25469. },
  25470. {
  25471. name: "Gigamacro",
  25472. height: math.unit(10000, "miles")
  25473. },
  25474. {
  25475. name: "Teramacro",
  25476. height: math.unit(900000, "miles")
  25477. },
  25478. ]
  25479. ))
  25480. characterMakers.push(() => makeCharacter(
  25481. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25482. {
  25483. front: {
  25484. height: math.unit(12, "feet"),
  25485. weight: math.unit(1, "ton"),
  25486. capacity: math.unit(660000, "gallons"),
  25487. name: "Front",
  25488. image: {
  25489. source: "./media/characters/zeus/front.svg",
  25490. extra: 5005 / 4717,
  25491. bottom: 363 / 5388
  25492. }
  25493. },
  25494. },
  25495. [
  25496. {
  25497. name: "Normal",
  25498. height: math.unit(12, "feet")
  25499. },
  25500. {
  25501. name: "Preferred Size",
  25502. height: math.unit(0.5, "miles"),
  25503. default: true
  25504. },
  25505. {
  25506. name: "Giga Horse",
  25507. height: math.unit(300, "miles")
  25508. },
  25509. {
  25510. name: "Riding Planets",
  25511. height: math.unit(30, "megameters")
  25512. },
  25513. {
  25514. name: "Cosmic Giant",
  25515. height: math.unit(3, "zettameters")
  25516. },
  25517. {
  25518. name: "Breeding God",
  25519. height: math.unit(9.92e22, "yottameters")
  25520. },
  25521. ]
  25522. ))
  25523. characterMakers.push(() => makeCharacter(
  25524. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25525. {
  25526. side: {
  25527. height: math.unit(9, "feet"),
  25528. weight: math.unit(1500, "kg"),
  25529. name: "Side",
  25530. image: {
  25531. source: "./media/characters/fang/side.svg",
  25532. extra: 924 / 866,
  25533. bottom: 47.5 / 972.3
  25534. }
  25535. },
  25536. },
  25537. [
  25538. {
  25539. name: "Normal",
  25540. height: math.unit(9, "feet"),
  25541. default: true
  25542. },
  25543. {
  25544. name: "Macro",
  25545. height: math.unit(75 + 6 / 12, "feet")
  25546. },
  25547. {
  25548. name: "Teramacro",
  25549. height: math.unit(50000, "miles")
  25550. },
  25551. ]
  25552. ))
  25553. characterMakers.push(() => makeCharacter(
  25554. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25555. {
  25556. front: {
  25557. height: math.unit(10, "feet"),
  25558. weight: math.unit(2, "tons"),
  25559. name: "Front",
  25560. image: {
  25561. source: "./media/characters/rekhit/front.svg",
  25562. extra: 2796 / 2590,
  25563. bottom: 225 / 3022
  25564. }
  25565. },
  25566. },
  25567. [
  25568. {
  25569. name: "Normal",
  25570. height: math.unit(10, "feet"),
  25571. default: true
  25572. },
  25573. {
  25574. name: "Macro",
  25575. height: math.unit(500, "feet")
  25576. },
  25577. ]
  25578. ))
  25579. characterMakers.push(() => makeCharacter(
  25580. { name: "Dahlia Verrick" },
  25581. {
  25582. front: {
  25583. height: math.unit(7 + 6.451 / 12, "feet"),
  25584. weight: math.unit(310, "lb"),
  25585. name: "Front",
  25586. image: {
  25587. source: "./media/characters/dahlia-verrick/front.svg",
  25588. extra: 1488 / 1365,
  25589. bottom: 6.2 / 1495
  25590. }
  25591. },
  25592. back: {
  25593. height: math.unit(7 + 6.451 / 12, "feet"),
  25594. weight: math.unit(310, "lb"),
  25595. name: "Back",
  25596. image: {
  25597. source: "./media/characters/dahlia-verrick/back.svg",
  25598. extra: 1472 / 1351,
  25599. bottom: 5.28 / 1477
  25600. }
  25601. },
  25602. frontBusiness: {
  25603. height: math.unit(7 + 6.451 / 12, "feet"),
  25604. weight: math.unit(200, "lb"),
  25605. name: "Front (Business)",
  25606. image: {
  25607. source: "./media/characters/dahlia-verrick/front-business.svg",
  25608. extra: 1478 / 1381,
  25609. bottom: 5.5 / 1484
  25610. }
  25611. },
  25612. frontCasual: {
  25613. height: math.unit(7 + 6.451 / 12, "feet"),
  25614. weight: math.unit(200, "lb"),
  25615. name: "Front (Casual)",
  25616. image: {
  25617. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25618. extra: 1478 / 1381,
  25619. bottom: 5.5 / 1484
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Travel-Sized",
  25626. height: math.unit(7.45, "inches")
  25627. },
  25628. {
  25629. name: "Normal",
  25630. height: math.unit(7 + 6.451 / 12, "feet"),
  25631. default: true
  25632. },
  25633. {
  25634. name: "Hitting the Town",
  25635. height: math.unit(37 + 8 / 12, "feet")
  25636. },
  25637. {
  25638. name: "Stomp in the Suburbs",
  25639. height: math.unit(964 + 9.728 / 12, "feet")
  25640. },
  25641. {
  25642. name: "Sit on the City",
  25643. height: math.unit(61747 + 10.592 / 12, "feet")
  25644. },
  25645. {
  25646. name: "Glomp the Globe",
  25647. height: math.unit(252919327 + 4.832 / 12, "feet")
  25648. },
  25649. ]
  25650. ))
  25651. characterMakers.push(() => makeCharacter(
  25652. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25653. {
  25654. front: {
  25655. height: math.unit(6 + 4 / 12, "feet"),
  25656. weight: math.unit(320, "lb"),
  25657. name: "Front",
  25658. image: {
  25659. source: "./media/characters/balina-mahigan/front.svg",
  25660. extra: 447 / 428,
  25661. bottom: 18 / 466
  25662. }
  25663. },
  25664. back: {
  25665. height: math.unit(6 + 4 / 12, "feet"),
  25666. weight: math.unit(320, "lb"),
  25667. name: "Back",
  25668. image: {
  25669. source: "./media/characters/balina-mahigan/back.svg",
  25670. extra: 445 / 428,
  25671. bottom: 4.07 / 448
  25672. }
  25673. },
  25674. arm: {
  25675. height: math.unit(1.88, "feet"),
  25676. name: "Arm",
  25677. image: {
  25678. source: "./media/characters/balina-mahigan/arm.svg"
  25679. }
  25680. },
  25681. backPort: {
  25682. height: math.unit(0.685, "feet"),
  25683. name: "Back Port",
  25684. image: {
  25685. source: "./media/characters/balina-mahigan/back-port.svg"
  25686. }
  25687. },
  25688. hoofpaw: {
  25689. height: math.unit(1.41, "feet"),
  25690. name: "Hoofpaw",
  25691. image: {
  25692. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25693. }
  25694. },
  25695. leftHandBack: {
  25696. height: math.unit(0.938, "feet"),
  25697. name: "Left Hand (Back)",
  25698. image: {
  25699. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25700. }
  25701. },
  25702. leftHandFront: {
  25703. height: math.unit(0.938, "feet"),
  25704. name: "Left Hand (Front)",
  25705. image: {
  25706. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25707. }
  25708. },
  25709. rightHandBack: {
  25710. height: math.unit(0.95, "feet"),
  25711. name: "Right Hand (Back)",
  25712. image: {
  25713. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25714. }
  25715. },
  25716. rightHandFront: {
  25717. height: math.unit(0.95, "feet"),
  25718. name: "Right Hand (Front)",
  25719. image: {
  25720. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25721. }
  25722. },
  25723. },
  25724. [
  25725. {
  25726. name: "Normal",
  25727. height: math.unit(6 + 4 / 12, "feet"),
  25728. default: true
  25729. },
  25730. ]
  25731. ))
  25732. characterMakers.push(() => makeCharacter(
  25733. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25734. {
  25735. front: {
  25736. height: math.unit(6, "feet"),
  25737. weight: math.unit(320, "lb"),
  25738. name: "Front",
  25739. image: {
  25740. source: "./media/characters/balina-mejeri/front.svg",
  25741. extra: 517 / 488,
  25742. bottom: 44.2 / 561
  25743. }
  25744. },
  25745. },
  25746. [
  25747. {
  25748. name: "Normal",
  25749. height: math.unit(6 + 4 / 12, "feet")
  25750. },
  25751. {
  25752. name: "Business",
  25753. height: math.unit(155, "feet"),
  25754. default: true
  25755. },
  25756. ]
  25757. ))
  25758. characterMakers.push(() => makeCharacter(
  25759. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25760. {
  25761. kneeling: {
  25762. height: math.unit(6 + 4 / 12, "feet"),
  25763. weight: math.unit(300 * 20, "lb"),
  25764. name: "Kneeling",
  25765. image: {
  25766. source: "./media/characters/balbarian/kneeling.svg",
  25767. extra: 922 / 862,
  25768. bottom: 42.4 / 965
  25769. }
  25770. },
  25771. },
  25772. [
  25773. {
  25774. name: "Normal",
  25775. height: math.unit(6 + 4 / 12, "feet")
  25776. },
  25777. {
  25778. name: "Treasured",
  25779. height: math.unit(18 + 9 / 12, "feet"),
  25780. default: true
  25781. },
  25782. {
  25783. name: "Macro",
  25784. height: math.unit(900, "feet")
  25785. },
  25786. ]
  25787. ))
  25788. characterMakers.push(() => makeCharacter(
  25789. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25790. {
  25791. front: {
  25792. height: math.unit(6 + 4 / 12, "feet"),
  25793. weight: math.unit(325, "lb"),
  25794. name: "Front",
  25795. image: {
  25796. source: "./media/characters/balina-amarini/front.svg",
  25797. extra: 415 / 403,
  25798. bottom: 19 / 433.4
  25799. }
  25800. },
  25801. back: {
  25802. height: math.unit(6 + 4 / 12, "feet"),
  25803. weight: math.unit(325, "lb"),
  25804. name: "Back",
  25805. image: {
  25806. source: "./media/characters/balina-amarini/back.svg",
  25807. extra: 415 / 403,
  25808. bottom: 13.5 / 432
  25809. }
  25810. },
  25811. overdrive: {
  25812. height: math.unit(6 + 4 / 12, "feet"),
  25813. weight: math.unit(400, "lb"),
  25814. name: "Overdrive",
  25815. image: {
  25816. source: "./media/characters/balina-amarini/overdrive.svg",
  25817. extra: 269 / 259,
  25818. bottom: 12 / 282
  25819. }
  25820. },
  25821. },
  25822. [
  25823. {
  25824. name: "Boom",
  25825. height: math.unit(9 + 10 / 12, "feet"),
  25826. default: true
  25827. },
  25828. {
  25829. name: "Macro",
  25830. height: math.unit(280, "feet")
  25831. },
  25832. ]
  25833. ))
  25834. characterMakers.push(() => makeCharacter(
  25835. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25836. {
  25837. goddess: {
  25838. height: math.unit(600, "feet"),
  25839. weight: math.unit(2000000, "tons"),
  25840. name: "Goddess",
  25841. image: {
  25842. source: "./media/characters/lady-kubwa/goddess.svg",
  25843. extra: 1240.5 / 1223,
  25844. bottom: 22 / 1263
  25845. }
  25846. },
  25847. goddesser: {
  25848. height: math.unit(900, "feet"),
  25849. weight: math.unit(20000000, "lb"),
  25850. name: "Goddess-er",
  25851. image: {
  25852. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25853. extra: 899 / 888,
  25854. bottom: 12.6 / 912
  25855. }
  25856. },
  25857. },
  25858. [
  25859. {
  25860. name: "Macro",
  25861. height: math.unit(600, "feet"),
  25862. default: true
  25863. },
  25864. {
  25865. name: "Megamacro",
  25866. height: math.unit(250, "miles")
  25867. },
  25868. ]
  25869. ))
  25870. characterMakers.push(() => makeCharacter(
  25871. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25872. {
  25873. front: {
  25874. height: math.unit(7 + 7 / 12, "feet"),
  25875. weight: math.unit(250, "lb"),
  25876. name: "Front",
  25877. image: {
  25878. source: "./media/characters/tala-grovehorn/front.svg",
  25879. extra: 2636 / 2525,
  25880. bottom: 147 / 2781
  25881. }
  25882. },
  25883. back: {
  25884. height: math.unit(7 + 7 / 12, "feet"),
  25885. weight: math.unit(250, "lb"),
  25886. name: "Back",
  25887. image: {
  25888. source: "./media/characters/tala-grovehorn/back.svg",
  25889. extra: 2635 / 2539,
  25890. bottom: 100 / 2732.8
  25891. }
  25892. },
  25893. mouth: {
  25894. height: math.unit(1.15, "feet"),
  25895. name: "Mouth",
  25896. image: {
  25897. source: "./media/characters/tala-grovehorn/mouth.svg"
  25898. }
  25899. },
  25900. dick: {
  25901. height: math.unit(2.36, "feet"),
  25902. name: "Dick",
  25903. image: {
  25904. source: "./media/characters/tala-grovehorn/dick.svg"
  25905. }
  25906. },
  25907. slit: {
  25908. height: math.unit(0.61, "feet"),
  25909. name: "Slit",
  25910. image: {
  25911. source: "./media/characters/tala-grovehorn/slit.svg"
  25912. }
  25913. },
  25914. },
  25915. [
  25916. ]
  25917. ))
  25918. characterMakers.push(() => makeCharacter(
  25919. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25920. {
  25921. front: {
  25922. height: math.unit(7 + 7 / 12, "feet"),
  25923. weight: math.unit(225, "lb"),
  25924. name: "Front",
  25925. image: {
  25926. source: "./media/characters/epona/front.svg",
  25927. extra: 2445 / 2290,
  25928. bottom: 251 / 2696
  25929. }
  25930. },
  25931. back: {
  25932. height: math.unit(7 + 7 / 12, "feet"),
  25933. weight: math.unit(225, "lb"),
  25934. name: "Back",
  25935. image: {
  25936. source: "./media/characters/epona/back.svg",
  25937. extra: 2546 / 2408,
  25938. bottom: 44 / 2589
  25939. }
  25940. },
  25941. genitals: {
  25942. height: math.unit(1.5, "feet"),
  25943. name: "Genitals",
  25944. image: {
  25945. source: "./media/characters/epona/genitals.svg"
  25946. }
  25947. },
  25948. },
  25949. [
  25950. {
  25951. name: "Normal",
  25952. height: math.unit(7 + 7 / 12, "feet"),
  25953. default: true
  25954. },
  25955. ]
  25956. ))
  25957. characterMakers.push(() => makeCharacter(
  25958. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25959. {
  25960. front: {
  25961. height: math.unit(7, "feet"),
  25962. weight: math.unit(518, "lb"),
  25963. name: "Front",
  25964. image: {
  25965. source: "./media/characters/avia-bloodbourn/front.svg",
  25966. extra: 1466 / 1350,
  25967. bottom: 65 / 1527
  25968. }
  25969. },
  25970. },
  25971. [
  25972. ]
  25973. ))
  25974. characterMakers.push(() => makeCharacter(
  25975. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25976. {
  25977. front: {
  25978. height: math.unit(9.35, "feet"),
  25979. weight: math.unit(600, "lb"),
  25980. name: "Front",
  25981. image: {
  25982. source: "./media/characters/amera/front.svg",
  25983. extra: 891 / 818,
  25984. bottom: 30 / 922.7
  25985. }
  25986. },
  25987. back: {
  25988. height: math.unit(9.35, "feet"),
  25989. weight: math.unit(600, "lb"),
  25990. name: "Back",
  25991. image: {
  25992. source: "./media/characters/amera/back.svg",
  25993. extra: 876 / 824,
  25994. bottom: 6.8 / 884
  25995. }
  25996. },
  25997. dick: {
  25998. height: math.unit(2.14, "feet"),
  25999. name: "Dick",
  26000. image: {
  26001. source: "./media/characters/amera/dick.svg"
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Normal",
  26008. height: math.unit(9.35, "feet"),
  26009. default: true
  26010. },
  26011. ]
  26012. ))
  26013. characterMakers.push(() => makeCharacter(
  26014. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26015. {
  26016. kneeling: {
  26017. height: math.unit(3 + 4 / 12, "feet"),
  26018. weight: math.unit(90, "lb"),
  26019. name: "Kneeling",
  26020. image: {
  26021. source: "./media/characters/rosewen/kneeling.svg",
  26022. extra: 1835 / 1571,
  26023. bottom: 27.7 / 1862
  26024. }
  26025. },
  26026. },
  26027. [
  26028. {
  26029. name: "Normal",
  26030. height: math.unit(3 + 4 / 12, "feet"),
  26031. default: true
  26032. },
  26033. ]
  26034. ))
  26035. characterMakers.push(() => makeCharacter(
  26036. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26037. {
  26038. front: {
  26039. height: math.unit(5 + 10 / 12, "feet"),
  26040. weight: math.unit(200, "lb"),
  26041. name: "Front",
  26042. image: {
  26043. source: "./media/characters/sabah/front.svg",
  26044. extra: 849 / 763,
  26045. bottom: 33.9 / 881
  26046. }
  26047. },
  26048. },
  26049. [
  26050. {
  26051. name: "Normal",
  26052. height: math.unit(5 + 10 / 12, "feet"),
  26053. default: true
  26054. },
  26055. ]
  26056. ))
  26057. characterMakers.push(() => makeCharacter(
  26058. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26059. {
  26060. front: {
  26061. height: math.unit(3 + 5 / 12, "feet"),
  26062. weight: math.unit(40, "kg"),
  26063. name: "Front",
  26064. image: {
  26065. source: "./media/characters/purple-flame/front.svg",
  26066. extra: 1577 / 1412,
  26067. bottom: 97 / 1694
  26068. }
  26069. },
  26070. frontDressed: {
  26071. height: math.unit(3 + 5 / 12, "feet"),
  26072. weight: math.unit(40, "kg"),
  26073. name: "Front (Dressed)",
  26074. image: {
  26075. source: "./media/characters/purple-flame/front-dressed.svg",
  26076. extra: 1577 / 1412,
  26077. bottom: 97 / 1694
  26078. }
  26079. },
  26080. headphones: {
  26081. height: math.unit(0.85, "feet"),
  26082. name: "Headphones",
  26083. image: {
  26084. source: "./media/characters/purple-flame/headphones.svg"
  26085. }
  26086. },
  26087. },
  26088. [
  26089. {
  26090. name: "Really Small",
  26091. height: math.unit(5, "cm")
  26092. },
  26093. {
  26094. name: "Micro",
  26095. height: math.unit(1 + 5 / 12, "feet")
  26096. },
  26097. {
  26098. name: "Normal",
  26099. height: math.unit(3 + 5 / 12, "feet"),
  26100. default: true
  26101. },
  26102. {
  26103. name: "Minimacro",
  26104. height: math.unit(125, "feet")
  26105. },
  26106. {
  26107. name: "Macro",
  26108. height: math.unit(0.5, "miles")
  26109. },
  26110. {
  26111. name: "Megamacro",
  26112. height: math.unit(50, "miles")
  26113. },
  26114. {
  26115. name: "Gigantic",
  26116. height: math.unit(750, "miles")
  26117. },
  26118. {
  26119. name: "Planetary",
  26120. height: math.unit(15000, "miles")
  26121. },
  26122. ]
  26123. ))
  26124. characterMakers.push(() => makeCharacter(
  26125. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26126. {
  26127. front: {
  26128. height: math.unit(14, "feet"),
  26129. weight: math.unit(959, "lb"),
  26130. name: "Front",
  26131. image: {
  26132. source: "./media/characters/arsenal/front.svg",
  26133. extra: 2357 / 2157,
  26134. bottom: 93 / 2458
  26135. }
  26136. },
  26137. },
  26138. [
  26139. {
  26140. name: "Normal",
  26141. height: math.unit(14, "feet"),
  26142. default: true
  26143. },
  26144. ]
  26145. ))
  26146. characterMakers.push(() => makeCharacter(
  26147. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26148. {
  26149. front: {
  26150. height: math.unit(6, "feet"),
  26151. weight: math.unit(150, "lb"),
  26152. name: "Front",
  26153. image: {
  26154. source: "./media/characters/adira/front.svg",
  26155. extra: 1078 / 1029,
  26156. bottom: 87 / 1166
  26157. }
  26158. },
  26159. },
  26160. [
  26161. {
  26162. name: "Micro",
  26163. height: math.unit(4, "inches"),
  26164. default: true
  26165. },
  26166. {
  26167. name: "Macro",
  26168. height: math.unit(50, "feet")
  26169. },
  26170. ]
  26171. ))
  26172. characterMakers.push(() => makeCharacter(
  26173. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26174. {
  26175. front: {
  26176. height: math.unit(16, "feet"),
  26177. weight: math.unit(1000, "lb"),
  26178. name: "Front",
  26179. image: {
  26180. source: "./media/characters/grim/front.svg",
  26181. extra: 622 / 614,
  26182. bottom: 18.1 / 642
  26183. }
  26184. },
  26185. back: {
  26186. height: math.unit(16, "feet"),
  26187. weight: math.unit(1000, "lb"),
  26188. name: "Back",
  26189. image: {
  26190. source: "./media/characters/grim/back.svg",
  26191. extra: 610.6 / 602,
  26192. bottom: 40.8 / 652
  26193. }
  26194. },
  26195. hunched: {
  26196. height: math.unit(9.75, "feet"),
  26197. weight: math.unit(1000, "lb"),
  26198. name: "Hunched",
  26199. image: {
  26200. source: "./media/characters/grim/hunched.svg",
  26201. extra: 304 / 297,
  26202. bottom: 35.4 / 394
  26203. }
  26204. },
  26205. },
  26206. [
  26207. {
  26208. name: "Normal",
  26209. height: math.unit(16, "feet"),
  26210. default: true
  26211. },
  26212. ]
  26213. ))
  26214. characterMakers.push(() => makeCharacter(
  26215. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26216. {
  26217. front: {
  26218. height: math.unit(2.3, "meters"),
  26219. weight: math.unit(300, "lb"),
  26220. name: "Front",
  26221. image: {
  26222. source: "./media/characters/sinja/front-sfw.svg",
  26223. extra: 1393 / 1294,
  26224. bottom: 70 / 1463
  26225. }
  26226. },
  26227. frontNsfw: {
  26228. height: math.unit(2.3, "meters"),
  26229. weight: math.unit(300, "lb"),
  26230. name: "Front (NSFW)",
  26231. image: {
  26232. source: "./media/characters/sinja/front-nsfw.svg",
  26233. extra: 1393 / 1294,
  26234. bottom: 70 / 1463
  26235. }
  26236. },
  26237. back: {
  26238. height: math.unit(2.3, "meters"),
  26239. weight: math.unit(300, "lb"),
  26240. name: "Back",
  26241. image: {
  26242. source: "./media/characters/sinja/back.svg",
  26243. extra: 1393 / 1294,
  26244. bottom: 70 / 1463
  26245. }
  26246. },
  26247. head: {
  26248. height: math.unit(1.771, "feet"),
  26249. name: "Head",
  26250. image: {
  26251. source: "./media/characters/sinja/head.svg"
  26252. }
  26253. },
  26254. slit: {
  26255. height: math.unit(0.8, "feet"),
  26256. name: "Slit",
  26257. image: {
  26258. source: "./media/characters/sinja/slit.svg"
  26259. }
  26260. },
  26261. },
  26262. [
  26263. {
  26264. name: "Normal",
  26265. height: math.unit(2.3, "meters")
  26266. },
  26267. {
  26268. name: "Macro",
  26269. height: math.unit(91, "meters"),
  26270. default: true
  26271. },
  26272. {
  26273. name: "Megamacro",
  26274. height: math.unit(91440, "meters")
  26275. },
  26276. {
  26277. name: "Gigamacro",
  26278. height: math.unit(60960000, "meters")
  26279. },
  26280. {
  26281. name: "Teramacro",
  26282. height: math.unit(9144000000, "meters")
  26283. },
  26284. ]
  26285. ))
  26286. characterMakers.push(() => makeCharacter(
  26287. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26288. {
  26289. front: {
  26290. height: math.unit(1.7, "meters"),
  26291. weight: math.unit(130, "lb"),
  26292. name: "Front",
  26293. image: {
  26294. source: "./media/characters/kyu/front.svg",
  26295. extra: 415 / 395,
  26296. bottom: 5 / 420
  26297. }
  26298. },
  26299. head: {
  26300. height: math.unit(1.75, "feet"),
  26301. name: "Head",
  26302. image: {
  26303. source: "./media/characters/kyu/head.svg"
  26304. }
  26305. },
  26306. foot: {
  26307. height: math.unit(0.81, "feet"),
  26308. name: "Foot",
  26309. image: {
  26310. source: "./media/characters/kyu/foot.svg"
  26311. }
  26312. },
  26313. },
  26314. [
  26315. {
  26316. name: "Normal",
  26317. height: math.unit(1.7, "meters")
  26318. },
  26319. {
  26320. name: "Macro",
  26321. height: math.unit(131, "feet"),
  26322. default: true
  26323. },
  26324. {
  26325. name: "Megamacro",
  26326. height: math.unit(91440, "meters")
  26327. },
  26328. {
  26329. name: "Gigamacro",
  26330. height: math.unit(60960000, "meters")
  26331. },
  26332. {
  26333. name: "Teramacro",
  26334. height: math.unit(9144000000, "meters")
  26335. },
  26336. ]
  26337. ))
  26338. characterMakers.push(() => makeCharacter(
  26339. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26340. {
  26341. front: {
  26342. height: math.unit(7 + 1 / 12, "feet"),
  26343. weight: math.unit(250, "lb"),
  26344. name: "Front",
  26345. image: {
  26346. source: "./media/characters/joey/front.svg",
  26347. extra: 1791 / 1537,
  26348. bottom: 28 / 1816
  26349. }
  26350. },
  26351. },
  26352. [
  26353. {
  26354. name: "Micro",
  26355. height: math.unit(3, "inches")
  26356. },
  26357. {
  26358. name: "Normal",
  26359. height: math.unit(7 + 1 / 12, "feet"),
  26360. default: true
  26361. },
  26362. ]
  26363. ))
  26364. characterMakers.push(() => makeCharacter(
  26365. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26366. {
  26367. front: {
  26368. height: math.unit(165, "cm"),
  26369. weight: math.unit(140, "lb"),
  26370. name: "Front",
  26371. image: {
  26372. source: "./media/characters/sam-evans/front.svg",
  26373. extra: 3417 / 3230,
  26374. bottom: 41.3 / 3417
  26375. }
  26376. },
  26377. frontSixTails: {
  26378. height: math.unit(165, "cm"),
  26379. weight: math.unit(140, "lb"),
  26380. name: "Front-six-tails",
  26381. image: {
  26382. source: "./media/characters/sam-evans/front-six-tails.svg",
  26383. extra: 3417 / 3230,
  26384. bottom: 41.3 / 3417
  26385. }
  26386. },
  26387. back: {
  26388. height: math.unit(165, "cm"),
  26389. weight: math.unit(140, "lb"),
  26390. name: "Back",
  26391. image: {
  26392. source: "./media/characters/sam-evans/back.svg",
  26393. extra: 3227 / 3032,
  26394. bottom: 6.8 / 3234
  26395. }
  26396. },
  26397. face: {
  26398. height: math.unit(0.68, "feet"),
  26399. name: "Face",
  26400. image: {
  26401. source: "./media/characters/sam-evans/face.svg"
  26402. }
  26403. },
  26404. },
  26405. [
  26406. {
  26407. name: "Normal",
  26408. height: math.unit(165, "cm"),
  26409. default: true
  26410. },
  26411. {
  26412. name: "Macro",
  26413. height: math.unit(100, "meters")
  26414. },
  26415. {
  26416. name: "Macro+",
  26417. height: math.unit(800, "meters")
  26418. },
  26419. {
  26420. name: "Macro++",
  26421. height: math.unit(3, "km")
  26422. },
  26423. {
  26424. name: "Macro+++",
  26425. height: math.unit(30, "km")
  26426. },
  26427. ]
  26428. ))
  26429. characterMakers.push(() => makeCharacter(
  26430. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26431. {
  26432. front: {
  26433. height: math.unit(10, "feet"),
  26434. weight: math.unit(750, "lb"),
  26435. name: "Front",
  26436. image: {
  26437. source: "./media/characters/juliet-a/front.svg",
  26438. extra: 1766 / 1720,
  26439. bottom: 43 / 1809
  26440. }
  26441. },
  26442. back: {
  26443. height: math.unit(10, "feet"),
  26444. weight: math.unit(750, "lb"),
  26445. name: "Back",
  26446. image: {
  26447. source: "./media/characters/juliet-a/back.svg",
  26448. extra: 1781 / 1734,
  26449. bottom: 35 / 1810,
  26450. }
  26451. },
  26452. },
  26453. [
  26454. {
  26455. name: "Normal",
  26456. height: math.unit(10, "feet"),
  26457. default: true
  26458. },
  26459. {
  26460. name: "Dragon Form",
  26461. height: math.unit(250, "feet")
  26462. },
  26463. {
  26464. name: "Macro",
  26465. height: math.unit(1000, "feet")
  26466. },
  26467. {
  26468. name: "Megamacro",
  26469. height: math.unit(10000, "feet")
  26470. }
  26471. ]
  26472. ))
  26473. characterMakers.push(() => makeCharacter(
  26474. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26475. {
  26476. regular: {
  26477. height: math.unit(7 + 3 / 12, "feet"),
  26478. weight: math.unit(260, "lb"),
  26479. name: "Regular",
  26480. image: {
  26481. source: "./media/characters/wild/regular.svg",
  26482. extra: 97.45 / 92,
  26483. bottom: 6.8 / 104.3
  26484. }
  26485. },
  26486. biggums: {
  26487. height: math.unit(8 + 6 / 12, "feet"),
  26488. weight: math.unit(425, "lb"),
  26489. name: "Biggums",
  26490. image: {
  26491. source: "./media/characters/wild/biggums.svg",
  26492. extra: 97.45 / 92,
  26493. bottom: 7.5 / 132.34
  26494. }
  26495. },
  26496. mawRegular: {
  26497. height: math.unit(1.24, "feet"),
  26498. name: "Maw (Regular)",
  26499. image: {
  26500. source: "./media/characters/wild/maw.svg"
  26501. }
  26502. },
  26503. mawBiggums: {
  26504. height: math.unit(1.47, "feet"),
  26505. name: "Maw (Biggums)",
  26506. image: {
  26507. source: "./media/characters/wild/maw.svg"
  26508. }
  26509. },
  26510. },
  26511. [
  26512. {
  26513. name: "Normal",
  26514. height: math.unit(7 + 3 / 12, "feet"),
  26515. default: true
  26516. },
  26517. ]
  26518. ))
  26519. characterMakers.push(() => makeCharacter(
  26520. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26521. {
  26522. front: {
  26523. height: math.unit(2.5, "meters"),
  26524. weight: math.unit(200, "kg"),
  26525. name: "Front",
  26526. image: {
  26527. source: "./media/characters/vidar/front.svg",
  26528. extra: 2994 / 2795,
  26529. bottom: 56 / 3061
  26530. }
  26531. },
  26532. back: {
  26533. height: math.unit(2.5, "meters"),
  26534. weight: math.unit(200, "kg"),
  26535. name: "Back",
  26536. image: {
  26537. source: "./media/characters/vidar/back.svg",
  26538. extra: 3131 / 2928,
  26539. bottom: 13.5 / 3141.5
  26540. }
  26541. },
  26542. feral: {
  26543. height: math.unit(2.5, "meters"),
  26544. weight: math.unit(2000, "kg"),
  26545. name: "Feral",
  26546. image: {
  26547. source: "./media/characters/vidar/feral.svg",
  26548. extra: 2790 / 1765,
  26549. bottom: 6 / 2796
  26550. }
  26551. },
  26552. },
  26553. [
  26554. {
  26555. name: "Normal",
  26556. height: math.unit(2.5, "meters"),
  26557. default: true
  26558. },
  26559. {
  26560. name: "Macro",
  26561. height: math.unit(100, "meters")
  26562. },
  26563. ]
  26564. ))
  26565. characterMakers.push(() => makeCharacter(
  26566. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26567. {
  26568. front: {
  26569. height: math.unit(5 + 9 / 12, "feet"),
  26570. weight: math.unit(120, "lb"),
  26571. name: "Front",
  26572. image: {
  26573. source: "./media/characters/ash/front.svg",
  26574. extra: 2189 / 1961,
  26575. bottom: 5.2 / 2194
  26576. }
  26577. },
  26578. },
  26579. [
  26580. {
  26581. name: "Normal",
  26582. height: math.unit(5 + 9 / 12, "feet"),
  26583. default: true
  26584. },
  26585. ]
  26586. ))
  26587. characterMakers.push(() => makeCharacter(
  26588. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26589. {
  26590. front: {
  26591. height: math.unit(9, "feet"),
  26592. weight: math.unit(10000, "lb"),
  26593. name: "Front",
  26594. image: {
  26595. source: "./media/characters/gygabite/front.svg",
  26596. bottom: 31.7 / 537.8,
  26597. extra: 505 / 370
  26598. }
  26599. },
  26600. },
  26601. [
  26602. {
  26603. name: "Normal",
  26604. height: math.unit(9, "feet"),
  26605. default: true
  26606. },
  26607. ]
  26608. ))
  26609. characterMakers.push(() => makeCharacter(
  26610. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26611. {
  26612. front: {
  26613. height: math.unit(12, "feet"),
  26614. weight: math.unit(35000, "lb"),
  26615. name: "Front",
  26616. image: {
  26617. source: "./media/characters/p0tat0/front.svg",
  26618. extra: 1065 / 921,
  26619. bottom: 55.7 / 1121.25
  26620. }
  26621. },
  26622. },
  26623. [
  26624. {
  26625. name: "Normal",
  26626. height: math.unit(12, "feet"),
  26627. default: true
  26628. },
  26629. ]
  26630. ))
  26631. characterMakers.push(() => makeCharacter(
  26632. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26633. {
  26634. side: {
  26635. height: math.unit(6.5, "feet"),
  26636. weight: math.unit(800, "lb"),
  26637. name: "Side",
  26638. image: {
  26639. source: "./media/characters/dusk/side.svg",
  26640. extra: 615 / 373,
  26641. bottom: 53 / 664
  26642. }
  26643. },
  26644. sitting: {
  26645. height: math.unit(7, "feet"),
  26646. weight: math.unit(800, "lb"),
  26647. name: "Sitting",
  26648. image: {
  26649. source: "./media/characters/dusk/sitting.svg",
  26650. extra: 753 / 425,
  26651. bottom: 33 / 774
  26652. }
  26653. },
  26654. head: {
  26655. height: math.unit(6.1, "feet"),
  26656. name: "Head",
  26657. image: {
  26658. source: "./media/characters/dusk/head.svg"
  26659. }
  26660. },
  26661. },
  26662. [
  26663. {
  26664. name: "Normal",
  26665. height: math.unit(7, "feet"),
  26666. default: true
  26667. },
  26668. ]
  26669. ))
  26670. characterMakers.push(() => makeCharacter(
  26671. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26672. {
  26673. front: {
  26674. height: math.unit(15, "feet"),
  26675. weight: math.unit(7000, "lb"),
  26676. name: "Front",
  26677. image: {
  26678. source: "./media/characters/jay-direwolf/front.svg",
  26679. extra: 1810 / 1732,
  26680. bottom: 66 / 1892
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Normal",
  26687. height: math.unit(15, "feet"),
  26688. default: true
  26689. },
  26690. ]
  26691. ))
  26692. characterMakers.push(() => makeCharacter(
  26693. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26694. {
  26695. front: {
  26696. height: math.unit(4 + 9 / 12, "feet"),
  26697. weight: math.unit(130, "lb"),
  26698. name: "Front",
  26699. image: {
  26700. source: "./media/characters/anchovie/front.svg",
  26701. extra: 382 / 350,
  26702. bottom: 25 / 409
  26703. }
  26704. },
  26705. back: {
  26706. height: math.unit(4 + 9 / 12, "feet"),
  26707. weight: math.unit(130, "lb"),
  26708. name: "Back",
  26709. image: {
  26710. source: "./media/characters/anchovie/back.svg",
  26711. extra: 385 / 352,
  26712. bottom: 16.6 / 402
  26713. }
  26714. },
  26715. frontDressed: {
  26716. height: math.unit(4 + 9 / 12, "feet"),
  26717. weight: math.unit(130, "lb"),
  26718. name: "Front (Dressed)",
  26719. image: {
  26720. source: "./media/characters/anchovie/front-dressed.svg",
  26721. extra: 382 / 350,
  26722. bottom: 25 / 409
  26723. }
  26724. },
  26725. backDressed: {
  26726. height: math.unit(4 + 9 / 12, "feet"),
  26727. weight: math.unit(130, "lb"),
  26728. name: "Back (Dressed)",
  26729. image: {
  26730. source: "./media/characters/anchovie/back-dressed.svg",
  26731. extra: 385 / 352,
  26732. bottom: 16.6 / 402
  26733. }
  26734. },
  26735. },
  26736. [
  26737. {
  26738. name: "Micro",
  26739. height: math.unit(6.4, "inches")
  26740. },
  26741. {
  26742. name: "Normal",
  26743. height: math.unit(4 + 9 / 12, "feet"),
  26744. default: true
  26745. },
  26746. ]
  26747. ))
  26748. characterMakers.push(() => makeCharacter(
  26749. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26750. {
  26751. front: {
  26752. height: math.unit(2, "meters"),
  26753. weight: math.unit(180, "lb"),
  26754. name: "Front",
  26755. image: {
  26756. source: "./media/characters/acidrenamon/front.svg",
  26757. extra: 987 / 890,
  26758. bottom: 22.8 / 1009
  26759. }
  26760. },
  26761. back: {
  26762. height: math.unit(2, "meters"),
  26763. weight: math.unit(180, "lb"),
  26764. name: "Back",
  26765. image: {
  26766. source: "./media/characters/acidrenamon/back.svg",
  26767. extra: 983 / 891,
  26768. bottom: 8.4 / 992
  26769. }
  26770. },
  26771. head: {
  26772. height: math.unit(1.92, "feet"),
  26773. name: "Head",
  26774. image: {
  26775. source: "./media/characters/acidrenamon/head.svg"
  26776. }
  26777. },
  26778. rump: {
  26779. height: math.unit(1.72, "feet"),
  26780. name: "Rump",
  26781. image: {
  26782. source: "./media/characters/acidrenamon/rump.svg"
  26783. }
  26784. },
  26785. tail: {
  26786. height: math.unit(4.2, "feet"),
  26787. name: "Tail",
  26788. image: {
  26789. source: "./media/characters/acidrenamon/tail.svg"
  26790. }
  26791. },
  26792. },
  26793. [
  26794. {
  26795. name: "Normal",
  26796. height: math.unit(2, "meters"),
  26797. default: true
  26798. },
  26799. {
  26800. name: "Minimacro",
  26801. height: math.unit(7, "meters")
  26802. },
  26803. {
  26804. name: "Macro",
  26805. height: math.unit(200, "meters")
  26806. },
  26807. {
  26808. name: "Gigamacro",
  26809. height: math.unit(0.2, "earths")
  26810. },
  26811. ]
  26812. ))
  26813. characterMakers.push(() => makeCharacter(
  26814. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26815. {
  26816. front: {
  26817. height: math.unit(6, "feet"),
  26818. weight: math.unit(150, "lb"),
  26819. name: "Front",
  26820. image: {
  26821. source: "./media/characters/kenzie-lee/front.svg",
  26822. extra: 1525 / 1465,
  26823. bottom: 45 / 1570
  26824. }
  26825. },
  26826. side: {
  26827. height: math.unit(6, "feet"),
  26828. weight: math.unit(150, "lb"),
  26829. name: "Side",
  26830. image: {
  26831. source: "./media/characters/kenzie-lee/side.svg",
  26832. extra: 5505 / 5383,
  26833. bottom: 60 / 5573
  26834. }
  26835. },
  26836. paw: {
  26837. height: math.unit(6, "feet"),
  26838. name: "Paw",
  26839. image: {
  26840. source: "./media/characters/kenzie-lee/paw.svg"
  26841. }
  26842. },
  26843. },
  26844. [
  26845. {
  26846. name: "Normal",
  26847. height: math.unit(152, "feet"),
  26848. default: true
  26849. },
  26850. {
  26851. name: "Megamacro",
  26852. height: math.unit(7, "miles")
  26853. },
  26854. {
  26855. name: "Gigamacro",
  26856. height: math.unit(8000, "miles")
  26857. },
  26858. ]
  26859. ))
  26860. characterMakers.push(() => makeCharacter(
  26861. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26862. {
  26863. side: {
  26864. height: math.unit(6, "feet"),
  26865. weight: math.unit(150, "lb"),
  26866. name: "Side",
  26867. image: {
  26868. source: "./media/characters/withers/side.svg",
  26869. extra: 1830 / 1728,
  26870. bottom: 96 / 1927
  26871. }
  26872. },
  26873. front: {
  26874. height: math.unit(6, "feet"),
  26875. weight: math.unit(150, "lb"),
  26876. name: "Front",
  26877. image: {
  26878. source: "./media/characters/withers/front.svg",
  26879. extra: 1514 / 1438,
  26880. bottom: 118 / 1632
  26881. }
  26882. },
  26883. },
  26884. [
  26885. {
  26886. name: "Macro",
  26887. height: math.unit(168, "feet"),
  26888. default: true
  26889. },
  26890. {
  26891. name: "Megamacro",
  26892. height: math.unit(15, "miles")
  26893. }
  26894. ]
  26895. ))
  26896. characterMakers.push(() => makeCharacter(
  26897. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26898. {
  26899. front: {
  26900. height: math.unit(6 + 7 / 12, "feet"),
  26901. weight: math.unit(250, "lb"),
  26902. name: "Front",
  26903. image: {
  26904. source: "./media/characters/nemoskii/front.svg",
  26905. extra: 2270 / 1734,
  26906. bottom: 86 / 2354
  26907. }
  26908. },
  26909. back: {
  26910. height: math.unit(6 + 7 / 12, "feet"),
  26911. weight: math.unit(250, "lb"),
  26912. name: "Back",
  26913. image: {
  26914. source: "./media/characters/nemoskii/back.svg",
  26915. extra: 1845 / 1788,
  26916. bottom: 10.5 / 1852
  26917. }
  26918. },
  26919. head: {
  26920. height: math.unit(1.31, "feet"),
  26921. name: "Head",
  26922. image: {
  26923. source: "./media/characters/nemoskii/head.svg"
  26924. }
  26925. },
  26926. },
  26927. [
  26928. {
  26929. name: "Micro",
  26930. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26931. },
  26932. {
  26933. name: "Normal",
  26934. height: math.unit(6 + 7 / 12, "feet"),
  26935. default: true
  26936. },
  26937. {
  26938. name: "Macro",
  26939. height: math.unit((6 + 7 / 12) * 150, "feet")
  26940. },
  26941. {
  26942. name: "Macro+",
  26943. height: math.unit((6 + 7 / 12) * 500, "feet")
  26944. },
  26945. {
  26946. name: "Megamacro",
  26947. height: math.unit((6 + 7 / 12) * 100000, "feet")
  26948. },
  26949. ]
  26950. ))
  26951. characterMakers.push(() => makeCharacter(
  26952. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26953. {
  26954. front: {
  26955. height: math.unit(1, "mile"),
  26956. weight: math.unit(265261.9, "lb"),
  26957. name: "Front",
  26958. image: {
  26959. source: "./media/characters/shui/front.svg",
  26960. extra: 1633 / 1564,
  26961. bottom: 91.5 / 1726
  26962. }
  26963. },
  26964. },
  26965. [
  26966. {
  26967. name: "Macro",
  26968. height: math.unit(1, "mile"),
  26969. default: true
  26970. },
  26971. ]
  26972. ))
  26973. characterMakers.push(() => makeCharacter(
  26974. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26975. {
  26976. front: {
  26977. height: math.unit(12 + 6 / 12, "feet"),
  26978. weight: math.unit(1342, "lb"),
  26979. name: "Front",
  26980. image: {
  26981. source: "./media/characters/arokh-takakura/front.svg",
  26982. extra: 1089 / 1043,
  26983. bottom: 77.4 / 1176.7
  26984. }
  26985. },
  26986. back: {
  26987. height: math.unit(12 + 6 / 12, "feet"),
  26988. weight: math.unit(1342, "lb"),
  26989. name: "Back",
  26990. image: {
  26991. source: "./media/characters/arokh-takakura/back.svg",
  26992. extra: 1046 / 1019,
  26993. bottom: 102 / 1150
  26994. }
  26995. },
  26996. },
  26997. [
  26998. {
  26999. name: "Big",
  27000. height: math.unit(12 + 6 / 12, "feet"),
  27001. default: true
  27002. },
  27003. ]
  27004. ))
  27005. characterMakers.push(() => makeCharacter(
  27006. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27007. {
  27008. front: {
  27009. height: math.unit(5 + 6 / 12, "feet"),
  27010. weight: math.unit(150, "lb"),
  27011. name: "Front",
  27012. image: {
  27013. source: "./media/characters/theo/front.svg",
  27014. extra: 1184 / 1131,
  27015. bottom: 7.4 / 1191
  27016. }
  27017. },
  27018. },
  27019. [
  27020. {
  27021. name: "Micro",
  27022. height: math.unit(5, "inches")
  27023. },
  27024. {
  27025. name: "Normal",
  27026. height: math.unit(5 + 6 / 12, "feet"),
  27027. default: true
  27028. },
  27029. ]
  27030. ))
  27031. characterMakers.push(() => makeCharacter(
  27032. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27033. {
  27034. front: {
  27035. height: math.unit(5 + 9 / 12, "feet"),
  27036. weight: math.unit(130, "lb"),
  27037. name: "Front",
  27038. image: {
  27039. source: "./media/characters/cecelia-swift/front.svg",
  27040. extra: 502 / 484,
  27041. bottom: 23 / 523
  27042. }
  27043. },
  27044. back: {
  27045. height: math.unit(5 + 9 / 12, "feet"),
  27046. weight: math.unit(130, "lb"),
  27047. name: "Back",
  27048. image: {
  27049. source: "./media/characters/cecelia-swift/back.svg",
  27050. extra: 499 / 485,
  27051. bottom: 12 / 511
  27052. }
  27053. },
  27054. head: {
  27055. height: math.unit(0.90, "feet"),
  27056. name: "Head",
  27057. image: {
  27058. source: "./media/characters/cecelia-swift/head.svg"
  27059. }
  27060. },
  27061. rump: {
  27062. height: math.unit(1.75, "feet"),
  27063. name: "Rump",
  27064. image: {
  27065. source: "./media/characters/cecelia-swift/rump.svg"
  27066. }
  27067. },
  27068. },
  27069. [
  27070. {
  27071. name: "Normal",
  27072. height: math.unit(5 + 9 / 12, "feet"),
  27073. default: true
  27074. },
  27075. {
  27076. name: "Big",
  27077. height: math.unit(50, "feet")
  27078. },
  27079. {
  27080. name: "Macro",
  27081. height: math.unit(100, "feet")
  27082. },
  27083. {
  27084. name: "Macro+",
  27085. height: math.unit(500, "feet")
  27086. },
  27087. {
  27088. name: "Macro++",
  27089. height: math.unit(1000, "feet")
  27090. },
  27091. ]
  27092. ))
  27093. characterMakers.push(() => makeCharacter(
  27094. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27095. {
  27096. front: {
  27097. height: math.unit(6, "feet"),
  27098. weight: math.unit(150, "lb"),
  27099. name: "Front",
  27100. image: {
  27101. source: "./media/characters/kaunan/front.svg",
  27102. extra: 2890 / 2523,
  27103. bottom: 49 / 2939
  27104. }
  27105. },
  27106. },
  27107. [
  27108. {
  27109. name: "Macro",
  27110. height: math.unit(150, "feet"),
  27111. default: true
  27112. },
  27113. ]
  27114. ))
  27115. characterMakers.push(() => makeCharacter(
  27116. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27117. {
  27118. front: {
  27119. height: math.unit(175, "cm"),
  27120. weight: math.unit(60, "kg"),
  27121. name: "Front",
  27122. image: {
  27123. source: "./media/characters/fei/front.svg",
  27124. extra: 2581 / 2400,
  27125. bottom: 82.2 / 2663
  27126. }
  27127. },
  27128. },
  27129. [
  27130. {
  27131. name: "Mortal",
  27132. height: math.unit(175, "cm")
  27133. },
  27134. {
  27135. name: "Normal",
  27136. height: math.unit(3500, "m"),
  27137. default: true
  27138. },
  27139. {
  27140. name: "Stroll",
  27141. height: math.unit(17.5, "km")
  27142. },
  27143. {
  27144. name: "Showoff",
  27145. height: math.unit(175, "km")
  27146. },
  27147. ]
  27148. ))
  27149. characterMakers.push(() => makeCharacter(
  27150. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27151. {
  27152. front: {
  27153. height: math.unit(7, "feet"),
  27154. weight: math.unit(1000, "kg"),
  27155. name: "Front",
  27156. image: {
  27157. source: "./media/characters/edrax/front.svg",
  27158. extra: 2838 / 2550,
  27159. bottom: 130 / 2968
  27160. }
  27161. },
  27162. },
  27163. [
  27164. {
  27165. name: "Small",
  27166. height: math.unit(7, "feet")
  27167. },
  27168. {
  27169. name: "Normal",
  27170. height: math.unit(1500, "meters")
  27171. },
  27172. {
  27173. name: "Mega",
  27174. height: math.unit(12000000, "km"),
  27175. default: true
  27176. },
  27177. {
  27178. name: "Megamacro",
  27179. height: math.unit(10600000, "lightyears")
  27180. },
  27181. {
  27182. name: "Hypermacro",
  27183. height: math.unit(256, "yottameters")
  27184. },
  27185. ]
  27186. ))
  27187. characterMakers.push(() => makeCharacter(
  27188. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27189. {
  27190. front: {
  27191. height: math.unit(10, "feet"),
  27192. weight: math.unit(750, "lb"),
  27193. name: "Front",
  27194. image: {
  27195. source: "./media/characters/clove/front.svg",
  27196. extra: 2031 / 1860,
  27197. bottom: 47.8 / 2080
  27198. }
  27199. },
  27200. back: {
  27201. height: math.unit(10, "feet"),
  27202. weight: math.unit(750, "lb"),
  27203. name: "Back",
  27204. image: {
  27205. source: "./media/characters/clove/back.svg",
  27206. extra: 2025 / 1859,
  27207. bottom: 46 / 2071
  27208. }
  27209. },
  27210. },
  27211. [
  27212. {
  27213. name: "Normal",
  27214. height: math.unit(10, "feet"),
  27215. default: true
  27216. },
  27217. ]
  27218. ))
  27219. characterMakers.push(() => makeCharacter(
  27220. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27221. {
  27222. front: {
  27223. height: math.unit(4, "feet"),
  27224. weight: math.unit(50, "lb"),
  27225. name: "Front",
  27226. image: {
  27227. source: "./media/characters/alex-rabbit/front.svg",
  27228. extra: 507 / 458,
  27229. bottom: 18.5 / 527
  27230. }
  27231. },
  27232. back: {
  27233. height: math.unit(4, "feet"),
  27234. weight: math.unit(50, "lb"),
  27235. name: "Back",
  27236. image: {
  27237. source: "./media/characters/alex-rabbit/back.svg",
  27238. extra: 502 / 460,
  27239. bottom: 18.9 / 521
  27240. }
  27241. },
  27242. },
  27243. [
  27244. {
  27245. name: "Normal",
  27246. height: math.unit(4, "feet"),
  27247. default: true
  27248. },
  27249. ]
  27250. ))
  27251. characterMakers.push(() => makeCharacter(
  27252. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27253. {
  27254. front: {
  27255. height: math.unit(1 + 3 / 12, "feet"),
  27256. weight: math.unit(80, "lb"),
  27257. name: "Front",
  27258. image: {
  27259. source: "./media/characters/zander-rose/front.svg",
  27260. extra: 916 / 797,
  27261. bottom: 17 / 933
  27262. }
  27263. },
  27264. back: {
  27265. height: math.unit(1 + 3 / 12, "feet"),
  27266. weight: math.unit(80, "lb"),
  27267. name: "Back",
  27268. image: {
  27269. source: "./media/characters/zander-rose/back.svg",
  27270. extra: 903 / 779,
  27271. bottom: 31 / 934
  27272. }
  27273. },
  27274. },
  27275. [
  27276. {
  27277. name: "Normal",
  27278. height: math.unit(1 + 3 / 12, "feet"),
  27279. default: true
  27280. },
  27281. ]
  27282. ))
  27283. characterMakers.push(() => makeCharacter(
  27284. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27285. {
  27286. anthro: {
  27287. height: math.unit(6, "feet"),
  27288. weight: math.unit(150, "lb"),
  27289. name: "Anthro",
  27290. image: {
  27291. source: "./media/characters/razz/anthro.svg",
  27292. extra: 1437 / 1343,
  27293. bottom: 48 / 1485
  27294. }
  27295. },
  27296. feral: {
  27297. height: math.unit(6, "feet"),
  27298. weight: math.unit(150, "lb"),
  27299. name: "Feral",
  27300. image: {
  27301. source: "./media/characters/razz/feral.svg",
  27302. extra: 2569 / 1385,
  27303. bottom: 95 / 2664
  27304. }
  27305. },
  27306. },
  27307. [
  27308. {
  27309. name: "Normal",
  27310. height: math.unit(6, "feet"),
  27311. default: true
  27312. },
  27313. ]
  27314. ))
  27315. characterMakers.push(() => makeCharacter(
  27316. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27317. {
  27318. front: {
  27319. height: math.unit(9 + 4 / 12, "feet"),
  27320. weight: math.unit(500, "lb"),
  27321. name: "Front",
  27322. image: {
  27323. source: "./media/characters/morrigan/front.svg",
  27324. extra: 2707 / 2579,
  27325. bottom: 156 / 2863
  27326. }
  27327. },
  27328. },
  27329. [
  27330. {
  27331. name: "Normal",
  27332. height: math.unit(9 + 4 / 12, "feet"),
  27333. default: true
  27334. },
  27335. ]
  27336. ))
  27337. characterMakers.push(() => makeCharacter(
  27338. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27339. {
  27340. front: {
  27341. height: math.unit(5, "stories"),
  27342. weight: math.unit(4000, "lb"),
  27343. name: "Front",
  27344. image: {
  27345. source: "./media/characters/jenene/front.svg",
  27346. extra: 1780 / 1710,
  27347. bottom: 57 / 1837
  27348. }
  27349. },
  27350. },
  27351. [
  27352. {
  27353. name: "Normal",
  27354. height: math.unit(5, "stories"),
  27355. default: true
  27356. },
  27357. ]
  27358. ))
  27359. characterMakers.push(() => makeCharacter(
  27360. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27361. {
  27362. front: {
  27363. height: math.unit(6, "feet"),
  27364. weight: math.unit(150, "lb"),
  27365. name: "Front",
  27366. image: {
  27367. source: "./media/characters/vix-archaser/front.svg",
  27368. extra: 2767 / 2562,
  27369. bottom: 36 / 2803
  27370. }
  27371. },
  27372. },
  27373. [
  27374. {
  27375. name: "Micro",
  27376. height: math.unit(1, "foot")
  27377. },
  27378. {
  27379. name: "Normal",
  27380. height: math.unit(6 + 5 / 12, "feet")
  27381. },
  27382. {
  27383. name: "Minimacro",
  27384. height: math.unit(500, "feet")
  27385. },
  27386. {
  27387. name: "Macro",
  27388. height: math.unit(4, "miles")
  27389. },
  27390. {
  27391. name: "Megamacro",
  27392. height: math.unit(250, "miles"),
  27393. default: true
  27394. },
  27395. {
  27396. name: "Gigamacro",
  27397. height: math.unit(1, "universe")
  27398. },
  27399. {
  27400. name: "Endgame",
  27401. height: math.unit(100, "multiverses")
  27402. }
  27403. ]
  27404. ))
  27405. characterMakers.push(() => makeCharacter(
  27406. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27407. {
  27408. taurSfw: {
  27409. height: math.unit(10, "meters"),
  27410. weight: math.unit(17500, "kg"),
  27411. name: "Taur",
  27412. image: {
  27413. source: "./media/characters/faey/taur-sfw.svg",
  27414. extra: 1200 / 968,
  27415. bottom: 41 / 1241
  27416. }
  27417. },
  27418. chestmaw: {
  27419. height: math.unit(2.01, "meters"),
  27420. name: "Chestmaw",
  27421. image: {
  27422. source: "./media/characters/faey/chestmaw.svg"
  27423. }
  27424. },
  27425. foot: {
  27426. height: math.unit(2.43, "meters"),
  27427. name: "Foot",
  27428. image: {
  27429. source: "./media/characters/faey/foot.svg"
  27430. }
  27431. },
  27432. jaws: {
  27433. height: math.unit(1.66, "meters"),
  27434. name: "Jaws",
  27435. image: {
  27436. source: "./media/characters/faey/jaws.svg"
  27437. }
  27438. },
  27439. tongues: {
  27440. height: math.unit(2.01, "meters"),
  27441. name: "Tongues",
  27442. image: {
  27443. source: "./media/characters/faey/tongues.svg"
  27444. }
  27445. },
  27446. },
  27447. [
  27448. {
  27449. name: "Small",
  27450. height: math.unit(10, "meters"),
  27451. default: true
  27452. },
  27453. {
  27454. name: "Big",
  27455. height: math.unit(500000, "km")
  27456. },
  27457. ]
  27458. ))
  27459. characterMakers.push(() => makeCharacter(
  27460. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27461. {
  27462. front: {
  27463. height: math.unit(7, "feet"),
  27464. weight: math.unit(275, "lb"),
  27465. name: "Front",
  27466. image: {
  27467. source: "./media/characters/roku/front.svg",
  27468. extra: 903 / 878,
  27469. bottom: 37 / 940
  27470. }
  27471. },
  27472. },
  27473. [
  27474. {
  27475. name: "Normal",
  27476. height: math.unit(7, "feet"),
  27477. default: true
  27478. },
  27479. {
  27480. name: "Macro",
  27481. height: math.unit(500, "feet")
  27482. },
  27483. {
  27484. name: "Megamacro",
  27485. height: math.unit(200, "miles")
  27486. },
  27487. ]
  27488. ))
  27489. characterMakers.push(() => makeCharacter(
  27490. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27491. {
  27492. front: {
  27493. height: math.unit(6 + 2 / 12, "feet"),
  27494. weight: math.unit(150, "lb"),
  27495. name: "Front",
  27496. image: {
  27497. source: "./media/characters/lira/front.svg",
  27498. extra: 1727 / 1605,
  27499. bottom: 26 / 1753
  27500. }
  27501. },
  27502. back: {
  27503. height: math.unit(6 + 2 / 12, "feet"),
  27504. weight: math.unit(150, "lb"),
  27505. name: "Back",
  27506. image: {
  27507. source: "./media/characters/lira/back.svg",
  27508. extra: 1713 / 159,
  27509. bottom: 20 / 1733
  27510. }
  27511. },
  27512. hand: {
  27513. height: math.unit(0.75, "feet"),
  27514. name: "Hand",
  27515. image: {
  27516. source: "./media/characters/lira/hand.svg"
  27517. }
  27518. },
  27519. maw: {
  27520. height: math.unit(0.65, "feet"),
  27521. name: "Maw",
  27522. image: {
  27523. source: "./media/characters/lira/maw.svg"
  27524. }
  27525. },
  27526. pawDigi: {
  27527. height: math.unit(1.6, "feet"),
  27528. name: "Paw Digi",
  27529. image: {
  27530. source: "./media/characters/lira/paw-digi.svg"
  27531. }
  27532. },
  27533. pawPlanti: {
  27534. height: math.unit(1.4, "feet"),
  27535. name: "Paw Planti",
  27536. image: {
  27537. source: "./media/characters/lira/paw-planti.svg"
  27538. }
  27539. },
  27540. },
  27541. [
  27542. {
  27543. name: "Normal",
  27544. height: math.unit(6 + 2 / 12, "feet"),
  27545. default: true
  27546. },
  27547. {
  27548. name: "Macro",
  27549. height: math.unit(100, "feet")
  27550. },
  27551. {
  27552. name: "Macro²",
  27553. height: math.unit(1600, "feet")
  27554. },
  27555. {
  27556. name: "Planetary",
  27557. height: math.unit(20, "earths")
  27558. },
  27559. ]
  27560. ))
  27561. characterMakers.push(() => makeCharacter(
  27562. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27563. {
  27564. front: {
  27565. height: math.unit(6, "feet"),
  27566. weight: math.unit(150, "lb"),
  27567. name: "Front",
  27568. image: {
  27569. source: "./media/characters/hadjet/front.svg",
  27570. extra: 1480 / 1346,
  27571. bottom: 26 / 1506
  27572. }
  27573. },
  27574. frontNsfw: {
  27575. height: math.unit(6, "feet"),
  27576. weight: math.unit(150, "lb"),
  27577. name: "Front (NSFW)",
  27578. image: {
  27579. source: "./media/characters/hadjet/front-nsfw.svg",
  27580. extra: 1440 / 1358,
  27581. bottom: 52 / 1492
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Macro",
  27588. height: math.unit(10, "stories"),
  27589. default: true
  27590. },
  27591. {
  27592. name: "Megamacro",
  27593. height: math.unit(1.5, "miles")
  27594. },
  27595. {
  27596. name: "Megamacro+",
  27597. height: math.unit(5, "miles")
  27598. },
  27599. ]
  27600. ))
  27601. characterMakers.push(() => makeCharacter(
  27602. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27603. {
  27604. side: {
  27605. height: math.unit(106, "feet"),
  27606. weight: math.unit(500, "tonnes"),
  27607. name: "Side",
  27608. image: {
  27609. source: "./media/characters/kodran/side.svg",
  27610. extra: 553 / 480,
  27611. bottom: 33 / 586
  27612. }
  27613. },
  27614. front: {
  27615. height: math.unit(132, "feet"),
  27616. weight: math.unit(500, "tonnes"),
  27617. name: "Front",
  27618. image: {
  27619. source: "./media/characters/kodran/front.svg",
  27620. extra: 667 / 643,
  27621. bottom: 42 / 709
  27622. }
  27623. },
  27624. flying: {
  27625. height: math.unit(350, "feet"),
  27626. weight: math.unit(500, "tonnes"),
  27627. name: "Flying",
  27628. image: {
  27629. source: "./media/characters/kodran/flying.svg"
  27630. }
  27631. },
  27632. foot: {
  27633. height: math.unit(33, "feet"),
  27634. name: "Foot",
  27635. image: {
  27636. source: "./media/characters/kodran/foot.svg"
  27637. }
  27638. },
  27639. footFront: {
  27640. height: math.unit(19, "feet"),
  27641. name: "Foot (Front)",
  27642. image: {
  27643. source: "./media/characters/kodran/foot-front.svg",
  27644. extra: 261 / 261,
  27645. bottom: 91 / 352
  27646. }
  27647. },
  27648. headFront: {
  27649. height: math.unit(53, "feet"),
  27650. name: "Head (Front)",
  27651. image: {
  27652. source: "./media/characters/kodran/head-front.svg"
  27653. }
  27654. },
  27655. headSide: {
  27656. height: math.unit(65, "feet"),
  27657. name: "Head (Side)",
  27658. image: {
  27659. source: "./media/characters/kodran/head-side.svg"
  27660. }
  27661. },
  27662. throat: {
  27663. height: math.unit(79, "feet"),
  27664. name: "Throat",
  27665. image: {
  27666. source: "./media/characters/kodran/throat.svg"
  27667. }
  27668. },
  27669. },
  27670. [
  27671. {
  27672. name: "Large",
  27673. height: math.unit(106, "feet"),
  27674. default: true
  27675. },
  27676. ]
  27677. ))
  27678. characterMakers.push(() => makeCharacter(
  27679. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27680. {
  27681. side: {
  27682. height: math.unit(11, "feet"),
  27683. weight: math.unit(150, "lb"),
  27684. name: "Side",
  27685. image: {
  27686. source: "./media/characters/pyxaron/side.svg",
  27687. extra: 305 / 195,
  27688. bottom: 17 / 322
  27689. }
  27690. },
  27691. },
  27692. [
  27693. {
  27694. name: "Normal",
  27695. height: math.unit(11, "feet"),
  27696. default: true
  27697. },
  27698. ]
  27699. ))
  27700. characterMakers.push(() => makeCharacter(
  27701. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27702. {
  27703. front: {
  27704. height: math.unit(6, "feet"),
  27705. weight: math.unit(150, "lb"),
  27706. name: "Front",
  27707. image: {
  27708. source: "./media/characters/meep/front.svg",
  27709. extra: 88 / 80,
  27710. bottom: 6 / 94
  27711. }
  27712. },
  27713. },
  27714. [
  27715. {
  27716. name: "Fun Sized",
  27717. height: math.unit(2, "inches"),
  27718. default: true
  27719. },
  27720. {
  27721. name: "Friend Sized",
  27722. height: math.unit(8, "inches")
  27723. },
  27724. ]
  27725. ))
  27726. characterMakers.push(() => makeCharacter(
  27727. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27728. {
  27729. front: {
  27730. height: math.unit(15, "feet"),
  27731. weight: math.unit(2500, "lb"),
  27732. name: "Front",
  27733. image: {
  27734. source: "./media/characters/holly-rabbit/front.svg",
  27735. extra: 1433 / 1233,
  27736. bottom: 125 / 1558
  27737. }
  27738. },
  27739. dick: {
  27740. height: math.unit(4.6, "feet"),
  27741. name: "Dick",
  27742. image: {
  27743. source: "./media/characters/holly-rabbit/dick.svg"
  27744. }
  27745. },
  27746. },
  27747. [
  27748. {
  27749. name: "Normal",
  27750. height: math.unit(15, "feet"),
  27751. default: true
  27752. },
  27753. {
  27754. name: "Macro",
  27755. height: math.unit(250, "feet")
  27756. },
  27757. {
  27758. name: "Macro+",
  27759. height: math.unit(2500, "feet")
  27760. },
  27761. ]
  27762. ))
  27763. characterMakers.push(() => makeCharacter(
  27764. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27765. {
  27766. front: {
  27767. height: math.unit(3.02, "meters"),
  27768. weight: math.unit(500, "kg"),
  27769. name: "Front",
  27770. image: {
  27771. source: "./media/characters/drena/front.svg",
  27772. extra: 282 / 243,
  27773. bottom: 8 / 290
  27774. }
  27775. },
  27776. side: {
  27777. height: math.unit(3.02, "meters"),
  27778. weight: math.unit(500, "kg"),
  27779. name: "Side",
  27780. image: {
  27781. source: "./media/characters/drena/side.svg",
  27782. extra: 280 / 245,
  27783. bottom: 10 / 290
  27784. }
  27785. },
  27786. back: {
  27787. height: math.unit(3.02, "meters"),
  27788. weight: math.unit(500, "kg"),
  27789. name: "Back",
  27790. image: {
  27791. source: "./media/characters/drena/back.svg",
  27792. extra: 278 / 243,
  27793. bottom: 2 / 280
  27794. }
  27795. },
  27796. foot: {
  27797. height: math.unit(0.75, "meters"),
  27798. name: "Foot",
  27799. image: {
  27800. source: "./media/characters/drena/foot.svg"
  27801. }
  27802. },
  27803. maw: {
  27804. height: math.unit(0.82, "meters"),
  27805. name: "Maw",
  27806. image: {
  27807. source: "./media/characters/drena/maw.svg"
  27808. }
  27809. },
  27810. rump: {
  27811. height: math.unit(0.93, "meters"),
  27812. name: "Rump",
  27813. image: {
  27814. source: "./media/characters/drena/rump.svg"
  27815. }
  27816. },
  27817. },
  27818. [
  27819. {
  27820. name: "Normal",
  27821. height: math.unit(3.02, "meters"),
  27822. default: true
  27823. },
  27824. ]
  27825. ))
  27826. characterMakers.push(() => makeCharacter(
  27827. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27828. {
  27829. front: {
  27830. height: math.unit(6 + 4 / 12, "feet"),
  27831. weight: math.unit(250, "lb"),
  27832. name: "Front",
  27833. image: {
  27834. source: "./media/characters/remmyzilla/front.svg",
  27835. extra: 4033 / 3588,
  27836. bottom: 123 / 4156
  27837. }
  27838. },
  27839. back: {
  27840. height: math.unit(6 + 4 / 12, "feet"),
  27841. weight: math.unit(250, "lb"),
  27842. name: "Back",
  27843. image: {
  27844. source: "./media/characters/remmyzilla/back.svg",
  27845. extra: 2687 / 2555,
  27846. bottom: 48 / 2735
  27847. }
  27848. },
  27849. frontFancy: {
  27850. height: math.unit(6 + 4 / 12, "feet"),
  27851. weight: math.unit(250, "lb"),
  27852. name: "Front (Fancy)",
  27853. image: {
  27854. source: "./media/characters/remmyzilla/front-fancy.svg",
  27855. extra: 4119 / 3419,
  27856. bottom: 237 / 4356
  27857. }
  27858. },
  27859. paw: {
  27860. height: math.unit(1.73, "feet"),
  27861. name: "Paw",
  27862. image: {
  27863. source: "./media/characters/remmyzilla/paw.svg"
  27864. }
  27865. },
  27866. maw: {
  27867. height: math.unit(1.73, "feet"),
  27868. name: "Maw",
  27869. image: {
  27870. source: "./media/characters/remmyzilla/maw.svg"
  27871. }
  27872. },
  27873. },
  27874. [
  27875. {
  27876. name: "Normal",
  27877. height: math.unit(6 + 4 / 12, "feet")
  27878. },
  27879. {
  27880. name: "Minimacro",
  27881. height: math.unit(12 + 8 / 12, "feet")
  27882. },
  27883. {
  27884. name: "Normal",
  27885. height: math.unit(640, "feet"),
  27886. default: true
  27887. },
  27888. {
  27889. name: "Megamacro",
  27890. height: math.unit(6400, "feet")
  27891. },
  27892. {
  27893. name: "Gigamacro",
  27894. height: math.unit(64000, "miles")
  27895. },
  27896. ]
  27897. ))
  27898. characterMakers.push(() => makeCharacter(
  27899. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27900. {
  27901. front: {
  27902. height: math.unit(2.5, "meters"),
  27903. weight: math.unit(300, "lb"),
  27904. name: "Front",
  27905. image: {
  27906. source: "./media/characters/lawrence/front.svg",
  27907. extra: 357 / 335,
  27908. bottom: 30 / 387
  27909. }
  27910. },
  27911. back: {
  27912. height: math.unit(2.5, "meters"),
  27913. weight: math.unit(300, "lb"),
  27914. name: "Back",
  27915. image: {
  27916. source: "./media/characters/lawrence/back.svg",
  27917. extra: 357 / 338,
  27918. bottom: 16 / 373
  27919. }
  27920. },
  27921. head: {
  27922. height: math.unit(0.9, "meter"),
  27923. name: "Head",
  27924. image: {
  27925. source: "./media/characters/lawrence/head.svg"
  27926. }
  27927. },
  27928. maw: {
  27929. height: math.unit(0.7, "meter"),
  27930. name: "Maw",
  27931. image: {
  27932. source: "./media/characters/lawrence/maw.svg"
  27933. }
  27934. },
  27935. footBottom: {
  27936. height: math.unit(0.5, "meter"),
  27937. name: "Foot (Bottom)",
  27938. image: {
  27939. source: "./media/characters/lawrence/foot-bottom.svg"
  27940. }
  27941. },
  27942. footTop: {
  27943. height: math.unit(0.5, "meter"),
  27944. name: "Foot (Top)",
  27945. image: {
  27946. source: "./media/characters/lawrence/foot-top.svg"
  27947. }
  27948. },
  27949. },
  27950. [
  27951. {
  27952. name: "Normal",
  27953. height: math.unit(2.5, "meters"),
  27954. default: true
  27955. },
  27956. {
  27957. name: "Macro",
  27958. height: math.unit(95, "meters")
  27959. },
  27960. {
  27961. name: "Megamacro",
  27962. height: math.unit(150, "km")
  27963. },
  27964. ]
  27965. ))
  27966. characterMakers.push(() => makeCharacter(
  27967. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27968. {
  27969. front: {
  27970. height: math.unit(4.2, "meters"),
  27971. name: "Front",
  27972. image: {
  27973. source: "./media/characters/sydney/front.svg",
  27974. extra: 1323 / 1277,
  27975. bottom: 111 / 1434
  27976. }
  27977. },
  27978. },
  27979. [
  27980. {
  27981. name: "Normal",
  27982. height: math.unit(4.2, "meters"),
  27983. default: true
  27984. },
  27985. ]
  27986. ))
  27987. characterMakers.push(() => makeCharacter(
  27988. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27989. {
  27990. back: {
  27991. height: math.unit(201, "feet"),
  27992. name: "Back",
  27993. image: {
  27994. source: "./media/characters/jessica/back.svg",
  27995. extra: 273 / 259,
  27996. bottom: 7 / 280
  27997. }
  27998. },
  27999. },
  28000. [
  28001. {
  28002. name: "Normal",
  28003. height: math.unit(201, "feet"),
  28004. default: true
  28005. },
  28006. {
  28007. name: "Megamacro",
  28008. height: math.unit(8, "miles")
  28009. },
  28010. ]
  28011. ))
  28012. characterMakers.push(() => makeCharacter(
  28013. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28014. {
  28015. side: {
  28016. height: math.unit(320, "cm"),
  28017. name: "Side",
  28018. image: {
  28019. source: "./media/characters/victoria/side.svg",
  28020. extra: 778 / 346,
  28021. bottom: 56 / 834
  28022. }
  28023. },
  28024. maw: {
  28025. height: math.unit(5.9, "feet"),
  28026. name: "Maw",
  28027. image: {
  28028. source: "./media/characters/victoria/maw.svg"
  28029. }
  28030. },
  28031. },
  28032. [
  28033. {
  28034. name: "Normal",
  28035. height: math.unit(320, "cm"),
  28036. default: true
  28037. },
  28038. ]
  28039. ))
  28040. characterMakers.push(() => makeCharacter(
  28041. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28042. {
  28043. front: {
  28044. height: math.unit(5 + 6 / 12, "feet"),
  28045. name: "Front",
  28046. image: {
  28047. source: "./media/characters/cat/front.svg",
  28048. extra: 1374 / 1257,
  28049. bottom: 59 / 1433
  28050. }
  28051. },
  28052. back: {
  28053. height: math.unit(5 + 6 / 12, "feet"),
  28054. name: "Back",
  28055. image: {
  28056. source: "./media/characters/cat/back.svg",
  28057. extra: 1337 / 1226,
  28058. bottom: 34 / 1371
  28059. }
  28060. },
  28061. taur: {
  28062. height: math.unit(7, "feet"),
  28063. name: "Taur",
  28064. image: {
  28065. source: "./media/characters/cat/taur.svg",
  28066. extra: 1345 / 1231,
  28067. bottom: 66 / 1411
  28068. }
  28069. },
  28070. lucario: {
  28071. height: math.unit(4, "feet"),
  28072. name: "Lucario",
  28073. image: {
  28074. source: "./media/characters/cat/lucario.svg",
  28075. extra: 1470 / 1318,
  28076. bottom: 65 / 1535
  28077. }
  28078. },
  28079. megaLucario: {
  28080. height: math.unit(4, "feet"),
  28081. name: "Mega Lucario",
  28082. image: {
  28083. source: "./media/characters/cat/mega-lucario.svg",
  28084. extra: 1515 / 1319,
  28085. bottom: 63 / 1578
  28086. }
  28087. },
  28088. nickit: {
  28089. height: math.unit(2, "feet"),
  28090. name: "Nickit",
  28091. image: {
  28092. source: "./media/characters/cat/nickit.svg",
  28093. extra: 1980 / 1585,
  28094. bottom: 102 / 2082
  28095. }
  28096. },
  28097. lopunnyFront: {
  28098. height: math.unit(5, "feet"),
  28099. name: "Lopunny (Front)",
  28100. image: {
  28101. source: "./media/characters/cat/lopunny-front.svg",
  28102. extra: 1782 / 1469,
  28103. bottom: 38 / 1820
  28104. }
  28105. },
  28106. lopunnyBack: {
  28107. height: math.unit(5, "feet"),
  28108. name: "Lopunny (Back)",
  28109. image: {
  28110. source: "./media/characters/cat/lopunny-back.svg",
  28111. extra: 1660 / 1490,
  28112. bottom: 25 / 1685
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Really small",
  28119. height: math.unit(1, "nm")
  28120. },
  28121. {
  28122. name: "Micro",
  28123. height: math.unit(5, "inches")
  28124. },
  28125. {
  28126. name: "Normal",
  28127. height: math.unit(5 + 6 / 12, "feet"),
  28128. default: true
  28129. },
  28130. {
  28131. name: "Macro",
  28132. height: math.unit(50, "feet")
  28133. },
  28134. {
  28135. name: "Macro+",
  28136. height: math.unit(150, "feet")
  28137. },
  28138. {
  28139. name: "Megamacro",
  28140. height: math.unit(100, "miles")
  28141. },
  28142. ]
  28143. ))
  28144. characterMakers.push(() => makeCharacter(
  28145. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28146. {
  28147. front: {
  28148. height: math.unit(63.4, "meters"),
  28149. weight: math.unit(3.28349e+6, "kilograms"),
  28150. name: "Front",
  28151. image: {
  28152. source: "./media/characters/kirina-violet/front.svg",
  28153. extra: 2812 / 2725,
  28154. bottom: 0 / 2812
  28155. }
  28156. },
  28157. back: {
  28158. height: math.unit(63.4, "meters"),
  28159. weight: math.unit(3.28349e+6, "kilograms"),
  28160. name: "Back",
  28161. image: {
  28162. source: "./media/characters/kirina-violet/back.svg",
  28163. extra: 2812 / 2725,
  28164. bottom: 0 / 2812
  28165. }
  28166. },
  28167. mouth: {
  28168. height: math.unit(4.35, "meters"),
  28169. name: "Mouth",
  28170. image: {
  28171. source: "./media/characters/kirina-violet/mouth.svg"
  28172. }
  28173. },
  28174. paw: {
  28175. height: math.unit(5.6, "meters"),
  28176. name: "Paw",
  28177. image: {
  28178. source: "./media/characters/kirina-violet/paw.svg"
  28179. }
  28180. },
  28181. tail: {
  28182. height: math.unit(18, "meters"),
  28183. name: "Tail",
  28184. image: {
  28185. source: "./media/characters/kirina-violet/tail.svg"
  28186. }
  28187. },
  28188. },
  28189. [
  28190. {
  28191. name: "Macro",
  28192. height: math.unit(63.4, "meters"),
  28193. default: true
  28194. },
  28195. ]
  28196. ))
  28197. characterMakers.push(() => makeCharacter(
  28198. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28199. {
  28200. front: {
  28201. height: math.unit(60, "feet"),
  28202. name: "Front",
  28203. image: {
  28204. source: "./media/characters/cat-gigachu/front.svg",
  28205. extra: 1024 / 780,
  28206. bottom: 23 / 1047
  28207. }
  28208. },
  28209. back: {
  28210. height: math.unit(60, "feet"),
  28211. name: "Back",
  28212. image: {
  28213. source: "./media/characters/cat-gigachu/back.svg",
  28214. extra: 1024 / 780,
  28215. bottom: 23 / 1047
  28216. }
  28217. },
  28218. },
  28219. [
  28220. {
  28221. name: "Dynamax",
  28222. height: math.unit(60, "feet"),
  28223. default: true
  28224. },
  28225. ]
  28226. ))
  28227. characterMakers.push(() => makeCharacter(
  28228. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28229. {
  28230. front: {
  28231. height: math.unit(6, "feet"),
  28232. weight: math.unit(150, "lb"),
  28233. name: "Front",
  28234. image: {
  28235. source: "./media/characters/sfaiyan/front.svg",
  28236. extra: 999 / 978,
  28237. bottom: 5 / 1004
  28238. }
  28239. },
  28240. },
  28241. [
  28242. {
  28243. name: "Normal",
  28244. height: math.unit(1.82, "meters")
  28245. },
  28246. {
  28247. name: "Giant",
  28248. height: math.unit(2.27, "km"),
  28249. default: true
  28250. },
  28251. ]
  28252. ))
  28253. characterMakers.push(() => makeCharacter(
  28254. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28255. {
  28256. front: {
  28257. height: math.unit(179, "cm"),
  28258. weight: math.unit(100, "kg"),
  28259. name: "Front",
  28260. image: {
  28261. source: "./media/characters/raunehkeli/front.svg",
  28262. extra: 1934 / 1926,
  28263. bottom: 0 / 1934
  28264. }
  28265. },
  28266. },
  28267. [
  28268. {
  28269. name: "Normal",
  28270. height: math.unit(179, "cm")
  28271. },
  28272. {
  28273. name: "Maximum",
  28274. height: math.unit(575, "meters"),
  28275. default: true
  28276. },
  28277. ]
  28278. ))
  28279. characterMakers.push(() => makeCharacter(
  28280. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28281. {
  28282. front: {
  28283. height: math.unit(6, "feet"),
  28284. weight: math.unit(150, "lb"),
  28285. name: "Front",
  28286. image: {
  28287. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28288. extra: 2625 / 2518,
  28289. bottom: 60 / 2685
  28290. }
  28291. },
  28292. },
  28293. [
  28294. {
  28295. name: "Normal",
  28296. height: math.unit(6 + 2 / 12, "feet"),
  28297. default: true
  28298. },
  28299. {
  28300. name: "Macro",
  28301. height: math.unit(1180, "feet")
  28302. },
  28303. ]
  28304. ))
  28305. characterMakers.push(() => makeCharacter(
  28306. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28307. {
  28308. front: {
  28309. height: math.unit(5 + 6 / 12, "feet"),
  28310. weight: math.unit(108, "lb"),
  28311. name: "Front",
  28312. image: {
  28313. source: "./media/characters/lilith-zott/front.svg",
  28314. extra: 2510 / 2238,
  28315. bottom: 100 / 2610
  28316. }
  28317. },
  28318. frontDressed: {
  28319. height: math.unit(5 + 6 / 12, "feet"),
  28320. weight: math.unit(108, "lb"),
  28321. name: "Front (Dressed)",
  28322. image: {
  28323. source: "./media/characters/lilith-zott/front-dressed.svg",
  28324. extra: 2510 / 2238,
  28325. bottom: 100 / 2610
  28326. }
  28327. },
  28328. },
  28329. [
  28330. {
  28331. name: "Normal",
  28332. height: math.unit(5 + 6 / 12, "feet")
  28333. },
  28334. {
  28335. name: "Macro",
  28336. height: math.unit(200, "feet"),
  28337. default: true
  28338. },
  28339. {
  28340. name: "Macro+",
  28341. height: math.unit(1030, "feet")
  28342. },
  28343. ]
  28344. ))
  28345. characterMakers.push(() => makeCharacter(
  28346. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28347. {
  28348. front: {
  28349. height: math.unit(6, "feet"),
  28350. weight: math.unit(150, "lb"),
  28351. name: "Front",
  28352. image: {
  28353. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28354. extra: 2567 / 2435,
  28355. bottom: 39 / 2606
  28356. }
  28357. },
  28358. frontSuper: {
  28359. height: math.unit(6, "feet"),
  28360. name: "Front (Super)",
  28361. image: {
  28362. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28363. extra: 2567 / 2435,
  28364. bottom: 39 / 2606
  28365. }
  28366. },
  28367. },
  28368. [
  28369. {
  28370. name: "Normal",
  28371. height: math.unit(5 + 10 / 12, "feet")
  28372. },
  28373. {
  28374. name: "Macro",
  28375. height: math.unit(220, "feet"),
  28376. default: true
  28377. },
  28378. {
  28379. name: "Macro+",
  28380. height: math.unit(1100, "feet")
  28381. },
  28382. ]
  28383. ))
  28384. characterMakers.push(() => makeCharacter(
  28385. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28386. {
  28387. front: {
  28388. height: math.unit(100, "miles"),
  28389. name: "Front",
  28390. image: {
  28391. source: "./media/characters/sona/front.svg",
  28392. extra: 2433 / 2201,
  28393. bottom: 53 / 2486
  28394. }
  28395. },
  28396. foot: {
  28397. height: math.unit(16.1, "miles"),
  28398. name: "Foot",
  28399. image: {
  28400. source: "./media/characters/sona/foot.svg"
  28401. }
  28402. },
  28403. },
  28404. [
  28405. {
  28406. name: "Macro",
  28407. height: math.unit(100, "miles"),
  28408. default: true
  28409. },
  28410. ]
  28411. ))
  28412. characterMakers.push(() => makeCharacter(
  28413. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28414. {
  28415. front: {
  28416. height: math.unit(6, "feet"),
  28417. weight: math.unit(150, "lb"),
  28418. name: "Front",
  28419. image: {
  28420. source: "./media/characters/bailey/front.svg",
  28421. extra: 1778 / 1724,
  28422. bottom: 30 / 1808
  28423. }
  28424. },
  28425. },
  28426. [
  28427. {
  28428. name: "Micro",
  28429. height: math.unit(4, "inches")
  28430. },
  28431. {
  28432. name: "Normal",
  28433. height: math.unit(5 + 5 / 12, "feet"),
  28434. default: true
  28435. },
  28436. {
  28437. name: "Macro",
  28438. height: math.unit(250, "feet")
  28439. },
  28440. {
  28441. name: "Megamacro",
  28442. height: math.unit(100, "miles")
  28443. },
  28444. ]
  28445. ))
  28446. characterMakers.push(() => makeCharacter(
  28447. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28448. {
  28449. front: {
  28450. height: math.unit(5 + 2 / 12, "feet"),
  28451. weight: math.unit(120, "lb"),
  28452. name: "Front",
  28453. image: {
  28454. source: "./media/characters/snaps/front.svg",
  28455. extra: 2370 / 2177,
  28456. bottom: 48 / 2418
  28457. }
  28458. },
  28459. back: {
  28460. height: math.unit(5 + 2 / 12, "feet"),
  28461. weight: math.unit(120, "lb"),
  28462. name: "Back",
  28463. image: {
  28464. source: "./media/characters/snaps/back.svg",
  28465. extra: 2408 / 2258,
  28466. bottom: 15 / 2423
  28467. }
  28468. },
  28469. },
  28470. [
  28471. {
  28472. name: "Micro",
  28473. height: math.unit(9, "inches")
  28474. },
  28475. {
  28476. name: "Normal",
  28477. height: math.unit(5 + 2 / 12, "feet"),
  28478. default: true
  28479. },
  28480. {
  28481. name: "Mini Macro",
  28482. height: math.unit(10, "feet")
  28483. },
  28484. ]
  28485. ))
  28486. characterMakers.push(() => makeCharacter(
  28487. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28488. {
  28489. front: {
  28490. height: math.unit(1.8, "meters"),
  28491. weight: math.unit(85, "kg"),
  28492. name: "Front",
  28493. image: {
  28494. source: "./media/characters/azteck/front.svg",
  28495. extra: 2815 / 2625,
  28496. bottom: 89 / 2904
  28497. }
  28498. },
  28499. back: {
  28500. height: math.unit(1.8, "meters"),
  28501. weight: math.unit(85, "kg"),
  28502. name: "Back",
  28503. image: {
  28504. source: "./media/characters/azteck/back.svg",
  28505. extra: 2856 / 2648,
  28506. bottom: 85 / 2941
  28507. }
  28508. },
  28509. frontDressed: {
  28510. height: math.unit(1.8, "meters"),
  28511. weight: math.unit(85, "kg"),
  28512. name: "Front (Dressed)",
  28513. image: {
  28514. source: "./media/characters/azteck/front-dressed.svg",
  28515. extra: 2147 / 2003,
  28516. bottom: 68 / 2215
  28517. }
  28518. },
  28519. head: {
  28520. height: math.unit(0.47, "meters"),
  28521. weight: math.unit(85, "kg"),
  28522. name: "Head",
  28523. image: {
  28524. source: "./media/characters/azteck/head.svg"
  28525. }
  28526. },
  28527. },
  28528. [
  28529. {
  28530. name: "Bite sized",
  28531. height: math.unit(16, "cm")
  28532. },
  28533. {
  28534. name: "Normal",
  28535. height: math.unit(1.8, "meters"),
  28536. default: true
  28537. },
  28538. ]
  28539. ))
  28540. characterMakers.push(() => makeCharacter(
  28541. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28542. {
  28543. front: {
  28544. height: math.unit(6, "feet"),
  28545. weight: math.unit(150, "lb"),
  28546. name: "Front",
  28547. image: {
  28548. source: "./media/characters/pidge/front.svg",
  28549. extra: 620 / 588,
  28550. bottom: 9 / 629
  28551. }
  28552. },
  28553. back: {
  28554. height: math.unit(6, "feet"),
  28555. weight: math.unit(150, "lb"),
  28556. name: "Back",
  28557. image: {
  28558. source: "./media/characters/pidge/back.svg",
  28559. extra: 620 / 588,
  28560. bottom: 9 / 629
  28561. }
  28562. },
  28563. },
  28564. [
  28565. {
  28566. name: "Macro",
  28567. height: math.unit(1, "mile"),
  28568. default: true
  28569. },
  28570. ]
  28571. ))
  28572. characterMakers.push(() => makeCharacter(
  28573. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28574. {
  28575. front: {
  28576. height: math.unit(6, "feet"),
  28577. weight: math.unit(150, "lb"),
  28578. name: "Front",
  28579. image: {
  28580. source: "./media/characters/en/front.svg",
  28581. extra: 1697 / 1563,
  28582. bottom: 103 / 1800
  28583. }
  28584. },
  28585. back: {
  28586. height: math.unit(6, "feet"),
  28587. weight: math.unit(150, "lb"),
  28588. name: "Back",
  28589. image: {
  28590. source: "./media/characters/en/back.svg",
  28591. extra: 1700 / 1570,
  28592. bottom: 51 / 1751
  28593. }
  28594. },
  28595. frontDressed: {
  28596. height: math.unit(6, "feet"),
  28597. weight: math.unit(150, "lb"),
  28598. name: "Front (Dressed)",
  28599. image: {
  28600. source: "./media/characters/en/front-dressed.svg",
  28601. extra: 1697 / 1563,
  28602. bottom: 103 / 1800
  28603. }
  28604. },
  28605. backDressed: {
  28606. height: math.unit(6, "feet"),
  28607. weight: math.unit(150, "lb"),
  28608. name: "Back (Dressed)",
  28609. image: {
  28610. source: "./media/characters/en/back-dressed.svg",
  28611. extra: 1700 / 1570,
  28612. bottom: 51 / 1751
  28613. }
  28614. },
  28615. },
  28616. [
  28617. {
  28618. name: "Macro",
  28619. height: math.unit(210, "feet"),
  28620. default: true
  28621. },
  28622. ]
  28623. ))
  28624. characterMakers.push(() => makeCharacter(
  28625. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28626. {
  28627. front: {
  28628. height: math.unit(6, "feet"),
  28629. weight: math.unit(150, "lb"),
  28630. name: "Front",
  28631. image: {
  28632. source: "./media/characters/haze-orris/front.svg",
  28633. extra: 3975 / 3525,
  28634. bottom: 137 / 4112
  28635. }
  28636. },
  28637. },
  28638. [
  28639. {
  28640. name: "Micro",
  28641. height: math.unit(150, "mm"),
  28642. default: true
  28643. },
  28644. ]
  28645. ))
  28646. characterMakers.push(() => makeCharacter(
  28647. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28648. {
  28649. front: {
  28650. height: math.unit(6, "feet"),
  28651. weight: math.unit(150, "lb"),
  28652. name: "Front",
  28653. image: {
  28654. source: "./media/characters/casselene-yaro/front.svg",
  28655. extra: 4721 / 4541,
  28656. bottom: 82 / 4803
  28657. }
  28658. },
  28659. back: {
  28660. height: math.unit(6, "feet"),
  28661. weight: math.unit(150, "lb"),
  28662. name: "Back",
  28663. image: {
  28664. source: "./media/characters/casselene-yaro/back.svg",
  28665. extra: 4569 / 4377,
  28666. bottom: 69 / 4638
  28667. }
  28668. },
  28669. frontDressed: {
  28670. height: math.unit(6, "feet"),
  28671. weight: math.unit(150, "lb"),
  28672. name: "Front-dressed",
  28673. image: {
  28674. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28675. extra: 4721 / 4541,
  28676. bottom: 82 / 4803
  28677. }
  28678. },
  28679. },
  28680. [
  28681. {
  28682. name: "Macro",
  28683. height: math.unit(190, "feet"),
  28684. default: true
  28685. },
  28686. ]
  28687. ))
  28688. characterMakers.push(() => makeCharacter(
  28689. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28690. {
  28691. front: {
  28692. height: math.unit(6, "feet"),
  28693. weight: math.unit(150, "lb"),
  28694. name: "Front",
  28695. image: {
  28696. source: "./media/characters/myra-rue-delore/front.svg",
  28697. extra: 1340 / 1308,
  28698. bottom: 67 / 1407
  28699. }
  28700. },
  28701. back: {
  28702. height: math.unit(6, "feet"),
  28703. weight: math.unit(150, "lb"),
  28704. name: "Back",
  28705. image: {
  28706. source: "./media/characters/myra-rue-delore/back.svg",
  28707. extra: 1341 / 1310,
  28708. bottom: 40 / 1381
  28709. }
  28710. },
  28711. frontDressed: {
  28712. height: math.unit(6, "feet"),
  28713. weight: math.unit(150, "lb"),
  28714. name: "Front (Dressed)",
  28715. image: {
  28716. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28717. extra: 1340 / 1308,
  28718. bottom: 67 / 1407
  28719. }
  28720. },
  28721. },
  28722. [
  28723. {
  28724. name: "Macro",
  28725. height: math.unit(150, "feet"),
  28726. default: true
  28727. },
  28728. ]
  28729. ))
  28730. characterMakers.push(() => makeCharacter(
  28731. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28732. {
  28733. front: {
  28734. height: math.unit(10, "feet"),
  28735. weight: math.unit(15015, "lb"),
  28736. name: "Front",
  28737. image: {
  28738. source: "./media/characters/fem!plat/front.svg",
  28739. extra: 2799 / 2604,
  28740. bottom: 149 / 2948
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Normal",
  28747. height: math.unit(10, "feet"),
  28748. default: true
  28749. },
  28750. {
  28751. name: "Macro",
  28752. height: math.unit(100, "feet")
  28753. },
  28754. {
  28755. name: "Megamacro",
  28756. height: math.unit(1000, "feet")
  28757. },
  28758. ]
  28759. ))
  28760. characterMakers.push(() => makeCharacter(
  28761. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28762. {
  28763. front: {
  28764. height: math.unit(15 + 5 / 12, "feet"),
  28765. weight: math.unit(4600, "lb"),
  28766. name: "Front",
  28767. image: {
  28768. source: "./media/characters/neapolitan-ananassa/front.svg",
  28769. extra: 2903 / 2736,
  28770. bottom: 0 / 2903
  28771. }
  28772. },
  28773. side: {
  28774. height: math.unit(15 + 5 / 12, "feet"),
  28775. weight: math.unit(4600, "lb"),
  28776. name: "Side",
  28777. image: {
  28778. source: "./media/characters/neapolitan-ananassa/side.svg",
  28779. extra: 2925 / 2719,
  28780. bottom: 0 / 2925
  28781. }
  28782. },
  28783. back: {
  28784. height: math.unit(15 + 5 / 12, "feet"),
  28785. weight: math.unit(4600, "lb"),
  28786. name: "Back",
  28787. image: {
  28788. source: "./media/characters/neapolitan-ananassa/back.svg",
  28789. extra: 2903 / 2736,
  28790. bottom: 0 / 2903
  28791. }
  28792. },
  28793. },
  28794. [
  28795. {
  28796. name: "Normal",
  28797. height: math.unit(15 + 5 / 12, "feet"),
  28798. default: true
  28799. },
  28800. {
  28801. name: "Post-Millenium",
  28802. height: math.unit(35 + 5 / 12, "feet")
  28803. },
  28804. {
  28805. name: "Post-Era",
  28806. height: math.unit(450 + 5 / 12, "feet")
  28807. },
  28808. ]
  28809. ))
  28810. characterMakers.push(() => makeCharacter(
  28811. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28812. {
  28813. front: {
  28814. height: math.unit(300, "meters"),
  28815. weight: math.unit(125000, "tonnes"),
  28816. name: "Front",
  28817. image: {
  28818. source: "./media/characters/pazuzu/front.svg",
  28819. extra: 877 / 794,
  28820. bottom: 47 / 924
  28821. }
  28822. },
  28823. },
  28824. [
  28825. {
  28826. name: "Macro",
  28827. height: math.unit(300, "meters"),
  28828. default: true
  28829. },
  28830. ]
  28831. ))
  28832. characterMakers.push(() => makeCharacter(
  28833. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28834. {
  28835. side: {
  28836. height: math.unit(10 + 7 / 12, "feet"),
  28837. weight: math.unit(2.5, "tons"),
  28838. name: "Side",
  28839. image: {
  28840. source: "./media/characters/aasha/side.svg",
  28841. extra: 1345 / 1245,
  28842. bottom: 111 / 1456
  28843. }
  28844. },
  28845. back: {
  28846. height: math.unit(10 + 7 / 12, "feet"),
  28847. weight: math.unit(2.5, "tons"),
  28848. name: "Back",
  28849. image: {
  28850. source: "./media/characters/aasha/back.svg",
  28851. extra: 1133 / 1057,
  28852. bottom: 257 / 1390
  28853. }
  28854. },
  28855. },
  28856. [
  28857. {
  28858. name: "Normal",
  28859. height: math.unit(10 + 7 / 12, "feet"),
  28860. default: true
  28861. },
  28862. ]
  28863. ))
  28864. characterMakers.push(() => makeCharacter(
  28865. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28866. {
  28867. front: {
  28868. height: math.unit(6 + 3 / 12, "feet"),
  28869. name: "Front",
  28870. image: {
  28871. source: "./media/characters/nevan/front.svg",
  28872. extra: 704 / 704,
  28873. bottom: 28 / 732
  28874. }
  28875. },
  28876. back: {
  28877. height: math.unit(6 + 3 / 12, "feet"),
  28878. name: "Back",
  28879. image: {
  28880. source: "./media/characters/nevan/back.svg",
  28881. extra: 714 / 714,
  28882. bottom: 21 / 735
  28883. }
  28884. },
  28885. frontFlaccid: {
  28886. height: math.unit(6 + 3 / 12, "feet"),
  28887. name: "Front (Flaccid)",
  28888. image: {
  28889. source: "./media/characters/nevan/front-flaccid.svg",
  28890. extra: 704 / 704,
  28891. bottom: 28 / 732
  28892. }
  28893. },
  28894. frontErect: {
  28895. height: math.unit(6 + 3 / 12, "feet"),
  28896. name: "Front (Erect)",
  28897. image: {
  28898. source: "./media/characters/nevan/front-erect.svg",
  28899. extra: 704 / 704,
  28900. bottom: 28 / 732
  28901. }
  28902. },
  28903. backFlaccid: {
  28904. height: math.unit(6 + 3 / 12, "feet"),
  28905. name: "Back (Flaccid)",
  28906. image: {
  28907. source: "./media/characters/nevan/back-flaccid.svg",
  28908. extra: 714 / 714,
  28909. bottom: 21 / 735
  28910. }
  28911. },
  28912. },
  28913. [
  28914. {
  28915. name: "Normal",
  28916. height: math.unit(6 + 3 / 12, "feet"),
  28917. default: true
  28918. },
  28919. ]
  28920. ))
  28921. characterMakers.push(() => makeCharacter(
  28922. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28923. {
  28924. front: {
  28925. height: math.unit(4, "feet"),
  28926. name: "Front",
  28927. image: {
  28928. source: "./media/characters/arhan/front.svg",
  28929. extra: 3368 / 3133,
  28930. bottom: 0 / 3368
  28931. }
  28932. },
  28933. side: {
  28934. height: math.unit(4, "feet"),
  28935. name: "Side",
  28936. image: {
  28937. source: "./media/characters/arhan/side.svg",
  28938. extra: 3347 / 3105,
  28939. bottom: 0 / 3347
  28940. }
  28941. },
  28942. tongue: {
  28943. height: math.unit(1.42, "feet"),
  28944. name: "Tongue",
  28945. image: {
  28946. source: "./media/characters/arhan/tongue.svg"
  28947. }
  28948. },
  28949. head: {
  28950. height: math.unit(0.85, "feet"),
  28951. name: "Head",
  28952. image: {
  28953. source: "./media/characters/arhan/head.svg"
  28954. }
  28955. },
  28956. },
  28957. [
  28958. {
  28959. name: "Normal",
  28960. height: math.unit(4, "feet"),
  28961. default: true
  28962. },
  28963. ]
  28964. ))
  28965. characterMakers.push(() => makeCharacter(
  28966. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28967. {
  28968. front: {
  28969. height: math.unit(5 + 7.5 / 12, "feet"),
  28970. weight: math.unit(120, "lb"),
  28971. name: "Front",
  28972. image: {
  28973. source: "./media/characters/digi-duncan/front.svg",
  28974. extra: 330 / 326,
  28975. bottom: 16 / 346
  28976. }
  28977. },
  28978. side: {
  28979. height: math.unit(5 + 7.5 / 12, "feet"),
  28980. weight: math.unit(120, "lb"),
  28981. name: "Side",
  28982. image: {
  28983. source: "./media/characters/digi-duncan/side.svg",
  28984. extra: 341 / 337,
  28985. bottom: 1 / 342
  28986. }
  28987. },
  28988. back: {
  28989. height: math.unit(5 + 7.5 / 12, "feet"),
  28990. weight: math.unit(120, "lb"),
  28991. name: "Back",
  28992. image: {
  28993. source: "./media/characters/digi-duncan/back.svg",
  28994. extra: 330 / 326,
  28995. bottom: 12 / 342
  28996. }
  28997. },
  28998. },
  28999. [
  29000. {
  29001. name: "Speck",
  29002. height: math.unit(0.25, "mm")
  29003. },
  29004. {
  29005. name: "Micro",
  29006. height: math.unit(5, "mm")
  29007. },
  29008. {
  29009. name: "Tiny",
  29010. height: math.unit(0.5, "inches"),
  29011. default: true
  29012. },
  29013. {
  29014. name: "Human",
  29015. height: math.unit(5 + 7.5 / 12, "feet")
  29016. },
  29017. {
  29018. name: "Minigiant",
  29019. height: math.unit(8 + 5.25, "feet")
  29020. },
  29021. {
  29022. name: "Giant",
  29023. height: math.unit(2000, "feet")
  29024. },
  29025. {
  29026. name: "Mega",
  29027. height: math.unit(371.1, "miles")
  29028. },
  29029. ]
  29030. ))
  29031. characterMakers.push(() => makeCharacter(
  29032. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29033. {
  29034. front: {
  29035. height: math.unit(2, "meters"),
  29036. weight: math.unit(350, "kg"),
  29037. name: "Front",
  29038. image: {
  29039. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29040. extra: 898 / 838,
  29041. bottom: 9 / 907
  29042. }
  29043. },
  29044. },
  29045. [
  29046. {
  29047. name: "Micro",
  29048. height: math.unit(8, "meters")
  29049. },
  29050. {
  29051. name: "Normal",
  29052. height: math.unit(50, "meters"),
  29053. default: true
  29054. },
  29055. {
  29056. name: "Macro",
  29057. height: math.unit(500, "meters")
  29058. },
  29059. ]
  29060. ))
  29061. characterMakers.push(() => makeCharacter(
  29062. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29063. {
  29064. front: {
  29065. height: math.unit(6 + 6 / 12, "feet"),
  29066. name: "Front",
  29067. image: {
  29068. source: "./media/characters/khardesh/front.svg",
  29069. extra: 888 / 797,
  29070. bottom: 25 / 913
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Normal",
  29077. height: math.unit(6 + 6 / 12, "feet"),
  29078. default: true
  29079. },
  29080. {
  29081. name: "Normal+",
  29082. height: math.unit(4, "meters")
  29083. },
  29084. {
  29085. name: "Macro",
  29086. height: math.unit(50, "meters")
  29087. },
  29088. {
  29089. name: "Macro+",
  29090. height: math.unit(100, "meters")
  29091. },
  29092. {
  29093. name: "Megamacro",
  29094. height: math.unit(20, "km")
  29095. },
  29096. ]
  29097. ))
  29098. characterMakers.push(() => makeCharacter(
  29099. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29100. {
  29101. front: {
  29102. height: math.unit(6, "feet"),
  29103. weight: math.unit(150, "lb"),
  29104. name: "Front",
  29105. image: {
  29106. source: "./media/characters/kosho/front.svg",
  29107. extra: 1847 / 1847,
  29108. bottom: 86 / 1933
  29109. }
  29110. },
  29111. },
  29112. [
  29113. {
  29114. name: "Second-stage micro",
  29115. height: math.unit(0.5, "inches")
  29116. },
  29117. {
  29118. name: "First-stage micro",
  29119. height: math.unit(6, "inches")
  29120. },
  29121. {
  29122. name: "Normal",
  29123. height: math.unit(6, "feet"),
  29124. default: true
  29125. },
  29126. {
  29127. name: "First-stage macro",
  29128. height: math.unit(72, "feet")
  29129. },
  29130. {
  29131. name: "Second-stage macro",
  29132. height: math.unit(864, "feet")
  29133. },
  29134. ]
  29135. ))
  29136. characterMakers.push(() => makeCharacter(
  29137. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29138. {
  29139. normal: {
  29140. height: math.unit(4 + 6 / 12, "feet"),
  29141. name: "Normal",
  29142. image: {
  29143. source: "./media/characters/hydra/normal.svg",
  29144. extra: 2833 / 2634,
  29145. bottom: 68 / 2901
  29146. }
  29147. },
  29148. smol: {
  29149. height: math.unit(0.705, "inches"),
  29150. name: "Smol",
  29151. image: {
  29152. source: "./media/characters/hydra/smol.svg",
  29153. extra: 2715 / 2540,
  29154. bottom: 0 / 2715
  29155. }
  29156. },
  29157. },
  29158. [
  29159. {
  29160. name: "Normal",
  29161. height: math.unit(4 + 6 / 12, "feet"),
  29162. default: true
  29163. }
  29164. ]
  29165. ))
  29166. characterMakers.push(() => makeCharacter(
  29167. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29168. {
  29169. front: {
  29170. height: math.unit(0.6, "cm"),
  29171. name: "Front",
  29172. image: {
  29173. source: "./media/characters/daz/front.svg",
  29174. extra: 1682 / 1164,
  29175. bottom: 42 / 1724
  29176. }
  29177. },
  29178. },
  29179. [
  29180. {
  29181. name: "Normal",
  29182. height: math.unit(0.6, "cm"),
  29183. default: true
  29184. },
  29185. ]
  29186. ))
  29187. characterMakers.push(() => makeCharacter(
  29188. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29189. {
  29190. front: {
  29191. height: math.unit(6, "feet"),
  29192. weight: math.unit(235, "lb"),
  29193. name: "Front",
  29194. image: {
  29195. source: "./media/characters/theo-pangolin/front.svg",
  29196. extra: 1996 / 1969,
  29197. bottom: 115 / 2111
  29198. }
  29199. },
  29200. back: {
  29201. height: math.unit(6, "feet"),
  29202. weight: math.unit(235, "lb"),
  29203. name: "Back",
  29204. image: {
  29205. source: "./media/characters/theo-pangolin/back.svg",
  29206. extra: 1979 / 1979,
  29207. bottom: 40 / 2019
  29208. }
  29209. },
  29210. feral: {
  29211. height: math.unit(2, "feet"),
  29212. weight: math.unit(30, "lb"),
  29213. name: "Feral",
  29214. image: {
  29215. source: "./media/characters/theo-pangolin/feral.svg",
  29216. extra: 803 / 791,
  29217. bottom: 181 / 984
  29218. }
  29219. },
  29220. footFive: {
  29221. height: math.unit(1.43, "feet"),
  29222. name: "Foot (Five Toes)",
  29223. image: {
  29224. source: "./media/characters/theo-pangolin/foot-five.svg"
  29225. }
  29226. },
  29227. footFour: {
  29228. height: math.unit(1.43, "feet"),
  29229. name: "Foot (Four Toes)",
  29230. image: {
  29231. source: "./media/characters/theo-pangolin/foot-four.svg"
  29232. }
  29233. },
  29234. handFour: {
  29235. height: math.unit(0.81, "feet"),
  29236. name: "Hand (Four Fingers)",
  29237. image: {
  29238. source: "./media/characters/theo-pangolin/hand-four.svg"
  29239. }
  29240. },
  29241. handThree: {
  29242. height: math.unit(0.81, "feet"),
  29243. name: "Hand (Three Fingers)",
  29244. image: {
  29245. source: "./media/characters/theo-pangolin/hand-three.svg"
  29246. }
  29247. },
  29248. headFront: {
  29249. height: math.unit(1.37, "feet"),
  29250. name: "Head (Front)",
  29251. image: {
  29252. source: "./media/characters/theo-pangolin/head-front.svg"
  29253. }
  29254. },
  29255. headSide: {
  29256. height: math.unit(1.43, "feet"),
  29257. name: "Head (Side)",
  29258. image: {
  29259. source: "./media/characters/theo-pangolin/head-side.svg"
  29260. }
  29261. },
  29262. tongue: {
  29263. height: math.unit(2.29, "feet"),
  29264. name: "Tongue",
  29265. image: {
  29266. source: "./media/characters/theo-pangolin/tongue.svg"
  29267. }
  29268. },
  29269. },
  29270. [
  29271. {
  29272. name: "Normal",
  29273. height: math.unit(6, "feet")
  29274. },
  29275. {
  29276. name: "Macro",
  29277. height: math.unit(400, "feet"),
  29278. default: true
  29279. },
  29280. ]
  29281. ))
  29282. characterMakers.push(() => makeCharacter(
  29283. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29284. {
  29285. front: {
  29286. height: math.unit(6, "inches"),
  29287. weight: math.unit(0.036, "kg"),
  29288. name: "Front",
  29289. image: {
  29290. source: "./media/characters/renée/front.svg",
  29291. extra: 900 / 886,
  29292. bottom: 8 / 908
  29293. }
  29294. },
  29295. },
  29296. [
  29297. {
  29298. name: "Nano",
  29299. height: math.unit(1, "nm")
  29300. },
  29301. {
  29302. name: "Micro",
  29303. height: math.unit(1, "mm")
  29304. },
  29305. {
  29306. name: "Normal",
  29307. height: math.unit(6, "inches")
  29308. },
  29309. {
  29310. name: "Macro",
  29311. height: math.unit(2000, "feet"),
  29312. default: true
  29313. },
  29314. {
  29315. name: "Megamacro",
  29316. height: math.unit(2, "km")
  29317. },
  29318. {
  29319. name: "Gigamacro",
  29320. height: math.unit(2000, "km")
  29321. },
  29322. {
  29323. name: "Teramacro",
  29324. height: math.unit(250000, "km")
  29325. },
  29326. ]
  29327. ))
  29328. characterMakers.push(() => makeCharacter(
  29329. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29330. {
  29331. front: {
  29332. height: math.unit(4, "meters"),
  29333. weight: math.unit(150, "kg"),
  29334. name: "Front",
  29335. image: {
  29336. source: "./media/characters/caledvwlch/front.svg",
  29337. extra: 1760 / 1551,
  29338. bottom: 28 / 1788
  29339. }
  29340. },
  29341. side: {
  29342. height: math.unit(4, "meters"),
  29343. weight: math.unit(150, "kg"),
  29344. name: "Side",
  29345. image: {
  29346. source: "./media/characters/caledvwlch/side.svg",
  29347. extra: 1605 / 1536,
  29348. bottom: 31 / 1636
  29349. }
  29350. },
  29351. back: {
  29352. height: math.unit(4, "meters"),
  29353. weight: math.unit(150, "kg"),
  29354. name: "Back",
  29355. image: {
  29356. source: "./media/characters/caledvwlch/back.svg",
  29357. extra: 1635 / 1565,
  29358. bottom: 27 / 1662
  29359. }
  29360. },
  29361. },
  29362. [
  29363. {
  29364. name: "\"Incognito\"",
  29365. height: math.unit(4, "meters")
  29366. },
  29367. {
  29368. name: "Small rampage",
  29369. height: math.unit(600, "meters")
  29370. },
  29371. {
  29372. name: "Mega",
  29373. height: math.unit(30, "km")
  29374. },
  29375. {
  29376. name: "Home-size",
  29377. height: math.unit(50, "km"),
  29378. default: true
  29379. },
  29380. {
  29381. name: "Giga",
  29382. height: math.unit(300, "km")
  29383. },
  29384. {
  29385. name: "Lounging",
  29386. height: math.unit(11000, "km")
  29387. },
  29388. {
  29389. name: "Planet snacking",
  29390. height: math.unit(2000000, "km")
  29391. },
  29392. ]
  29393. ))
  29394. characterMakers.push(() => makeCharacter(
  29395. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29396. {
  29397. front: {
  29398. height: math.unit(6, "feet"),
  29399. weight: math.unit(215, "lb"),
  29400. name: "Front",
  29401. image: {
  29402. source: "./media/characters/sapphire-svell/front.svg",
  29403. extra: 495 / 455,
  29404. bottom: 20 / 515
  29405. }
  29406. },
  29407. back: {
  29408. height: math.unit(6, "feet"),
  29409. weight: math.unit(216, "lb"),
  29410. name: "Back",
  29411. image: {
  29412. source: "./media/characters/sapphire-svell/back.svg",
  29413. extra: 497 / 477,
  29414. bottom: 7 / 504
  29415. }
  29416. },
  29417. maw: {
  29418. height: math.unit(1.57, "feet"),
  29419. name: "Maw",
  29420. image: {
  29421. source: "./media/characters/sapphire-svell/maw.svg"
  29422. }
  29423. },
  29424. foot: {
  29425. height: math.unit(1.07, "feet"),
  29426. name: "Foot",
  29427. image: {
  29428. source: "./media/characters/sapphire-svell/foot.svg"
  29429. }
  29430. },
  29431. toering: {
  29432. height: math.unit(1.7, "inch"),
  29433. name: "Toering",
  29434. image: {
  29435. source: "./media/characters/sapphire-svell/toering.svg"
  29436. }
  29437. },
  29438. },
  29439. [
  29440. {
  29441. name: "Normal",
  29442. height: math.unit(300, "feet"),
  29443. default: true
  29444. },
  29445. {
  29446. name: "Augmented",
  29447. height: math.unit(1250, "feet")
  29448. },
  29449. {
  29450. name: "Unleashed",
  29451. height: math.unit(3000, "feet")
  29452. },
  29453. ]
  29454. ))
  29455. characterMakers.push(() => makeCharacter(
  29456. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29457. {
  29458. side: {
  29459. height: math.unit(2 + 3 / 12, "feet"),
  29460. weight: math.unit(110, "lb"),
  29461. name: "Side",
  29462. image: {
  29463. source: "./media/characters/glitch-flux/side.svg",
  29464. extra: 997 / 805,
  29465. bottom: 20 / 1017
  29466. }
  29467. },
  29468. },
  29469. [
  29470. {
  29471. name: "Normal",
  29472. height: math.unit(2 + 3 / 12, "feet"),
  29473. default: true
  29474. },
  29475. ]
  29476. ))
  29477. characterMakers.push(() => makeCharacter(
  29478. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29479. {
  29480. front: {
  29481. height: math.unit(4, "meters"),
  29482. name: "Front",
  29483. image: {
  29484. source: "./media/characters/mid/front.svg",
  29485. extra: 507 / 476,
  29486. bottom: 17 / 524
  29487. }
  29488. },
  29489. back: {
  29490. height: math.unit(4, "meters"),
  29491. name: "Back",
  29492. image: {
  29493. source: "./media/characters/mid/back.svg",
  29494. extra: 519 / 487,
  29495. bottom: 7 / 526
  29496. }
  29497. },
  29498. stuck: {
  29499. height: math.unit(2.2, "meters"),
  29500. name: "Stuck",
  29501. image: {
  29502. source: "./media/characters/mid/stuck.svg",
  29503. extra: 1951 / 1869,
  29504. bottom: 88 / 2039
  29505. }
  29506. }
  29507. },
  29508. [
  29509. {
  29510. name: "Normal",
  29511. height: math.unit(4, "meters"),
  29512. default: true
  29513. },
  29514. {
  29515. name: "Big",
  29516. height: math.unit(10, "meters")
  29517. },
  29518. {
  29519. name: "Macro",
  29520. height: math.unit(800, "meters")
  29521. },
  29522. {
  29523. name: "Megamacro",
  29524. height: math.unit(100, "km")
  29525. },
  29526. {
  29527. name: "Overgrown",
  29528. height: math.unit(1, "parsec")
  29529. },
  29530. ]
  29531. ))
  29532. characterMakers.push(() => makeCharacter(
  29533. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29534. {
  29535. front: {
  29536. height: math.unit(2.5, "meters"),
  29537. weight: math.unit(225, "kg"),
  29538. name: "Front",
  29539. image: {
  29540. source: "./media/characters/iris/front.svg",
  29541. extra: 3348 / 3251,
  29542. bottom: 205 / 3553
  29543. }
  29544. },
  29545. maw: {
  29546. height: math.unit(0.56, "meter"),
  29547. name: "Maw",
  29548. image: {
  29549. source: "./media/characters/iris/maw.svg"
  29550. }
  29551. },
  29552. },
  29553. [
  29554. {
  29555. name: "Mewter cat",
  29556. height: math.unit(1.2, "meters")
  29557. },
  29558. {
  29559. name: "Minimacro",
  29560. height: math.unit(2.5, "meters"),
  29561. default: true
  29562. },
  29563. {
  29564. name: "Macro",
  29565. height: math.unit(180, "meters")
  29566. },
  29567. {
  29568. name: "Megamacro",
  29569. height: math.unit(2746, "meters")
  29570. },
  29571. ]
  29572. ))
  29573. characterMakers.push(() => makeCharacter(
  29574. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29575. {
  29576. front: {
  29577. height: math.unit(6, "feet"),
  29578. weight: math.unit(135, "lb"),
  29579. name: "Front",
  29580. image: {
  29581. source: "./media/characters/axel/front.svg",
  29582. extra: 908 / 908,
  29583. bottom: 58 / 966
  29584. }
  29585. },
  29586. side: {
  29587. height: math.unit(6, "feet"),
  29588. weight: math.unit(135, "lb"),
  29589. name: "Side",
  29590. image: {
  29591. source: "./media/characters/axel/side.svg",
  29592. extra: 958 / 958,
  29593. bottom: 11 / 969
  29594. }
  29595. },
  29596. back: {
  29597. height: math.unit(6, "feet"),
  29598. weight: math.unit(135, "lb"),
  29599. name: "Back",
  29600. image: {
  29601. source: "./media/characters/axel/back.svg",
  29602. extra: 887 / 887,
  29603. bottom: 34 / 921
  29604. }
  29605. },
  29606. head: {
  29607. height: math.unit(1.07, "feet"),
  29608. name: "Head",
  29609. image: {
  29610. source: "./media/characters/axel/head.svg"
  29611. }
  29612. },
  29613. beak: {
  29614. height: math.unit(1.4, "feet"),
  29615. name: "Beak",
  29616. image: {
  29617. source: "./media/characters/axel/beak.svg"
  29618. }
  29619. },
  29620. beakSide: {
  29621. height: math.unit(1.4, "feet"),
  29622. name: "Beak Side",
  29623. image: {
  29624. source: "./media/characters/axel/beak-side.svg"
  29625. }
  29626. },
  29627. sheath: {
  29628. height: math.unit(0.5, "feet"),
  29629. name: "Sheath",
  29630. image: {
  29631. source: "./media/characters/axel/sheath.svg"
  29632. }
  29633. },
  29634. dick: {
  29635. height: math.unit(0.98, "feet"),
  29636. name: "Dick",
  29637. image: {
  29638. source: "./media/characters/axel/dick.svg"
  29639. }
  29640. },
  29641. },
  29642. [
  29643. {
  29644. name: "Macro",
  29645. height: math.unit(68, "meters"),
  29646. default: true
  29647. },
  29648. ]
  29649. ))
  29650. characterMakers.push(() => makeCharacter(
  29651. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29652. {
  29653. front: {
  29654. height: math.unit(3.5, "meters"),
  29655. weight: math.unit(1200, "kg"),
  29656. name: "Front",
  29657. image: {
  29658. source: "./media/characters/joanna/front.svg",
  29659. extra: 1596 / 1488,
  29660. bottom: 29 / 1625
  29661. }
  29662. },
  29663. back: {
  29664. height: math.unit(3.5, "meters"),
  29665. weight: math.unit(1200, "kg"),
  29666. name: "Back",
  29667. image: {
  29668. source: "./media/characters/joanna/back.svg",
  29669. extra: 1594 / 1495,
  29670. bottom: 26 / 1620
  29671. }
  29672. },
  29673. frontShorts: {
  29674. height: math.unit(3.5, "meters"),
  29675. weight: math.unit(1200, "kg"),
  29676. name: "Front (Shorts)",
  29677. image: {
  29678. source: "./media/characters/joanna/front-shorts.svg",
  29679. extra: 1596 / 1488,
  29680. bottom: 29 / 1625
  29681. }
  29682. },
  29683. frontBiker: {
  29684. height: math.unit(3.5, "meters"),
  29685. weight: math.unit(1200, "kg"),
  29686. name: "Front (Biker)",
  29687. image: {
  29688. source: "./media/characters/joanna/front-biker.svg",
  29689. extra: 1596 / 1488,
  29690. bottom: 29 / 1625
  29691. }
  29692. },
  29693. backBiker: {
  29694. height: math.unit(3.5, "meters"),
  29695. weight: math.unit(1200, "kg"),
  29696. name: "Back (Biker)",
  29697. image: {
  29698. source: "./media/characters/joanna/back-biker.svg",
  29699. extra: 1594 / 1495,
  29700. bottom: 88 / 1682
  29701. }
  29702. },
  29703. bikeLeft: {
  29704. height: math.unit(2.4, "meters"),
  29705. weight: math.unit(1600, "kg"),
  29706. name: "Bike (Left)",
  29707. image: {
  29708. source: "./media/characters/joanna/bike-left.svg",
  29709. extra: 720 / 720,
  29710. bottom: 8 / 728
  29711. }
  29712. },
  29713. bikeRight: {
  29714. height: math.unit(2.4, "meters"),
  29715. weight: math.unit(1600, "kg"),
  29716. name: "Bike (Right)",
  29717. image: {
  29718. source: "./media/characters/joanna/bike-right.svg",
  29719. extra: 720 / 720,
  29720. bottom: 8 / 728
  29721. }
  29722. },
  29723. },
  29724. [
  29725. {
  29726. name: "Incognito",
  29727. height: math.unit(3.5, "meters")
  29728. },
  29729. {
  29730. name: "Casual Big",
  29731. height: math.unit(200, "meters")
  29732. },
  29733. {
  29734. name: "Macro",
  29735. height: math.unit(600, "meters")
  29736. },
  29737. {
  29738. name: "Original",
  29739. height: math.unit(20, "km"),
  29740. default: true
  29741. },
  29742. {
  29743. name: "Giga",
  29744. height: math.unit(400, "km")
  29745. },
  29746. {
  29747. name: "Lounging",
  29748. height: math.unit(1500, "km")
  29749. },
  29750. {
  29751. name: "Planetary",
  29752. height: math.unit(200000, "km")
  29753. },
  29754. ]
  29755. ))
  29756. characterMakers.push(() => makeCharacter(
  29757. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29758. {
  29759. front: {
  29760. height: math.unit(6, "feet"),
  29761. weight: math.unit(150, "lb"),
  29762. name: "Front",
  29763. image: {
  29764. source: "./media/characters/hugo-sigil/front.svg",
  29765. extra: 522 / 500,
  29766. bottom: 2 / 524
  29767. }
  29768. },
  29769. back: {
  29770. height: math.unit(6, "feet"),
  29771. weight: math.unit(150, "lb"),
  29772. name: "Back",
  29773. image: {
  29774. source: "./media/characters/hugo-sigil/back.svg",
  29775. extra: 519 / 495,
  29776. bottom: 5 / 524
  29777. }
  29778. },
  29779. maw: {
  29780. height: math.unit(1.4, "feet"),
  29781. weight: math.unit(150, "lb"),
  29782. name: "Maw",
  29783. image: {
  29784. source: "./media/characters/hugo-sigil/maw.svg"
  29785. }
  29786. },
  29787. feet: {
  29788. height: math.unit(1.56, "feet"),
  29789. weight: math.unit(150, "lb"),
  29790. name: "Feet",
  29791. image: {
  29792. source: "./media/characters/hugo-sigil/feet.svg",
  29793. extra: 177 / 177,
  29794. bottom: 12 / 189
  29795. }
  29796. },
  29797. },
  29798. [
  29799. {
  29800. name: "Normal",
  29801. height: math.unit(6, "feet")
  29802. },
  29803. {
  29804. name: "Macro",
  29805. height: math.unit(200, "feet"),
  29806. default: true
  29807. },
  29808. ]
  29809. ))
  29810. characterMakers.push(() => makeCharacter(
  29811. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29812. {
  29813. front: {
  29814. height: math.unit(6, "feet"),
  29815. weight: math.unit(150, "lb"),
  29816. name: "Front",
  29817. image: {
  29818. source: "./media/characters/peri/front.svg",
  29819. extra: 2354 / 2233,
  29820. bottom: 49 / 2403
  29821. }
  29822. },
  29823. },
  29824. [
  29825. {
  29826. name: "Really Small",
  29827. height: math.unit(1, "nm")
  29828. },
  29829. {
  29830. name: "Micro",
  29831. height: math.unit(4, "inches")
  29832. },
  29833. {
  29834. name: "Normal",
  29835. height: math.unit(7, "inches"),
  29836. default: true
  29837. },
  29838. {
  29839. name: "Macro",
  29840. height: math.unit(400, "feet")
  29841. },
  29842. {
  29843. name: "Megamacro",
  29844. height: math.unit(100, "miles")
  29845. },
  29846. ]
  29847. ))
  29848. characterMakers.push(() => makeCharacter(
  29849. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29850. {
  29851. frontSlim: {
  29852. height: math.unit(7, "feet"),
  29853. name: "Front (Slim)",
  29854. image: {
  29855. source: "./media/characters/issilora/front-slim.svg",
  29856. extra: 529 / 449,
  29857. bottom: 53 / 582
  29858. }
  29859. },
  29860. sideSlim: {
  29861. height: math.unit(7, "feet"),
  29862. name: "Side (Slim)",
  29863. image: {
  29864. source: "./media/characters/issilora/side-slim.svg",
  29865. extra: 570 / 480,
  29866. bottom: 30 / 600
  29867. }
  29868. },
  29869. backSlim: {
  29870. height: math.unit(7, "feet"),
  29871. name: "Back (Slim)",
  29872. image: {
  29873. source: "./media/characters/issilora/back-slim.svg",
  29874. extra: 537 / 455,
  29875. bottom: 46 / 583
  29876. }
  29877. },
  29878. frontBuff: {
  29879. height: math.unit(7, "feet"),
  29880. name: "Front (Buff)",
  29881. image: {
  29882. source: "./media/characters/issilora/front-buff.svg",
  29883. extra: 2310 / 2035,
  29884. bottom: 335 / 2645
  29885. }
  29886. },
  29887. head: {
  29888. height: math.unit(1.94, "feet"),
  29889. name: "Head",
  29890. image: {
  29891. source: "./media/characters/issilora/head.svg"
  29892. }
  29893. },
  29894. },
  29895. [
  29896. {
  29897. name: "Minimum",
  29898. height: math.unit(7, "feet")
  29899. },
  29900. {
  29901. name: "Comfortable",
  29902. height: math.unit(17, "feet")
  29903. },
  29904. {
  29905. name: "Fun Size",
  29906. height: math.unit(47, "feet")
  29907. },
  29908. {
  29909. name: "Natural Macro",
  29910. height: math.unit(137, "feet"),
  29911. default: true
  29912. },
  29913. {
  29914. name: "Maximum Kaiju",
  29915. height: math.unit(397, "feet")
  29916. },
  29917. ]
  29918. ))
  29919. characterMakers.push(() => makeCharacter(
  29920. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29921. {
  29922. front: {
  29923. height: math.unit(50 + 9/12, "feet"),
  29924. weight: math.unit(32.8, "tons"),
  29925. name: "Front",
  29926. image: {
  29927. source: "./media/characters/irb'iiritaahn/front.svg",
  29928. extra: 1878/1826,
  29929. bottom: 326/2204
  29930. }
  29931. },
  29932. back: {
  29933. height: math.unit(50 + 9/12, "feet"),
  29934. weight: math.unit(32.8, "tons"),
  29935. name: "Back",
  29936. image: {
  29937. source: "./media/characters/irb'iiritaahn/back.svg",
  29938. extra: 2052/2018,
  29939. bottom: 152/2204
  29940. }
  29941. },
  29942. head: {
  29943. height: math.unit(12.86, "feet"),
  29944. name: "Head",
  29945. image: {
  29946. source: "./media/characters/irb'iiritaahn/head.svg"
  29947. }
  29948. },
  29949. maw: {
  29950. height: math.unit(9.66, "feet"),
  29951. name: "Maw",
  29952. image: {
  29953. source: "./media/characters/irb'iiritaahn/maw.svg"
  29954. }
  29955. },
  29956. frontDick: {
  29957. height: math.unit(8.78461, "feet"),
  29958. name: "Front Dick",
  29959. image: {
  29960. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29961. }
  29962. },
  29963. rearDick: {
  29964. height: math.unit(8.78461, "feet"),
  29965. name: "Rear Dick",
  29966. image: {
  29967. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29968. }
  29969. },
  29970. rearDickUnfolded: {
  29971. height: math.unit(8.78, "feet"),
  29972. name: "Rear Dick (Unfolded)",
  29973. image: {
  29974. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29975. }
  29976. },
  29977. wings: {
  29978. height: math.unit(43, "feet"),
  29979. name: "Wings",
  29980. image: {
  29981. source: "./media/characters/irb'iiritaahn/wings.svg"
  29982. }
  29983. },
  29984. },
  29985. [
  29986. {
  29987. name: "Macro",
  29988. height: math.unit(50 + 9/12, "feet"),
  29989. default: true
  29990. },
  29991. ]
  29992. ))
  29993. characterMakers.push(() => makeCharacter(
  29994. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29995. {
  29996. front: {
  29997. height: math.unit(205, "cm"),
  29998. weight: math.unit(102, "kg"),
  29999. name: "Front",
  30000. image: {
  30001. source: "./media/characters/irbisgreif/front.svg",
  30002. extra: 785/706,
  30003. bottom: 13/798
  30004. }
  30005. },
  30006. back: {
  30007. height: math.unit(205, "cm"),
  30008. weight: math.unit(102, "kg"),
  30009. name: "Back",
  30010. image: {
  30011. source: "./media/characters/irbisgreif/back.svg",
  30012. extra: 713/701,
  30013. bottom: 26/739
  30014. }
  30015. },
  30016. frontDressed: {
  30017. height: math.unit(216, "cm"),
  30018. weight: math.unit(102, "kg"),
  30019. name: "Front-dressed",
  30020. image: {
  30021. source: "./media/characters/irbisgreif/front-dressed.svg",
  30022. extra: 902/776,
  30023. bottom: 14/916
  30024. }
  30025. },
  30026. sideDressed: {
  30027. height: math.unit(195, "cm"),
  30028. weight: math.unit(102, "kg"),
  30029. name: "Side-dressed",
  30030. image: {
  30031. source: "./media/characters/irbisgreif/side-dressed.svg",
  30032. extra: 788/688,
  30033. bottom: 21/809
  30034. }
  30035. },
  30036. backDressed: {
  30037. height: math.unit(216, "cm"),
  30038. weight: math.unit(102, "kg"),
  30039. name: "Back-dressed",
  30040. image: {
  30041. source: "./media/characters/irbisgreif/back-dressed.svg",
  30042. extra: 901/783,
  30043. bottom: 10/911
  30044. }
  30045. },
  30046. dick: {
  30047. height: math.unit(0.49, "feet"),
  30048. name: "Dick",
  30049. image: {
  30050. source: "./media/characters/irbisgreif/dick.svg"
  30051. }
  30052. },
  30053. wingTop: {
  30054. height: math.unit(1.93 , "feet"),
  30055. name: "Wing-top",
  30056. image: {
  30057. source: "./media/characters/irbisgreif/wing-top.svg"
  30058. }
  30059. },
  30060. wingBottom: {
  30061. height: math.unit(1.93 , "feet"),
  30062. name: "Wing-bottom",
  30063. image: {
  30064. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30065. }
  30066. },
  30067. },
  30068. [
  30069. {
  30070. name: "Normal",
  30071. height: math.unit(216, "cm"),
  30072. default: true
  30073. },
  30074. ]
  30075. ))
  30076. characterMakers.push(() => makeCharacter(
  30077. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30078. {
  30079. front: {
  30080. height: math.unit(6, "feet"),
  30081. weight: math.unit(150, "lb"),
  30082. name: "Front",
  30083. image: {
  30084. source: "./media/characters/pride/front.svg",
  30085. extra: 1299/1230,
  30086. bottom: 18/1317
  30087. }
  30088. },
  30089. },
  30090. [
  30091. {
  30092. name: "Normal",
  30093. height: math.unit(7, "feet")
  30094. },
  30095. {
  30096. name: "Mini-macro",
  30097. height: math.unit(11, "feet")
  30098. },
  30099. {
  30100. name: "Macro",
  30101. height: math.unit(15, "meters"),
  30102. default: true
  30103. },
  30104. {
  30105. name: "Macro+",
  30106. height: math.unit(40, "meters")
  30107. },
  30108. ]
  30109. ))
  30110. characterMakers.push(() => makeCharacter(
  30111. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30112. {
  30113. front: {
  30114. height: math.unit(4 + 2 / 12, "feet"),
  30115. weight: math.unit(95, "lb"),
  30116. name: "Front",
  30117. image: {
  30118. source: "./media/characters/vaelophis-nyx/front.svg",
  30119. extra: 2532/2330,
  30120. bottom: 0/2532
  30121. }
  30122. },
  30123. back: {
  30124. height: math.unit(4 + 2 / 12, "feet"),
  30125. weight: math.unit(95, "lb"),
  30126. name: "Back",
  30127. image: {
  30128. source: "./media/characters/vaelophis-nyx/back.svg",
  30129. extra: 2484/2361,
  30130. bottom: 0/2484
  30131. }
  30132. },
  30133. feralSide: {
  30134. height: math.unit(2 + 1/12, "feet"),
  30135. weight: math.unit(20, "lb"),
  30136. name: "Feral (Side)",
  30137. image: {
  30138. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30139. extra: 1721/1581,
  30140. bottom: 70/1791
  30141. }
  30142. },
  30143. feralLazing: {
  30144. height: math.unit(1.08, "feet"),
  30145. weight: math.unit(20, "lb"),
  30146. name: "Feral (Lazing)",
  30147. image: {
  30148. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30149. extra: 822/822,
  30150. bottom: 248/1070
  30151. }
  30152. },
  30153. ear: {
  30154. height: math.unit(0.416, "feet"),
  30155. name: "Ear",
  30156. image: {
  30157. source: "./media/characters/vaelophis-nyx/ear.svg"
  30158. }
  30159. },
  30160. eye: {
  30161. height: math.unit(0.0748, "feet"),
  30162. name: "Eye",
  30163. image: {
  30164. source: "./media/characters/vaelophis-nyx/eye.svg"
  30165. }
  30166. },
  30167. mouth: {
  30168. height: math.unit(0.378, "feet"),
  30169. name: "Mouth",
  30170. image: {
  30171. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30172. }
  30173. },
  30174. spade: {
  30175. height: math.unit(0.55, "feet"),
  30176. name: "Spade",
  30177. image: {
  30178. source: "./media/characters/vaelophis-nyx/spade.svg"
  30179. }
  30180. },
  30181. },
  30182. [
  30183. {
  30184. name: "Normal",
  30185. height: math.unit(4 + 2/12, "feet"),
  30186. default: true
  30187. },
  30188. ]
  30189. ))
  30190. characterMakers.push(() => makeCharacter(
  30191. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30192. {
  30193. front: {
  30194. height: math.unit(7, "feet"),
  30195. weight: math.unit(231, "lb"),
  30196. name: "Front",
  30197. image: {
  30198. source: "./media/characters/flux/front.svg",
  30199. extra: 919/871,
  30200. bottom: 0/919
  30201. }
  30202. },
  30203. back: {
  30204. height: math.unit(7, "feet"),
  30205. weight: math.unit(231, "lb"),
  30206. name: "Back",
  30207. image: {
  30208. source: "./media/characters/flux/back.svg",
  30209. extra: 1040/992,
  30210. bottom: 0/1040
  30211. }
  30212. },
  30213. frontDressed: {
  30214. height: math.unit(7, "feet"),
  30215. weight: math.unit(231, "lb"),
  30216. name: "Front (Dressed)",
  30217. image: {
  30218. source: "./media/characters/flux/front-dressed.svg",
  30219. extra: 919/871,
  30220. bottom: 0/919
  30221. }
  30222. },
  30223. feralSide: {
  30224. height: math.unit(5, "feet"),
  30225. weight: math.unit(150, "lb"),
  30226. name: "Feral (Side)",
  30227. image: {
  30228. source: "./media/characters/flux/feral-side.svg",
  30229. extra: 598/528,
  30230. bottom: 28/626
  30231. }
  30232. },
  30233. head: {
  30234. height: math.unit(1.585, "feet"),
  30235. name: "Head",
  30236. image: {
  30237. source: "./media/characters/flux/head.svg"
  30238. }
  30239. },
  30240. headSide: {
  30241. height: math.unit(1.74, "feet"),
  30242. name: "Head (Side)",
  30243. image: {
  30244. source: "./media/characters/flux/head-side.svg"
  30245. }
  30246. },
  30247. headSideFire: {
  30248. height: math.unit(1.76, "feet"),
  30249. name: "Head (Side, Fire)",
  30250. image: {
  30251. source: "./media/characters/flux/head-side-fire.svg"
  30252. }
  30253. },
  30254. },
  30255. [
  30256. {
  30257. name: "Normal",
  30258. height: math.unit(7, "feet"),
  30259. default: true
  30260. },
  30261. ]
  30262. ))
  30263. characterMakers.push(() => makeCharacter(
  30264. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30265. {
  30266. front: {
  30267. height: math.unit(9, "feet"),
  30268. weight: math.unit(1012, "lb"),
  30269. name: "Front",
  30270. image: {
  30271. source: "./media/characters/ulfra-lupae/front.svg",
  30272. extra: 1083/1011,
  30273. bottom: 67/1150
  30274. }
  30275. },
  30276. },
  30277. [
  30278. {
  30279. name: "Micro",
  30280. height: math.unit(6, "inches")
  30281. },
  30282. {
  30283. name: "Socializing",
  30284. height: math.unit(6 + 5/12, "feet")
  30285. },
  30286. {
  30287. name: "Normal",
  30288. height: math.unit(9, "feet"),
  30289. default: true
  30290. },
  30291. {
  30292. name: "Macro",
  30293. height: math.unit(150, "feet")
  30294. },
  30295. ]
  30296. ))
  30297. characterMakers.push(() => makeCharacter(
  30298. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30299. {
  30300. front: {
  30301. height: math.unit(5 + 2/12, "feet"),
  30302. weight: math.unit(120, "lb"),
  30303. name: "Front",
  30304. image: {
  30305. source: "./media/characters/timber/front.svg",
  30306. extra: 2814/2705,
  30307. bottom: 181/2995
  30308. }
  30309. },
  30310. },
  30311. [
  30312. {
  30313. name: "Normal",
  30314. height: math.unit(5 + 2/12, "feet"),
  30315. default: true
  30316. },
  30317. ]
  30318. ))
  30319. characterMakers.push(() => makeCharacter(
  30320. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30321. {
  30322. front: {
  30323. height: math.unit(5 + 7/12, "feet"),
  30324. weight: math.unit(220, "lb"),
  30325. name: "Front",
  30326. image: {
  30327. source: "./media/characters/nicki/front.svg",
  30328. extra: 453/419,
  30329. bottom: 7/460
  30330. }
  30331. },
  30332. frontAlt: {
  30333. height: math.unit(5 + 7/12, "feet"),
  30334. weight: math.unit(220, "lb"),
  30335. name: "Front-alt",
  30336. image: {
  30337. source: "./media/characters/nicki/front-alt.svg",
  30338. extra: 435/411,
  30339. bottom: 12/447
  30340. }
  30341. },
  30342. back: {
  30343. height: math.unit(5 + 7/12, "feet"),
  30344. weight: math.unit(220, "lb"),
  30345. name: "Back",
  30346. image: {
  30347. source: "./media/characters/nicki/back.svg",
  30348. extra: 440/413,
  30349. bottom: 19/459
  30350. }
  30351. },
  30352. taur: {
  30353. height: math.unit(7 + 6/12, "feet"),
  30354. weight: math.unit(700, "lb"),
  30355. name: "Taur",
  30356. image: {
  30357. source: "./media/characters/nicki/taur.svg",
  30358. extra: 975/773,
  30359. bottom: 0/975
  30360. }
  30361. },
  30362. frontNsfw: {
  30363. height: math.unit(5 + 7/12, "feet"),
  30364. weight: math.unit(220, "lb"),
  30365. name: "Front (NSFW)",
  30366. image: {
  30367. source: "./media/characters/nicki/front-nsfw.svg",
  30368. extra: 453/419,
  30369. bottom: 7/460
  30370. }
  30371. },
  30372. frontNsfwAlt: {
  30373. height: math.unit(5 + 7/12, "feet"),
  30374. weight: math.unit(220, "lb"),
  30375. name: "Front (Alt, NSFW)",
  30376. image: {
  30377. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30378. extra: 435/411,
  30379. bottom: 12/447
  30380. }
  30381. },
  30382. backNsfw: {
  30383. height: math.unit(5 + 7/12, "feet"),
  30384. weight: math.unit(220, "lb"),
  30385. name: "Back (NSFW)",
  30386. image: {
  30387. source: "./media/characters/nicki/back-nsfw.svg",
  30388. extra: 440/413,
  30389. bottom: 19/459
  30390. }
  30391. },
  30392. head: {
  30393. height: math.unit(2.1, "feet"),
  30394. name: "Head",
  30395. image: {
  30396. source: "./media/characters/nicki/head.svg"
  30397. }
  30398. },
  30399. paw: {
  30400. height: math.unit(1.88, "feet"),
  30401. name: "Paw",
  30402. image: {
  30403. source: "./media/characters/nicki/paw.svg"
  30404. }
  30405. },
  30406. },
  30407. [
  30408. {
  30409. name: "Normal",
  30410. height: math.unit(5 + 7/12, "feet"),
  30411. default: true
  30412. },
  30413. ]
  30414. ))
  30415. characterMakers.push(() => makeCharacter(
  30416. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30417. {
  30418. front: {
  30419. height: math.unit(7 + 10/12, "feet"),
  30420. weight: math.unit(3.5, "tons"),
  30421. name: "Front",
  30422. image: {
  30423. source: "./media/characters/lee/front.svg",
  30424. extra: 1773/1615,
  30425. bottom: 86/1859
  30426. }
  30427. },
  30428. hand: {
  30429. height: math.unit(1.78, "feet"),
  30430. name: "Hand",
  30431. image: {
  30432. source: "./media/characters/lee/hand.svg"
  30433. }
  30434. },
  30435. maw: {
  30436. height: math.unit(1.18, "feet"),
  30437. name: "Maw",
  30438. image: {
  30439. source: "./media/characters/lee/maw.svg"
  30440. }
  30441. },
  30442. },
  30443. [
  30444. {
  30445. name: "Normal",
  30446. height: math.unit(7 + 10/12, "feet"),
  30447. default: true
  30448. },
  30449. ]
  30450. ))
  30451. characterMakers.push(() => makeCharacter(
  30452. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30453. {
  30454. front: {
  30455. height: math.unit(9, "feet"),
  30456. name: "Front",
  30457. image: {
  30458. source: "./media/characters/guti/front.svg",
  30459. extra: 4551/4355,
  30460. bottom: 123/4674
  30461. }
  30462. },
  30463. tongue: {
  30464. height: math.unit(1, "feet"),
  30465. name: "Tongue",
  30466. image: {
  30467. source: "./media/characters/guti/tongue.svg"
  30468. }
  30469. },
  30470. paw: {
  30471. height: math.unit(1.18, "feet"),
  30472. name: "Paw",
  30473. image: {
  30474. source: "./media/characters/guti/paw.svg"
  30475. }
  30476. },
  30477. },
  30478. [
  30479. {
  30480. name: "Normal",
  30481. height: math.unit(9, "feet"),
  30482. default: true
  30483. },
  30484. ]
  30485. ))
  30486. characterMakers.push(() => makeCharacter(
  30487. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30488. {
  30489. side: {
  30490. height: math.unit(5, "meters"),
  30491. name: "Side",
  30492. image: {
  30493. source: "./media/characters/vesper/side.svg",
  30494. extra: 1605/1518,
  30495. bottom: 0/1605
  30496. }
  30497. },
  30498. },
  30499. [
  30500. {
  30501. name: "Small",
  30502. height: math.unit(5, "meters")
  30503. },
  30504. {
  30505. name: "Sage",
  30506. height: math.unit(100, "meters"),
  30507. default: true
  30508. },
  30509. {
  30510. name: "Fun Size",
  30511. height: math.unit(600, "meters")
  30512. },
  30513. {
  30514. name: "Goddess",
  30515. height: math.unit(20000, "km")
  30516. },
  30517. {
  30518. name: "Maximum",
  30519. height: math.unit(5, "galaxies")
  30520. },
  30521. ]
  30522. ))
  30523. characterMakers.push(() => makeCharacter(
  30524. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30525. {
  30526. front: {
  30527. height: math.unit(6 + 3/12, "feet"),
  30528. weight: math.unit(190, "lb"),
  30529. name: "Front",
  30530. image: {
  30531. source: "./media/characters/gawain/front.svg",
  30532. extra: 2222/2139,
  30533. bottom: 90/2312
  30534. }
  30535. },
  30536. back: {
  30537. height: math.unit(6 + 3/12, "feet"),
  30538. weight: math.unit(190, "lb"),
  30539. name: "Back",
  30540. image: {
  30541. source: "./media/characters/gawain/back.svg",
  30542. extra: 2199/2111,
  30543. bottom: 73/2272
  30544. }
  30545. },
  30546. },
  30547. [
  30548. {
  30549. name: "Normal",
  30550. height: math.unit(6 + 3/12, "feet"),
  30551. default: true
  30552. },
  30553. ]
  30554. ))
  30555. characterMakers.push(() => makeCharacter(
  30556. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30557. {
  30558. side: {
  30559. height: math.unit(3.5, "meters"),
  30560. weight: math.unit(16000, "lb"),
  30561. name: "Side",
  30562. image: {
  30563. source: "./media/characters/dascalti/side.svg",
  30564. extra: 392/273,
  30565. bottom: 47/439
  30566. }
  30567. },
  30568. breath: {
  30569. height: math.unit(7.4, "feet"),
  30570. name: "Breath",
  30571. image: {
  30572. source: "./media/characters/dascalti/breath.svg"
  30573. }
  30574. },
  30575. fed: {
  30576. height: math.unit(3.6, "meters"),
  30577. weight: math.unit(16000, "lb"),
  30578. name: "Fed",
  30579. image: {
  30580. source: "./media/characters/dascalti/fed.svg",
  30581. extra: 1419/820,
  30582. bottom: 95/1514
  30583. }
  30584. },
  30585. },
  30586. [
  30587. {
  30588. name: "Normal",
  30589. height: math.unit(3.5, "meters"),
  30590. default: true
  30591. },
  30592. ]
  30593. ))
  30594. characterMakers.push(() => makeCharacter(
  30595. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30596. {
  30597. front: {
  30598. height: math.unit(3 + 5/12, "feet"),
  30599. name: "Front",
  30600. image: {
  30601. source: "./media/characters/mauve/front.svg",
  30602. extra: 1126/1033,
  30603. bottom: 65/1191
  30604. }
  30605. },
  30606. side: {
  30607. height: math.unit(3 + 5/12, "feet"),
  30608. name: "Side",
  30609. image: {
  30610. source: "./media/characters/mauve/side.svg",
  30611. extra: 1089/1001,
  30612. bottom: 29/1118
  30613. }
  30614. },
  30615. back: {
  30616. height: math.unit(3 + 5/12, "feet"),
  30617. name: "Back",
  30618. image: {
  30619. source: "./media/characters/mauve/back.svg",
  30620. extra: 1173/1053,
  30621. bottom: 109/1282
  30622. }
  30623. },
  30624. },
  30625. [
  30626. {
  30627. name: "Normal",
  30628. height: math.unit(3 + 5/12, "feet"),
  30629. default: true
  30630. },
  30631. ]
  30632. ))
  30633. characterMakers.push(() => makeCharacter(
  30634. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30635. {
  30636. front: {
  30637. height: math.unit(6 + 3/12, "feet"),
  30638. weight: math.unit(430, "lb"),
  30639. name: "Front",
  30640. image: {
  30641. source: "./media/characters/carlos/front.svg",
  30642. extra: 1964/1913,
  30643. bottom: 70/2034
  30644. }
  30645. },
  30646. },
  30647. [
  30648. {
  30649. name: "Normal",
  30650. height: math.unit(6 + 3/12, "feet"),
  30651. default: true
  30652. },
  30653. ]
  30654. ))
  30655. characterMakers.push(() => makeCharacter(
  30656. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30657. {
  30658. back: {
  30659. height: math.unit(5 + 10/12, "feet"),
  30660. weight: math.unit(200, "lb"),
  30661. name: "Back",
  30662. image: {
  30663. source: "./media/characters/jax/back.svg",
  30664. extra: 764/739,
  30665. bottom: 25/789
  30666. }
  30667. },
  30668. },
  30669. [
  30670. {
  30671. name: "Normal",
  30672. height: math.unit(5 + 10/12, "feet"),
  30673. default: true
  30674. },
  30675. ]
  30676. ))
  30677. characterMakers.push(() => makeCharacter(
  30678. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30679. {
  30680. front: {
  30681. height: math.unit(8, "feet"),
  30682. weight: math.unit(250, "lb"),
  30683. name: "Front",
  30684. image: {
  30685. source: "./media/characters/eikthynir/front.svg",
  30686. extra: 1332/1166,
  30687. bottom: 82/1414
  30688. }
  30689. },
  30690. back: {
  30691. height: math.unit(8, "feet"),
  30692. weight: math.unit(250, "lb"),
  30693. name: "Back",
  30694. image: {
  30695. source: "./media/characters/eikthynir/back.svg",
  30696. extra: 1342/1190,
  30697. bottom: 19/1361
  30698. }
  30699. },
  30700. dick: {
  30701. height: math.unit(2.35, "feet"),
  30702. name: "Dick",
  30703. image: {
  30704. source: "./media/characters/eikthynir/dick.svg"
  30705. }
  30706. },
  30707. },
  30708. [
  30709. {
  30710. name: "Normal",
  30711. height: math.unit(8, "feet"),
  30712. default: true
  30713. },
  30714. ]
  30715. ))
  30716. characterMakers.push(() => makeCharacter(
  30717. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30718. {
  30719. front: {
  30720. height: math.unit(99, "meters"),
  30721. weight: math.unit(13000, "tons"),
  30722. name: "Front",
  30723. image: {
  30724. source: "./media/characters/zlmos/front.svg",
  30725. extra: 2202/1992,
  30726. bottom: 315/2517
  30727. }
  30728. },
  30729. },
  30730. [
  30731. {
  30732. name: "Macro",
  30733. height: math.unit(99, "meters"),
  30734. default: true
  30735. },
  30736. ]
  30737. ))
  30738. characterMakers.push(() => makeCharacter(
  30739. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30740. {
  30741. front: {
  30742. height: math.unit(6 + 5/12, "feet"),
  30743. name: "Front",
  30744. image: {
  30745. source: "./media/characters/purri/front.svg",
  30746. extra: 1698/1610,
  30747. bottom: 32/1730
  30748. }
  30749. },
  30750. frontAlt: {
  30751. height: math.unit(6 + 5/12, "feet"),
  30752. name: "Front (Alt)",
  30753. image: {
  30754. source: "./media/characters/purri/front-alt.svg",
  30755. extra: 450/420,
  30756. bottom: 26/476
  30757. }
  30758. },
  30759. boots: {
  30760. height: math.unit(5.5, "feet"),
  30761. name: "Boots",
  30762. image: {
  30763. source: "./media/characters/purri/boots.svg",
  30764. extra: 905/853,
  30765. bottom: 18/923
  30766. }
  30767. },
  30768. lying: {
  30769. height: math.unit(2, "feet"),
  30770. name: "Lying",
  30771. image: {
  30772. source: "./media/characters/purri/lying.svg",
  30773. extra: 940/843,
  30774. bottom: 146/1086
  30775. }
  30776. },
  30777. devious: {
  30778. height: math.unit(1.77, "feet"),
  30779. name: "Devious",
  30780. image: {
  30781. source: "./media/characters/purri/devious.svg",
  30782. extra: 1440/1155,
  30783. bottom: 147/1587
  30784. }
  30785. },
  30786. bean: {
  30787. height: math.unit(1.94, "feet"),
  30788. name: "Bean",
  30789. image: {
  30790. source: "./media/characters/purri/bean.svg"
  30791. }
  30792. },
  30793. },
  30794. [
  30795. {
  30796. name: "Micro",
  30797. height: math.unit(1, "mm")
  30798. },
  30799. {
  30800. name: "Normal",
  30801. height: math.unit(6 + 5/12, "feet"),
  30802. default: true
  30803. },
  30804. {
  30805. name: "Macro :3c",
  30806. height: math.unit(2, "miles")
  30807. },
  30808. ]
  30809. ))
  30810. characterMakers.push(() => makeCharacter(
  30811. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30812. {
  30813. front: {
  30814. height: math.unit(6 + 2/12, "feet"),
  30815. weight: math.unit(250, "lb"),
  30816. name: "Front",
  30817. image: {
  30818. source: "./media/characters/moonlight/front.svg",
  30819. extra: 1044/908,
  30820. bottom: 56/1100
  30821. }
  30822. },
  30823. paw: {
  30824. height: math.unit(1, "feet"),
  30825. name: "Paw",
  30826. image: {
  30827. source: "./media/characters/moonlight/paw.svg"
  30828. }
  30829. },
  30830. paws: {
  30831. height: math.unit(0.98, "feet"),
  30832. name: "Paws",
  30833. image: {
  30834. source: "./media/characters/moonlight/paws.svg",
  30835. extra: 939/939,
  30836. bottom: 50/989
  30837. }
  30838. },
  30839. mouth: {
  30840. height: math.unit(0.48, "feet"),
  30841. name: "Mouth",
  30842. image: {
  30843. source: "./media/characters/moonlight/mouth.svg"
  30844. }
  30845. },
  30846. dick: {
  30847. height: math.unit(1.46, "feet"),
  30848. name: "Dick",
  30849. image: {
  30850. source: "./media/characters/moonlight/dick.svg"
  30851. }
  30852. },
  30853. },
  30854. [
  30855. {
  30856. name: "Normal",
  30857. height: math.unit(6 + 2/12, "feet"),
  30858. default: true
  30859. },
  30860. {
  30861. name: "Macro",
  30862. height: math.unit(300, "feet")
  30863. },
  30864. {
  30865. name: "Macro+",
  30866. height: math.unit(1, "mile")
  30867. },
  30868. {
  30869. name: "Mt. Moon",
  30870. height: math.unit(5, "miles")
  30871. },
  30872. {
  30873. name: "Megamacro",
  30874. height: math.unit(15, "miles")
  30875. },
  30876. ]
  30877. ))
  30878. characterMakers.push(() => makeCharacter(
  30879. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30880. {
  30881. back: {
  30882. height: math.unit(6, "feet"),
  30883. weight: math.unit(150, "lb"),
  30884. name: "Back",
  30885. image: {
  30886. source: "./media/characters/sylen/back.svg",
  30887. extra: 1335/1273,
  30888. bottom: 107/1442
  30889. }
  30890. },
  30891. },
  30892. [
  30893. {
  30894. name: "Normal",
  30895. height: math.unit(5 + 5/12, "feet")
  30896. },
  30897. {
  30898. name: "Megamacro",
  30899. height: math.unit(3, "miles"),
  30900. default: true
  30901. },
  30902. ]
  30903. ))
  30904. characterMakers.push(() => makeCharacter(
  30905. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30906. {
  30907. front: {
  30908. height: math.unit(6, "feet"),
  30909. weight: math.unit(190, "lb"),
  30910. name: "Front",
  30911. image: {
  30912. source: "./media/characters/huttser/front.svg",
  30913. extra: 1152/1058,
  30914. bottom: 23/1175
  30915. }
  30916. },
  30917. side: {
  30918. height: math.unit(6, "feet"),
  30919. weight: math.unit(190, "lb"),
  30920. name: "Side",
  30921. image: {
  30922. source: "./media/characters/huttser/side.svg",
  30923. extra: 1174/1065,
  30924. bottom: 18/1192
  30925. }
  30926. },
  30927. back: {
  30928. height: math.unit(6, "feet"),
  30929. weight: math.unit(190, "lb"),
  30930. name: "Back",
  30931. image: {
  30932. source: "./media/characters/huttser/back.svg",
  30933. extra: 1158/1056,
  30934. bottom: 12/1170
  30935. }
  30936. },
  30937. },
  30938. [
  30939. ]
  30940. ))
  30941. characterMakers.push(() => makeCharacter(
  30942. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30943. {
  30944. side: {
  30945. height: math.unit(12 + 9/12, "feet"),
  30946. weight: math.unit(15000, "lb"),
  30947. name: "Side",
  30948. image: {
  30949. source: "./media/characters/faan/side.svg",
  30950. extra: 2747/2697,
  30951. bottom: 0/2747
  30952. }
  30953. },
  30954. front: {
  30955. height: math.unit(12 + 9/12, "feet"),
  30956. weight: math.unit(15000, "lb"),
  30957. name: "Front",
  30958. image: {
  30959. source: "./media/characters/faan/front.svg",
  30960. extra: 607/571,
  30961. bottom: 24/631
  30962. }
  30963. },
  30964. head: {
  30965. height: math.unit(2.85, "feet"),
  30966. name: "Head",
  30967. image: {
  30968. source: "./media/characters/faan/head.svg"
  30969. }
  30970. },
  30971. headAlt: {
  30972. height: math.unit(3.13, "feet"),
  30973. name: "Head-alt",
  30974. image: {
  30975. source: "./media/characters/faan/head-alt.svg"
  30976. }
  30977. },
  30978. },
  30979. [
  30980. {
  30981. name: "Normal",
  30982. height: math.unit(12 + 9/12, "feet"),
  30983. default: true
  30984. },
  30985. ]
  30986. ))
  30987. characterMakers.push(() => makeCharacter(
  30988. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30989. {
  30990. front: {
  30991. height: math.unit(6, "feet"),
  30992. weight: math.unit(300, "lb"),
  30993. name: "Front",
  30994. image: {
  30995. source: "./media/characters/tanio/front.svg",
  30996. extra: 711/673,
  30997. bottom: 25/736
  30998. }
  30999. },
  31000. },
  31001. [
  31002. {
  31003. name: "Normal",
  31004. height: math.unit(6, "feet"),
  31005. default: true
  31006. },
  31007. ]
  31008. ))
  31009. characterMakers.push(() => makeCharacter(
  31010. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31011. {
  31012. front: {
  31013. height: math.unit(3, "inches"),
  31014. name: "Front",
  31015. image: {
  31016. source: "./media/characters/noboru/front.svg",
  31017. extra: 1039/932,
  31018. bottom: 18/1057
  31019. }
  31020. },
  31021. },
  31022. [
  31023. {
  31024. name: "Micro",
  31025. height: math.unit(3, "inches"),
  31026. default: true
  31027. },
  31028. ]
  31029. ))
  31030. characterMakers.push(() => makeCharacter(
  31031. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31032. {
  31033. front: {
  31034. height: math.unit(1.85, "meters"),
  31035. weight: math.unit(80, "kg"),
  31036. name: "Front",
  31037. image: {
  31038. source: "./media/characters/daniel-barrett/front.svg",
  31039. extra: 355/337,
  31040. bottom: 9/364
  31041. }
  31042. },
  31043. },
  31044. [
  31045. {
  31046. name: "Pico",
  31047. height: math.unit(0.0433, "mm")
  31048. },
  31049. {
  31050. name: "Nano",
  31051. height: math.unit(1.5, "mm")
  31052. },
  31053. {
  31054. name: "Micro",
  31055. height: math.unit(5.3, "cm"),
  31056. default: true
  31057. },
  31058. {
  31059. name: "Normal",
  31060. height: math.unit(1.85, "meters")
  31061. },
  31062. {
  31063. name: "Macro",
  31064. height: math.unit(64.7, "meters")
  31065. },
  31066. {
  31067. name: "Megamacro",
  31068. height: math.unit(2.26, "km")
  31069. },
  31070. {
  31071. name: "Gigamacro",
  31072. height: math.unit(79, "km")
  31073. },
  31074. {
  31075. name: "Teramacro",
  31076. height: math.unit(2765, "km")
  31077. },
  31078. {
  31079. name: "Petamacro",
  31080. height: math.unit(96678, "km")
  31081. },
  31082. ]
  31083. ))
  31084. characterMakers.push(() => makeCharacter(
  31085. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31086. {
  31087. front: {
  31088. height: math.unit(30, "meters"),
  31089. weight: math.unit(400, "tons"),
  31090. name: "Front",
  31091. image: {
  31092. source: "./media/characters/zeel/front.svg",
  31093. extra: 2599/2599,
  31094. bottom: 226/2825
  31095. }
  31096. },
  31097. },
  31098. [
  31099. {
  31100. name: "Macro",
  31101. height: math.unit(30, "meters"),
  31102. default: true
  31103. },
  31104. ]
  31105. ))
  31106. characterMakers.push(() => makeCharacter(
  31107. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31108. {
  31109. front: {
  31110. height: math.unit(6 + 7/12, "feet"),
  31111. weight: math.unit(210, "lb"),
  31112. name: "Front",
  31113. image: {
  31114. source: "./media/characters/tarn/front.svg",
  31115. extra: 3517/3220,
  31116. bottom: 91/3608
  31117. }
  31118. },
  31119. back: {
  31120. height: math.unit(6 + 7/12, "feet"),
  31121. weight: math.unit(210, "lb"),
  31122. name: "Back",
  31123. image: {
  31124. source: "./media/characters/tarn/back.svg",
  31125. extra: 3566/3241,
  31126. bottom: 34/3600
  31127. }
  31128. },
  31129. dick: {
  31130. height: math.unit(1.65, "feet"),
  31131. name: "Dick",
  31132. image: {
  31133. source: "./media/characters/tarn/dick.svg"
  31134. }
  31135. },
  31136. paw: {
  31137. height: math.unit(1.80, "feet"),
  31138. name: "Paw",
  31139. image: {
  31140. source: "./media/characters/tarn/paw.svg"
  31141. }
  31142. },
  31143. tongue: {
  31144. height: math.unit(0.97, "feet"),
  31145. name: "Tongue",
  31146. image: {
  31147. source: "./media/characters/tarn/tongue.svg"
  31148. }
  31149. },
  31150. },
  31151. [
  31152. {
  31153. name: "Micro",
  31154. height: math.unit(4, "inches")
  31155. },
  31156. {
  31157. name: "Normal",
  31158. height: math.unit(6 + 7/12, "feet"),
  31159. default: true
  31160. },
  31161. {
  31162. name: "Macro",
  31163. height: math.unit(300, "feet")
  31164. },
  31165. ]
  31166. ))
  31167. characterMakers.push(() => makeCharacter(
  31168. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31169. {
  31170. front: {
  31171. height: math.unit(5 + 7/12, "feet"),
  31172. weight: math.unit(80, "kg"),
  31173. name: "Front",
  31174. image: {
  31175. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31176. extra: 3023/2865,
  31177. bottom: 33/3056
  31178. }
  31179. },
  31180. back: {
  31181. height: math.unit(5 + 7/12, "feet"),
  31182. weight: math.unit(80, "kg"),
  31183. name: "Back",
  31184. image: {
  31185. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31186. extra: 3020/2886,
  31187. bottom: 30/3050
  31188. }
  31189. },
  31190. dick: {
  31191. height: math.unit(0.98, "feet"),
  31192. name: "Dick",
  31193. image: {
  31194. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31195. }
  31196. },
  31197. anatomy: {
  31198. height: math.unit(2.86, "feet"),
  31199. name: "Anatomy",
  31200. image: {
  31201. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31202. }
  31203. },
  31204. },
  31205. [
  31206. {
  31207. name: "Really Small",
  31208. height: math.unit(2, "inches")
  31209. },
  31210. {
  31211. name: "Micro",
  31212. height: math.unit(5.583, "inches")
  31213. },
  31214. {
  31215. name: "Normal",
  31216. height: math.unit(5 + 7/12, "feet"),
  31217. default: true
  31218. },
  31219. {
  31220. name: "Macro",
  31221. height: math.unit(67, "feet")
  31222. },
  31223. {
  31224. name: "Megamacro",
  31225. height: math.unit(134, "feet")
  31226. },
  31227. ]
  31228. ))
  31229. characterMakers.push(() => makeCharacter(
  31230. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31231. {
  31232. front: {
  31233. height: math.unit(9, "feet"),
  31234. weight: math.unit(120, "lb"),
  31235. name: "Front",
  31236. image: {
  31237. source: "./media/characters/sally/front.svg",
  31238. extra: 1506/1349,
  31239. bottom: 66/1572
  31240. }
  31241. },
  31242. },
  31243. [
  31244. {
  31245. name: "Normal",
  31246. height: math.unit(9, "feet"),
  31247. default: true
  31248. },
  31249. ]
  31250. ))
  31251. characterMakers.push(() => makeCharacter(
  31252. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31253. {
  31254. front: {
  31255. height: math.unit(8, "feet"),
  31256. weight: math.unit(900, "lb"),
  31257. name: "Front",
  31258. image: {
  31259. source: "./media/characters/owen/front.svg",
  31260. extra: 1761/1657,
  31261. bottom: 74/1835
  31262. }
  31263. },
  31264. side: {
  31265. height: math.unit(8, "feet"),
  31266. weight: math.unit(900, "lb"),
  31267. name: "Side",
  31268. image: {
  31269. source: "./media/characters/owen/side.svg",
  31270. extra: 1797/1734,
  31271. bottom: 30/1827
  31272. }
  31273. },
  31274. back: {
  31275. height: math.unit(8, "feet"),
  31276. weight: math.unit(900, "lb"),
  31277. name: "Back",
  31278. image: {
  31279. source: "./media/characters/owen/back.svg",
  31280. extra: 1796/1706,
  31281. bottom: 59/1855
  31282. }
  31283. },
  31284. maw: {
  31285. height: math.unit(1.76, "feet"),
  31286. name: "Maw",
  31287. image: {
  31288. source: "./media/characters/owen/maw.svg"
  31289. }
  31290. },
  31291. },
  31292. [
  31293. {
  31294. name: "Normal",
  31295. height: math.unit(8, "feet"),
  31296. default: true
  31297. },
  31298. ]
  31299. ))
  31300. characterMakers.push(() => makeCharacter(
  31301. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31302. {
  31303. front: {
  31304. height: math.unit(4, "feet"),
  31305. weight: math.unit(400, "lb"),
  31306. name: "Front",
  31307. image: {
  31308. source: "./media/characters/ryth/front.svg",
  31309. extra: 876/691,
  31310. bottom: 25/901
  31311. }
  31312. },
  31313. },
  31314. [
  31315. {
  31316. name: "Normal",
  31317. height: math.unit(4, "feet"),
  31318. default: true
  31319. },
  31320. ]
  31321. ))
  31322. characterMakers.push(() => makeCharacter(
  31323. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31324. {
  31325. front: {
  31326. height: math.unit(7, "feet"),
  31327. weight: math.unit(180, "lb"),
  31328. name: "Front",
  31329. image: {
  31330. source: "./media/characters/necrolance/front.svg",
  31331. extra: 1062/947,
  31332. bottom: 41/1103
  31333. }
  31334. },
  31335. back: {
  31336. height: math.unit(7, "feet"),
  31337. weight: math.unit(180, "lb"),
  31338. name: "Back",
  31339. image: {
  31340. source: "./media/characters/necrolance/back.svg",
  31341. extra: 1045/984,
  31342. bottom: 14/1059
  31343. }
  31344. },
  31345. wing: {
  31346. height: math.unit(2.67, "feet"),
  31347. name: "Wing",
  31348. image: {
  31349. source: "./media/characters/necrolance/wing.svg"
  31350. }
  31351. },
  31352. },
  31353. [
  31354. {
  31355. name: "Normal",
  31356. height: math.unit(7, "feet"),
  31357. default: true
  31358. },
  31359. ]
  31360. ))
  31361. characterMakers.push(() => makeCharacter(
  31362. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31363. {
  31364. front: {
  31365. height: math.unit(76, "meters"),
  31366. weight: math.unit(30000, "tons"),
  31367. name: "Front",
  31368. image: {
  31369. source: "./media/characters/tyler/front.svg",
  31370. extra: 1640/1640,
  31371. bottom: 114/1754
  31372. }
  31373. },
  31374. },
  31375. [
  31376. {
  31377. name: "Macro",
  31378. height: math.unit(76, "meters"),
  31379. default: true
  31380. },
  31381. ]
  31382. ))
  31383. characterMakers.push(() => makeCharacter(
  31384. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31385. {
  31386. front: {
  31387. height: math.unit(4 + 11/12, "feet"),
  31388. weight: math.unit(132, "lb"),
  31389. name: "Front",
  31390. image: {
  31391. source: "./media/characters/icey/front.svg",
  31392. extra: 2750/2550,
  31393. bottom: 33/2783
  31394. }
  31395. },
  31396. back: {
  31397. height: math.unit(4 + 11/12, "feet"),
  31398. weight: math.unit(132, "lb"),
  31399. name: "Back",
  31400. image: {
  31401. source: "./media/characters/icey/back.svg",
  31402. extra: 2624/2481,
  31403. bottom: 35/2659
  31404. }
  31405. },
  31406. },
  31407. [
  31408. {
  31409. name: "Normal",
  31410. height: math.unit(4 + 11/12, "feet"),
  31411. default: true
  31412. },
  31413. ]
  31414. ))
  31415. characterMakers.push(() => makeCharacter(
  31416. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31417. {
  31418. front: {
  31419. height: math.unit(100, "feet"),
  31420. weight: math.unit(0, "lb"),
  31421. name: "Front",
  31422. image: {
  31423. source: "./media/characters/smile/front.svg",
  31424. extra: 2983/2912,
  31425. bottom: 162/3145
  31426. }
  31427. },
  31428. back: {
  31429. height: math.unit(100, "feet"),
  31430. weight: math.unit(0, "lb"),
  31431. name: "Back",
  31432. image: {
  31433. source: "./media/characters/smile/back.svg",
  31434. extra: 3143/3031,
  31435. bottom: 91/3234
  31436. }
  31437. },
  31438. head: {
  31439. height: math.unit(26.3, "feet"),
  31440. weight: math.unit(0, "lb"),
  31441. name: "Head",
  31442. image: {
  31443. source: "./media/characters/smile/head.svg"
  31444. }
  31445. },
  31446. collar: {
  31447. height: math.unit(5.3, "feet"),
  31448. weight: math.unit(0, "lb"),
  31449. name: "Collar",
  31450. image: {
  31451. source: "./media/characters/smile/collar.svg"
  31452. }
  31453. },
  31454. },
  31455. [
  31456. {
  31457. name: "Macro",
  31458. height: math.unit(100, "feet"),
  31459. default: true
  31460. },
  31461. ]
  31462. ))
  31463. characterMakers.push(() => makeCharacter(
  31464. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31465. {
  31466. dragon: {
  31467. height: math.unit(26, "feet"),
  31468. weight: math.unit(36, "tons"),
  31469. name: "Dragon",
  31470. image: {
  31471. source: "./media/characters/arimphae/dragon.svg",
  31472. extra: 1574/983,
  31473. bottom: 357/1931
  31474. }
  31475. },
  31476. drake: {
  31477. height: math.unit(9, "feet"),
  31478. weight: math.unit(1.5, "tons"),
  31479. name: "Drake",
  31480. image: {
  31481. source: "./media/characters/arimphae/drake.svg",
  31482. extra: 1120/925,
  31483. bottom: 435/1555
  31484. }
  31485. },
  31486. },
  31487. [
  31488. {
  31489. name: "Small",
  31490. height: math.unit(26*5/9, "feet")
  31491. },
  31492. {
  31493. name: "Normal",
  31494. height: math.unit(26, "feet"),
  31495. default: true
  31496. },
  31497. ]
  31498. ))
  31499. characterMakers.push(() => makeCharacter(
  31500. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31501. {
  31502. front: {
  31503. height: math.unit(8 + 9/12, "feet"),
  31504. name: "Front",
  31505. image: {
  31506. source: "./media/characters/xander/front.svg",
  31507. extra: 848/673,
  31508. bottom: 62/910
  31509. }
  31510. },
  31511. },
  31512. [
  31513. {
  31514. name: "Normal",
  31515. height: math.unit(8 + 9/12, "feet"),
  31516. default: true
  31517. },
  31518. {
  31519. name: "Gaze Grabber",
  31520. height: math.unit(13 + 8/12, "feet")
  31521. },
  31522. {
  31523. name: "Jaw Dropper",
  31524. height: math.unit(27, "feet")
  31525. },
  31526. {
  31527. name: "Show Stopper",
  31528. height: math.unit(136, "feet")
  31529. },
  31530. {
  31531. name: "Superstar",
  31532. height: math.unit(1.9e6, "miles")
  31533. },
  31534. ]
  31535. ))
  31536. characterMakers.push(() => makeCharacter(
  31537. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31538. {
  31539. side: {
  31540. height: math.unit(2100, "feet"),
  31541. name: "Side",
  31542. image: {
  31543. source: "./media/characters/osiris/side.svg",
  31544. extra: 1105/939,
  31545. bottom: 167/1272
  31546. }
  31547. },
  31548. },
  31549. [
  31550. {
  31551. name: "Macro",
  31552. height: math.unit(2100, "feet"),
  31553. default: true
  31554. },
  31555. ]
  31556. ))
  31557. characterMakers.push(() => makeCharacter(
  31558. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31559. {
  31560. front: {
  31561. height: math.unit(6 + 8/12, "feet"),
  31562. weight: math.unit(225, "lb"),
  31563. name: "Front",
  31564. image: {
  31565. source: "./media/characters/rhys-londe/front.svg",
  31566. extra: 2258/2141,
  31567. bottom: 188/2446
  31568. }
  31569. },
  31570. back: {
  31571. height: math.unit(6 + 8/12, "feet"),
  31572. weight: math.unit(225, "lb"),
  31573. name: "Back",
  31574. image: {
  31575. source: "./media/characters/rhys-londe/back.svg",
  31576. extra: 2237/2137,
  31577. bottom: 63/2300
  31578. }
  31579. },
  31580. frontNsfw: {
  31581. height: math.unit(6 + 8/12, "feet"),
  31582. weight: math.unit(225, "lb"),
  31583. name: "Front (NSFW)",
  31584. image: {
  31585. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31586. extra: 2258/2141,
  31587. bottom: 188/2446
  31588. }
  31589. },
  31590. backNsfw: {
  31591. height: math.unit(6 + 8/12, "feet"),
  31592. weight: math.unit(225, "lb"),
  31593. name: "Back (NSFW)",
  31594. image: {
  31595. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31596. extra: 2237/2137,
  31597. bottom: 63/2300
  31598. }
  31599. },
  31600. dick: {
  31601. height: math.unit(30, "inches"),
  31602. name: "Dick",
  31603. image: {
  31604. source: "./media/characters/rhys-londe/dick.svg"
  31605. }
  31606. },
  31607. maw: {
  31608. height: math.unit(1.6, "feet"),
  31609. name: "Maw",
  31610. image: {
  31611. source: "./media/characters/rhys-londe/maw.svg"
  31612. }
  31613. },
  31614. },
  31615. [
  31616. {
  31617. name: "Normal",
  31618. height: math.unit(6 + 8/12, "feet"),
  31619. default: true
  31620. },
  31621. ]
  31622. ))
  31623. characterMakers.push(() => makeCharacter(
  31624. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31625. {
  31626. front: {
  31627. height: math.unit(3 + 10/12, "feet"),
  31628. weight: math.unit(90, "lb"),
  31629. name: "Front",
  31630. image: {
  31631. source: "./media/characters/taivas-ensim/front.svg",
  31632. extra: 1327/1216,
  31633. bottom: 96/1423
  31634. }
  31635. },
  31636. back: {
  31637. height: math.unit(3 + 10/12, "feet"),
  31638. weight: math.unit(90, "lb"),
  31639. name: "Back",
  31640. image: {
  31641. source: "./media/characters/taivas-ensim/back.svg",
  31642. extra: 1355/1247,
  31643. bottom: 11/1366
  31644. }
  31645. },
  31646. frontNsfw: {
  31647. height: math.unit(3 + 10/12, "feet"),
  31648. weight: math.unit(90, "lb"),
  31649. name: "Front (NSFW)",
  31650. image: {
  31651. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31652. extra: 1327/1216,
  31653. bottom: 96/1423
  31654. }
  31655. },
  31656. backNsfw: {
  31657. height: math.unit(3 + 10/12, "feet"),
  31658. weight: math.unit(90, "lb"),
  31659. name: "Back (NSFW)",
  31660. image: {
  31661. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31662. extra: 1355/1247,
  31663. bottom: 11/1366
  31664. }
  31665. },
  31666. },
  31667. [
  31668. {
  31669. name: "Normal",
  31670. height: math.unit(3 + 10/12, "feet"),
  31671. default: true
  31672. },
  31673. ]
  31674. ))
  31675. characterMakers.push(() => makeCharacter(
  31676. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31677. {
  31678. front: {
  31679. height: math.unit(9 + 6/12, "feet"),
  31680. weight: math.unit(940, "lb"),
  31681. name: "Front",
  31682. image: {
  31683. source: "./media/characters/byliss/front.svg",
  31684. extra: 1327/1290,
  31685. bottom: 82/1409
  31686. }
  31687. },
  31688. back: {
  31689. height: math.unit(9 + 6/12, "feet"),
  31690. weight: math.unit(940, "lb"),
  31691. name: "Back",
  31692. image: {
  31693. source: "./media/characters/byliss/back.svg",
  31694. extra: 1376/1349,
  31695. bottom: 9/1385
  31696. }
  31697. },
  31698. frontNsfw: {
  31699. height: math.unit(9 + 6/12, "feet"),
  31700. weight: math.unit(940, "lb"),
  31701. name: "Front (NSFW)",
  31702. image: {
  31703. source: "./media/characters/byliss/front-nsfw.svg",
  31704. extra: 1327/1290,
  31705. bottom: 82/1409
  31706. }
  31707. },
  31708. backNsfw: {
  31709. height: math.unit(9 + 6/12, "feet"),
  31710. weight: math.unit(940, "lb"),
  31711. name: "Back (NSFW)",
  31712. image: {
  31713. source: "./media/characters/byliss/back-nsfw.svg",
  31714. extra: 1376/1349,
  31715. bottom: 9/1385
  31716. }
  31717. },
  31718. },
  31719. [
  31720. {
  31721. name: "Normal",
  31722. height: math.unit(9 + 6/12, "feet"),
  31723. default: true
  31724. },
  31725. ]
  31726. ))
  31727. characterMakers.push(() => makeCharacter(
  31728. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31729. {
  31730. full: {
  31731. height: math.unit(5 + 2/12, "feet"),
  31732. weight: math.unit(164, "lb"),
  31733. name: "Full",
  31734. image: {
  31735. source: "./media/characters/noraly/full.svg",
  31736. extra: 1114/1059,
  31737. bottom: 35/1149
  31738. }
  31739. },
  31740. fuller: {
  31741. height: math.unit(5 + 2/12, "feet"),
  31742. weight: math.unit(230, "lb"),
  31743. name: "Fuller",
  31744. image: {
  31745. source: "./media/characters/noraly/fuller.svg",
  31746. extra: 1114/1059,
  31747. bottom: 35/1149
  31748. }
  31749. },
  31750. fullest: {
  31751. height: math.unit(5 + 2/12, "feet"),
  31752. weight: math.unit(300, "lb"),
  31753. name: "Fullest",
  31754. image: {
  31755. source: "./media/characters/noraly/fullest.svg",
  31756. extra: 1114/1059,
  31757. bottom: 35/1149
  31758. }
  31759. },
  31760. },
  31761. [
  31762. {
  31763. name: "Normal",
  31764. height: math.unit(5 + 2/12, "feet"),
  31765. default: true
  31766. },
  31767. ]
  31768. ))
  31769. characterMakers.push(() => makeCharacter(
  31770. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31771. {
  31772. front: {
  31773. height: math.unit(5 + 2/12, "feet"),
  31774. weight: math.unit(210, "lb"),
  31775. name: "Front",
  31776. image: {
  31777. source: "./media/characters/pera/front.svg",
  31778. extra: 1560/1531,
  31779. bottom: 165/1725
  31780. }
  31781. },
  31782. back: {
  31783. height: math.unit(5 + 2/12, "feet"),
  31784. weight: math.unit(210, "lb"),
  31785. name: "Back",
  31786. image: {
  31787. source: "./media/characters/pera/back.svg",
  31788. extra: 1523/1493,
  31789. bottom: 152/1675
  31790. }
  31791. },
  31792. dick: {
  31793. height: math.unit(2.4, "feet"),
  31794. name: "Dick",
  31795. image: {
  31796. source: "./media/characters/pera/dick.svg"
  31797. }
  31798. },
  31799. },
  31800. [
  31801. {
  31802. name: "Normal",
  31803. height: math.unit(5 + 2/12, "feet"),
  31804. default: true
  31805. },
  31806. ]
  31807. ))
  31808. characterMakers.push(() => makeCharacter(
  31809. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31810. {
  31811. front: {
  31812. height: math.unit(12, "feet"),
  31813. weight: math.unit(3200, "lb"),
  31814. name: "Front",
  31815. image: {
  31816. source: "./media/characters/julian/front.svg",
  31817. extra: 2962/2701,
  31818. bottom: 184/3146
  31819. }
  31820. },
  31821. maw: {
  31822. height: math.unit(5.35, "feet"),
  31823. name: "Maw",
  31824. image: {
  31825. source: "./media/characters/julian/maw.svg"
  31826. }
  31827. },
  31828. paw: {
  31829. height: math.unit(3.07, "feet"),
  31830. name: "Paw",
  31831. image: {
  31832. source: "./media/characters/julian/paw.svg"
  31833. }
  31834. },
  31835. },
  31836. [
  31837. {
  31838. name: "Default",
  31839. height: math.unit(12, "feet"),
  31840. default: true
  31841. },
  31842. {
  31843. name: "Big",
  31844. height: math.unit(50, "feet")
  31845. },
  31846. {
  31847. name: "Really Big",
  31848. height: math.unit(1, "mile")
  31849. },
  31850. {
  31851. name: "Extremely Big",
  31852. height: math.unit(100, "miles")
  31853. },
  31854. {
  31855. name: "Planet Hugger",
  31856. height: math.unit(200, "megameters")
  31857. },
  31858. {
  31859. name: "Unreasonably Big",
  31860. height: math.unit(1e300, "meters")
  31861. },
  31862. ]
  31863. ))
  31864. characterMakers.push(() => makeCharacter(
  31865. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31866. {
  31867. solgooleo: {
  31868. height: math.unit(4, "meters"),
  31869. weight: math.unit(6000*1.5, "kg"),
  31870. volume: math.unit(6000, "liters"),
  31871. name: "Solgooleo",
  31872. image: {
  31873. source: "./media/characters/pi/solgooleo.svg",
  31874. extra: 388/331,
  31875. bottom: 29/417
  31876. }
  31877. },
  31878. },
  31879. [
  31880. {
  31881. name: "Normal",
  31882. height: math.unit(4, "meters"),
  31883. default: true
  31884. },
  31885. ]
  31886. ))
  31887. characterMakers.push(() => makeCharacter(
  31888. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31889. {
  31890. front: {
  31891. height: math.unit(8 + 2/12, "feet"),
  31892. weight: math.unit(4, "tons"),
  31893. name: "Front",
  31894. image: {
  31895. source: "./media/characters/shaun/front.svg",
  31896. extra: 1550/1505,
  31897. bottom: 353/1903
  31898. }
  31899. },
  31900. },
  31901. [
  31902. {
  31903. name: "Lorg",
  31904. height: math.unit(8 + 2/12, "feet"),
  31905. default: true
  31906. },
  31907. ]
  31908. ))
  31909. characterMakers.push(() => makeCharacter(
  31910. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31911. {
  31912. front: {
  31913. height: math.unit(7, "feet"),
  31914. name: "Front",
  31915. image: {
  31916. source: "./media/characters/sini/front.svg",
  31917. extra: 726/678,
  31918. bottom: 35/761
  31919. }
  31920. },
  31921. back: {
  31922. height: math.unit(7, "feet"),
  31923. name: "Back",
  31924. image: {
  31925. source: "./media/characters/sini/back.svg",
  31926. extra: 743/701,
  31927. bottom: 12/755
  31928. }
  31929. },
  31930. mawAnthro: {
  31931. height: math.unit(2.14, "feet"),
  31932. name: "Maw (Anthro)",
  31933. image: {
  31934. source: "./media/characters/sini/maw-anthro.svg"
  31935. }
  31936. },
  31937. dick: {
  31938. height: math.unit(1.45, "feet"),
  31939. name: "Dick (Anthro)",
  31940. image: {
  31941. source: "./media/characters/sini/dick-anthro.svg"
  31942. }
  31943. },
  31944. feral: {
  31945. height: math.unit(13, "feet"),
  31946. name: "Feral",
  31947. image: {
  31948. source: "./media/characters/sini/feral.svg",
  31949. extra: 814/605,
  31950. bottom: 11/825
  31951. }
  31952. },
  31953. mawFeral: {
  31954. height: math.unit(4.6, "feet"),
  31955. name: "Maw-feral",
  31956. image: {
  31957. source: "./media/characters/sini/maw-feral.svg"
  31958. }
  31959. },
  31960. footFeral: {
  31961. height: math.unit(4.2, "feet"),
  31962. name: "Foot-feral",
  31963. image: {
  31964. source: "./media/characters/sini/foot-feral.svg"
  31965. }
  31966. },
  31967. },
  31968. [
  31969. {
  31970. name: "Normal",
  31971. height: math.unit(7, "feet"),
  31972. default: true
  31973. },
  31974. ]
  31975. ))
  31976. characterMakers.push(() => makeCharacter(
  31977. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  31978. {
  31979. side: {
  31980. height: math.unit(13, "meters"),
  31981. weight: math.unit(9072, "kg"),
  31982. name: "Side",
  31983. image: {
  31984. source: "./media/characters/raylldo/side.svg",
  31985. extra: 403/344,
  31986. bottom: 42/445
  31987. }
  31988. },
  31989. leaping: {
  31990. height: math.unit(12.3, "meters"),
  31991. weight: math.unit(9072, "kg"),
  31992. name: "Leaping",
  31993. image: {
  31994. source: "./media/characters/raylldo/leaping.svg",
  31995. extra: 470/249,
  31996. bottom: 13/483
  31997. }
  31998. },
  31999. flying: {
  32000. height: math.unit(18, "meters"),
  32001. weight: math.unit(9072, "kg"),
  32002. name: "Flying",
  32003. image: {
  32004. source: "./media/characters/raylldo/flying.svg"
  32005. }
  32006. },
  32007. head: {
  32008. height: math.unit(5.85, "meters"),
  32009. name: "Head",
  32010. image: {
  32011. source: "./media/characters/raylldo/head.svg"
  32012. }
  32013. },
  32014. maw: {
  32015. height: math.unit(5.32, "meters"),
  32016. name: "Maw",
  32017. image: {
  32018. source: "./media/characters/raylldo/maw.svg"
  32019. }
  32020. },
  32021. eye: {
  32022. height: math.unit(0.54, "meters"),
  32023. name: "Eye",
  32024. image: {
  32025. source: "./media/characters/raylldo/eye.svg"
  32026. }
  32027. },
  32028. },
  32029. [
  32030. {
  32031. name: "Normal",
  32032. height: math.unit(13, "meters"),
  32033. default: true
  32034. },
  32035. ]
  32036. ))
  32037. characterMakers.push(() => makeCharacter(
  32038. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32039. {
  32040. anthroFront: {
  32041. height: math.unit(9, "feet"),
  32042. weight: math.unit(600, "lb"),
  32043. name: "Anthro (Front)",
  32044. image: {
  32045. source: "./media/characters/glint/anthro-front.svg",
  32046. extra: 1097/1018,
  32047. bottom: 28/1125
  32048. }
  32049. },
  32050. anthroBack: {
  32051. height: math.unit(9, "feet"),
  32052. weight: math.unit(600, "lb"),
  32053. name: "Anthro (Back)",
  32054. image: {
  32055. source: "./media/characters/glint/anthro-back.svg",
  32056. extra: 1154/997,
  32057. bottom: 36/1190
  32058. }
  32059. },
  32060. feral: {
  32061. height: math.unit(11, "feet"),
  32062. weight: math.unit(50000, "lb"),
  32063. name: "Feral",
  32064. image: {
  32065. source: "./media/characters/glint/feral.svg",
  32066. extra: 3035/1585,
  32067. bottom: 1169/4204
  32068. }
  32069. },
  32070. dickAnthro: {
  32071. height: math.unit(0.7, "meters"),
  32072. name: "Dick (Anthro)",
  32073. image: {
  32074. source: "./media/characters/glint/dick-anthro.svg"
  32075. }
  32076. },
  32077. dickFeral: {
  32078. height: math.unit(2.65, "meters"),
  32079. name: "Dick (Feral)",
  32080. image: {
  32081. source: "./media/characters/glint/dick-feral.svg"
  32082. }
  32083. },
  32084. slitHidden: {
  32085. height: math.unit(5.85, "meters"),
  32086. name: "Slit (Hidden)",
  32087. image: {
  32088. source: "./media/characters/glint/slit-hidden.svg"
  32089. }
  32090. },
  32091. slitErect: {
  32092. height: math.unit(5.85, "meters"),
  32093. name: "Slit (Erect)",
  32094. image: {
  32095. source: "./media/characters/glint/slit-erect.svg"
  32096. }
  32097. },
  32098. mawAnthro: {
  32099. height: math.unit(0.63, "meters"),
  32100. name: "Maw (Anthro)",
  32101. image: {
  32102. source: "./media/characters/glint/maw.svg"
  32103. }
  32104. },
  32105. mawFeral: {
  32106. height: math.unit(2.89, "meters"),
  32107. name: "Maw (Feral)",
  32108. image: {
  32109. source: "./media/characters/glint/maw.svg"
  32110. }
  32111. },
  32112. },
  32113. [
  32114. {
  32115. name: "Normal",
  32116. height: math.unit(9, "feet"),
  32117. default: true
  32118. },
  32119. ]
  32120. ))
  32121. characterMakers.push(() => makeCharacter(
  32122. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32123. {
  32124. side: {
  32125. height: math.unit(15, "feet"),
  32126. weight: math.unit(5000, "kg"),
  32127. name: "Side",
  32128. image: {
  32129. source: "./media/characters/kairne/side.svg",
  32130. extra: 979/811,
  32131. bottom: 13/992
  32132. }
  32133. },
  32134. front: {
  32135. height: math.unit(15, "feet"),
  32136. weight: math.unit(5000, "kg"),
  32137. name: "Front",
  32138. image: {
  32139. source: "./media/characters/kairne/front.svg",
  32140. extra: 908/814,
  32141. bottom: 26/934
  32142. }
  32143. },
  32144. sideNsfw: {
  32145. height: math.unit(15, "feet"),
  32146. weight: math.unit(5000, "kg"),
  32147. name: "Side (NSFW)",
  32148. image: {
  32149. source: "./media/characters/kairne/side-nsfw.svg",
  32150. extra: 979/811,
  32151. bottom: 13/992
  32152. }
  32153. },
  32154. frontNsfw: {
  32155. height: math.unit(15, "feet"),
  32156. weight: math.unit(5000, "kg"),
  32157. name: "Front (NSFW)",
  32158. image: {
  32159. source: "./media/characters/kairne/front-nsfw.svg",
  32160. extra: 908/814,
  32161. bottom: 26/934
  32162. }
  32163. },
  32164. dickCaged: {
  32165. height: math.unit(0.65, "meters"),
  32166. name: "Dick-caged",
  32167. image: {
  32168. source: "./media/characters/kairne/dick-caged.svg"
  32169. }
  32170. },
  32171. dick: {
  32172. height: math.unit(0.79, "meters"),
  32173. name: "Dick",
  32174. image: {
  32175. source: "./media/characters/kairne/dick.svg"
  32176. }
  32177. },
  32178. genitals: {
  32179. height: math.unit(1.29, "meters"),
  32180. name: "Genitals",
  32181. image: {
  32182. source: "./media/characters/kairne/genitals.svg"
  32183. }
  32184. },
  32185. maw: {
  32186. height: math.unit(1.73, "meters"),
  32187. name: "Maw",
  32188. image: {
  32189. source: "./media/characters/kairne/maw.svg"
  32190. }
  32191. },
  32192. },
  32193. [
  32194. {
  32195. name: "Normal",
  32196. height: math.unit(15, "feet"),
  32197. default: true
  32198. },
  32199. ]
  32200. ))
  32201. characterMakers.push(() => makeCharacter(
  32202. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32203. {
  32204. front: {
  32205. height: math.unit(5 + 8/12, "feet"),
  32206. weight: math.unit(139, "lb"),
  32207. name: "Front",
  32208. image: {
  32209. source: "./media/characters/biscuit-jackal/front.svg",
  32210. extra: 2106/1961,
  32211. bottom: 58/2164
  32212. }
  32213. },
  32214. back: {
  32215. height: math.unit(5 + 8/12, "feet"),
  32216. weight: math.unit(139, "lb"),
  32217. name: "Back",
  32218. image: {
  32219. source: "./media/characters/biscuit-jackal/back.svg",
  32220. extra: 2132/1976,
  32221. bottom: 57/2189
  32222. }
  32223. },
  32224. werejackal: {
  32225. height: math.unit(6 + 3/12, "feet"),
  32226. weight: math.unit(188, "lb"),
  32227. name: "Werejackal",
  32228. image: {
  32229. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32230. extra: 2373/2178,
  32231. bottom: 53/2426
  32232. }
  32233. },
  32234. },
  32235. [
  32236. {
  32237. name: "Normal",
  32238. height: math.unit(5 + 8/12, "feet"),
  32239. default: true
  32240. },
  32241. ]
  32242. ))
  32243. characterMakers.push(() => makeCharacter(
  32244. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32245. {
  32246. front: {
  32247. height: math.unit(140, "cm"),
  32248. weight: math.unit(45, "kg"),
  32249. name: "Front",
  32250. image: {
  32251. source: "./media/characters/tayra-white/front.svg",
  32252. extra: 2229/2192,
  32253. bottom: 75/2304
  32254. }
  32255. },
  32256. },
  32257. [
  32258. {
  32259. name: "Normal",
  32260. height: math.unit(140, "cm"),
  32261. default: true
  32262. },
  32263. ]
  32264. ))
  32265. characterMakers.push(() => makeCharacter(
  32266. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32267. {
  32268. front: {
  32269. height: math.unit(4 + 5/12, "feet"),
  32270. name: "Front",
  32271. image: {
  32272. source: "./media/characters/scoop/front.svg",
  32273. extra: 1257/1136,
  32274. bottom: 69/1326
  32275. }
  32276. },
  32277. back: {
  32278. height: math.unit(4 + 5/12, "feet"),
  32279. name: "Back",
  32280. image: {
  32281. source: "./media/characters/scoop/back.svg",
  32282. extra: 1321/1152,
  32283. bottom: 32/1353
  32284. }
  32285. },
  32286. maw: {
  32287. height: math.unit(0.68, "feet"),
  32288. name: "Maw",
  32289. image: {
  32290. source: "./media/characters/scoop/maw.svg"
  32291. }
  32292. },
  32293. },
  32294. [
  32295. {
  32296. name: "Really Small",
  32297. height: math.unit(1, "mm")
  32298. },
  32299. {
  32300. name: "Micro",
  32301. height: math.unit(1, "inch")
  32302. },
  32303. {
  32304. name: "Normal",
  32305. height: math.unit(4 + 5/12, "feet"),
  32306. default: true
  32307. },
  32308. {
  32309. name: "Macro",
  32310. height: math.unit(200, "feet")
  32311. },
  32312. {
  32313. name: "Megamacro",
  32314. height: math.unit(3240, "feet")
  32315. },
  32316. {
  32317. name: "Teramacro",
  32318. height: math.unit(2500, "miles")
  32319. },
  32320. ]
  32321. ))
  32322. characterMakers.push(() => makeCharacter(
  32323. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32324. {
  32325. front: {
  32326. height: math.unit(15 + 7/12, "feet"),
  32327. name: "Front",
  32328. image: {
  32329. source: "./media/characters/saphinara/front.svg",
  32330. extra: 604/546,
  32331. bottom: 19/623
  32332. }
  32333. },
  32334. side: {
  32335. height: math.unit(15 + 7/12, "feet"),
  32336. name: "Side",
  32337. image: {
  32338. source: "./media/characters/saphinara/side.svg",
  32339. extra: 605/547,
  32340. bottom: 6/611
  32341. }
  32342. },
  32343. back: {
  32344. height: math.unit(15 + 7/12, "feet"),
  32345. name: "Back",
  32346. image: {
  32347. source: "./media/characters/saphinara/back.svg",
  32348. extra: 591/531,
  32349. bottom: 13/604
  32350. }
  32351. },
  32352. frontTail: {
  32353. height: math.unit(15 + 7/12, "feet"),
  32354. name: "Front (Full Tail)",
  32355. image: {
  32356. source: "./media/characters/saphinara/front-tail.svg",
  32357. extra: 748/547,
  32358. bottom: 66/814
  32359. }
  32360. },
  32361. },
  32362. [
  32363. {
  32364. name: "Normal",
  32365. height: math.unit(15 + 7/12, "feet"),
  32366. default: true
  32367. },
  32368. {
  32369. name: "Angry",
  32370. height: math.unit(30 + 6/12, "feet")
  32371. },
  32372. {
  32373. name: "Enraged",
  32374. height: math.unit(102 + 1/12, "feet")
  32375. },
  32376. ]
  32377. ))
  32378. characterMakers.push(() => makeCharacter(
  32379. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32380. {
  32381. front: {
  32382. height: math.unit(6 + 8/12, "feet"),
  32383. weight: math.unit(300, "lb"),
  32384. name: "Front",
  32385. image: {
  32386. source: "./media/characters/jrain/front.svg",
  32387. extra: 3039/2865,
  32388. bottom: 399/3438
  32389. }
  32390. },
  32391. back: {
  32392. height: math.unit(6 + 8/12, "feet"),
  32393. weight: math.unit(300, "lb"),
  32394. name: "Back",
  32395. image: {
  32396. source: "./media/characters/jrain/back.svg",
  32397. extra: 3089/2938,
  32398. bottom: 172/3261
  32399. }
  32400. },
  32401. head: {
  32402. height: math.unit(2.14, "feet"),
  32403. name: "Head",
  32404. image: {
  32405. source: "./media/characters/jrain/head.svg"
  32406. }
  32407. },
  32408. maw: {
  32409. height: math.unit(1.77, "feet"),
  32410. name: "Maw",
  32411. image: {
  32412. source: "./media/characters/jrain/maw.svg"
  32413. }
  32414. },
  32415. leftHand: {
  32416. height: math.unit(1.1, "feet"),
  32417. name: "Left Hand",
  32418. image: {
  32419. source: "./media/characters/jrain/left-hand.svg"
  32420. }
  32421. },
  32422. rightHand: {
  32423. height: math.unit(1.1, "feet"),
  32424. name: "Right Hand",
  32425. image: {
  32426. source: "./media/characters/jrain/right-hand.svg"
  32427. }
  32428. },
  32429. eye: {
  32430. height: math.unit(0.35, "feet"),
  32431. name: "Eye",
  32432. image: {
  32433. source: "./media/characters/jrain/eye.svg"
  32434. }
  32435. },
  32436. },
  32437. [
  32438. {
  32439. name: "Normal",
  32440. height: math.unit(6 + 8/12, "feet"),
  32441. default: true
  32442. },
  32443. {
  32444. name: "Casually Large",
  32445. height: math.unit(25, "feet")
  32446. },
  32447. {
  32448. name: "Giant",
  32449. height: math.unit(100, "feet")
  32450. },
  32451. {
  32452. name: "Kaiju",
  32453. height: math.unit(300, "feet")
  32454. },
  32455. ]
  32456. ))
  32457. characterMakers.push(() => makeCharacter(
  32458. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32459. {
  32460. dragon: {
  32461. height: math.unit(5, "meters"),
  32462. name: "Dragon",
  32463. image: {
  32464. source: "./media/characters/sabrina/dragon.svg",
  32465. extra: 3670 / 2365,
  32466. bottom: 333 / 4003
  32467. }
  32468. },
  32469. gryphon: {
  32470. height: math.unit(3, "meters"),
  32471. name: "Gryphon",
  32472. image: {
  32473. source: "./media/characters/sabrina/gryphon.svg",
  32474. extra: 1576 / 945,
  32475. bottom: 71 / 1647
  32476. }
  32477. },
  32478. snake: {
  32479. height: math.unit(12, "meters"),
  32480. name: "Snake",
  32481. image: {
  32482. source: "./media/characters/sabrina/snake.svg",
  32483. extra: 1758 / 1320,
  32484. bottom: 186 / 1944
  32485. }
  32486. },
  32487. collar: {
  32488. height: math.unit(1.86, "meters"),
  32489. name: "Collar",
  32490. image: {
  32491. source: "./media/characters/sabrina/collar.svg"
  32492. }
  32493. },
  32494. eye: {
  32495. height: math.unit(0.53, "meters"),
  32496. name: "Eye",
  32497. image: {
  32498. source: "./media/characters/sabrina/eye.svg"
  32499. }
  32500. },
  32501. foot: {
  32502. height: math.unit(1.86, "meters"),
  32503. name: "Foot",
  32504. image: {
  32505. source: "./media/characters/sabrina/foot.svg"
  32506. }
  32507. },
  32508. hand: {
  32509. height: math.unit(1.32, "meters"),
  32510. name: "Hand",
  32511. image: {
  32512. source: "./media/characters/sabrina/hand.svg"
  32513. }
  32514. },
  32515. head: {
  32516. height: math.unit(2.44, "meters"),
  32517. name: "Head",
  32518. image: {
  32519. source: "./media/characters/sabrina/head.svg"
  32520. }
  32521. },
  32522. headAngry: {
  32523. height: math.unit(2.44, "meters"),
  32524. name: "Head (Angry))",
  32525. image: {
  32526. source: "./media/characters/sabrina/head-angry.svg"
  32527. }
  32528. },
  32529. maw: {
  32530. height: math.unit(1.65, "meters"),
  32531. name: "Maw",
  32532. image: {
  32533. source: "./media/characters/sabrina/maw.svg"
  32534. }
  32535. },
  32536. spikes: {
  32537. height: math.unit(1.69, "meters"),
  32538. name: "Spikes",
  32539. image: {
  32540. source: "./media/characters/sabrina/spikes.svg"
  32541. }
  32542. },
  32543. stomach: {
  32544. height: math.unit(1.15, "meters"),
  32545. name: "Stomach",
  32546. image: {
  32547. source: "./media/characters/sabrina/stomach.svg"
  32548. }
  32549. },
  32550. tongue: {
  32551. height: math.unit(1.27, "meters"),
  32552. name: "Tongue",
  32553. image: {
  32554. source: "./media/characters/sabrina/tongue.svg"
  32555. }
  32556. },
  32557. wingDorsal: {
  32558. height: math.unit(4.85, "meters"),
  32559. name: "Wing (Dorsal)",
  32560. image: {
  32561. source: "./media/characters/sabrina/wing-dorsal.svg"
  32562. }
  32563. },
  32564. wingVentral: {
  32565. height: math.unit(4.85, "meters"),
  32566. name: "Wing (Ventral)",
  32567. image: {
  32568. source: "./media/characters/sabrina/wing-ventral.svg"
  32569. }
  32570. },
  32571. },
  32572. [
  32573. {
  32574. name: "Normal",
  32575. height: math.unit(5, "meters"),
  32576. default: true
  32577. },
  32578. ]
  32579. ))
  32580. characterMakers.push(() => makeCharacter(
  32581. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32582. {
  32583. frontMaid: {
  32584. height: math.unit(5 + 5/12, "feet"),
  32585. weight: math.unit(130, "lb"),
  32586. name: "Front (Maid)",
  32587. image: {
  32588. source: "./media/characters/midnight-tales/front-maid.svg",
  32589. extra: 489/454,
  32590. bottom: 61/550
  32591. }
  32592. },
  32593. frontFormal: {
  32594. height: math.unit(5 + 5/12, "feet"),
  32595. weight: math.unit(130, "lb"),
  32596. name: "Front (Formal)",
  32597. image: {
  32598. source: "./media/characters/midnight-tales/front-formal.svg",
  32599. extra: 489/454,
  32600. bottom: 61/550
  32601. }
  32602. },
  32603. back: {
  32604. height: math.unit(5 + 5/12, "feet"),
  32605. weight: math.unit(130, "lb"),
  32606. name: "Back",
  32607. image: {
  32608. source: "./media/characters/midnight-tales/back.svg",
  32609. extra: 498/456,
  32610. bottom: 33/531
  32611. }
  32612. },
  32613. frontBeast: {
  32614. height: math.unit(40, "feet"),
  32615. weight: math.unit(64000, "lb"),
  32616. name: "Front (Beast)",
  32617. image: {
  32618. source: "./media/characters/midnight-tales/front-beast.svg",
  32619. extra: 927/860,
  32620. bottom: 53/980
  32621. }
  32622. },
  32623. backBeast: {
  32624. height: math.unit(40, "feet"),
  32625. weight: math.unit(64000, "lb"),
  32626. name: "Back (Beast)",
  32627. image: {
  32628. source: "./media/characters/midnight-tales/back-beast.svg",
  32629. extra: 929/855,
  32630. bottom: 16/945
  32631. }
  32632. },
  32633. footBeast: {
  32634. height: math.unit(6.7, "feet"),
  32635. name: "Foot (Beast)",
  32636. image: {
  32637. source: "./media/characters/midnight-tales/foot-beast.svg"
  32638. }
  32639. },
  32640. headBeast: {
  32641. height: math.unit(8, "feet"),
  32642. name: "Head (Beast)",
  32643. image: {
  32644. source: "./media/characters/midnight-tales/head-beast.svg"
  32645. }
  32646. },
  32647. },
  32648. [
  32649. {
  32650. name: "Normal",
  32651. height: math.unit(5 + 5 / 12, "feet"),
  32652. default: true
  32653. },
  32654. {
  32655. name: "Macro",
  32656. height: math.unit(25, "feet")
  32657. },
  32658. ]
  32659. ))
  32660. characterMakers.push(() => makeCharacter(
  32661. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32662. {
  32663. front: {
  32664. height: math.unit(5 + 10/12, "feet"),
  32665. name: "Front",
  32666. image: {
  32667. source: "./media/characters/argon/front.svg",
  32668. extra: 2009/1935,
  32669. bottom: 118/2127
  32670. }
  32671. },
  32672. back: {
  32673. height: math.unit(5 + 10/12, "feet"),
  32674. name: "Back",
  32675. image: {
  32676. source: "./media/characters/argon/back.svg",
  32677. extra: 2047/1992,
  32678. bottom: 20/2067
  32679. }
  32680. },
  32681. frontDressed: {
  32682. height: math.unit(5 + 10/12, "feet"),
  32683. name: "Front (Dressed)",
  32684. image: {
  32685. source: "./media/characters/argon/front-dressed.svg",
  32686. extra: 2009/1935,
  32687. bottom: 118/2127
  32688. }
  32689. },
  32690. },
  32691. [
  32692. {
  32693. name: "Normal",
  32694. height: math.unit(5 + 10/12, "feet"),
  32695. default: true
  32696. },
  32697. ]
  32698. ))
  32699. characterMakers.push(() => makeCharacter(
  32700. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32701. {
  32702. front: {
  32703. height: math.unit(8 + 6/12, "feet"),
  32704. weight: math.unit(1150, "lb"),
  32705. name: "Front",
  32706. image: {
  32707. source: "./media/characters/kichi/front.svg",
  32708. extra: 1267/1164,
  32709. bottom: 61/1328
  32710. }
  32711. },
  32712. back: {
  32713. height: math.unit(8 + 6/12, "feet"),
  32714. weight: math.unit(1150, "lb"),
  32715. name: "Back",
  32716. image: {
  32717. source: "./media/characters/kichi/back.svg",
  32718. extra: 1273/1166,
  32719. bottom: 33/1306
  32720. }
  32721. },
  32722. },
  32723. [
  32724. {
  32725. name: "Normal",
  32726. height: math.unit(8 + 6/12, "feet"),
  32727. default: true
  32728. },
  32729. ]
  32730. ))
  32731. characterMakers.push(() => makeCharacter(
  32732. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32733. {
  32734. front: {
  32735. height: math.unit(6, "feet"),
  32736. weight: math.unit(210, "lb"),
  32737. name: "Front",
  32738. image: {
  32739. source: "./media/characters/manetel-greyscale/front.svg",
  32740. extra: 350/312,
  32741. bottom: 8/358
  32742. }
  32743. },
  32744. },
  32745. [
  32746. {
  32747. name: "Micro",
  32748. height: math.unit(2, "inches")
  32749. },
  32750. {
  32751. name: "Normal",
  32752. height: math.unit(6, "feet"),
  32753. default: true
  32754. },
  32755. {
  32756. name: "Minimacro",
  32757. height: math.unit(17, "feet")
  32758. },
  32759. {
  32760. name: "Macro",
  32761. height: math.unit(117, "feet")
  32762. },
  32763. ]
  32764. ))
  32765. characterMakers.push(() => makeCharacter(
  32766. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32767. {
  32768. side: {
  32769. height: math.unit(5 + 1/12, "feet"),
  32770. weight: math.unit(418, "lb"),
  32771. name: "Side",
  32772. image: {
  32773. source: "./media/characters/softpurr/side.svg",
  32774. extra: 1993/1945,
  32775. bottom: 134/2127
  32776. }
  32777. },
  32778. front: {
  32779. height: math.unit(5 + 1/12, "feet"),
  32780. weight: math.unit(418, "lb"),
  32781. name: "Front",
  32782. image: {
  32783. source: "./media/characters/softpurr/front.svg",
  32784. extra: 1950/1856,
  32785. bottom: 174/2124
  32786. }
  32787. },
  32788. paw: {
  32789. height: math.unit(1, "feet"),
  32790. name: "Paw",
  32791. image: {
  32792. source: "./media/characters/softpurr/paw.svg"
  32793. }
  32794. },
  32795. },
  32796. [
  32797. {
  32798. name: "Normal",
  32799. height: math.unit(5 + 1/12, "feet"),
  32800. default: true
  32801. },
  32802. ]
  32803. ))
  32804. //characters
  32805. function makeCharacters() {
  32806. const results = [];
  32807. characterMakers.forEach(character => {
  32808. results.push(character());
  32809. });
  32810. return results;
  32811. }