less copy protection, more size visualization
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

46157 řádky
1.1 MiB

  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. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. "owlbear": {
  1795. name: "Owlbear",
  1796. parents: ["owl", "bear", "monster"]
  1797. },
  1798. "owl": {
  1799. name: "Owl",
  1800. parents: ["avian"]
  1801. },
  1802. "silvertongue": {
  1803. name: "Silvertongue",
  1804. parents: ["reptile"]
  1805. },
  1806. "ahuizotl": {
  1807. name: "Ahuizotl",
  1808. parents: ["monster"]
  1809. },
  1810. }
  1811. //species
  1812. function getSpeciesInfo(speciesList) {
  1813. let result = new Set();
  1814. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1815. result.add(entry)
  1816. });
  1817. return Array.from(result);
  1818. };
  1819. function getSpeciesInfoHelper(species) {
  1820. if (!speciesData[species]) {
  1821. console.warn(species + " doesn't exist");
  1822. return [];
  1823. }
  1824. if (speciesData[species].parents) {
  1825. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1826. } else {
  1827. return [species];
  1828. }
  1829. }
  1830. characterMakers.push(() => makeCharacter(
  1831. {
  1832. name: "Fen",
  1833. species: ["crux"],
  1834. description: {
  1835. title: "Bio",
  1836. text: "Very furry. Sheds on everything."
  1837. },
  1838. tags: [
  1839. "anthro",
  1840. "goo"
  1841. ]
  1842. },
  1843. {
  1844. front: {
  1845. height: math.unit(2.2428, "meter"),
  1846. weight: math.unit(124.738, "kg"),
  1847. name: "Front",
  1848. image: {
  1849. source: "./media/characters/fen/front.svg",
  1850. extra: 1804/1562,
  1851. bottom: 205/2009
  1852. }
  1853. },
  1854. diving: {
  1855. height: math.unit(3.3, "meters"),
  1856. weight: math.unit(124.738, "kg"),
  1857. name: "Diving",
  1858. image: {
  1859. source: "./media/characters/fen/diving.svg"
  1860. }
  1861. },
  1862. maw: {
  1863. height: math.unit(2.83, "feet"),
  1864. name: "Maw",
  1865. image: {
  1866. source: "./media/characters/fen/maw.svg"
  1867. }
  1868. },
  1869. back: {
  1870. height: math.unit(2.2428, "meter"),
  1871. weight: math.unit(124.738, "kg"),
  1872. name: "Back",
  1873. image: {
  1874. source: "./media/characters/fen/back.svg",
  1875. },
  1876. info: {
  1877. description: {
  1878. mode: "append",
  1879. text: "\n\nHe is not currently looking at you."
  1880. }
  1881. }
  1882. },
  1883. full: {
  1884. height: math.unit(0.91, "meter"),
  1885. weight: math.unit(225, "kg"),
  1886. name: "Full",
  1887. image: {
  1888. source: "./media/characters/fen/full.svg",
  1889. extra: 1133/859,
  1890. bottom: 145/1278
  1891. },
  1892. info: {
  1893. description: {
  1894. mode: "append",
  1895. text: "\n\nMunch."
  1896. }
  1897. }
  1898. },
  1899. kneeling: {
  1900. height: math.unit(5.4, "feet"),
  1901. weight: math.unit(124.738, "kg"),
  1902. name: "Kneeling",
  1903. image: {
  1904. source: "./media/characters/fen/kneeling.svg",
  1905. extra: 563 / 507
  1906. }
  1907. },
  1908. goo: {
  1909. height: math.unit(2.8, "feet"),
  1910. weight: math.unit(125, "kg"),
  1911. capacity: math.unit(1, "people"),
  1912. name: "Goo",
  1913. image: {
  1914. source: "./media/characters/fen/goo.svg",
  1915. bottom: 116 / 613
  1916. }
  1917. },
  1918. lounging: {
  1919. height: math.unit(6.5, "feet"),
  1920. weight: math.unit(125, "kg"),
  1921. name: "Lounging",
  1922. image: {
  1923. source: "./media/characters/fen/lounging.svg"
  1924. }
  1925. },
  1926. },
  1927. [
  1928. {
  1929. name: "Small",
  1930. height: math.unit(2.2428, "meter")
  1931. },
  1932. {
  1933. name: "Normal",
  1934. height: math.unit(12, "feet"),
  1935. default: true,
  1936. },
  1937. {
  1938. name: "Big",
  1939. height: math.unit(20, "feet")
  1940. },
  1941. {
  1942. name: "Minimacro",
  1943. height: math.unit(40, "feet"),
  1944. info: {
  1945. description: {
  1946. mode: "append",
  1947. text: "\n\nTOO DAMN BIG"
  1948. }
  1949. }
  1950. },
  1951. {
  1952. name: "Macro",
  1953. height: math.unit(100, "feet"),
  1954. info: {
  1955. description: {
  1956. mode: "append",
  1957. text: "\n\nTOO DAMN BIG"
  1958. }
  1959. }
  1960. },
  1961. {
  1962. name: "Megamacro",
  1963. height: math.unit(2, "miles")
  1964. },
  1965. {
  1966. name: "Gigamacro",
  1967. height: math.unit(10, "earths")
  1968. },
  1969. ]
  1970. ))
  1971. characterMakers.push(() => makeCharacter(
  1972. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1973. {
  1974. front: {
  1975. height: math.unit(183, "cm"),
  1976. weight: math.unit(80, "kg"),
  1977. name: "Front",
  1978. image: {
  1979. source: "./media/characters/sofia-fluttertail/front.svg",
  1980. bottom: 0.01,
  1981. extra: 2154 / 2081
  1982. }
  1983. },
  1984. frontAlt: {
  1985. height: math.unit(183, "cm"),
  1986. weight: math.unit(80, "kg"),
  1987. name: "Front (alt)",
  1988. image: {
  1989. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1990. }
  1991. },
  1992. back: {
  1993. height: math.unit(183, "cm"),
  1994. weight: math.unit(80, "kg"),
  1995. name: "Back",
  1996. image: {
  1997. source: "./media/characters/sofia-fluttertail/back.svg"
  1998. }
  1999. },
  2000. kneeling: {
  2001. height: math.unit(125, "cm"),
  2002. weight: math.unit(80, "kg"),
  2003. name: "Kneeling",
  2004. image: {
  2005. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2006. extra: 1033 / 977,
  2007. bottom: 23.7 / 1057
  2008. }
  2009. },
  2010. maw: {
  2011. height: math.unit(183 / 5, "cm"),
  2012. name: "Maw",
  2013. image: {
  2014. source: "./media/characters/sofia-fluttertail/maw.svg"
  2015. }
  2016. },
  2017. mawcloseup: {
  2018. height: math.unit(183 / 5 * 0.41, "cm"),
  2019. name: "Maw (Closeup)",
  2020. image: {
  2021. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2022. }
  2023. },
  2024. paws: {
  2025. height: math.unit(1.17, "feet"),
  2026. name: "Paws",
  2027. image: {
  2028. source: "./media/characters/sofia-fluttertail/paws.svg",
  2029. extra: 851 / 851,
  2030. bottom: 17 / 868
  2031. }
  2032. },
  2033. },
  2034. [
  2035. {
  2036. name: "Normal",
  2037. height: math.unit(1.83, "meter")
  2038. },
  2039. {
  2040. name: "Size Thief",
  2041. height: math.unit(18, "feet")
  2042. },
  2043. {
  2044. name: "50 Foot Collie",
  2045. height: math.unit(50, "feet")
  2046. },
  2047. {
  2048. name: "Macro",
  2049. height: math.unit(96, "feet"),
  2050. default: true
  2051. },
  2052. {
  2053. name: "Megamerger",
  2054. height: math.unit(650, "feet")
  2055. },
  2056. ]
  2057. ))
  2058. characterMakers.push(() => makeCharacter(
  2059. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2060. {
  2061. front: {
  2062. height: math.unit(7, "feet"),
  2063. weight: math.unit(100, "kg"),
  2064. name: "Front",
  2065. image: {
  2066. source: "./media/characters/march/front.svg",
  2067. extra: 1992/1851,
  2068. bottom: 39/2031
  2069. }
  2070. },
  2071. foot: {
  2072. height: math.unit(0.9, "feet"),
  2073. name: "Foot",
  2074. image: {
  2075. source: "./media/characters/march/foot.svg"
  2076. }
  2077. },
  2078. },
  2079. [
  2080. {
  2081. name: "Normal",
  2082. height: math.unit(7.9, "feet")
  2083. },
  2084. {
  2085. name: "Macro",
  2086. height: math.unit(220, "meters")
  2087. },
  2088. {
  2089. name: "Megamacro",
  2090. height: math.unit(2.98, "km"),
  2091. default: true
  2092. },
  2093. {
  2094. name: "Gigamacro",
  2095. height: math.unit(15963, "km")
  2096. },
  2097. {
  2098. name: "Teramacro",
  2099. height: math.unit(2980000000, "km")
  2100. },
  2101. {
  2102. name: "Examacro",
  2103. height: math.unit(250, "parsecs")
  2104. },
  2105. ]
  2106. ))
  2107. characterMakers.push(() => makeCharacter(
  2108. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2109. {
  2110. front: {
  2111. height: math.unit(6, "feet"),
  2112. weight: math.unit(60, "kg"),
  2113. name: "Front",
  2114. image: {
  2115. source: "./media/characters/noir/front.svg",
  2116. extra: 1,
  2117. bottom: 0.032
  2118. }
  2119. },
  2120. },
  2121. [
  2122. {
  2123. name: "Normal",
  2124. height: math.unit(6.6, "feet")
  2125. },
  2126. {
  2127. name: "Macro",
  2128. height: math.unit(500, "feet")
  2129. },
  2130. {
  2131. name: "Megamacro",
  2132. height: math.unit(2.5, "km"),
  2133. default: true
  2134. },
  2135. {
  2136. name: "Gigamacro",
  2137. height: math.unit(22500, "km")
  2138. },
  2139. {
  2140. name: "Teramacro",
  2141. height: math.unit(2500000000, "km")
  2142. },
  2143. {
  2144. name: "Examacro",
  2145. height: math.unit(200, "parsecs")
  2146. },
  2147. ]
  2148. ))
  2149. characterMakers.push(() => makeCharacter(
  2150. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2151. {
  2152. front: {
  2153. height: math.unit(7, "feet"),
  2154. weight: math.unit(100, "kg"),
  2155. name: "Front",
  2156. image: {
  2157. source: "./media/characters/okuri/front.svg",
  2158. extra: 1,
  2159. bottom: 0.037
  2160. }
  2161. },
  2162. back: {
  2163. height: math.unit(7, "feet"),
  2164. weight: math.unit(100, "kg"),
  2165. name: "Back",
  2166. image: {
  2167. source: "./media/characters/okuri/back.svg",
  2168. extra: 1,
  2169. bottom: 0.007
  2170. }
  2171. },
  2172. },
  2173. [
  2174. {
  2175. name: "Megamacro",
  2176. height: math.unit(100, "miles"),
  2177. default: true
  2178. },
  2179. ]
  2180. ))
  2181. characterMakers.push(() => makeCharacter(
  2182. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2183. {
  2184. front: {
  2185. height: math.unit(7, "feet"),
  2186. weight: math.unit(100, "kg"),
  2187. name: "Front",
  2188. image: {
  2189. source: "./media/characters/manny/front.svg",
  2190. extra: 1,
  2191. bottom: 0.06
  2192. }
  2193. },
  2194. back: {
  2195. height: math.unit(7, "feet"),
  2196. weight: math.unit(100, "kg"),
  2197. name: "Back",
  2198. image: {
  2199. source: "./media/characters/manny/back.svg",
  2200. extra: 1,
  2201. bottom: 0.014
  2202. }
  2203. },
  2204. },
  2205. [
  2206. {
  2207. name: "Normal",
  2208. height: math.unit(7, "feet"),
  2209. },
  2210. {
  2211. name: "Macro",
  2212. height: math.unit(78, "feet"),
  2213. default: true
  2214. },
  2215. {
  2216. name: "Macro+",
  2217. height: math.unit(300, "meters")
  2218. },
  2219. {
  2220. name: "Macro++",
  2221. height: math.unit(2400, "meters")
  2222. },
  2223. {
  2224. name: "Megamacro",
  2225. height: math.unit(5167, "meters")
  2226. },
  2227. {
  2228. name: "Gigamacro",
  2229. height: math.unit(41769, "miles")
  2230. },
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2235. {
  2236. front: {
  2237. height: math.unit(7, "feet"),
  2238. weight: math.unit(100, "kg"),
  2239. name: "Front",
  2240. image: {
  2241. source: "./media/characters/adake/front-1.svg"
  2242. }
  2243. },
  2244. frontAlt: {
  2245. height: math.unit(7, "feet"),
  2246. weight: math.unit(100, "kg"),
  2247. name: "Front (Alt)",
  2248. image: {
  2249. source: "./media/characters/adake/front-2.svg",
  2250. extra: 1,
  2251. bottom: 0.01
  2252. }
  2253. },
  2254. back: {
  2255. height: math.unit(7, "feet"),
  2256. weight: math.unit(100, "kg"),
  2257. name: "Back",
  2258. image: {
  2259. source: "./media/characters/adake/back.svg",
  2260. }
  2261. },
  2262. kneel: {
  2263. height: math.unit(5.385, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Kneeling",
  2266. image: {
  2267. source: "./media/characters/adake/kneel.svg",
  2268. bottom: 0.052
  2269. }
  2270. },
  2271. },
  2272. [
  2273. {
  2274. name: "Normal",
  2275. height: math.unit(7, "feet"),
  2276. },
  2277. {
  2278. name: "Macro",
  2279. height: math.unit(78, "feet"),
  2280. default: true
  2281. },
  2282. {
  2283. name: "Macro+",
  2284. height: math.unit(300, "meters")
  2285. },
  2286. {
  2287. name: "Macro++",
  2288. height: math.unit(2400, "meters")
  2289. },
  2290. {
  2291. name: "Megamacro",
  2292. height: math.unit(5167, "meters")
  2293. },
  2294. {
  2295. name: "Gigamacro",
  2296. height: math.unit(41769, "miles")
  2297. },
  2298. ]
  2299. ))
  2300. characterMakers.push(() => makeCharacter(
  2301. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2302. {
  2303. front: {
  2304. height: math.unit(1.65, "meters"),
  2305. weight: math.unit(50, "kg"),
  2306. name: "Front",
  2307. image: {
  2308. source: "./media/characters/elijah/front.svg",
  2309. extra: 858 / 830,
  2310. bottom: 95.5 / 953.8559
  2311. }
  2312. },
  2313. back: {
  2314. height: math.unit(1.65, "meters"),
  2315. weight: math.unit(50, "kg"),
  2316. name: "Back",
  2317. image: {
  2318. source: "./media/characters/elijah/back.svg",
  2319. extra: 895 / 850,
  2320. bottom: 5.3 / 897.956
  2321. }
  2322. },
  2323. frontNsfw: {
  2324. height: math.unit(1.65, "meters"),
  2325. weight: math.unit(50, "kg"),
  2326. name: "Front (NSFW)",
  2327. image: {
  2328. source: "./media/characters/elijah/front-nsfw.svg",
  2329. extra: 858 / 830,
  2330. bottom: 95.5 / 953.8559
  2331. }
  2332. },
  2333. backNsfw: {
  2334. height: math.unit(1.65, "meters"),
  2335. weight: math.unit(50, "kg"),
  2336. name: "Back (NSFW)",
  2337. image: {
  2338. source: "./media/characters/elijah/back-nsfw.svg",
  2339. extra: 895 / 850,
  2340. bottom: 5.3 / 897.956
  2341. }
  2342. },
  2343. dick: {
  2344. height: math.unit(1, "feet"),
  2345. name: "Dick",
  2346. image: {
  2347. source: "./media/characters/elijah/dick.svg"
  2348. }
  2349. },
  2350. beakOpen: {
  2351. height: math.unit(1.25, "feet"),
  2352. name: "Beak (Open)",
  2353. image: {
  2354. source: "./media/characters/elijah/beak-open.svg"
  2355. }
  2356. },
  2357. beakShut: {
  2358. height: math.unit(1.25, "feet"),
  2359. name: "Beak (Shut)",
  2360. image: {
  2361. source: "./media/characters/elijah/beak-shut.svg"
  2362. }
  2363. },
  2364. footFlexing: {
  2365. height: math.unit(1.61, "feet"),
  2366. name: "Foot (Flexing)",
  2367. image: {
  2368. source: "./media/characters/elijah/foot-flexing.svg"
  2369. }
  2370. },
  2371. footStepping: {
  2372. height: math.unit(1.44, "feet"),
  2373. name: "Foot (Stepping)",
  2374. image: {
  2375. source: "./media/characters/elijah/foot-stepping.svg"
  2376. }
  2377. },
  2378. plantigradeLeg: {
  2379. height: math.unit(2.34, "feet"),
  2380. name: "Plantigrade Leg",
  2381. image: {
  2382. source: "./media/characters/elijah/plantigrade-leg.svg"
  2383. }
  2384. },
  2385. plantigradeFootLeft: {
  2386. height: math.unit(0.9, "feet"),
  2387. name: "Plantigrade Foot (Left)",
  2388. image: {
  2389. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2390. }
  2391. },
  2392. plantigradeFootRight: {
  2393. height: math.unit(0.9, "feet"),
  2394. name: "Plantigrade Foot (Right)",
  2395. image: {
  2396. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2397. }
  2398. },
  2399. },
  2400. [
  2401. {
  2402. name: "Normal",
  2403. height: math.unit(1.65, "meters")
  2404. },
  2405. {
  2406. name: "Macro",
  2407. height: math.unit(55, "meters"),
  2408. default: true
  2409. },
  2410. {
  2411. name: "Macro+",
  2412. height: math.unit(105, "meters")
  2413. },
  2414. ]
  2415. ))
  2416. characterMakers.push(() => makeCharacter(
  2417. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2418. {
  2419. front: {
  2420. height: math.unit(7 + 2/12, "feet"),
  2421. weight: math.unit(320, "kg"),
  2422. name: "Front",
  2423. image: {
  2424. source: "./media/characters/rai/front.svg",
  2425. extra: 1802/1696,
  2426. bottom: 68/1870
  2427. }
  2428. },
  2429. frontDressed: {
  2430. height: math.unit(7 + 2/12, "feet"),
  2431. weight: math.unit(320, "kg"),
  2432. name: "Front (Dressed)",
  2433. image: {
  2434. source: "./media/characters/rai/front-dressed.svg",
  2435. extra: 1802/1696,
  2436. bottom: 68/1870
  2437. }
  2438. },
  2439. side: {
  2440. height: math.unit(7 + 2/12, "feet"),
  2441. weight: math.unit(320, "kg"),
  2442. name: "Side",
  2443. image: {
  2444. source: "./media/characters/rai/side.svg",
  2445. extra: 1789/1710,
  2446. bottom: 115/1904
  2447. }
  2448. },
  2449. back: {
  2450. height: math.unit(7 + 2/12, "feet"),
  2451. weight: math.unit(320, "kg"),
  2452. name: "Back",
  2453. image: {
  2454. source: "./media/characters/rai/back.svg",
  2455. extra: 1770/1707,
  2456. bottom: 28/1798
  2457. }
  2458. },
  2459. feral: {
  2460. height: math.unit(9.5, "feet"),
  2461. weight: math.unit(640, "kg"),
  2462. name: "Feral",
  2463. image: {
  2464. source: "./media/characters/rai/feral.svg",
  2465. extra: 945/553,
  2466. bottom: 176/1121
  2467. }
  2468. },
  2469. dragon: {
  2470. height: math.unit(23, "feet"),
  2471. weight: math.unit(50000, "lb"),
  2472. name: "Dragon",
  2473. image: {
  2474. source: "./media/characters/rai/dragon.svg",
  2475. extra: 2498 / 2030,
  2476. bottom: 85.2 / 2584
  2477. }
  2478. },
  2479. maw: {
  2480. height: math.unit(1.69, "feet"),
  2481. name: "Maw",
  2482. image: {
  2483. source: "./media/characters/rai/maw.svg"
  2484. }
  2485. },
  2486. },
  2487. [
  2488. {
  2489. name: "Normal",
  2490. height: math.unit(7 + 2/12, "feet")
  2491. },
  2492. {
  2493. name: "Big",
  2494. height: math.unit(11, "feet")
  2495. },
  2496. {
  2497. name: "Macro",
  2498. height: math.unit(302, "feet"),
  2499. default: true
  2500. },
  2501. ]
  2502. ))
  2503. characterMakers.push(() => makeCharacter(
  2504. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2505. {
  2506. frontDressed: {
  2507. height: math.unit(216, "feet"),
  2508. weight: math.unit(7000000, "lb"),
  2509. name: "Front (Dressed)",
  2510. image: {
  2511. source: "./media/characters/jazzy/front-dressed.svg",
  2512. extra: 2738 / 2651,
  2513. bottom: 41.8 / 2786
  2514. }
  2515. },
  2516. backDressed: {
  2517. height: math.unit(216, "feet"),
  2518. weight: math.unit(7000000, "lb"),
  2519. name: "Back (Dressed)",
  2520. image: {
  2521. source: "./media/characters/jazzy/back-dressed.svg",
  2522. extra: 2775 / 2673,
  2523. bottom: 36.8 / 2817
  2524. }
  2525. },
  2526. front: {
  2527. height: math.unit(216, "feet"),
  2528. weight: math.unit(7000000, "lb"),
  2529. name: "Front",
  2530. image: {
  2531. source: "./media/characters/jazzy/front.svg",
  2532. extra: 2738 / 2651,
  2533. bottom: 41.8 / 2786
  2534. }
  2535. },
  2536. back: {
  2537. height: math.unit(216, "feet"),
  2538. weight: math.unit(7000000, "lb"),
  2539. name: "Back",
  2540. image: {
  2541. source: "./media/characters/jazzy/back.svg",
  2542. extra: 2775 / 2673,
  2543. bottom: 36.8 / 2817
  2544. }
  2545. },
  2546. maw: {
  2547. height: math.unit(20, "feet"),
  2548. name: "Maw",
  2549. image: {
  2550. source: "./media/characters/jazzy/maw.svg"
  2551. }
  2552. },
  2553. paws: {
  2554. height: math.unit(27.5, "feet"),
  2555. name: "Paws",
  2556. image: {
  2557. source: "./media/characters/jazzy/paws.svg"
  2558. }
  2559. },
  2560. eye: {
  2561. height: math.unit(4.4, "feet"),
  2562. name: "Eye",
  2563. image: {
  2564. source: "./media/characters/jazzy/eye.svg"
  2565. }
  2566. },
  2567. droneOffense: {
  2568. height: math.unit(9.5, "inches"),
  2569. name: "Drone (Offense)",
  2570. image: {
  2571. source: "./media/characters/jazzy/drone-offense.svg"
  2572. }
  2573. },
  2574. droneRecon: {
  2575. height: math.unit(9.5, "inches"),
  2576. name: "Drone (Recon)",
  2577. image: {
  2578. source: "./media/characters/jazzy/drone-recon.svg"
  2579. }
  2580. },
  2581. droneDefense: {
  2582. height: math.unit(9.5, "inches"),
  2583. name: "Drone (Defense)",
  2584. image: {
  2585. source: "./media/characters/jazzy/drone-defense.svg"
  2586. }
  2587. },
  2588. },
  2589. [
  2590. {
  2591. name: "Macro",
  2592. height: math.unit(216, "feet"),
  2593. default: true
  2594. },
  2595. ]
  2596. ))
  2597. characterMakers.push(() => makeCharacter(
  2598. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2599. {
  2600. front: {
  2601. height: math.unit(9 + 6/12, "feet"),
  2602. weight: math.unit(700, "lb"),
  2603. name: "Front",
  2604. image: {
  2605. source: "./media/characters/flamm/front.svg",
  2606. extra: 1751/1632,
  2607. bottom: 46/1797
  2608. }
  2609. },
  2610. buff: {
  2611. height: math.unit(9 + 6/12, "feet"),
  2612. weight: math.unit(950, "lb"),
  2613. name: "Buff",
  2614. image: {
  2615. source: "./media/characters/flamm/buff.svg",
  2616. extra: 3018/2874,
  2617. bottom: 221/3239
  2618. }
  2619. },
  2620. },
  2621. [
  2622. {
  2623. name: "Normal",
  2624. height: math.unit(9.5, "feet")
  2625. },
  2626. {
  2627. name: "Macro",
  2628. height: math.unit(200, "feet"),
  2629. default: true
  2630. },
  2631. ]
  2632. ))
  2633. characterMakers.push(() => makeCharacter(
  2634. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2635. {
  2636. front: {
  2637. height: math.unit(5 + 3/12, "feet"),
  2638. weight: math.unit(60, "kg"),
  2639. name: "Front",
  2640. image: {
  2641. source: "./media/characters/zephiro/front.svg",
  2642. extra: 2309 / 2162,
  2643. bottom: 0.069
  2644. }
  2645. },
  2646. side: {
  2647. height: math.unit(5 + 3/12, "feet"),
  2648. weight: math.unit(60, "kg"),
  2649. name: "Side",
  2650. image: {
  2651. source: "./media/characters/zephiro/side.svg",
  2652. extra: 2403 / 2279,
  2653. bottom: 0.015
  2654. }
  2655. },
  2656. back: {
  2657. height: math.unit(5 + 3/12, "feet"),
  2658. weight: math.unit(60, "kg"),
  2659. name: "Back",
  2660. image: {
  2661. source: "./media/characters/zephiro/back.svg",
  2662. extra: 2373 / 2244,
  2663. bottom: 0.013
  2664. }
  2665. },
  2666. hand: {
  2667. height: math.unit(0.68, "feet"),
  2668. name: "Hand",
  2669. image: {
  2670. source: "./media/characters/zephiro/hand.svg"
  2671. }
  2672. },
  2673. paw: {
  2674. height: math.unit(1, "feet"),
  2675. name: "Paw",
  2676. image: {
  2677. source: "./media/characters/zephiro/paw.svg"
  2678. }
  2679. },
  2680. beans: {
  2681. height: math.unit(0.93, "feet"),
  2682. name: "Beans",
  2683. image: {
  2684. source: "./media/characters/zephiro/beans.svg"
  2685. }
  2686. },
  2687. },
  2688. [
  2689. {
  2690. name: "Micro",
  2691. height: math.unit(3, "inches")
  2692. },
  2693. {
  2694. name: "Normal",
  2695. height: math.unit(5 + 3 / 12, "feet"),
  2696. default: true
  2697. },
  2698. {
  2699. name: "Macro",
  2700. height: math.unit(118, "feet")
  2701. },
  2702. ]
  2703. ))
  2704. characterMakers.push(() => makeCharacter(
  2705. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2706. {
  2707. front: {
  2708. height: math.unit(5, "feet"),
  2709. weight: math.unit(90, "kg"),
  2710. name: "Front",
  2711. image: {
  2712. source: "./media/characters/fory/front.svg",
  2713. extra: 2862 / 2674,
  2714. bottom: 180 / 3043.8
  2715. }
  2716. },
  2717. back: {
  2718. height: math.unit(5, "feet"),
  2719. weight: math.unit(90, "kg"),
  2720. name: "Back",
  2721. image: {
  2722. source: "./media/characters/fory/back.svg",
  2723. extra: 2962 / 2791,
  2724. bottom: 106 / 3071.8
  2725. }
  2726. },
  2727. foot: {
  2728. height: math.unit(2.14, "feet"),
  2729. name: "Foot",
  2730. image: {
  2731. source: "./media/characters/fory/foot.svg"
  2732. }
  2733. },
  2734. },
  2735. [
  2736. {
  2737. name: "Normal",
  2738. height: math.unit(5, "feet")
  2739. },
  2740. {
  2741. name: "Macro",
  2742. height: math.unit(50, "feet"),
  2743. default: true
  2744. },
  2745. {
  2746. name: "Megamacro",
  2747. height: math.unit(10, "miles")
  2748. },
  2749. {
  2750. name: "Gigamacro",
  2751. height: math.unit(5, "earths")
  2752. },
  2753. ]
  2754. ))
  2755. characterMakers.push(() => makeCharacter(
  2756. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2757. {
  2758. front: {
  2759. height: math.unit(7, "feet"),
  2760. weight: math.unit(90, "kg"),
  2761. name: "Front",
  2762. image: {
  2763. source: "./media/characters/kurrikage/front.svg",
  2764. extra: 1845/1733,
  2765. bottom: 119/1964
  2766. }
  2767. },
  2768. back: {
  2769. height: math.unit(7, "feet"),
  2770. weight: math.unit(90, "kg"),
  2771. name: "Back",
  2772. image: {
  2773. source: "./media/characters/kurrikage/back.svg",
  2774. extra: 1790/1677,
  2775. bottom: 61/1851
  2776. }
  2777. },
  2778. dressed: {
  2779. height: math.unit(7, "feet"),
  2780. weight: math.unit(90, "kg"),
  2781. name: "Dressed",
  2782. image: {
  2783. source: "./media/characters/kurrikage/dressed.svg",
  2784. extra: 1845/1733,
  2785. bottom: 119/1964
  2786. }
  2787. },
  2788. foot: {
  2789. height: math.unit(1.5, "feet"),
  2790. name: "Foot",
  2791. image: {
  2792. source: "./media/characters/kurrikage/foot.svg"
  2793. }
  2794. },
  2795. staff: {
  2796. height: math.unit(6.7, "feet"),
  2797. name: "Staff",
  2798. image: {
  2799. source: "./media/characters/kurrikage/staff.svg"
  2800. }
  2801. },
  2802. peek: {
  2803. height: math.unit(1.05, "feet"),
  2804. name: "Peeking",
  2805. image: {
  2806. source: "./media/characters/kurrikage/peek.svg",
  2807. bottom: 0.08
  2808. }
  2809. },
  2810. },
  2811. [
  2812. {
  2813. name: "Normal",
  2814. height: math.unit(12, "feet"),
  2815. default: true
  2816. },
  2817. {
  2818. name: "Big",
  2819. height: math.unit(20, "feet")
  2820. },
  2821. {
  2822. name: "Macro",
  2823. height: math.unit(500, "feet")
  2824. },
  2825. {
  2826. name: "Megamacro",
  2827. height: math.unit(20, "miles")
  2828. },
  2829. ]
  2830. ))
  2831. characterMakers.push(() => makeCharacter(
  2832. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2833. {
  2834. front: {
  2835. height: math.unit(6, "feet"),
  2836. weight: math.unit(75, "kg"),
  2837. name: "Front",
  2838. image: {
  2839. source: "./media/characters/shingo/front.svg",
  2840. extra: 1900/1825,
  2841. bottom: 82/1982
  2842. }
  2843. },
  2844. side: {
  2845. height: math.unit(6, "feet"),
  2846. weight: math.unit(75, "kg"),
  2847. name: "Side",
  2848. image: {
  2849. source: "./media/characters/shingo/side.svg",
  2850. extra: 1930/1865,
  2851. bottom: 16/1946
  2852. }
  2853. },
  2854. back: {
  2855. height: math.unit(6, "feet"),
  2856. weight: math.unit(75, "kg"),
  2857. name: "Back",
  2858. image: {
  2859. source: "./media/characters/shingo/back.svg",
  2860. extra: 1922/1852,
  2861. bottom: 16/1938
  2862. }
  2863. },
  2864. frontDressed: {
  2865. height: math.unit(6, "feet"),
  2866. weight: math.unit(150, "lb"),
  2867. name: "Front-dressed",
  2868. image: {
  2869. source: "./media/characters/shingo/front-dressed.svg",
  2870. extra: 1900/1825,
  2871. bottom: 82/1982
  2872. }
  2873. },
  2874. paw: {
  2875. height: math.unit(1.29, "feet"),
  2876. name: "Paw",
  2877. image: {
  2878. source: "./media/characters/shingo/paw.svg"
  2879. }
  2880. },
  2881. hand: {
  2882. height: math.unit(1.07, "feet"),
  2883. name: "Hand",
  2884. image: {
  2885. source: "./media/characters/shingo/hand.svg"
  2886. }
  2887. },
  2888. frontAlt: {
  2889. height: math.unit(6, "feet"),
  2890. weight: math.unit(75, "kg"),
  2891. name: "Front (Alt)",
  2892. image: {
  2893. source: "./media/characters/shingo/front-alt.svg",
  2894. extra: 3511 / 3338,
  2895. bottom: 0.005
  2896. }
  2897. },
  2898. frontAlt2: {
  2899. height: math.unit(6, "feet"),
  2900. weight: math.unit(75, "kg"),
  2901. name: "Front (Alt 2)",
  2902. image: {
  2903. source: "./media/characters/shingo/front-alt-2.svg",
  2904. extra: 706/681,
  2905. bottom: 11/717
  2906. }
  2907. },
  2908. pawAlt: {
  2909. height: math.unit(1, "feet"),
  2910. name: "Paw (Alt)",
  2911. image: {
  2912. source: "./media/characters/shingo/paw-alt.svg"
  2913. }
  2914. },
  2915. },
  2916. [
  2917. {
  2918. name: "Micro",
  2919. height: math.unit(4, "inches")
  2920. },
  2921. {
  2922. name: "Normal",
  2923. height: math.unit(6, "feet"),
  2924. default: true
  2925. },
  2926. {
  2927. name: "Macro",
  2928. height: math.unit(108, "feet")
  2929. },
  2930. {
  2931. name: "Macro+",
  2932. height: math.unit(1500, "feet")
  2933. },
  2934. ]
  2935. ))
  2936. characterMakers.push(() => makeCharacter(
  2937. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2938. {
  2939. side: {
  2940. height: math.unit(6, "feet"),
  2941. weight: math.unit(75, "kg"),
  2942. name: "Side",
  2943. image: {
  2944. source: "./media/characters/aigey/side.svg"
  2945. }
  2946. },
  2947. },
  2948. [
  2949. {
  2950. name: "Macro",
  2951. height: math.unit(200, "feet"),
  2952. default: true
  2953. },
  2954. {
  2955. name: "Megamacro",
  2956. height: math.unit(100, "miles")
  2957. },
  2958. ]
  2959. )
  2960. )
  2961. characterMakers.push(() => makeCharacter(
  2962. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2963. {
  2964. front: {
  2965. height: math.unit(5 + 5 / 12, "feet"),
  2966. weight: math.unit(75, "kg"),
  2967. name: "Front",
  2968. image: {
  2969. source: "./media/characters/natasha/front.svg",
  2970. extra: 859 / 824,
  2971. bottom: 23 / 879.6
  2972. }
  2973. },
  2974. frontNsfw: {
  2975. height: math.unit(5 + 5 / 12, "feet"),
  2976. weight: math.unit(75, "kg"),
  2977. name: "Front (NSFW)",
  2978. image: {
  2979. source: "./media/characters/natasha/front-nsfw.svg",
  2980. extra: 859 / 824,
  2981. bottom: 23 / 879.6
  2982. }
  2983. },
  2984. frontErect: {
  2985. height: math.unit(5 + 5 / 12, "feet"),
  2986. weight: math.unit(75, "kg"),
  2987. name: "Front (Erect)",
  2988. image: {
  2989. source: "./media/characters/natasha/front-erect.svg",
  2990. extra: 859 / 824,
  2991. bottom: 23 / 879.6
  2992. }
  2993. },
  2994. back: {
  2995. height: math.unit(5 + 5 / 12, "feet"),
  2996. weight: math.unit(75, "kg"),
  2997. name: "Back",
  2998. image: {
  2999. source: "./media/characters/natasha/back.svg",
  3000. extra: 887.9 / 852.6,
  3001. bottom: 9.7 / 896.4
  3002. }
  3003. },
  3004. backAlt: {
  3005. height: math.unit(5 + 5 / 12, "feet"),
  3006. weight: math.unit(75, "kg"),
  3007. name: "Back (Alt)",
  3008. image: {
  3009. source: "./media/characters/natasha/back-alt.svg",
  3010. extra: 1236.7 / 1192,
  3011. bottom: 22.3 / 1258.2
  3012. }
  3013. },
  3014. dick: {
  3015. height: math.unit(1.772, "feet"),
  3016. name: "Dick",
  3017. image: {
  3018. source: "./media/characters/natasha/dick.svg"
  3019. }
  3020. },
  3021. paw: {
  3022. height: math.unit(0.250, "meters"),
  3023. name: "Paw",
  3024. image: {
  3025. source: "./media/characters/natasha/paw.svg"
  3026. }
  3027. },
  3028. },
  3029. [
  3030. {
  3031. name: "Normal",
  3032. height: math.unit(5 + 5 / 12, "feet")
  3033. },
  3034. {
  3035. name: "Large",
  3036. height: math.unit(12, "feet")
  3037. },
  3038. {
  3039. name: "Macro",
  3040. height: math.unit(100, "feet"),
  3041. default: true
  3042. },
  3043. {
  3044. name: "Macro+",
  3045. height: math.unit(260, "feet")
  3046. },
  3047. {
  3048. name: "Macro++",
  3049. height: math.unit(1, "mile")
  3050. },
  3051. ]
  3052. ))
  3053. characterMakers.push(() => makeCharacter(
  3054. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3055. {
  3056. front: {
  3057. height: math.unit(6, "feet"),
  3058. weight: math.unit(75, "kg"),
  3059. name: "Front",
  3060. image: {
  3061. source: "./media/characters/malik/front.svg"
  3062. }
  3063. },
  3064. side: {
  3065. height: math.unit(6, "feet"),
  3066. weight: math.unit(75, "kg"),
  3067. name: "Side",
  3068. image: {
  3069. source: "./media/characters/malik/side.svg",
  3070. extra: 1.1539
  3071. }
  3072. },
  3073. back: {
  3074. height: math.unit(6, "feet"),
  3075. weight: math.unit(75, "kg"),
  3076. name: "Back",
  3077. image: {
  3078. source: "./media/characters/malik/back.svg"
  3079. }
  3080. },
  3081. },
  3082. [
  3083. {
  3084. name: "Macro",
  3085. height: math.unit(156, "feet"),
  3086. default: true
  3087. },
  3088. {
  3089. name: "Macro+",
  3090. height: math.unit(1188, "feet")
  3091. },
  3092. ]
  3093. ))
  3094. characterMakers.push(() => makeCharacter(
  3095. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3096. {
  3097. front: {
  3098. height: math.unit(6, "feet"),
  3099. weight: math.unit(75, "kg"),
  3100. name: "Front",
  3101. image: {
  3102. source: "./media/characters/sefer/front.svg",
  3103. extra: 848 / 659,
  3104. bottom: 28.3 / 876.442
  3105. }
  3106. },
  3107. back: {
  3108. height: math.unit(6, "feet"),
  3109. weight: math.unit(75, "kg"),
  3110. name: "Back",
  3111. image: {
  3112. source: "./media/characters/sefer/back.svg",
  3113. extra: 864 / 695,
  3114. bottom: 10 / 871
  3115. }
  3116. },
  3117. frontDressed: {
  3118. height: math.unit(6, "feet"),
  3119. weight: math.unit(75, "kg"),
  3120. name: "Front (Dressed)",
  3121. image: {
  3122. source: "./media/characters/sefer/front-dressed.svg",
  3123. extra: 839 / 653,
  3124. bottom: 37.6 / 878
  3125. }
  3126. },
  3127. },
  3128. [
  3129. {
  3130. name: "Normal",
  3131. height: math.unit(6, "feet"),
  3132. default: true
  3133. },
  3134. ]
  3135. ))
  3136. characterMakers.push(() => makeCharacter(
  3137. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3138. {
  3139. body: {
  3140. height: math.unit(2.2428, "meter"),
  3141. weight: math.unit(124.738, "kg"),
  3142. name: "Body",
  3143. image: {
  3144. extra: 1225 / 1050,
  3145. source: "./media/characters/north/front.svg"
  3146. }
  3147. }
  3148. },
  3149. [
  3150. {
  3151. name: "Micro",
  3152. height: math.unit(4, "inches")
  3153. },
  3154. {
  3155. name: "Macro",
  3156. height: math.unit(63, "meters")
  3157. },
  3158. {
  3159. name: "Megamacro",
  3160. height: math.unit(101, "miles"),
  3161. default: true
  3162. }
  3163. ]
  3164. ))
  3165. characterMakers.push(() => makeCharacter(
  3166. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3167. {
  3168. angled: {
  3169. height: math.unit(4, "meter"),
  3170. weight: math.unit(150, "kg"),
  3171. name: "Angled",
  3172. image: {
  3173. source: "./media/characters/talan/angled-sfw.svg",
  3174. bottom: 29 / 3734
  3175. }
  3176. },
  3177. angledNsfw: {
  3178. height: math.unit(4, "meter"),
  3179. weight: math.unit(150, "kg"),
  3180. name: "Angled (NSFW)",
  3181. image: {
  3182. source: "./media/characters/talan/angled-nsfw.svg",
  3183. bottom: 29 / 3734
  3184. }
  3185. },
  3186. frontNsfw: {
  3187. height: math.unit(4, "meter"),
  3188. weight: math.unit(150, "kg"),
  3189. name: "Front (NSFW)",
  3190. image: {
  3191. source: "./media/characters/talan/front-nsfw.svg",
  3192. bottom: 29 / 3734
  3193. }
  3194. },
  3195. sideNsfw: {
  3196. height: math.unit(4, "meter"),
  3197. weight: math.unit(150, "kg"),
  3198. name: "Side (NSFW)",
  3199. image: {
  3200. source: "./media/characters/talan/side-nsfw.svg",
  3201. bottom: 29 / 3734
  3202. }
  3203. },
  3204. back: {
  3205. height: math.unit(4, "meter"),
  3206. weight: math.unit(150, "kg"),
  3207. name: "Back",
  3208. image: {
  3209. source: "./media/characters/talan/back.svg"
  3210. }
  3211. },
  3212. dickBottom: {
  3213. height: math.unit(0.621, "meter"),
  3214. name: "Dick (Bottom)",
  3215. image: {
  3216. source: "./media/characters/talan/dick-bottom.svg"
  3217. }
  3218. },
  3219. dickTop: {
  3220. height: math.unit(0.621, "meter"),
  3221. name: "Dick (Top)",
  3222. image: {
  3223. source: "./media/characters/talan/dick-top.svg"
  3224. }
  3225. },
  3226. dickSide: {
  3227. height: math.unit(0.305, "meter"),
  3228. name: "Dick (Side)",
  3229. image: {
  3230. source: "./media/characters/talan/dick-side.svg"
  3231. }
  3232. },
  3233. dickFront: {
  3234. height: math.unit(0.305, "meter"),
  3235. name: "Dick (Front)",
  3236. image: {
  3237. source: "./media/characters/talan/dick-front.svg"
  3238. }
  3239. },
  3240. },
  3241. [
  3242. {
  3243. name: "Normal",
  3244. height: math.unit(4, "meters")
  3245. },
  3246. {
  3247. name: "Macro",
  3248. height: math.unit(100, "meters")
  3249. },
  3250. {
  3251. name: "Megamacro",
  3252. height: math.unit(2, "miles"),
  3253. default: true
  3254. },
  3255. {
  3256. name: "Gigamacro",
  3257. height: math.unit(5000, "miles")
  3258. },
  3259. {
  3260. name: "Teramacro",
  3261. height: math.unit(100, "parsecs")
  3262. }
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3267. {
  3268. front: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(90, "kg"),
  3271. name: "Front",
  3272. image: {
  3273. source: "./media/characters/gael'rathus/front.svg"
  3274. }
  3275. },
  3276. frontAlt: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(90, "kg"),
  3279. name: "Front (alt)",
  3280. image: {
  3281. source: "./media/characters/gael'rathus/front-alt.svg"
  3282. }
  3283. },
  3284. frontAlt2: {
  3285. height: math.unit(2, "meter"),
  3286. weight: math.unit(90, "kg"),
  3287. name: "Front (alt 2)",
  3288. image: {
  3289. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3290. }
  3291. }
  3292. },
  3293. [
  3294. {
  3295. name: "Normal",
  3296. height: math.unit(9, "feet"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Large",
  3301. height: math.unit(25, "feet")
  3302. },
  3303. {
  3304. name: "Macro",
  3305. height: math.unit(0.25, "miles")
  3306. },
  3307. {
  3308. name: "Megamacro",
  3309. height: math.unit(10, "miles")
  3310. }
  3311. ]
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3315. {
  3316. side: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(140, "kg"),
  3319. name: "Side",
  3320. image: {
  3321. source: "./media/characters/sosha/side.svg",
  3322. bottom: 0.042
  3323. }
  3324. },
  3325. },
  3326. [
  3327. {
  3328. name: "Normal",
  3329. height: math.unit(12, "feet"),
  3330. default: true
  3331. }
  3332. ]
  3333. ))
  3334. characterMakers.push(() => makeCharacter(
  3335. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3336. {
  3337. side: {
  3338. height: math.unit(5 + 5 / 12, "feet"),
  3339. weight: math.unit(170, "kg"),
  3340. name: "Side",
  3341. image: {
  3342. source: "./media/characters/runnola/side.svg",
  3343. extra: 741 / 448,
  3344. bottom: 0.05
  3345. }
  3346. },
  3347. },
  3348. [
  3349. {
  3350. name: "Small",
  3351. height: math.unit(3, "feet")
  3352. },
  3353. {
  3354. name: "Normal",
  3355. height: math.unit(5 + 5 / 12, "feet"),
  3356. default: true
  3357. },
  3358. {
  3359. name: "Big",
  3360. height: math.unit(10, "feet")
  3361. },
  3362. ]
  3363. ))
  3364. characterMakers.push(() => makeCharacter(
  3365. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3366. {
  3367. front: {
  3368. height: math.unit(2, "meter"),
  3369. weight: math.unit(50, "kg"),
  3370. name: "Front",
  3371. image: {
  3372. source: "./media/characters/kurribird/front.svg",
  3373. bottom: 0.015
  3374. }
  3375. },
  3376. frontAlt: {
  3377. height: math.unit(1.5, "meter"),
  3378. weight: math.unit(50, "kg"),
  3379. name: "Front (Alt)",
  3380. image: {
  3381. source: "./media/characters/kurribird/front-alt.svg",
  3382. extra: 1.45
  3383. }
  3384. },
  3385. },
  3386. [
  3387. {
  3388. name: "Normal",
  3389. height: math.unit(7, "feet")
  3390. },
  3391. {
  3392. name: "Big",
  3393. height: math.unit(12, "feet"),
  3394. default: true
  3395. },
  3396. {
  3397. name: "Macro",
  3398. height: math.unit(1500, "feet")
  3399. },
  3400. {
  3401. name: "Megamacro",
  3402. height: math.unit(2, "miles")
  3403. }
  3404. ]
  3405. ))
  3406. characterMakers.push(() => makeCharacter(
  3407. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3408. {
  3409. front: {
  3410. height: math.unit(2, "meter"),
  3411. weight: math.unit(80, "kg"),
  3412. name: "Front",
  3413. image: {
  3414. source: "./media/characters/elbial/front.svg",
  3415. extra: 1643 / 1556,
  3416. bottom: 60.2 / 1696
  3417. }
  3418. },
  3419. side: {
  3420. height: math.unit(2, "meter"),
  3421. weight: math.unit(80, "kg"),
  3422. name: "Side",
  3423. image: {
  3424. source: "./media/characters/elbial/side.svg",
  3425. extra: 1630 / 1565,
  3426. bottom: 71.5 / 1697
  3427. }
  3428. },
  3429. back: {
  3430. height: math.unit(2, "meter"),
  3431. weight: math.unit(80, "kg"),
  3432. name: "Back",
  3433. image: {
  3434. source: "./media/characters/elbial/back.svg",
  3435. extra: 1668 / 1595,
  3436. bottom: 5.6 / 1672
  3437. }
  3438. },
  3439. frontDressed: {
  3440. height: math.unit(2, "meter"),
  3441. weight: math.unit(80, "kg"),
  3442. name: "Front (Dressed)",
  3443. image: {
  3444. source: "./media/characters/elbial/front-dressed.svg",
  3445. extra: 1653 / 1584,
  3446. bottom: 57 / 1708
  3447. }
  3448. },
  3449. genitals: {
  3450. height: math.unit(2 / 3.367, "meter"),
  3451. name: "Genitals",
  3452. image: {
  3453. source: "./media/characters/elbial/genitals.svg"
  3454. }
  3455. },
  3456. },
  3457. [
  3458. {
  3459. name: "Large",
  3460. height: math.unit(100, "feet")
  3461. },
  3462. {
  3463. name: "Macro",
  3464. height: math.unit(500, "feet"),
  3465. default: true
  3466. },
  3467. {
  3468. name: "Megamacro",
  3469. height: math.unit(10, "miles")
  3470. },
  3471. {
  3472. name: "Gigamacro",
  3473. height: math.unit(25000, "miles")
  3474. },
  3475. {
  3476. name: "Full-Size",
  3477. height: math.unit(8000000, "gigaparsecs")
  3478. }
  3479. ]
  3480. ))
  3481. characterMakers.push(() => makeCharacter(
  3482. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3483. {
  3484. front: {
  3485. height: math.unit(2, "meter"),
  3486. weight: math.unit(60, "kg"),
  3487. name: "Front",
  3488. image: {
  3489. source: "./media/characters/noah/front.svg"
  3490. }
  3491. },
  3492. talons: {
  3493. height: math.unit(0.315, "meter"),
  3494. name: "Talons",
  3495. image: {
  3496. source: "./media/characters/noah/talons.svg"
  3497. }
  3498. }
  3499. },
  3500. [
  3501. {
  3502. name: "Large",
  3503. height: math.unit(50, "feet")
  3504. },
  3505. {
  3506. name: "Macro",
  3507. height: math.unit(750, "feet"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Megamacro",
  3512. height: math.unit(50, "miles")
  3513. },
  3514. {
  3515. name: "Gigamacro",
  3516. height: math.unit(100000, "miles")
  3517. },
  3518. {
  3519. name: "Full-Size",
  3520. height: math.unit(3000000000, "miles")
  3521. }
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(80, "kg"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/natalya/front.svg"
  3533. }
  3534. },
  3535. back: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(80, "kg"),
  3538. name: "Back",
  3539. image: {
  3540. source: "./media/characters/natalya/back.svg"
  3541. }
  3542. }
  3543. },
  3544. [
  3545. {
  3546. name: "Normal",
  3547. height: math.unit(150, "feet"),
  3548. default: true
  3549. },
  3550. {
  3551. name: "Megamacro",
  3552. height: math.unit(5, "miles")
  3553. },
  3554. {
  3555. name: "Full-Size",
  3556. height: math.unit(600, "kiloparsecs")
  3557. }
  3558. ]
  3559. ))
  3560. characterMakers.push(() => makeCharacter(
  3561. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3562. {
  3563. front: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(50, "kg"),
  3566. name: "Front",
  3567. image: {
  3568. source: "./media/characters/erestrebah/front.svg",
  3569. extra: 1262/1162,
  3570. bottom: 96/1358
  3571. }
  3572. },
  3573. back: {
  3574. height: math.unit(2, "meter"),
  3575. weight: math.unit(50, "kg"),
  3576. name: "Back",
  3577. image: {
  3578. source: "./media/characters/erestrebah/back.svg",
  3579. extra: 1257/1139,
  3580. bottom: 13/1270
  3581. }
  3582. },
  3583. wing: {
  3584. height: math.unit(2, "meter"),
  3585. weight: math.unit(50, "kg"),
  3586. name: "Wing",
  3587. image: {
  3588. source: "./media/characters/erestrebah/wing.svg",
  3589. extra: 1262/1162,
  3590. bottom: 96/1358
  3591. }
  3592. },
  3593. mouth: {
  3594. height: math.unit(0.39, "feet"),
  3595. name: "Mouth",
  3596. image: {
  3597. source: "./media/characters/erestrebah/mouth.svg"
  3598. }
  3599. }
  3600. },
  3601. [
  3602. {
  3603. name: "Normal",
  3604. height: math.unit(10, "feet")
  3605. },
  3606. {
  3607. name: "Large",
  3608. height: math.unit(50, "feet"),
  3609. default: true
  3610. },
  3611. {
  3612. name: "Macro",
  3613. height: math.unit(300, "feet")
  3614. },
  3615. {
  3616. name: "Macro+",
  3617. height: math.unit(750, "feet")
  3618. },
  3619. {
  3620. name: "Megamacro",
  3621. height: math.unit(3, "miles")
  3622. }
  3623. ]
  3624. ))
  3625. characterMakers.push(() => makeCharacter(
  3626. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3627. {
  3628. front: {
  3629. height: math.unit(2, "meter"),
  3630. weight: math.unit(80, "kg"),
  3631. name: "Front",
  3632. image: {
  3633. source: "./media/characters/jennifer/front.svg",
  3634. bottom: 0.11,
  3635. extra: 1.16
  3636. }
  3637. },
  3638. frontAlt: {
  3639. height: math.unit(2, "meter"),
  3640. weight: math.unit(80, "kg"),
  3641. name: "Front (Alt)",
  3642. image: {
  3643. source: "./media/characters/jennifer/front-alt.svg"
  3644. }
  3645. }
  3646. },
  3647. [
  3648. {
  3649. name: "Canon Height",
  3650. height: math.unit(120, "feet"),
  3651. default: true
  3652. },
  3653. {
  3654. name: "Macro+",
  3655. height: math.unit(300, "feet")
  3656. },
  3657. {
  3658. name: "Megamacro",
  3659. height: math.unit(20000, "feet")
  3660. }
  3661. ]
  3662. ))
  3663. characterMakers.push(() => makeCharacter(
  3664. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3665. {
  3666. front: {
  3667. height: math.unit(2, "meter"),
  3668. weight: math.unit(50, "kg"),
  3669. name: "Front",
  3670. image: {
  3671. source: "./media/characters/kalista/front.svg",
  3672. extra: 1314/1145,
  3673. bottom: 101/1415
  3674. }
  3675. },
  3676. back: {
  3677. height: math.unit(2, "meter"),
  3678. weight: math.unit(50, "kg"),
  3679. name: "Back",
  3680. image: {
  3681. source: "./media/characters/kalista/back.svg",
  3682. extra: 1366 / 1156,
  3683. bottom: 33.9 / 1362.78
  3684. }
  3685. }
  3686. },
  3687. [
  3688. {
  3689. name: "Uncomfortably Small",
  3690. height: math.unit(10, "feet")
  3691. },
  3692. {
  3693. name: "Small",
  3694. height: math.unit(30, "feet")
  3695. },
  3696. {
  3697. name: "Macro",
  3698. height: math.unit(100, "feet"),
  3699. default: true
  3700. },
  3701. {
  3702. name: "Macro+",
  3703. height: math.unit(2000, "feet")
  3704. },
  3705. {
  3706. name: "True Form",
  3707. height: math.unit(8924, "miles")
  3708. }
  3709. ]
  3710. ))
  3711. characterMakers.push(() => makeCharacter(
  3712. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3713. {
  3714. front: {
  3715. height: math.unit(2, "meter"),
  3716. weight: math.unit(120, "kg"),
  3717. name: "Front",
  3718. image: {
  3719. source: "./media/characters/ggv/front.svg"
  3720. }
  3721. },
  3722. side: {
  3723. height: math.unit(2, "meter"),
  3724. weight: math.unit(120, "kg"),
  3725. name: "Side",
  3726. image: {
  3727. source: "./media/characters/ggv/side.svg"
  3728. }
  3729. }
  3730. },
  3731. [
  3732. {
  3733. name: "Extremely Puny",
  3734. height: math.unit(9 + 5 / 12, "feet")
  3735. },
  3736. {
  3737. name: "Horribly Small",
  3738. height: math.unit(47.7, "miles"),
  3739. default: true
  3740. },
  3741. {
  3742. name: "Reasonably Sized",
  3743. height: math.unit(25000, "parsecs")
  3744. },
  3745. {
  3746. name: "Slightly Uncompressed",
  3747. height: math.unit(7.77e31, "parsecs")
  3748. },
  3749. {
  3750. name: "Omniversal",
  3751. height: math.unit(1e300, "meters")
  3752. },
  3753. ]
  3754. ))
  3755. characterMakers.push(() => makeCharacter(
  3756. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3757. {
  3758. front: {
  3759. height: math.unit(2, "meter"),
  3760. weight: math.unit(75, "lb"),
  3761. name: "Front",
  3762. image: {
  3763. source: "./media/characters/napalm/front.svg"
  3764. }
  3765. },
  3766. back: {
  3767. height: math.unit(2, "meter"),
  3768. weight: math.unit(75, "lb"),
  3769. name: "Back",
  3770. image: {
  3771. source: "./media/characters/napalm/back.svg"
  3772. }
  3773. }
  3774. },
  3775. [
  3776. {
  3777. name: "Standard",
  3778. height: math.unit(55, "feet"),
  3779. default: true
  3780. }
  3781. ]
  3782. ))
  3783. characterMakers.push(() => makeCharacter(
  3784. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3785. {
  3786. front: {
  3787. height: math.unit(7 + 5 / 6, "feet"),
  3788. weight: math.unit(325, "lb"),
  3789. name: "Front",
  3790. image: {
  3791. source: "./media/characters/asana/front.svg",
  3792. extra: 1133 / 1060,
  3793. bottom: 15.2 / 1148.6
  3794. }
  3795. },
  3796. back: {
  3797. height: math.unit(7 + 5 / 6, "feet"),
  3798. weight: math.unit(325, "lb"),
  3799. name: "Back",
  3800. image: {
  3801. source: "./media/characters/asana/back.svg",
  3802. extra: 1114 / 1043,
  3803. bottom: 5 / 1120
  3804. }
  3805. },
  3806. dressedDark: {
  3807. height: math.unit(7 + 5 / 6, "feet"),
  3808. weight: math.unit(325, "lb"),
  3809. name: "Dressed (Dark)",
  3810. image: {
  3811. source: "./media/characters/asana/dressed-dark.svg",
  3812. extra: 1133 / 1060,
  3813. bottom: 15.2 / 1148.6
  3814. }
  3815. },
  3816. dressedLight: {
  3817. height: math.unit(7 + 5 / 6, "feet"),
  3818. weight: math.unit(325, "lb"),
  3819. name: "Dressed (Light)",
  3820. image: {
  3821. source: "./media/characters/asana/dressed-light.svg",
  3822. extra: 1133 / 1060,
  3823. bottom: 15.2 / 1148.6
  3824. }
  3825. },
  3826. },
  3827. [
  3828. {
  3829. name: "Standard",
  3830. height: math.unit(7 + 5 / 6, "feet"),
  3831. default: true
  3832. },
  3833. {
  3834. name: "Large",
  3835. height: math.unit(10, "meters")
  3836. },
  3837. {
  3838. name: "Macro",
  3839. height: math.unit(2500, "meters")
  3840. },
  3841. {
  3842. name: "Megamacro",
  3843. height: math.unit(5e6, "meters")
  3844. },
  3845. {
  3846. name: "Examacro",
  3847. height: math.unit(5e12, "lightyears")
  3848. },
  3849. {
  3850. name: "Max Size",
  3851. height: math.unit(1e31, "lightyears")
  3852. }
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3857. {
  3858. front: {
  3859. height: math.unit(2, "meter"),
  3860. weight: math.unit(60, "kg"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/ebony/front.svg",
  3864. bottom: 0.03,
  3865. extra: 1045 / 810 + 0.03
  3866. }
  3867. },
  3868. side: {
  3869. height: math.unit(2, "meter"),
  3870. weight: math.unit(60, "kg"),
  3871. name: "Side",
  3872. image: {
  3873. source: "./media/characters/ebony/side.svg",
  3874. bottom: 0.03,
  3875. extra: 1045 / 810 + 0.03
  3876. }
  3877. },
  3878. back: {
  3879. height: math.unit(2, "meter"),
  3880. weight: math.unit(60, "kg"),
  3881. name: "Back",
  3882. image: {
  3883. source: "./media/characters/ebony/back.svg",
  3884. bottom: 0.01,
  3885. extra: 1045 / 810 + 0.01
  3886. }
  3887. },
  3888. },
  3889. [
  3890. // TODO check why I did this lol
  3891. {
  3892. name: "Standard",
  3893. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3894. default: true
  3895. },
  3896. {
  3897. name: "Macro",
  3898. height: math.unit(200, "feet")
  3899. },
  3900. {
  3901. name: "Gigamacro",
  3902. height: math.unit(13000, "km")
  3903. }
  3904. ]
  3905. ))
  3906. characterMakers.push(() => makeCharacter(
  3907. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3908. {
  3909. front: {
  3910. height: math.unit(6, "feet"),
  3911. weight: math.unit(175, "lb"),
  3912. name: "Front",
  3913. image: {
  3914. source: "./media/characters/mountain/front.svg",
  3915. extra: 972 / 955,
  3916. bottom: 64 / 1036.6
  3917. }
  3918. },
  3919. back: {
  3920. height: math.unit(6, "feet"),
  3921. weight: math.unit(175, "lb"),
  3922. name: "Back",
  3923. image: {
  3924. source: "./media/characters/mountain/back.svg",
  3925. extra: 970 / 950,
  3926. bottom: 28.25 / 999
  3927. }
  3928. },
  3929. },
  3930. [
  3931. {
  3932. name: "Large",
  3933. height: math.unit(20, "meters")
  3934. },
  3935. {
  3936. name: "Macro",
  3937. height: math.unit(300, "meters")
  3938. },
  3939. {
  3940. name: "Gigamacro",
  3941. height: math.unit(10000, "km"),
  3942. default: true
  3943. },
  3944. {
  3945. name: "Examacro",
  3946. height: math.unit(10e9, "lightyears")
  3947. }
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(8, "feet"),
  3955. weight: math.unit(500, "lb"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/rick/front.svg"
  3959. }
  3960. }
  3961. },
  3962. [
  3963. {
  3964. name: "Normal",
  3965. height: math.unit(8, "feet"),
  3966. default: true
  3967. },
  3968. {
  3969. name: "Macro",
  3970. height: math.unit(5, "km")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(8, "feet"),
  3979. weight: math.unit(120, "lb"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/ona/front.svg"
  3983. }
  3984. },
  3985. frontAlt: {
  3986. height: math.unit(8, "feet"),
  3987. weight: math.unit(120, "lb"),
  3988. name: "Front (Alt)",
  3989. image: {
  3990. source: "./media/characters/ona/front-alt.svg"
  3991. }
  3992. },
  3993. back: {
  3994. height: math.unit(8, "feet"),
  3995. weight: math.unit(120, "lb"),
  3996. name: "Back",
  3997. image: {
  3998. source: "./media/characters/ona/back.svg"
  3999. }
  4000. },
  4001. foot: {
  4002. height: math.unit(1.1, "feet"),
  4003. name: "Foot",
  4004. image: {
  4005. source: "./media/characters/ona/foot.svg"
  4006. }
  4007. }
  4008. },
  4009. [
  4010. {
  4011. name: "Megamacro",
  4012. height: math.unit(70, "km"),
  4013. default: true
  4014. },
  4015. {
  4016. name: "Gigamacro",
  4017. height: math.unit(681818, "miles")
  4018. },
  4019. {
  4020. name: "Examacro",
  4021. height: math.unit(3800000, "lightyears")
  4022. },
  4023. ]
  4024. ))
  4025. characterMakers.push(() => makeCharacter(
  4026. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4027. {
  4028. front: {
  4029. height: math.unit(12, "feet"),
  4030. weight: math.unit(3000, "lb"),
  4031. name: "Front",
  4032. image: {
  4033. source: "./media/characters/mech/front.svg",
  4034. extra: 2900 / 2770,
  4035. bottom: 110 / 3010
  4036. }
  4037. },
  4038. back: {
  4039. height: math.unit(12, "feet"),
  4040. weight: math.unit(3000, "lb"),
  4041. name: "Back",
  4042. image: {
  4043. source: "./media/characters/mech/back.svg",
  4044. extra: 3011 / 2890,
  4045. bottom: 94 / 3105
  4046. }
  4047. },
  4048. maw: {
  4049. height: math.unit(3.07, "feet"),
  4050. name: "Maw",
  4051. image: {
  4052. source: "./media/characters/mech/maw.svg"
  4053. }
  4054. },
  4055. head: {
  4056. height: math.unit(2.82, "feet"),
  4057. name: "Head",
  4058. image: {
  4059. source: "./media/characters/mech/head.svg"
  4060. }
  4061. },
  4062. dick: {
  4063. height: math.unit(1.43, "feet"),
  4064. name: "Dick",
  4065. image: {
  4066. source: "./media/characters/mech/dick.svg"
  4067. }
  4068. },
  4069. },
  4070. [
  4071. {
  4072. name: "Normal",
  4073. height: math.unit(12, "feet")
  4074. },
  4075. {
  4076. name: "Macro",
  4077. height: math.unit(300, "feet"),
  4078. default: true
  4079. },
  4080. {
  4081. name: "Macro+",
  4082. height: math.unit(1500, "feet")
  4083. },
  4084. ]
  4085. ))
  4086. characterMakers.push(() => makeCharacter(
  4087. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4088. {
  4089. front: {
  4090. height: math.unit(1.3, "meter"),
  4091. weight: math.unit(30, "kg"),
  4092. name: "Front",
  4093. image: {
  4094. source: "./media/characters/gregory/front.svg",
  4095. }
  4096. }
  4097. },
  4098. [
  4099. {
  4100. name: "Normal",
  4101. height: math.unit(1.3, "meter"),
  4102. default: true
  4103. },
  4104. {
  4105. name: "Macro",
  4106. height: math.unit(20, "meter")
  4107. }
  4108. ]
  4109. ))
  4110. characterMakers.push(() => makeCharacter(
  4111. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4112. {
  4113. front: {
  4114. height: math.unit(2.8, "meter"),
  4115. weight: math.unit(200, "kg"),
  4116. name: "Front",
  4117. image: {
  4118. source: "./media/characters/elory/front.svg",
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Normal",
  4125. height: math.unit(2.8, "meter"),
  4126. default: true
  4127. },
  4128. {
  4129. name: "Macro",
  4130. height: math.unit(38, "meter")
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4136. {
  4137. front: {
  4138. height: math.unit(470, "feet"),
  4139. weight: math.unit(924, "tons"),
  4140. name: "Front",
  4141. image: {
  4142. source: "./media/characters/angelpatamon/front.svg",
  4143. }
  4144. }
  4145. },
  4146. [
  4147. {
  4148. name: "Normal",
  4149. height: math.unit(470, "feet"),
  4150. default: true
  4151. },
  4152. {
  4153. name: "Deity Size I",
  4154. height: math.unit(28651.2, "km")
  4155. },
  4156. {
  4157. name: "Deity Size II",
  4158. height: math.unit(171907.2, "km")
  4159. }
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4164. {
  4165. side: {
  4166. height: math.unit(7.2, "meter"),
  4167. weight: math.unit(8.2, "tons"),
  4168. name: "Side",
  4169. image: {
  4170. source: "./media/characters/cryae/side.svg",
  4171. extra: 3500 / 1500
  4172. }
  4173. }
  4174. },
  4175. [
  4176. {
  4177. name: "Normal",
  4178. height: math.unit(7.2, "meter"),
  4179. default: true
  4180. }
  4181. ]
  4182. ))
  4183. characterMakers.push(() => makeCharacter(
  4184. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4185. {
  4186. front: {
  4187. height: math.unit(6, "feet"),
  4188. weight: math.unit(175, "lb"),
  4189. name: "Front",
  4190. image: {
  4191. source: "./media/characters/xera/front.svg",
  4192. extra: 2377 / 1972,
  4193. bottom: 75.5 / 2452
  4194. }
  4195. },
  4196. side: {
  4197. height: math.unit(6, "feet"),
  4198. weight: math.unit(175, "lb"),
  4199. name: "Side",
  4200. image: {
  4201. source: "./media/characters/xera/side.svg",
  4202. extra: 2345 / 2019,
  4203. bottom: 39.7 / 2384
  4204. }
  4205. },
  4206. back: {
  4207. height: math.unit(6, "feet"),
  4208. weight: math.unit(175, "lb"),
  4209. name: "Back",
  4210. image: {
  4211. source: "./media/characters/xera/back.svg",
  4212. extra: 2095 / 1984,
  4213. bottom: 67 / 2166
  4214. }
  4215. },
  4216. },
  4217. [
  4218. {
  4219. name: "Small",
  4220. height: math.unit(10, "feet")
  4221. },
  4222. {
  4223. name: "Macro",
  4224. height: math.unit(500, "meters"),
  4225. default: true
  4226. },
  4227. {
  4228. name: "Macro+",
  4229. height: math.unit(10, "km")
  4230. },
  4231. {
  4232. name: "Gigamacro",
  4233. height: math.unit(25000, "km")
  4234. },
  4235. {
  4236. name: "Teramacro",
  4237. height: math.unit(3e6, "km")
  4238. }
  4239. ]
  4240. ))
  4241. characterMakers.push(() => makeCharacter(
  4242. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4243. {
  4244. front: {
  4245. height: math.unit(6, "feet"),
  4246. weight: math.unit(175, "lb"),
  4247. name: "Front",
  4248. image: {
  4249. source: "./media/characters/nebula/front.svg",
  4250. extra: 2566 / 2362,
  4251. bottom: 81 / 2644
  4252. }
  4253. }
  4254. },
  4255. [
  4256. {
  4257. name: "Small",
  4258. height: math.unit(4.5, "meters")
  4259. },
  4260. {
  4261. name: "Macro",
  4262. height: math.unit(1500, "meters"),
  4263. default: true
  4264. },
  4265. {
  4266. name: "Megamacro",
  4267. height: math.unit(150, "km")
  4268. },
  4269. {
  4270. name: "Gigamacro",
  4271. height: math.unit(27000, "km")
  4272. }
  4273. ]
  4274. ))
  4275. characterMakers.push(() => makeCharacter(
  4276. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4277. {
  4278. front: {
  4279. height: math.unit(6, "feet"),
  4280. weight: math.unit(225, "lb"),
  4281. name: "Front",
  4282. image: {
  4283. source: "./media/characters/abysgar/front.svg"
  4284. }
  4285. }
  4286. },
  4287. [
  4288. {
  4289. name: "Small",
  4290. height: math.unit(4.5, "meters")
  4291. },
  4292. {
  4293. name: "Macro",
  4294. height: math.unit(1250, "meters"),
  4295. default: true
  4296. },
  4297. {
  4298. name: "Megamacro",
  4299. height: math.unit(125, "km")
  4300. },
  4301. {
  4302. name: "Gigamacro",
  4303. height: math.unit(26000, "km")
  4304. }
  4305. ]
  4306. ))
  4307. characterMakers.push(() => makeCharacter(
  4308. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4309. {
  4310. front: {
  4311. height: math.unit(6, "feet"),
  4312. weight: math.unit(180, "lb"),
  4313. name: "Front",
  4314. image: {
  4315. source: "./media/characters/yakuz/front.svg"
  4316. }
  4317. }
  4318. },
  4319. [
  4320. {
  4321. name: "Small",
  4322. height: math.unit(5, "meters")
  4323. },
  4324. {
  4325. name: "Macro",
  4326. height: math.unit(1500, "meters"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Megamacro",
  4331. height: math.unit(200, "km")
  4332. },
  4333. {
  4334. name: "Gigamacro",
  4335. height: math.unit(100000, "km")
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(175, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/mirova/front.svg",
  4348. extra: 3334 / 3071,
  4349. bottom: 42 / 3375.6
  4350. }
  4351. }
  4352. },
  4353. [
  4354. {
  4355. name: "Small",
  4356. height: math.unit(5, "meters")
  4357. },
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(900, "meters"),
  4361. default: true
  4362. },
  4363. {
  4364. name: "Megamacro",
  4365. height: math.unit(135, "km")
  4366. },
  4367. {
  4368. name: "Gigamacro",
  4369. height: math.unit(20000, "km")
  4370. }
  4371. ]
  4372. ))
  4373. characterMakers.push(() => makeCharacter(
  4374. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4375. {
  4376. side: {
  4377. height: math.unit(28.35, "feet"),
  4378. weight: math.unit(99.75, "tons"),
  4379. name: "Side",
  4380. image: {
  4381. source: "./media/characters/asana-mech/side.svg",
  4382. extra: 923 / 699,
  4383. bottom: 50 / 975
  4384. }
  4385. },
  4386. chaingun: {
  4387. height: math.unit(7, "feet"),
  4388. weight: math.unit(2400, "lb"),
  4389. name: "Chaingun",
  4390. image: {
  4391. source: "./media/characters/asana-mech/chaingun.svg"
  4392. }
  4393. },
  4394. laser: {
  4395. height: math.unit(7.12, "feet"),
  4396. weight: math.unit(2000, "lb"),
  4397. name: "Laser",
  4398. image: {
  4399. source: "./media/characters/asana-mech/laser.svg"
  4400. }
  4401. },
  4402. },
  4403. [
  4404. {
  4405. name: "Normal",
  4406. height: math.unit(28.35, "feet"),
  4407. default: true
  4408. },
  4409. {
  4410. name: "Macro",
  4411. height: math.unit(2500, "feet")
  4412. },
  4413. {
  4414. name: "Megamacro",
  4415. height: math.unit(25, "miles")
  4416. },
  4417. {
  4418. name: "Examacro",
  4419. height: math.unit(6e8, "lightyears")
  4420. },
  4421. ]
  4422. ))
  4423. characterMakers.push(() => makeCharacter(
  4424. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4425. {
  4426. front: {
  4427. height: math.unit(5, "meters"),
  4428. weight: math.unit(1000, "kg"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/asche/front.svg",
  4432. extra: 1258 / 1190,
  4433. bottom: 47 / 1305
  4434. }
  4435. },
  4436. frontUnderwear: {
  4437. height: math.unit(5, "meters"),
  4438. weight: math.unit(1000, "kg"),
  4439. name: "Front (Underwear)",
  4440. image: {
  4441. source: "./media/characters/asche/front-underwear.svg",
  4442. extra: 1258 / 1190,
  4443. bottom: 47 / 1305
  4444. }
  4445. },
  4446. frontDressed: {
  4447. height: math.unit(5, "meters"),
  4448. weight: math.unit(1000, "kg"),
  4449. name: "Front (Dressed)",
  4450. image: {
  4451. source: "./media/characters/asche/front-dressed.svg",
  4452. extra: 1258 / 1190,
  4453. bottom: 47 / 1305
  4454. }
  4455. },
  4456. frontArmor: {
  4457. height: math.unit(5, "meters"),
  4458. weight: math.unit(1000, "kg"),
  4459. name: "Front (Armored)",
  4460. image: {
  4461. source: "./media/characters/asche/front-armored.svg",
  4462. extra: 1374 / 1308,
  4463. bottom: 23 / 1397
  4464. }
  4465. },
  4466. mp724: {
  4467. height: math.unit(0.96, "meters"),
  4468. weight: math.unit(38, "kg"),
  4469. name: "H&K MP724",
  4470. image: {
  4471. source: "./media/characters/asche/h&k-mp724.svg"
  4472. }
  4473. },
  4474. side: {
  4475. height: math.unit(5, "meters"),
  4476. weight: math.unit(1000, "kg"),
  4477. name: "Side",
  4478. image: {
  4479. source: "./media/characters/asche/side.svg",
  4480. extra: 1717 / 1609,
  4481. bottom: 0.005
  4482. }
  4483. },
  4484. back: {
  4485. height: math.unit(5, "meters"),
  4486. weight: math.unit(1000, "kg"),
  4487. name: "Back",
  4488. image: {
  4489. source: "./media/characters/asche/back.svg",
  4490. extra: 1570 / 1501
  4491. }
  4492. },
  4493. },
  4494. [
  4495. {
  4496. name: "DEFCON 5",
  4497. height: math.unit(5, "meters")
  4498. },
  4499. {
  4500. name: "DEFCON 4",
  4501. height: math.unit(500, "meters"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "DEFCON 3",
  4506. height: math.unit(5, "km")
  4507. },
  4508. {
  4509. name: "DEFCON 2",
  4510. height: math.unit(500, "km")
  4511. },
  4512. {
  4513. name: "DEFCON 1",
  4514. height: math.unit(500000, "km")
  4515. },
  4516. {
  4517. name: "DEFCON 0",
  4518. height: math.unit(3, "gigaparsecs")
  4519. },
  4520. ]
  4521. ))
  4522. characterMakers.push(() => makeCharacter(
  4523. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4524. {
  4525. front: {
  4526. height: math.unit(2, "meters"),
  4527. weight: math.unit(76, "kg"),
  4528. name: "Front",
  4529. image: {
  4530. source: "./media/characters/gale/front.svg"
  4531. }
  4532. },
  4533. frontAlt1: {
  4534. height: math.unit(2, "meters"),
  4535. weight: math.unit(76, "kg"),
  4536. name: "Front (Alt 1)",
  4537. image: {
  4538. source: "./media/characters/gale/front-alt-1.svg"
  4539. }
  4540. },
  4541. frontAlt2: {
  4542. height: math.unit(2, "meters"),
  4543. weight: math.unit(76, "kg"),
  4544. name: "Front (Alt 2)",
  4545. image: {
  4546. source: "./media/characters/gale/front-alt-2.svg"
  4547. }
  4548. },
  4549. },
  4550. [
  4551. {
  4552. name: "Normal",
  4553. height: math.unit(7, "feet")
  4554. },
  4555. {
  4556. name: "Macro",
  4557. height: math.unit(150, "feet"),
  4558. default: true
  4559. },
  4560. {
  4561. name: "Macro+",
  4562. height: math.unit(300, "feet")
  4563. },
  4564. ]
  4565. ))
  4566. characterMakers.push(() => makeCharacter(
  4567. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4568. {
  4569. front: {
  4570. height: math.unit(5 + 10/12, "feet"),
  4571. weight: math.unit(67, "kg"),
  4572. name: "Front",
  4573. image: {
  4574. source: "./media/characters/draylen/front.svg",
  4575. extra: 832/777,
  4576. bottom: 85/917
  4577. }
  4578. }
  4579. },
  4580. [
  4581. {
  4582. name: "Normal",
  4583. height: math.unit(5 + 10/12, "feet")
  4584. },
  4585. {
  4586. name: "Macro",
  4587. height: math.unit(150, "feet"),
  4588. default: true
  4589. }
  4590. ]
  4591. ))
  4592. characterMakers.push(() => makeCharacter(
  4593. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4594. {
  4595. front: {
  4596. height: math.unit(7 + 9 / 12, "feet"),
  4597. weight: math.unit(379, "lbs"),
  4598. name: "Front",
  4599. image: {
  4600. source: "./media/characters/chez/front.svg"
  4601. }
  4602. },
  4603. side: {
  4604. height: math.unit(7 + 9 / 12, "feet"),
  4605. weight: math.unit(379, "lbs"),
  4606. name: "Side",
  4607. image: {
  4608. source: "./media/characters/chez/side.svg"
  4609. }
  4610. }
  4611. },
  4612. [
  4613. {
  4614. name: "Normal",
  4615. height: math.unit(7 + 9 / 12, "feet"),
  4616. default: true
  4617. },
  4618. {
  4619. name: "God King",
  4620. height: math.unit(9750000, "meters")
  4621. }
  4622. ]
  4623. ))
  4624. characterMakers.push(() => makeCharacter(
  4625. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4626. {
  4627. front: {
  4628. height: math.unit(6, "feet"),
  4629. weight: math.unit(275, "lbs"),
  4630. name: "Front",
  4631. image: {
  4632. source: "./media/characters/kaylum/front.svg",
  4633. bottom: 0.01,
  4634. extra: 1166 / 1031
  4635. }
  4636. },
  4637. frontWingless: {
  4638. height: math.unit(6, "feet"),
  4639. weight: math.unit(275, "lbs"),
  4640. name: "Front (Wingless)",
  4641. image: {
  4642. source: "./media/characters/kaylum/front-wingless.svg",
  4643. bottom: 0.01,
  4644. extra: 1117 / 1031
  4645. }
  4646. }
  4647. },
  4648. [
  4649. {
  4650. name: "Normal",
  4651. height: math.unit(3.05, "meters")
  4652. },
  4653. {
  4654. name: "Master",
  4655. height: math.unit(5.5, "meters")
  4656. },
  4657. {
  4658. name: "Rampage",
  4659. height: math.unit(19, "meters")
  4660. },
  4661. {
  4662. name: "Macro Lite",
  4663. height: math.unit(37, "meters")
  4664. },
  4665. {
  4666. name: "Hyper Predator",
  4667. height: math.unit(61, "meters")
  4668. },
  4669. {
  4670. name: "Macro",
  4671. height: math.unit(138, "meters"),
  4672. default: true
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4678. {
  4679. front: {
  4680. height: math.unit(6, "feet"),
  4681. weight: math.unit(150, "lbs"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/geta/front.svg"
  4685. }
  4686. }
  4687. },
  4688. [
  4689. {
  4690. name: "Micro",
  4691. height: math.unit(3, "inches"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Normal",
  4696. height: math.unit(5 + 5 / 12, "feet")
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(6, "feet"),
  4705. weight: math.unit(300, "lbs"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/tyrnn/front.svg"
  4709. }
  4710. }
  4711. },
  4712. [
  4713. {
  4714. name: "Main Height",
  4715. height: math.unit(355, "feet"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "Fave. Height",
  4720. height: math.unit(2400, "feet")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(6, "feet"),
  4729. weight: math.unit(300, "lbs"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/appledectomy/front.svg"
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(2500, "feet")
  4740. },
  4741. {
  4742. name: "Megamacro",
  4743. height: math.unit(50, "miles"),
  4744. default: true
  4745. },
  4746. {
  4747. name: "Gigamacro",
  4748. height: math.unit(5000, "miles")
  4749. },
  4750. {
  4751. name: "Teramacro",
  4752. height: math.unit(250000, "miles")
  4753. },
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4758. {
  4759. front: {
  4760. height: math.unit(6, "feet"),
  4761. weight: math.unit(200, "lbs"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/vulpes/front.svg",
  4765. extra: 573 / 543,
  4766. bottom: 0.033
  4767. }
  4768. },
  4769. side: {
  4770. height: math.unit(6, "feet"),
  4771. weight: math.unit(200, "lbs"),
  4772. name: "Side",
  4773. image: {
  4774. source: "./media/characters/vulpes/side.svg",
  4775. extra: 577 / 549,
  4776. bottom: 11 / 588
  4777. }
  4778. },
  4779. back: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(200, "lbs"),
  4782. name: "Back",
  4783. image: {
  4784. source: "./media/characters/vulpes/back.svg",
  4785. extra: 573 / 549,
  4786. bottom: 20 / 593
  4787. }
  4788. },
  4789. feet: {
  4790. height: math.unit(1.276, "feet"),
  4791. name: "Feet",
  4792. image: {
  4793. source: "./media/characters/vulpes/feet.svg"
  4794. }
  4795. },
  4796. maw: {
  4797. height: math.unit(1.18, "feet"),
  4798. name: "Maw",
  4799. image: {
  4800. source: "./media/characters/vulpes/maw.svg"
  4801. }
  4802. },
  4803. },
  4804. [
  4805. {
  4806. name: "Micro",
  4807. height: math.unit(2, "inches")
  4808. },
  4809. {
  4810. name: "Normal",
  4811. height: math.unit(6.3, "feet")
  4812. },
  4813. {
  4814. name: "Macro",
  4815. height: math.unit(850, "feet")
  4816. },
  4817. {
  4818. name: "Megamacro",
  4819. height: math.unit(7500, "feet"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Gigamacro",
  4824. height: math.unit(570000, "miles")
  4825. }
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4830. {
  4831. front: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(210, "lbs"),
  4834. name: "Front",
  4835. image: {
  4836. source: "./media/characters/rain-fallen/front.svg"
  4837. }
  4838. },
  4839. side: {
  4840. height: math.unit(6, "feet"),
  4841. weight: math.unit(210, "lbs"),
  4842. name: "Side",
  4843. image: {
  4844. source: "./media/characters/rain-fallen/side.svg"
  4845. }
  4846. },
  4847. back: {
  4848. height: math.unit(6, "feet"),
  4849. weight: math.unit(210, "lbs"),
  4850. name: "Back",
  4851. image: {
  4852. source: "./media/characters/rain-fallen/back.svg"
  4853. }
  4854. },
  4855. feral: {
  4856. height: math.unit(9, "feet"),
  4857. weight: math.unit(700, "lbs"),
  4858. name: "Feral",
  4859. image: {
  4860. source: "./media/characters/rain-fallen/feral.svg"
  4861. }
  4862. },
  4863. },
  4864. [
  4865. {
  4866. name: "Meddling with Mortals",
  4867. height: math.unit(8 + 8/12, "feet")
  4868. },
  4869. {
  4870. name: "Normal",
  4871. height: math.unit(5, "meter")
  4872. },
  4873. {
  4874. name: "Macro",
  4875. height: math.unit(150, "meter"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Megamacro",
  4880. height: math.unit(278e6, "meter")
  4881. },
  4882. {
  4883. name: "Gigamacro",
  4884. height: math.unit(2e9, "meter")
  4885. },
  4886. {
  4887. name: "Teramacro",
  4888. height: math.unit(8e12, "meter")
  4889. },
  4890. {
  4891. name: "Devourer",
  4892. height: math.unit(14, "zettameters")
  4893. },
  4894. {
  4895. name: "Scarlet King",
  4896. height: math.unit(18, "yottameters")
  4897. },
  4898. {
  4899. name: "Void",
  4900. height: math.unit(1e88, "yottameters")
  4901. }
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4906. {
  4907. standing: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(180, "lbs"),
  4910. name: "Standing",
  4911. image: {
  4912. source: "./media/characters/zaakira/standing.svg",
  4913. extra: 1599/1504,
  4914. bottom: 39/1638
  4915. }
  4916. },
  4917. laying: {
  4918. height: math.unit(3, "feet"),
  4919. weight: math.unit(180, "lbs"),
  4920. name: "Laying",
  4921. image: {
  4922. source: "./media/characters/zaakira/laying.svg"
  4923. }
  4924. },
  4925. },
  4926. [
  4927. {
  4928. name: "Normal",
  4929. height: math.unit(12, "feet")
  4930. },
  4931. {
  4932. name: "Macro",
  4933. height: math.unit(279, "feet"),
  4934. default: true
  4935. }
  4936. ]
  4937. ))
  4938. characterMakers.push(() => makeCharacter(
  4939. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4940. {
  4941. femSfw: {
  4942. height: math.unit(8, "feet"),
  4943. weight: math.unit(350, "lb"),
  4944. name: "Fem",
  4945. image: {
  4946. source: "./media/characters/sigvald/fem-sfw.svg",
  4947. extra: 182 / 164,
  4948. bottom: 8.7 / 190.5
  4949. }
  4950. },
  4951. femNsfw: {
  4952. height: math.unit(8, "feet"),
  4953. weight: math.unit(350, "lb"),
  4954. name: "Fem (NSFW)",
  4955. image: {
  4956. source: "./media/characters/sigvald/fem-nsfw.svg",
  4957. extra: 182 / 164,
  4958. bottom: 8.7 / 190.5
  4959. }
  4960. },
  4961. maleNsfw: {
  4962. height: math.unit(8, "feet"),
  4963. weight: math.unit(350, "lb"),
  4964. name: "Male (NSFW)",
  4965. image: {
  4966. source: "./media/characters/sigvald/male-nsfw.svg",
  4967. extra: 182 / 164,
  4968. bottom: 8.7 / 190.5
  4969. }
  4970. },
  4971. hermNsfw: {
  4972. height: math.unit(8, "feet"),
  4973. weight: math.unit(350, "lb"),
  4974. name: "Herm (NSFW)",
  4975. image: {
  4976. source: "./media/characters/sigvald/herm-nsfw.svg",
  4977. extra: 182 / 164,
  4978. bottom: 8.7 / 190.5
  4979. }
  4980. },
  4981. dick: {
  4982. height: math.unit(2.36, "feet"),
  4983. name: "Dick",
  4984. image: {
  4985. source: "./media/characters/sigvald/dick.svg"
  4986. }
  4987. },
  4988. eye: {
  4989. height: math.unit(0.31, "feet"),
  4990. name: "Eye",
  4991. image: {
  4992. source: "./media/characters/sigvald/eye.svg"
  4993. }
  4994. },
  4995. mouth: {
  4996. height: math.unit(0.92, "feet"),
  4997. name: "Mouth",
  4998. image: {
  4999. source: "./media/characters/sigvald/mouth.svg"
  5000. }
  5001. },
  5002. paws: {
  5003. height: math.unit(2.2, "feet"),
  5004. name: "Paws",
  5005. image: {
  5006. source: "./media/characters/sigvald/paws.svg"
  5007. }
  5008. }
  5009. },
  5010. [
  5011. {
  5012. name: "Normal",
  5013. height: math.unit(8, "feet")
  5014. },
  5015. {
  5016. name: "Large",
  5017. height: math.unit(12, "feet")
  5018. },
  5019. {
  5020. name: "Larger",
  5021. height: math.unit(20, "feet")
  5022. },
  5023. {
  5024. name: "Macro",
  5025. height: math.unit(150, "feet")
  5026. },
  5027. {
  5028. name: "Macro+",
  5029. height: math.unit(200, "feet"),
  5030. default: true
  5031. },
  5032. ]
  5033. ))
  5034. characterMakers.push(() => makeCharacter(
  5035. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5036. {
  5037. side: {
  5038. height: math.unit(12, "feet"),
  5039. weight: math.unit(2000, "kg"),
  5040. name: "Side",
  5041. image: {
  5042. source: "./media/characters/scott/side.svg",
  5043. extra: 754 / 724,
  5044. bottom: 0.069
  5045. }
  5046. },
  5047. upright: {
  5048. height: math.unit(12, "feet"),
  5049. weight: math.unit(2000, "kg"),
  5050. name: "Upright",
  5051. image: {
  5052. source: "./media/characters/scott/upright.svg",
  5053. extra: 3881 / 3722,
  5054. bottom: 0.05
  5055. }
  5056. },
  5057. },
  5058. [
  5059. {
  5060. name: "Normal",
  5061. height: math.unit(12, "feet"),
  5062. default: true
  5063. },
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5068. {
  5069. side: {
  5070. height: math.unit(8, "meters"),
  5071. weight: math.unit(84755, "lbs"),
  5072. name: "Side",
  5073. image: {
  5074. source: "./media/characters/tobias/side.svg",
  5075. extra: 1474 / 1096,
  5076. bottom: 38.9 / 1513.1235
  5077. }
  5078. },
  5079. },
  5080. [
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(8, "meters"),
  5084. default: true
  5085. },
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5090. {
  5091. front: {
  5092. height: math.unit(5.5, "feet"),
  5093. weight: math.unit(400, "lbs"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/kieran/front.svg",
  5097. extra: 2694 / 2364,
  5098. bottom: 217 / 2908
  5099. }
  5100. },
  5101. side: {
  5102. height: math.unit(5.5, "feet"),
  5103. weight: math.unit(400, "lbs"),
  5104. name: "Side",
  5105. image: {
  5106. source: "./media/characters/kieran/side.svg",
  5107. extra: 875 / 777,
  5108. bottom: 84.6 / 959
  5109. }
  5110. },
  5111. },
  5112. [
  5113. {
  5114. name: "Normal",
  5115. height: math.unit(5.5, "feet"),
  5116. default: true
  5117. },
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5122. {
  5123. side: {
  5124. height: math.unit(2, "meters"),
  5125. weight: math.unit(70, "kg"),
  5126. name: "Side",
  5127. image: {
  5128. source: "./media/characters/sanya/side.svg",
  5129. bottom: 0.02,
  5130. extra: 1.02
  5131. }
  5132. },
  5133. },
  5134. [
  5135. {
  5136. name: "Small",
  5137. height: math.unit(2, "meters")
  5138. },
  5139. {
  5140. name: "Normal",
  5141. height: math.unit(3, "meters")
  5142. },
  5143. {
  5144. name: "Macro",
  5145. height: math.unit(16, "meters"),
  5146. default: true
  5147. },
  5148. ]
  5149. ))
  5150. characterMakers.push(() => makeCharacter(
  5151. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5152. {
  5153. front: {
  5154. height: math.unit(2, "meters"),
  5155. weight: math.unit(120, "kg"),
  5156. name: "Front",
  5157. image: {
  5158. source: "./media/characters/miranda/front.svg",
  5159. extra: 195 / 185,
  5160. bottom: 10.9 / 206.5
  5161. }
  5162. },
  5163. back: {
  5164. height: math.unit(2, "meters"),
  5165. weight: math.unit(120, "kg"),
  5166. name: "Back",
  5167. image: {
  5168. source: "./media/characters/miranda/back.svg",
  5169. extra: 201 / 193,
  5170. bottom: 2.3 / 203.7
  5171. }
  5172. },
  5173. },
  5174. [
  5175. {
  5176. name: "Normal",
  5177. height: math.unit(10, "feet"),
  5178. default: true
  5179. }
  5180. ]
  5181. ))
  5182. characterMakers.push(() => makeCharacter(
  5183. { name: "James", species: ["deer"], tags: ["anthro"] },
  5184. {
  5185. side: {
  5186. height: math.unit(2, "meters"),
  5187. weight: math.unit(100, "kg"),
  5188. name: "Front",
  5189. image: {
  5190. source: "./media/characters/james/front.svg",
  5191. extra: 10 / 8.5
  5192. }
  5193. },
  5194. },
  5195. [
  5196. {
  5197. name: "Normal",
  5198. height: math.unit(8.5, "feet"),
  5199. default: true
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5205. {
  5206. side: {
  5207. height: math.unit(9.5, "feet"),
  5208. weight: math.unit(2500, "lbs"),
  5209. name: "Side",
  5210. image: {
  5211. source: "./media/characters/heather/side.svg"
  5212. }
  5213. },
  5214. },
  5215. [
  5216. {
  5217. name: "Normal",
  5218. height: math.unit(9.5, "feet"),
  5219. default: true
  5220. }
  5221. ]
  5222. ))
  5223. characterMakers.push(() => makeCharacter(
  5224. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5225. {
  5226. side: {
  5227. height: math.unit(6.5, "feet"),
  5228. weight: math.unit(400, "lbs"),
  5229. name: "Side",
  5230. image: {
  5231. source: "./media/characters/lukas/side.svg",
  5232. extra: 7.25 / 6.5
  5233. }
  5234. },
  5235. },
  5236. [
  5237. {
  5238. name: "Normal",
  5239. height: math.unit(6.5, "feet"),
  5240. default: true
  5241. }
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5246. {
  5247. side: {
  5248. height: math.unit(5, "feet"),
  5249. weight: math.unit(3000, "lbs"),
  5250. name: "Side",
  5251. image: {
  5252. source: "./media/characters/louise/side.svg"
  5253. }
  5254. },
  5255. },
  5256. [
  5257. {
  5258. name: "Normal",
  5259. height: math.unit(5, "feet"),
  5260. default: true
  5261. }
  5262. ]
  5263. ))
  5264. characterMakers.push(() => makeCharacter(
  5265. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5266. {
  5267. side: {
  5268. height: math.unit(6, "feet"),
  5269. weight: math.unit(150, "lbs"),
  5270. name: "Side",
  5271. image: {
  5272. source: "./media/characters/ramona/side.svg",
  5273. extra: 871/854,
  5274. bottom: 41/912
  5275. }
  5276. },
  5277. },
  5278. [
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(5.3, "meters"),
  5282. default: true
  5283. },
  5284. {
  5285. name: "Macro",
  5286. height: math.unit(20, "stories")
  5287. },
  5288. {
  5289. name: "Macro+",
  5290. height: math.unit(50, "stories")
  5291. },
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5296. {
  5297. standing: {
  5298. height: math.unit(5.75, "feet"),
  5299. weight: math.unit(160, "lbs"),
  5300. name: "Standing",
  5301. image: {
  5302. source: "./media/characters/deerpuff/standing.svg",
  5303. extra: 682 / 624
  5304. }
  5305. },
  5306. sitting: {
  5307. height: math.unit(5.75 / 1.79, "feet"),
  5308. weight: math.unit(160, "lbs"),
  5309. name: "Sitting",
  5310. image: {
  5311. source: "./media/characters/deerpuff/sitting.svg",
  5312. bottom: 44 / 400,
  5313. extra: 1
  5314. }
  5315. },
  5316. taurLaying: {
  5317. height: math.unit(6, "feet"),
  5318. weight: math.unit(400, "lbs"),
  5319. name: "Taur (Laying)",
  5320. image: {
  5321. source: "./media/characters/deerpuff/taur-laying.svg"
  5322. }
  5323. },
  5324. },
  5325. [
  5326. {
  5327. name: "Puffball",
  5328. height: math.unit(6, "inches")
  5329. },
  5330. {
  5331. name: "Normalpuff",
  5332. height: math.unit(5.75, "feet")
  5333. },
  5334. {
  5335. name: "Macropuff",
  5336. height: math.unit(1500, "feet"),
  5337. default: true
  5338. },
  5339. {
  5340. name: "Megapuff",
  5341. height: math.unit(500, "miles")
  5342. },
  5343. {
  5344. name: "Gigapuff",
  5345. height: math.unit(250000, "miles")
  5346. },
  5347. {
  5348. name: "Omegapuff",
  5349. height: math.unit(1000, "lightyears")
  5350. },
  5351. ]
  5352. ))
  5353. characterMakers.push(() => makeCharacter(
  5354. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5355. {
  5356. stomping: {
  5357. height: math.unit(6, "feet"),
  5358. weight: math.unit(170, "lbs"),
  5359. name: "Stomping",
  5360. image: {
  5361. source: "./media/characters/vivian/stomping.svg"
  5362. }
  5363. },
  5364. sitting: {
  5365. height: math.unit(6 / 1.75, "feet"),
  5366. weight: math.unit(170, "lbs"),
  5367. name: "Sitting",
  5368. image: {
  5369. source: "./media/characters/vivian/sitting.svg",
  5370. bottom: 1 / 6.4,
  5371. extra: 1,
  5372. }
  5373. },
  5374. },
  5375. [
  5376. {
  5377. name: "Normal",
  5378. height: math.unit(7, "feet"),
  5379. default: true
  5380. },
  5381. {
  5382. name: "Macro",
  5383. height: math.unit(10, "stories")
  5384. },
  5385. {
  5386. name: "Macro+",
  5387. height: math.unit(30, "stories")
  5388. },
  5389. {
  5390. name: "Megamacro",
  5391. height: math.unit(10, "miles")
  5392. },
  5393. {
  5394. name: "Megamacro+",
  5395. height: math.unit(2750000, "meters")
  5396. },
  5397. ]
  5398. ))
  5399. characterMakers.push(() => makeCharacter(
  5400. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5401. {
  5402. front: {
  5403. height: math.unit(6, "feet"),
  5404. weight: math.unit(160, "lbs"),
  5405. name: "Front",
  5406. image: {
  5407. source: "./media/characters/prince/front.svg",
  5408. extra: 3400 / 3000
  5409. }
  5410. },
  5411. jumping: {
  5412. height: math.unit(6, "feet"),
  5413. weight: math.unit(160, "lbs"),
  5414. name: "Jumping",
  5415. image: {
  5416. source: "./media/characters/prince/jump.svg",
  5417. extra: 2555 / 2134
  5418. }
  5419. },
  5420. },
  5421. [
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(7.75, "feet"),
  5425. default: true
  5426. },
  5427. {
  5428. name: "Not cute",
  5429. height: math.unit(17, "feet")
  5430. },
  5431. {
  5432. name: "I said NOT",
  5433. height: math.unit(91, "feet")
  5434. },
  5435. {
  5436. name: "Please stop",
  5437. height: math.unit(560, "feet")
  5438. },
  5439. {
  5440. name: "What have you done",
  5441. height: math.unit(2200, "feet")
  5442. },
  5443. {
  5444. name: "Deer God",
  5445. height: math.unit(3.6, "miles")
  5446. },
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5451. {
  5452. standing: {
  5453. height: math.unit(6, "feet"),
  5454. weight: math.unit(300, "lbs"),
  5455. name: "Standing",
  5456. image: {
  5457. source: "./media/characters/psymon/standing.svg",
  5458. extra: 1888 / 1810,
  5459. bottom: 0.05
  5460. }
  5461. },
  5462. slithering: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(300, "lbs"),
  5465. name: "Slithering",
  5466. image: {
  5467. source: "./media/characters/psymon/slithering.svg",
  5468. extra: 1330 / 1224
  5469. }
  5470. },
  5471. slitheringAlt: {
  5472. height: math.unit(6, "feet"),
  5473. weight: math.unit(300, "lbs"),
  5474. name: "Slithering (Alt)",
  5475. image: {
  5476. source: "./media/characters/psymon/slithering-alt.svg",
  5477. extra: 1330 / 1224
  5478. }
  5479. },
  5480. },
  5481. [
  5482. {
  5483. name: "Normal",
  5484. height: math.unit(11.25, "feet"),
  5485. default: true
  5486. },
  5487. {
  5488. name: "Large",
  5489. height: math.unit(27, "feet")
  5490. },
  5491. {
  5492. name: "Giant",
  5493. height: math.unit(87, "feet")
  5494. },
  5495. {
  5496. name: "Macro",
  5497. height: math.unit(365, "feet")
  5498. },
  5499. {
  5500. name: "Megamacro",
  5501. height: math.unit(3, "miles")
  5502. },
  5503. {
  5504. name: "World Serpent",
  5505. height: math.unit(8000, "miles")
  5506. },
  5507. ]
  5508. ))
  5509. characterMakers.push(() => makeCharacter(
  5510. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5511. {
  5512. front: {
  5513. height: math.unit(6, "feet"),
  5514. weight: math.unit(180, "lbs"),
  5515. name: "Front",
  5516. image: {
  5517. source: "./media/characters/daimos/front.svg",
  5518. extra: 4160 / 3897,
  5519. bottom: 0.021
  5520. }
  5521. }
  5522. },
  5523. [
  5524. {
  5525. name: "Normal",
  5526. height: math.unit(8, "feet"),
  5527. default: true
  5528. },
  5529. {
  5530. name: "Big Dog",
  5531. height: math.unit(22, "feet")
  5532. },
  5533. {
  5534. name: "Macro",
  5535. height: math.unit(127, "feet")
  5536. },
  5537. {
  5538. name: "Megamacro",
  5539. height: math.unit(3600, "feet")
  5540. },
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5545. {
  5546. side: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(180, "lbs"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/blake/side.svg",
  5552. extra: 1212 / 1120,
  5553. bottom: 0.05
  5554. }
  5555. },
  5556. crouched: {
  5557. height: math.unit(6 * 0.57, "feet"),
  5558. weight: math.unit(180, "lbs"),
  5559. name: "Crouched",
  5560. image: {
  5561. source: "./media/characters/blake/crouched.svg",
  5562. extra: 840 / 587,
  5563. bottom: 0.04
  5564. }
  5565. },
  5566. bent: {
  5567. height: math.unit(6 * 0.75, "feet"),
  5568. weight: math.unit(180, "lbs"),
  5569. name: "Bent",
  5570. image: {
  5571. source: "./media/characters/blake/bent.svg",
  5572. extra: 592 / 544,
  5573. bottom: 0.035
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(8 + 1 / 6, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Big Backside",
  5585. height: math.unit(37, "feet")
  5586. },
  5587. {
  5588. name: "Subway Shredder",
  5589. height: math.unit(72, "feet")
  5590. },
  5591. {
  5592. name: "City Carver",
  5593. height: math.unit(1675, "feet")
  5594. },
  5595. {
  5596. name: "Tectonic Tweaker",
  5597. height: math.unit(2300, "miles")
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(180, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/guisetto/front.svg",
  5610. extra: 856 / 817,
  5611. bottom: 0.06
  5612. }
  5613. },
  5614. airborne: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(180, "lbs"),
  5617. name: "Airborne",
  5618. image: {
  5619. source: "./media/characters/guisetto/airborne.svg",
  5620. extra: 584 / 525
  5621. }
  5622. },
  5623. },
  5624. [
  5625. {
  5626. name: "Normal",
  5627. height: math.unit(10 + 11 / 12, "feet"),
  5628. default: true
  5629. },
  5630. {
  5631. name: "Large",
  5632. height: math.unit(35, "feet")
  5633. },
  5634. {
  5635. name: "Macro",
  5636. height: math.unit(475, "feet")
  5637. },
  5638. ]
  5639. ))
  5640. characterMakers.push(() => makeCharacter(
  5641. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5642. {
  5643. front: {
  5644. height: math.unit(6, "feet"),
  5645. weight: math.unit(180, "lbs"),
  5646. name: "Front",
  5647. image: {
  5648. source: "./media/characters/luxor/front.svg",
  5649. extra: 2940 / 2152
  5650. }
  5651. },
  5652. back: {
  5653. height: math.unit(6, "feet"),
  5654. weight: math.unit(180, "lbs"),
  5655. name: "Back",
  5656. image: {
  5657. source: "./media/characters/luxor/back.svg",
  5658. extra: 1083 / 960
  5659. }
  5660. },
  5661. },
  5662. [
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(5 + 5 / 6, "feet"),
  5666. default: true
  5667. },
  5668. {
  5669. name: "Lamp",
  5670. height: math.unit(50, "feet")
  5671. },
  5672. {
  5673. name: "Lämp",
  5674. height: math.unit(300, "feet")
  5675. },
  5676. {
  5677. name: "The sun is a lamp",
  5678. height: math.unit(250000, "miles")
  5679. },
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5684. {
  5685. front: {
  5686. height: math.unit(6, "feet"),
  5687. weight: math.unit(50, "lbs"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/huoyan/front.svg"
  5691. }
  5692. },
  5693. side: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(180, "lbs"),
  5696. name: "Side",
  5697. image: {
  5698. source: "./media/characters/huoyan/side.svg"
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Chef",
  5705. height: math.unit(9, "feet")
  5706. },
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(65, "feet"),
  5710. default: true
  5711. },
  5712. {
  5713. name: "Macro",
  5714. height: math.unit(780, "feet")
  5715. },
  5716. {
  5717. name: "Flaming Mountain",
  5718. height: math.unit(4.8, "miles")
  5719. },
  5720. {
  5721. name: "Celestial",
  5722. height: math.unit(765000, "miles")
  5723. },
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5728. {
  5729. front: {
  5730. height: math.unit(5 + 3 / 4, "feet"),
  5731. weight: math.unit(120, "lbs"),
  5732. name: "Front",
  5733. image: {
  5734. source: "./media/characters/tails/front.svg"
  5735. }
  5736. }
  5737. },
  5738. [
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(5 + 3 / 4, "feet"),
  5742. default: true
  5743. }
  5744. ]
  5745. ))
  5746. characterMakers.push(() => makeCharacter(
  5747. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5748. {
  5749. front: {
  5750. height: math.unit(4, "feet"),
  5751. weight: math.unit(50, "lbs"),
  5752. name: "Front",
  5753. image: {
  5754. source: "./media/characters/rainy/front.svg"
  5755. }
  5756. }
  5757. },
  5758. [
  5759. {
  5760. name: "Macro",
  5761. height: math.unit(800, "feet"),
  5762. default: true
  5763. }
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5768. {
  5769. front: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(150, "lbs"),
  5772. name: "Front",
  5773. image: {
  5774. source: "./media/characters/rainier/front.svg"
  5775. }
  5776. }
  5777. },
  5778. [
  5779. {
  5780. name: "Micro",
  5781. height: math.unit(2, "mm"),
  5782. default: true
  5783. }
  5784. ]
  5785. ))
  5786. characterMakers.push(() => makeCharacter(
  5787. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5788. {
  5789. front: {
  5790. height: math.unit(8 + 4/12, "feet"),
  5791. name: "Front",
  5792. image: {
  5793. source: "./media/characters/andy-renard/front.svg",
  5794. extra: 1839/1726,
  5795. bottom: 134/1973
  5796. }
  5797. },
  5798. back: {
  5799. height: math.unit(8 + 4/12, "feet"),
  5800. name: "Back",
  5801. image: {
  5802. source: "./media/characters/andy-renard/back.svg",
  5803. extra: 1838/1710,
  5804. bottom: 105/1943
  5805. }
  5806. },
  5807. },
  5808. [
  5809. {
  5810. name: "Tall",
  5811. height: math.unit(8 + 4/12, "feet")
  5812. },
  5813. {
  5814. name: "Mini Macro",
  5815. height: math.unit(15, "feet"),
  5816. default: true
  5817. },
  5818. {
  5819. name: "Macro",
  5820. height: math.unit(100, "feet")
  5821. },
  5822. {
  5823. name: "Mega Macro",
  5824. height: math.unit(1000, "feet")
  5825. },
  5826. {
  5827. name: "Giga Macro",
  5828. height: math.unit(10, "miles")
  5829. },
  5830. {
  5831. name: "God Macro",
  5832. height: math.unit(1, "multiverse")
  5833. },
  5834. ]
  5835. ))
  5836. characterMakers.push(() => makeCharacter(
  5837. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5838. {
  5839. front: {
  5840. height: math.unit(6, "feet"),
  5841. weight: math.unit(210, "lbs"),
  5842. name: "Front",
  5843. image: {
  5844. source: "./media/characters/cimmaron/front-sfw.svg",
  5845. extra: 701 / 676,
  5846. bottom: 0.046
  5847. }
  5848. },
  5849. back: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(210, "lbs"),
  5852. name: "Back",
  5853. image: {
  5854. source: "./media/characters/cimmaron/back-sfw.svg",
  5855. extra: 701 / 676,
  5856. bottom: 0.046
  5857. }
  5858. },
  5859. frontNsfw: {
  5860. height: math.unit(6, "feet"),
  5861. weight: math.unit(210, "lbs"),
  5862. name: "Front (NSFW)",
  5863. image: {
  5864. source: "./media/characters/cimmaron/front-nsfw.svg",
  5865. extra: 701 / 676,
  5866. bottom: 0.046
  5867. }
  5868. },
  5869. backNsfw: {
  5870. height: math.unit(6, "feet"),
  5871. weight: math.unit(210, "lbs"),
  5872. name: "Back (NSFW)",
  5873. image: {
  5874. source: "./media/characters/cimmaron/back-nsfw.svg",
  5875. extra: 701 / 676,
  5876. bottom: 0.046
  5877. }
  5878. },
  5879. dick: {
  5880. height: math.unit(1.714, "feet"),
  5881. name: "Dick",
  5882. image: {
  5883. source: "./media/characters/cimmaron/dick.svg"
  5884. }
  5885. },
  5886. },
  5887. [
  5888. {
  5889. name: "Normal",
  5890. height: math.unit(6, "feet"),
  5891. default: true
  5892. },
  5893. {
  5894. name: "Macro Mayor",
  5895. height: math.unit(350, "meters")
  5896. },
  5897. ]
  5898. ))
  5899. characterMakers.push(() => makeCharacter(
  5900. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5901. {
  5902. front: {
  5903. height: math.unit(6, "feet"),
  5904. weight: math.unit(200, "lbs"),
  5905. name: "Front",
  5906. image: {
  5907. source: "./media/characters/akari/front.svg",
  5908. extra: 962 / 901,
  5909. bottom: 0.04
  5910. }
  5911. }
  5912. },
  5913. [
  5914. {
  5915. name: "Micro",
  5916. height: math.unit(5, "inches"),
  5917. default: true
  5918. },
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(7, "feet")
  5922. },
  5923. ]
  5924. ))
  5925. characterMakers.push(() => makeCharacter(
  5926. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5927. {
  5928. front: {
  5929. height: math.unit(6, "feet"),
  5930. weight: math.unit(140, "lbs"),
  5931. name: "Front",
  5932. image: {
  5933. source: "./media/characters/cynosura/front.svg",
  5934. extra: 896 / 847
  5935. }
  5936. },
  5937. back: {
  5938. height: math.unit(6, "feet"),
  5939. weight: math.unit(140, "lbs"),
  5940. name: "Back",
  5941. image: {
  5942. source: "./media/characters/cynosura/back.svg",
  5943. extra: 1365 / 1250
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Micro",
  5950. height: math.unit(4, "inches")
  5951. },
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(5.75, "feet"),
  5955. default: true
  5956. },
  5957. {
  5958. name: "Tall",
  5959. height: math.unit(10, "feet")
  5960. },
  5961. {
  5962. name: "Big",
  5963. height: math.unit(20, "feet")
  5964. },
  5965. {
  5966. name: "Macro",
  5967. height: math.unit(50, "feet")
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(13 + 2/12, "feet"),
  5976. weight: math.unit(800, "kg"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/gin/front.svg",
  5980. extra: 1312/1191,
  5981. bottom: 45/1357
  5982. }
  5983. },
  5984. mouth: {
  5985. height: math.unit(2.39 * 1.8, "feet"),
  5986. name: "Mouth",
  5987. image: {
  5988. source: "./media/characters/gin/mouth.svg"
  5989. }
  5990. },
  5991. hand: {
  5992. height: math.unit(1.57 * 2.19, "feet"),
  5993. name: "Hand",
  5994. image: {
  5995. source: "./media/characters/gin/hand.svg"
  5996. }
  5997. },
  5998. foot: {
  5999. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6000. name: "Foot",
  6001. image: {
  6002. source: "./media/characters/gin/foot.svg"
  6003. }
  6004. },
  6005. sole: {
  6006. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6007. name: "Sole",
  6008. image: {
  6009. source: "./media/characters/gin/sole.svg"
  6010. }
  6011. },
  6012. },
  6013. [
  6014. {
  6015. name: "Very Small",
  6016. height: math.unit(13 + 2 / 12, "feet")
  6017. },
  6018. {
  6019. name: "Micro",
  6020. height: math.unit(600, "miles")
  6021. },
  6022. {
  6023. name: "Regular",
  6024. height: math.unit(20, "earths"),
  6025. default: true
  6026. },
  6027. {
  6028. name: "Macro",
  6029. height: math.unit(2.2, "solarradii")
  6030. },
  6031. {
  6032. name: "Teramacro",
  6033. height: math.unit(1.2, "galaxies")
  6034. },
  6035. {
  6036. name: "Omegamacro",
  6037. height: math.unit(200, "universes")
  6038. },
  6039. ]
  6040. ))
  6041. characterMakers.push(() => makeCharacter(
  6042. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6043. {
  6044. front: {
  6045. height: math.unit(6 + 1 / 6, "feet"),
  6046. weight: math.unit(178, "lbs"),
  6047. name: "Front",
  6048. image: {
  6049. source: "./media/characters/guy/front.svg"
  6050. }
  6051. }
  6052. },
  6053. [
  6054. {
  6055. name: "Normal",
  6056. height: math.unit(6 + 1 / 6, "feet"),
  6057. default: true
  6058. },
  6059. {
  6060. name: "Large",
  6061. height: math.unit(25 + 7 / 12, "feet")
  6062. },
  6063. {
  6064. name: "Macro",
  6065. height: math.unit(60 + 9 / 12, "feet")
  6066. },
  6067. {
  6068. name: "Macro+",
  6069. height: math.unit(246, "feet")
  6070. },
  6071. {
  6072. name: "Macro++",
  6073. height: math.unit(878, "feet")
  6074. }
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6079. {
  6080. front: {
  6081. height: math.unit(9, "feet"),
  6082. weight: math.unit(800, "lbs"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/tiberius/front.svg",
  6086. extra: 2295 / 2071
  6087. }
  6088. },
  6089. back: {
  6090. height: math.unit(9, "feet"),
  6091. weight: math.unit(800, "lbs"),
  6092. name: "Back",
  6093. image: {
  6094. source: "./media/characters/tiberius/back.svg",
  6095. extra: 2373 / 2160
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(9, "feet"),
  6103. default: true
  6104. }
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6109. {
  6110. front: {
  6111. height: math.unit(6, "feet"),
  6112. weight: math.unit(600, "lbs"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/surgo/front.svg",
  6116. extra: 3591 / 2227
  6117. }
  6118. },
  6119. back: {
  6120. height: math.unit(6, "feet"),
  6121. weight: math.unit(600, "lbs"),
  6122. name: "Back",
  6123. image: {
  6124. source: "./media/characters/surgo/back.svg",
  6125. extra: 3557 / 2228
  6126. }
  6127. },
  6128. laying: {
  6129. height: math.unit(6 * 0.85, "feet"),
  6130. weight: math.unit(600, "lbs"),
  6131. name: "Laying",
  6132. image: {
  6133. source: "./media/characters/surgo/laying.svg"
  6134. }
  6135. },
  6136. },
  6137. [
  6138. {
  6139. name: "Normal",
  6140. height: math.unit(6, "feet"),
  6141. default: true
  6142. }
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6147. {
  6148. side: {
  6149. height: math.unit(6, "feet"),
  6150. weight: math.unit(150, "lbs"),
  6151. name: "Side",
  6152. image: {
  6153. source: "./media/characters/cibus/side.svg",
  6154. extra: 800 / 400
  6155. }
  6156. },
  6157. },
  6158. [
  6159. {
  6160. name: "Normal",
  6161. height: math.unit(6, "feet"),
  6162. default: true
  6163. }
  6164. ]
  6165. ))
  6166. characterMakers.push(() => makeCharacter(
  6167. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6168. {
  6169. front: {
  6170. height: math.unit(6, "feet"),
  6171. weight: math.unit(240, "lbs"),
  6172. name: "Front",
  6173. image: {
  6174. source: "./media/characters/nibbles/front.svg"
  6175. }
  6176. },
  6177. side: {
  6178. height: math.unit(6, "feet"),
  6179. weight: math.unit(240, "lbs"),
  6180. name: "Side",
  6181. image: {
  6182. source: "./media/characters/nibbles/side.svg"
  6183. }
  6184. },
  6185. },
  6186. [
  6187. {
  6188. name: "Normal",
  6189. height: math.unit(9, "feet"),
  6190. default: true
  6191. }
  6192. ]
  6193. ))
  6194. characterMakers.push(() => makeCharacter(
  6195. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6196. {
  6197. side: {
  6198. height: math.unit(5 + 1 / 6, "feet"),
  6199. weight: math.unit(130, "lbs"),
  6200. name: "Side",
  6201. image: {
  6202. source: "./media/characters/rikky/side.svg",
  6203. extra: 851 / 801
  6204. }
  6205. },
  6206. },
  6207. [
  6208. {
  6209. name: "Normal",
  6210. height: math.unit(5 + 1 / 6, "feet")
  6211. },
  6212. {
  6213. name: "Macro",
  6214. height: math.unit(152, "feet"),
  6215. default: true
  6216. },
  6217. {
  6218. name: "Megamacro",
  6219. height: math.unit(7, "miles")
  6220. }
  6221. ]
  6222. ))
  6223. characterMakers.push(() => makeCharacter(
  6224. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6225. {
  6226. side: {
  6227. height: math.unit(370, "cm"),
  6228. weight: math.unit(350, "lbs"),
  6229. name: "Side",
  6230. image: {
  6231. source: "./media/characters/malfressa/side.svg"
  6232. }
  6233. },
  6234. walking: {
  6235. height: math.unit(370, "cm"),
  6236. weight: math.unit(350, "lbs"),
  6237. name: "Walking",
  6238. image: {
  6239. source: "./media/characters/malfressa/walking.svg"
  6240. }
  6241. },
  6242. feral: {
  6243. height: math.unit(2500, "cm"),
  6244. weight: math.unit(100000, "lbs"),
  6245. name: "Feral",
  6246. image: {
  6247. source: "./media/characters/malfressa/feral.svg",
  6248. extra: 2108 / 837,
  6249. bottom: 0.02
  6250. }
  6251. },
  6252. },
  6253. [
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(370, "cm")
  6257. },
  6258. {
  6259. name: "Macro",
  6260. height: math.unit(300, "meters"),
  6261. default: true
  6262. }
  6263. ]
  6264. ))
  6265. characterMakers.push(() => makeCharacter(
  6266. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6267. {
  6268. front: {
  6269. height: math.unit(6, "feet"),
  6270. weight: math.unit(60, "kg"),
  6271. name: "Front",
  6272. image: {
  6273. source: "./media/characters/jaro/front.svg"
  6274. }
  6275. },
  6276. back: {
  6277. height: math.unit(6, "feet"),
  6278. weight: math.unit(60, "kg"),
  6279. name: "Back",
  6280. image: {
  6281. source: "./media/characters/jaro/back.svg"
  6282. }
  6283. },
  6284. },
  6285. [
  6286. {
  6287. name: "Micro",
  6288. height: math.unit(7, "inches")
  6289. },
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(5.5, "feet"),
  6293. default: true
  6294. },
  6295. {
  6296. name: "Minimacro",
  6297. height: math.unit(20, "feet")
  6298. },
  6299. {
  6300. name: "Macro",
  6301. height: math.unit(200, "meters")
  6302. }
  6303. ]
  6304. ))
  6305. characterMakers.push(() => makeCharacter(
  6306. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6307. {
  6308. front: {
  6309. height: math.unit(6, "feet"),
  6310. weight: math.unit(195, "lb"),
  6311. name: "Front",
  6312. image: {
  6313. source: "./media/characters/rogue/front.svg"
  6314. }
  6315. },
  6316. },
  6317. [
  6318. {
  6319. name: "Macro",
  6320. height: math.unit(90, "feet"),
  6321. default: true
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(5 + 8 / 12, "feet"),
  6330. weight: math.unit(140, "lb"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/piper/front.svg",
  6334. extra: 3948/3655,
  6335. bottom: 0/3948
  6336. }
  6337. },
  6338. },
  6339. [
  6340. {
  6341. name: "Micro",
  6342. height: math.unit(2, "inches")
  6343. },
  6344. {
  6345. name: "Normal",
  6346. height: math.unit(5 + 8 / 12, "feet")
  6347. },
  6348. {
  6349. name: "Macro",
  6350. height: math.unit(250, "feet"),
  6351. default: true
  6352. },
  6353. {
  6354. name: "Megamacro",
  6355. height: math.unit(7, "miles")
  6356. },
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6361. {
  6362. front: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(220, "lb"),
  6365. name: "Front",
  6366. image: {
  6367. source: "./media/characters/gemini/front.svg"
  6368. }
  6369. },
  6370. back: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(220, "lb"),
  6373. name: "Back",
  6374. image: {
  6375. source: "./media/characters/gemini/back.svg"
  6376. }
  6377. },
  6378. kneeling: {
  6379. height: math.unit(6 / 1.5, "feet"),
  6380. weight: math.unit(220, "lb"),
  6381. name: "Kneeling",
  6382. image: {
  6383. source: "./media/characters/gemini/kneeling.svg",
  6384. bottom: 0.02
  6385. }
  6386. },
  6387. },
  6388. [
  6389. {
  6390. name: "Macro",
  6391. height: math.unit(300, "meters"),
  6392. default: true
  6393. },
  6394. {
  6395. name: "Megamacro",
  6396. height: math.unit(6900, "meters")
  6397. },
  6398. ]
  6399. ))
  6400. characterMakers.push(() => makeCharacter(
  6401. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6402. {
  6403. anthro: {
  6404. height: math.unit(2.35, "meters"),
  6405. weight: math.unit(73, "kg"),
  6406. name: "Anthro",
  6407. image: {
  6408. source: "./media/characters/alicia/anthro.svg",
  6409. extra: 2571 / 2385,
  6410. bottom: 75 / 2648
  6411. }
  6412. },
  6413. paw: {
  6414. height: math.unit(1.32, "feet"),
  6415. name: "Paw",
  6416. image: {
  6417. source: "./media/characters/alicia/paw.svg"
  6418. }
  6419. },
  6420. feral: {
  6421. height: math.unit(1.69, "meters"),
  6422. weight: math.unit(73, "kg"),
  6423. name: "Feral",
  6424. image: {
  6425. source: "./media/characters/alicia/feral.svg",
  6426. extra: 2123 / 1715,
  6427. bottom: 222 / 2349
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(2.35, "meters")
  6435. },
  6436. {
  6437. name: "Macro",
  6438. height: math.unit(60, "meters"),
  6439. default: true
  6440. },
  6441. {
  6442. name: "Megamacro",
  6443. height: math.unit(10000, "kilometers")
  6444. },
  6445. ]
  6446. ))
  6447. characterMakers.push(() => makeCharacter(
  6448. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6449. {
  6450. front: {
  6451. height: math.unit(7, "feet"),
  6452. weight: math.unit(250, "lbs"),
  6453. name: "Front",
  6454. image: {
  6455. source: "./media/characters/archy/front.svg"
  6456. }
  6457. }
  6458. },
  6459. [
  6460. {
  6461. name: "Micro",
  6462. height: math.unit(1, "inch")
  6463. },
  6464. {
  6465. name: "Shorty",
  6466. height: math.unit(5, "feet")
  6467. },
  6468. {
  6469. name: "Normal",
  6470. height: math.unit(7, "feet")
  6471. },
  6472. {
  6473. name: "Macro",
  6474. height: math.unit(600, "meters"),
  6475. default: true
  6476. },
  6477. {
  6478. name: "Megamacro",
  6479. height: math.unit(1, "mile")
  6480. },
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(1.65, "meters"),
  6488. weight: math.unit(74, "kg"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/berri/front.svg",
  6492. extra: 857 / 837,
  6493. bottom: 18 / 877
  6494. }
  6495. },
  6496. bum: {
  6497. height: math.unit(1.46, "feet"),
  6498. name: "Bum",
  6499. image: {
  6500. source: "./media/characters/berri/bum.svg"
  6501. }
  6502. },
  6503. mouth: {
  6504. height: math.unit(0.44, "feet"),
  6505. name: "Mouth",
  6506. image: {
  6507. source: "./media/characters/berri/mouth.svg"
  6508. }
  6509. },
  6510. paw: {
  6511. height: math.unit(0.826, "feet"),
  6512. name: "Paw",
  6513. image: {
  6514. source: "./media/characters/berri/paw.svg"
  6515. }
  6516. },
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(1.65, "meters")
  6522. },
  6523. {
  6524. name: "Macro",
  6525. height: math.unit(60, "m"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Megamacro",
  6530. height: math.unit(9.213, "km")
  6531. },
  6532. {
  6533. name: "Planet Eater",
  6534. height: math.unit(489, "megameters")
  6535. },
  6536. {
  6537. name: "Teramacro",
  6538. height: math.unit(2471635000000, "meters")
  6539. },
  6540. {
  6541. name: "Examacro",
  6542. height: math.unit(8.0624e+26, "meters")
  6543. }
  6544. ]
  6545. ))
  6546. characterMakers.push(() => makeCharacter(
  6547. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6548. {
  6549. front: {
  6550. height: math.unit(1.72, "meters"),
  6551. weight: math.unit(68, "kg"),
  6552. name: "Front",
  6553. image: {
  6554. source: "./media/characters/lexi/front.svg"
  6555. }
  6556. }
  6557. },
  6558. [
  6559. {
  6560. name: "Very Smol",
  6561. height: math.unit(10, "mm")
  6562. },
  6563. {
  6564. name: "Micro",
  6565. height: math.unit(6.8, "cm"),
  6566. default: true
  6567. },
  6568. {
  6569. name: "Normal",
  6570. height: math.unit(1.72, "m")
  6571. }
  6572. ]
  6573. ))
  6574. characterMakers.push(() => makeCharacter(
  6575. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6576. {
  6577. front: {
  6578. height: math.unit(1.69, "meters"),
  6579. weight: math.unit(68, "kg"),
  6580. name: "Front",
  6581. image: {
  6582. source: "./media/characters/martin/front.svg",
  6583. extra: 596 / 581
  6584. }
  6585. }
  6586. },
  6587. [
  6588. {
  6589. name: "Micro",
  6590. height: math.unit(6.85, "cm"),
  6591. default: true
  6592. },
  6593. {
  6594. name: "Normal",
  6595. height: math.unit(1.69, "m")
  6596. }
  6597. ]
  6598. ))
  6599. characterMakers.push(() => makeCharacter(
  6600. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6601. {
  6602. front: {
  6603. height: math.unit(1.69, "meters"),
  6604. weight: math.unit(68, "kg"),
  6605. name: "Front",
  6606. image: {
  6607. source: "./media/characters/juno/front.svg"
  6608. }
  6609. }
  6610. },
  6611. [
  6612. {
  6613. name: "Micro",
  6614. height: math.unit(7, "cm")
  6615. },
  6616. {
  6617. name: "Normal",
  6618. height: math.unit(1.89, "m")
  6619. },
  6620. {
  6621. name: "Macro",
  6622. height: math.unit(353, "meters"),
  6623. default: true
  6624. }
  6625. ]
  6626. ))
  6627. characterMakers.push(() => makeCharacter(
  6628. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6629. {
  6630. front: {
  6631. height: math.unit(1.93, "meters"),
  6632. weight: math.unit(83, "kg"),
  6633. name: "Front",
  6634. image: {
  6635. source: "./media/characters/samantha/front.svg"
  6636. }
  6637. },
  6638. frontClothed: {
  6639. height: math.unit(1.93, "meters"),
  6640. weight: math.unit(83, "kg"),
  6641. name: "Front (Clothed)",
  6642. image: {
  6643. source: "./media/characters/samantha/front-clothed.svg"
  6644. }
  6645. },
  6646. back: {
  6647. height: math.unit(1.93, "meters"),
  6648. weight: math.unit(83, "kg"),
  6649. name: "Back",
  6650. image: {
  6651. source: "./media/characters/samantha/back.svg"
  6652. }
  6653. },
  6654. },
  6655. [
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(1.93, "m")
  6659. },
  6660. {
  6661. name: "Macro",
  6662. height: math.unit(74, "meters"),
  6663. default: true
  6664. },
  6665. {
  6666. name: "Macro+",
  6667. height: math.unit(223, "meters"),
  6668. },
  6669. {
  6670. name: "Megamacro",
  6671. height: math.unit(8381, "meters"),
  6672. },
  6673. {
  6674. name: "Megamacro+",
  6675. height: math.unit(12000, "kilometers")
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(1.92, "meters"),
  6684. weight: math.unit(80, "kg"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/dr-clay/front.svg"
  6688. }
  6689. },
  6690. frontClothed: {
  6691. height: math.unit(1.92, "meters"),
  6692. weight: math.unit(80, "kg"),
  6693. name: "Front (Clothed)",
  6694. image: {
  6695. source: "./media/characters/dr-clay/front-clothed.svg"
  6696. }
  6697. }
  6698. },
  6699. [
  6700. {
  6701. name: "Normal",
  6702. height: math.unit(1.92, "m")
  6703. },
  6704. {
  6705. name: "Macro",
  6706. height: math.unit(214, "meters"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Macro+",
  6711. height: math.unit(12.237, "meters"),
  6712. },
  6713. {
  6714. name: "Megamacro",
  6715. height: math.unit(557, "megameters"),
  6716. },
  6717. {
  6718. name: "Unimaginable",
  6719. height: math.unit(120e9, "lightyears")
  6720. },
  6721. ]
  6722. ))
  6723. characterMakers.push(() => makeCharacter(
  6724. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6725. {
  6726. front: {
  6727. height: math.unit(2, "meters"),
  6728. weight: math.unit(80, "kg"),
  6729. name: "Front",
  6730. image: {
  6731. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6732. }
  6733. }
  6734. },
  6735. [
  6736. {
  6737. name: "Teramacro",
  6738. height: math.unit(500000, "lightyears"),
  6739. default: true
  6740. },
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6745. {
  6746. crux: {
  6747. height: math.unit(2, "meters"),
  6748. weight: math.unit(150, "kg"),
  6749. name: "Crux",
  6750. image: {
  6751. source: "./media/characters/vemus/crux.svg",
  6752. extra: 1074/936,
  6753. bottom: 23/1097
  6754. }
  6755. },
  6756. skunkTanuki: {
  6757. height: math.unit(2, "meters"),
  6758. weight: math.unit(150, "kg"),
  6759. name: "Skunk-Tanuki",
  6760. image: {
  6761. source: "./media/characters/vemus/skunk-tanuki.svg",
  6762. extra: 926/893,
  6763. bottom: 20/946
  6764. }
  6765. },
  6766. },
  6767. [
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(3.75, "meters"),
  6771. default: true
  6772. },
  6773. {
  6774. name: "Big",
  6775. height: math.unit(8, "meters")
  6776. },
  6777. {
  6778. name: "Macro",
  6779. height: math.unit(100, "meters")
  6780. },
  6781. {
  6782. name: "Macro+",
  6783. height: math.unit(1500, "meters")
  6784. },
  6785. {
  6786. name: "Stellar",
  6787. height: math.unit(14e8, "meters")
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(2, "meters"),
  6796. weight: math.unit(70, "kg"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/beherit/front.svg",
  6800. extra: 1408 / 1242
  6801. }
  6802. }
  6803. },
  6804. [
  6805. {
  6806. name: "Normal",
  6807. height: math.unit(6, "feet")
  6808. },
  6809. {
  6810. name: "Lorg",
  6811. height: math.unit(25, "feet"),
  6812. default: true
  6813. },
  6814. {
  6815. name: "Lorger",
  6816. height: math.unit(75, "feet")
  6817. },
  6818. {
  6819. name: "Macro",
  6820. height: math.unit(200, "meters")
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(2, "meters"),
  6829. weight: math.unit(150, "kg"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/everett/front.svg",
  6833. extra: 2038 / 1737,
  6834. bottom: 0.03
  6835. }
  6836. },
  6837. paw: {
  6838. height: math.unit(2 / 3.6, "meters"),
  6839. name: "Paw",
  6840. image: {
  6841. source: "./media/characters/everett/paw.svg"
  6842. }
  6843. },
  6844. },
  6845. [
  6846. {
  6847. name: "Normal",
  6848. height: math.unit(15, "feet"),
  6849. default: true
  6850. },
  6851. {
  6852. name: "Lorg",
  6853. height: math.unit(70, "feet"),
  6854. default: true
  6855. },
  6856. {
  6857. name: "Lorger",
  6858. height: math.unit(250, "feet")
  6859. },
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(500, "meters")
  6863. },
  6864. ]
  6865. ))
  6866. characterMakers.push(() => makeCharacter(
  6867. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6868. {
  6869. front: {
  6870. height: math.unit(2, "meters"),
  6871. weight: math.unit(86, "kg"),
  6872. name: "Front",
  6873. image: {
  6874. source: "./media/characters/rose/front.svg",
  6875. extra: 1785/1636,
  6876. bottom: 30/1815
  6877. }
  6878. },
  6879. frontSporty: {
  6880. height: math.unit(2, "meters"),
  6881. weight: math.unit(86, "kg"),
  6882. name: "Front (Sporty)",
  6883. image: {
  6884. source: "./media/characters/rose/front-sporty.svg",
  6885. extra: 350/335,
  6886. bottom: 10/360
  6887. }
  6888. },
  6889. frontAlt: {
  6890. height: math.unit(1.6, "meters"),
  6891. weight: math.unit(86, "kg"),
  6892. name: "Front (Alt)",
  6893. image: {
  6894. source: "./media/characters/rose/front-alt.svg",
  6895. extra: 299/283,
  6896. bottom: 3/302
  6897. }
  6898. },
  6899. plush: {
  6900. height: math.unit(2, "meters"),
  6901. weight: math.unit(86/3, "kg"),
  6902. name: "Plush",
  6903. image: {
  6904. source: "./media/characters/rose/plush.svg",
  6905. extra: 361/337,
  6906. bottom: 11/372
  6907. }
  6908. },
  6909. },
  6910. [
  6911. {
  6912. name: "True Micro",
  6913. height: math.unit(9, "cm")
  6914. },
  6915. {
  6916. name: "Micro",
  6917. height: math.unit(16, "cm")
  6918. },
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(1.85, "meters"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Mini-Macro",
  6926. height: math.unit(5, "meters")
  6927. },
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(15, "meters")
  6931. },
  6932. {
  6933. name: "True Macro",
  6934. height: math.unit(40, "meters")
  6935. },
  6936. {
  6937. name: "City Scale",
  6938. height: math.unit(1, "km")
  6939. },
  6940. ]
  6941. ))
  6942. characterMakers.push(() => makeCharacter(
  6943. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6944. {
  6945. front: {
  6946. height: math.unit(2, "meters"),
  6947. weight: math.unit(350, "lbs"),
  6948. name: "Front",
  6949. image: {
  6950. source: "./media/characters/regal/front.svg"
  6951. }
  6952. },
  6953. back: {
  6954. height: math.unit(2, "meters"),
  6955. weight: math.unit(350, "lbs"),
  6956. name: "Back",
  6957. image: {
  6958. source: "./media/characters/regal/back.svg"
  6959. }
  6960. },
  6961. },
  6962. [
  6963. {
  6964. name: "Macro",
  6965. height: math.unit(350, "feet"),
  6966. default: true
  6967. }
  6968. ]
  6969. ))
  6970. characterMakers.push(() => makeCharacter(
  6971. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6972. {
  6973. front: {
  6974. height: math.unit(4 + 11 / 12, "feet"),
  6975. weight: math.unit(100, "lbs"),
  6976. name: "Front",
  6977. image: {
  6978. source: "./media/characters/opal/front.svg"
  6979. }
  6980. },
  6981. frontAlt: {
  6982. height: math.unit(4 + 11 / 12, "feet"),
  6983. weight: math.unit(100, "lbs"),
  6984. name: "Front (Alt)",
  6985. image: {
  6986. source: "./media/characters/opal/front-alt.svg"
  6987. }
  6988. },
  6989. },
  6990. [
  6991. {
  6992. name: "Small",
  6993. height: math.unit(4 + 11 / 12, "feet")
  6994. },
  6995. {
  6996. name: "Normal",
  6997. height: math.unit(20, "feet"),
  6998. default: true
  6999. },
  7000. {
  7001. name: "Macro",
  7002. height: math.unit(120, "feet")
  7003. },
  7004. {
  7005. name: "Megamacro",
  7006. height: math.unit(80, "miles")
  7007. },
  7008. {
  7009. name: "True Size",
  7010. height: math.unit(100000, "lightyears")
  7011. },
  7012. ]
  7013. ))
  7014. characterMakers.push(() => makeCharacter(
  7015. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7016. {
  7017. front: {
  7018. height: math.unit(6, "feet"),
  7019. weight: math.unit(200, "lbs"),
  7020. name: "Front",
  7021. image: {
  7022. source: "./media/characters/vector-wuff/front.svg"
  7023. }
  7024. }
  7025. },
  7026. [
  7027. {
  7028. name: "Normal",
  7029. height: math.unit(2.8, "meters")
  7030. },
  7031. {
  7032. name: "Macro",
  7033. height: math.unit(450, "meters"),
  7034. default: true
  7035. },
  7036. {
  7037. name: "Megamacro",
  7038. height: math.unit(15, "kilometers")
  7039. }
  7040. ]
  7041. ))
  7042. characterMakers.push(() => makeCharacter(
  7043. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7044. {
  7045. front: {
  7046. height: math.unit(6, "feet"),
  7047. weight: math.unit(256, "lbs"),
  7048. name: "Front",
  7049. image: {
  7050. source: "./media/characters/dannik/front.svg"
  7051. }
  7052. }
  7053. },
  7054. [
  7055. {
  7056. name: "Macro",
  7057. height: math.unit(69.57, "meters"),
  7058. default: true
  7059. },
  7060. ]
  7061. ))
  7062. characterMakers.push(() => makeCharacter(
  7063. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7064. {
  7065. front: {
  7066. height: math.unit(6, "feet"),
  7067. weight: math.unit(120, "lbs"),
  7068. name: "Front",
  7069. image: {
  7070. source: "./media/characters/azura-saharah/front.svg"
  7071. }
  7072. },
  7073. back: {
  7074. height: math.unit(6, "feet"),
  7075. weight: math.unit(120, "lbs"),
  7076. name: "Back",
  7077. image: {
  7078. source: "./media/characters/azura-saharah/back.svg"
  7079. }
  7080. },
  7081. },
  7082. [
  7083. {
  7084. name: "Macro",
  7085. height: math.unit(100, "feet"),
  7086. default: true
  7087. },
  7088. ]
  7089. ))
  7090. characterMakers.push(() => makeCharacter(
  7091. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7092. {
  7093. side: {
  7094. height: math.unit(5 + 4 / 12, "feet"),
  7095. weight: math.unit(163, "lbs"),
  7096. name: "Side",
  7097. image: {
  7098. source: "./media/characters/kennedy/side.svg"
  7099. }
  7100. }
  7101. },
  7102. [
  7103. {
  7104. name: "Standard Doggo",
  7105. height: math.unit(5 + 4 / 12, "feet")
  7106. },
  7107. {
  7108. name: "Big Doggo",
  7109. height: math.unit(25 + 3 / 12, "feet"),
  7110. default: true
  7111. },
  7112. ]
  7113. ))
  7114. characterMakers.push(() => makeCharacter(
  7115. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7116. {
  7117. front: {
  7118. height: math.unit(5 + 5/12, "feet"),
  7119. weight: math.unit(100, "lbs"),
  7120. name: "Front",
  7121. image: {
  7122. source: "./media/characters/odios-de-lunar/front.svg",
  7123. extra: 1468/1323,
  7124. bottom: 22/1490
  7125. }
  7126. }
  7127. },
  7128. [
  7129. {
  7130. name: "Micro",
  7131. height: math.unit(3, "inches")
  7132. },
  7133. {
  7134. name: "Normal",
  7135. height: math.unit(5.5, "feet"),
  7136. default: true
  7137. },
  7138. {
  7139. name: "Macro",
  7140. height: math.unit(100, "feet")
  7141. },
  7142. ]
  7143. ))
  7144. characterMakers.push(() => makeCharacter(
  7145. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7146. {
  7147. back: {
  7148. height: math.unit(6, "feet"),
  7149. weight: math.unit(220, "lbs"),
  7150. name: "Back",
  7151. image: {
  7152. source: "./media/characters/mandake/back.svg"
  7153. }
  7154. }
  7155. },
  7156. [
  7157. {
  7158. name: "Normal",
  7159. height: math.unit(7, "feet"),
  7160. default: true
  7161. },
  7162. {
  7163. name: "Macro",
  7164. height: math.unit(78, "feet")
  7165. },
  7166. {
  7167. name: "Macro+",
  7168. height: math.unit(300, "meters")
  7169. },
  7170. {
  7171. name: "Macro++",
  7172. height: math.unit(2400, "feet")
  7173. },
  7174. {
  7175. name: "Megamacro",
  7176. height: math.unit(5167, "meters")
  7177. },
  7178. {
  7179. name: "Gigamacro",
  7180. height: math.unit(41769, "miles")
  7181. },
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7186. {
  7187. front: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(120, "lbs"),
  7190. name: "Front",
  7191. image: {
  7192. source: "./media/characters/yozey/front.svg"
  7193. }
  7194. },
  7195. frontAlt: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(120, "lbs"),
  7198. name: "Front (Alt)",
  7199. image: {
  7200. source: "./media/characters/yozey/front-alt.svg"
  7201. }
  7202. },
  7203. side: {
  7204. height: math.unit(6, "feet"),
  7205. weight: math.unit(120, "lbs"),
  7206. name: "Side",
  7207. image: {
  7208. source: "./media/characters/yozey/side.svg"
  7209. }
  7210. },
  7211. },
  7212. [
  7213. {
  7214. name: "Micro",
  7215. height: math.unit(3, "inches"),
  7216. default: true
  7217. },
  7218. {
  7219. name: "Normal",
  7220. height: math.unit(6, "feet")
  7221. }
  7222. ]
  7223. ))
  7224. characterMakers.push(() => makeCharacter(
  7225. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7226. {
  7227. front: {
  7228. height: math.unit(6, "feet"),
  7229. weight: math.unit(103, "lbs"),
  7230. name: "Front",
  7231. image: {
  7232. source: "./media/characters/valeska-voss/front.svg"
  7233. }
  7234. }
  7235. },
  7236. [
  7237. {
  7238. name: "Mini-Sized Sub",
  7239. height: math.unit(3.1, "inches")
  7240. },
  7241. {
  7242. name: "Mid-Sized Sub",
  7243. height: math.unit(6.2, "inches")
  7244. },
  7245. {
  7246. name: "Full-Sized Sub",
  7247. height: math.unit(9.3, "inches")
  7248. },
  7249. {
  7250. name: "Normal",
  7251. height: math.unit(5 + 2 / 12, "foot"),
  7252. default: true
  7253. },
  7254. ]
  7255. ))
  7256. characterMakers.push(() => makeCharacter(
  7257. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7258. {
  7259. front: {
  7260. height: math.unit(6, "feet"),
  7261. weight: math.unit(160, "lbs"),
  7262. name: "Front",
  7263. image: {
  7264. source: "./media/characters/gene-zeta/front.svg",
  7265. extra: 3006 / 2826,
  7266. bottom: 182 / 3188
  7267. }
  7268. }
  7269. },
  7270. [
  7271. {
  7272. name: "Micro",
  7273. height: math.unit(6, "inches")
  7274. },
  7275. {
  7276. name: "Normal",
  7277. height: math.unit(5 + 11 / 12, "foot"),
  7278. default: true
  7279. },
  7280. {
  7281. name: "Macro",
  7282. height: math.unit(140, "feet")
  7283. },
  7284. {
  7285. name: "Supercharged",
  7286. height: math.unit(2500, "feet")
  7287. },
  7288. ]
  7289. ))
  7290. characterMakers.push(() => makeCharacter(
  7291. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7292. {
  7293. front: {
  7294. height: math.unit(6, "feet"),
  7295. weight: math.unit(350, "lbs"),
  7296. name: "Front",
  7297. image: {
  7298. source: "./media/characters/razinox/front.svg",
  7299. extra: 1686 / 1548,
  7300. bottom: 28.2 / 1868
  7301. }
  7302. },
  7303. back: {
  7304. height: math.unit(6, "feet"),
  7305. weight: math.unit(350, "lbs"),
  7306. name: "Back",
  7307. image: {
  7308. source: "./media/characters/razinox/back.svg",
  7309. extra: 1660 / 1590,
  7310. bottom: 15 / 1665
  7311. }
  7312. },
  7313. },
  7314. [
  7315. {
  7316. name: "Normal",
  7317. height: math.unit(10 + 8 / 12, "foot")
  7318. },
  7319. {
  7320. name: "Minimacro",
  7321. height: math.unit(15, "foot")
  7322. },
  7323. {
  7324. name: "Macro",
  7325. height: math.unit(60, "foot"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Megamacro",
  7330. height: math.unit(5, "miles")
  7331. },
  7332. {
  7333. name: "Gigamacro",
  7334. height: math.unit(6000, "miles")
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(6, "feet"),
  7343. weight: math.unit(150, "lbs"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/cobalt/front.svg"
  7347. }
  7348. }
  7349. },
  7350. [
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(8 + 1 / 12, "foot")
  7354. },
  7355. {
  7356. name: "Macro",
  7357. height: math.unit(111, "foot"),
  7358. default: true
  7359. },
  7360. {
  7361. name: "Supracosmic",
  7362. height: math.unit(1e42, "feet")
  7363. },
  7364. ]
  7365. ))
  7366. characterMakers.push(() => makeCharacter(
  7367. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7368. {
  7369. front: {
  7370. height: math.unit(6, "feet"),
  7371. weight: math.unit(140, "lbs"),
  7372. name: "Front",
  7373. image: {
  7374. source: "./media/characters/amanda/front.svg"
  7375. }
  7376. }
  7377. },
  7378. [
  7379. {
  7380. name: "Micro",
  7381. height: math.unit(5, "inches"),
  7382. default: true
  7383. },
  7384. ]
  7385. ))
  7386. characterMakers.push(() => makeCharacter(
  7387. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7388. {
  7389. front: {
  7390. height: math.unit(2.75, "meters"),
  7391. weight: math.unit(1200, "lb"),
  7392. name: "Front",
  7393. image: {
  7394. source: "./media/characters/teal/front.svg",
  7395. extra: 2463 / 2320,
  7396. bottom: 166 / 2629
  7397. }
  7398. },
  7399. back: {
  7400. height: math.unit(2.75, "meters"),
  7401. weight: math.unit(1200, "lb"),
  7402. name: "Back",
  7403. image: {
  7404. source: "./media/characters/teal/back.svg",
  7405. extra: 2580 / 2489,
  7406. bottom: 151 / 2731
  7407. }
  7408. },
  7409. sitting: {
  7410. height: math.unit(1.9, "meters"),
  7411. weight: math.unit(1200, "lb"),
  7412. name: "Sitting",
  7413. image: {
  7414. source: "./media/characters/teal/sitting.svg",
  7415. extra: 623 / 590,
  7416. bottom: 121 / 744
  7417. }
  7418. },
  7419. standing: {
  7420. height: math.unit(2.75, "meters"),
  7421. weight: math.unit(1200, "lb"),
  7422. name: "Standing",
  7423. image: {
  7424. source: "./media/characters/teal/standing.svg",
  7425. extra: 923 / 893,
  7426. bottom: 60 / 983
  7427. }
  7428. },
  7429. stretching: {
  7430. height: math.unit(3.65, "meters"),
  7431. weight: math.unit(1200, "lb"),
  7432. name: "Stretching",
  7433. image: {
  7434. source: "./media/characters/teal/stretching.svg",
  7435. extra: 1276 / 1244,
  7436. bottom: 0 / 1276
  7437. }
  7438. },
  7439. legged: {
  7440. height: math.unit(1.3, "meters"),
  7441. weight: math.unit(100, "lb"),
  7442. name: "Legged",
  7443. image: {
  7444. source: "./media/characters/teal/legged.svg",
  7445. extra: 462 / 437,
  7446. bottom: 24 / 486
  7447. }
  7448. },
  7449. naga: {
  7450. height: math.unit(5.4, "meters"),
  7451. weight: math.unit(4000, "lb"),
  7452. name: "Naga",
  7453. image: {
  7454. source: "./media/characters/teal/naga.svg",
  7455. extra: 1902 / 1858,
  7456. bottom: 0 / 1902
  7457. }
  7458. },
  7459. hand: {
  7460. height: math.unit(0.52, "meters"),
  7461. name: "Hand",
  7462. image: {
  7463. source: "./media/characters/teal/hand.svg"
  7464. }
  7465. },
  7466. maw: {
  7467. height: math.unit(0.43, "meters"),
  7468. name: "Maw",
  7469. image: {
  7470. source: "./media/characters/teal/maw.svg"
  7471. }
  7472. },
  7473. slit: {
  7474. height: math.unit(0.25, "meters"),
  7475. name: "Slit",
  7476. image: {
  7477. source: "./media/characters/teal/slit.svg"
  7478. }
  7479. },
  7480. },
  7481. [
  7482. {
  7483. name: "Normal",
  7484. height: math.unit(2.75, "meters"),
  7485. default: true
  7486. },
  7487. {
  7488. name: "Macro",
  7489. height: math.unit(300, "feet")
  7490. },
  7491. {
  7492. name: "Macro+",
  7493. height: math.unit(2000, "feet")
  7494. },
  7495. ]
  7496. ))
  7497. characterMakers.push(() => makeCharacter(
  7498. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7499. {
  7500. frontCat: {
  7501. height: math.unit(6, "feet"),
  7502. weight: math.unit(180, "lbs"),
  7503. name: "Front (Cat)",
  7504. image: {
  7505. source: "./media/characters/ravin-amulet/front-cat.svg"
  7506. }
  7507. },
  7508. frontCatAlt: {
  7509. height: math.unit(6, "feet"),
  7510. weight: math.unit(180, "lbs"),
  7511. name: "Front (Alt, Cat)",
  7512. image: {
  7513. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7514. }
  7515. },
  7516. frontWerewolf: {
  7517. height: math.unit(6 * 1.2, "feet"),
  7518. weight: math.unit(225, "lbs"),
  7519. name: "Front (Werewolf)",
  7520. image: {
  7521. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7522. }
  7523. },
  7524. backWerewolf: {
  7525. height: math.unit(6 * 1.2, "feet"),
  7526. weight: math.unit(225, "lbs"),
  7527. name: "Back (Werewolf)",
  7528. image: {
  7529. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7530. }
  7531. },
  7532. },
  7533. [
  7534. {
  7535. name: "Nano",
  7536. height: math.unit(1, "micrometer")
  7537. },
  7538. {
  7539. name: "Micro",
  7540. height: math.unit(1, "inch")
  7541. },
  7542. {
  7543. name: "Normal",
  7544. height: math.unit(6, "feet"),
  7545. default: true
  7546. },
  7547. {
  7548. name: "Macro",
  7549. height: math.unit(60, "feet")
  7550. }
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7555. {
  7556. front: {
  7557. height: math.unit(6, "feet"),
  7558. weight: math.unit(165, "lbs"),
  7559. name: "Front",
  7560. image: {
  7561. source: "./media/characters/fluoresce/front.svg"
  7562. }
  7563. }
  7564. },
  7565. [
  7566. {
  7567. name: "Micro",
  7568. height: math.unit(6, "cm")
  7569. },
  7570. {
  7571. name: "Normal",
  7572. height: math.unit(5 + 7 / 12, "feet"),
  7573. default: true
  7574. },
  7575. {
  7576. name: "Macro",
  7577. height: math.unit(56, "feet")
  7578. },
  7579. {
  7580. name: "Megamacro",
  7581. height: math.unit(1.9, "miles")
  7582. },
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(9 + 6 / 12, "feet"),
  7590. weight: math.unit(523, "lbs"),
  7591. name: "Side",
  7592. image: {
  7593. source: "./media/characters/aurora/side.svg"
  7594. }
  7595. }
  7596. },
  7597. [
  7598. {
  7599. name: "Normal",
  7600. height: math.unit(9 + 6 / 12, "feet")
  7601. },
  7602. {
  7603. name: "Macro",
  7604. height: math.unit(96, "feet"),
  7605. default: true
  7606. },
  7607. {
  7608. name: "Macro+",
  7609. height: math.unit(243, "feet")
  7610. },
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7615. {
  7616. front: {
  7617. height: math.unit(194, "cm"),
  7618. weight: math.unit(90, "kg"),
  7619. name: "Front",
  7620. image: {
  7621. source: "./media/characters/ranek/front.svg"
  7622. }
  7623. },
  7624. side: {
  7625. height: math.unit(194, "cm"),
  7626. weight: math.unit(90, "kg"),
  7627. name: "Side",
  7628. image: {
  7629. source: "./media/characters/ranek/side.svg"
  7630. }
  7631. },
  7632. back: {
  7633. height: math.unit(194, "cm"),
  7634. weight: math.unit(90, "kg"),
  7635. name: "Back",
  7636. image: {
  7637. source: "./media/characters/ranek/back.svg"
  7638. }
  7639. },
  7640. feral: {
  7641. height: math.unit(30, "cm"),
  7642. weight: math.unit(1.6, "lbs"),
  7643. name: "Feral",
  7644. image: {
  7645. source: "./media/characters/ranek/feral.svg"
  7646. }
  7647. },
  7648. },
  7649. [
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(194, "cm"),
  7653. default: true
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(100, "meters")
  7658. },
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7663. {
  7664. front: {
  7665. height: math.unit(5 + 6 / 12, "feet"),
  7666. weight: math.unit(153, "lbs"),
  7667. name: "Front",
  7668. image: {
  7669. source: "./media/characters/andrew-cooper/front.svg"
  7670. }
  7671. },
  7672. },
  7673. [
  7674. {
  7675. name: "Nano",
  7676. height: math.unit(1, "mm")
  7677. },
  7678. {
  7679. name: "Micro",
  7680. height: math.unit(2, "inches")
  7681. },
  7682. {
  7683. name: "Normal",
  7684. height: math.unit(5 + 6 / 12, "feet"),
  7685. default: true
  7686. }
  7687. ]
  7688. ))
  7689. characterMakers.push(() => makeCharacter(
  7690. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7691. {
  7692. front: {
  7693. height: math.unit(6, "feet"),
  7694. weight: math.unit(180, "lbs"),
  7695. name: "Front",
  7696. image: {
  7697. source: "./media/characters/akane-sato/front.svg",
  7698. extra: 1219 / 1140
  7699. }
  7700. },
  7701. back: {
  7702. height: math.unit(6, "feet"),
  7703. weight: math.unit(180, "lbs"),
  7704. name: "Back",
  7705. image: {
  7706. source: "./media/characters/akane-sato/back.svg",
  7707. extra: 1219 / 1170
  7708. }
  7709. },
  7710. },
  7711. [
  7712. {
  7713. name: "Normal",
  7714. height: math.unit(2.5, "meters")
  7715. },
  7716. {
  7717. name: "Macro",
  7718. height: math.unit(250, "meters"),
  7719. default: true
  7720. },
  7721. {
  7722. name: "Megamacro",
  7723. height: math.unit(25, "km")
  7724. },
  7725. ]
  7726. ))
  7727. characterMakers.push(() => makeCharacter(
  7728. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7729. {
  7730. front: {
  7731. height: math.unit(6, "feet"),
  7732. weight: math.unit(65, "kg"),
  7733. name: "Front",
  7734. image: {
  7735. source: "./media/characters/rook/front.svg",
  7736. extra: 960 / 950
  7737. }
  7738. }
  7739. },
  7740. [
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(8.8, "feet")
  7744. },
  7745. {
  7746. name: "Macro",
  7747. height: math.unit(88, "feet"),
  7748. default: true
  7749. },
  7750. {
  7751. name: "Megamacro",
  7752. height: math.unit(8, "miles")
  7753. },
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(12 + 2 / 12, "feet"),
  7761. weight: math.unit(808, "lbs"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/prodigy/front.svg"
  7765. }
  7766. }
  7767. },
  7768. [
  7769. {
  7770. name: "Normal",
  7771. height: math.unit(12 + 2 / 12, "feet"),
  7772. default: true
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(143, "feet")
  7777. },
  7778. {
  7779. name: "Macro+",
  7780. height: math.unit(400, "feet")
  7781. },
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7786. {
  7787. front: {
  7788. height: math.unit(6, "feet"),
  7789. weight: math.unit(225, "lbs"),
  7790. name: "Front",
  7791. image: {
  7792. source: "./media/characters/daniel/front.svg"
  7793. }
  7794. },
  7795. leaning: {
  7796. height: math.unit(6, "feet"),
  7797. weight: math.unit(225, "lbs"),
  7798. name: "Leaning",
  7799. image: {
  7800. source: "./media/characters/daniel/leaning.svg"
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(1000, "feet"),
  7808. default: true
  7809. },
  7810. ]
  7811. ))
  7812. characterMakers.push(() => makeCharacter(
  7813. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7814. {
  7815. front: {
  7816. height: math.unit(6, "feet"),
  7817. weight: math.unit(88, "lbs"),
  7818. name: "Front",
  7819. image: {
  7820. source: "./media/characters/chiros/front.svg",
  7821. extra: 306 / 226
  7822. }
  7823. },
  7824. side: {
  7825. height: math.unit(6, "feet"),
  7826. weight: math.unit(88, "lbs"),
  7827. name: "Side",
  7828. image: {
  7829. source: "./media/characters/chiros/side.svg",
  7830. extra: 306 / 226
  7831. }
  7832. },
  7833. },
  7834. [
  7835. {
  7836. name: "Normal",
  7837. height: math.unit(6, "cm"),
  7838. default: true
  7839. },
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7844. {
  7845. front: {
  7846. height: math.unit(6, "feet"),
  7847. weight: math.unit(100, "lbs"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/selka/front.svg",
  7851. extra: 947 / 887
  7852. }
  7853. }
  7854. },
  7855. [
  7856. {
  7857. name: "Normal",
  7858. height: math.unit(5, "cm"),
  7859. default: true
  7860. },
  7861. ]
  7862. ))
  7863. characterMakers.push(() => makeCharacter(
  7864. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7865. {
  7866. front: {
  7867. height: math.unit(8 + 3 / 12, "feet"),
  7868. weight: math.unit(424, "lbs"),
  7869. name: "Front",
  7870. image: {
  7871. source: "./media/characters/verin/front.svg",
  7872. extra: 1845 / 1550
  7873. }
  7874. },
  7875. frontArmored: {
  7876. height: math.unit(8 + 3 / 12, "feet"),
  7877. weight: math.unit(424, "lbs"),
  7878. name: "Front (Armored)",
  7879. image: {
  7880. source: "./media/characters/verin/front-armor.svg",
  7881. extra: 1845 / 1550,
  7882. bottom: 0.01
  7883. }
  7884. },
  7885. back: {
  7886. height: math.unit(8 + 3 / 12, "feet"),
  7887. weight: math.unit(424, "lbs"),
  7888. name: "Back",
  7889. image: {
  7890. source: "./media/characters/verin/back.svg",
  7891. bottom: 0.1,
  7892. extra: 1
  7893. }
  7894. },
  7895. foot: {
  7896. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7897. name: "Foot",
  7898. image: {
  7899. source: "./media/characters/verin/foot.svg"
  7900. }
  7901. },
  7902. },
  7903. [
  7904. {
  7905. name: "Normal",
  7906. height: math.unit(8 + 3 / 12, "feet")
  7907. },
  7908. {
  7909. name: "Minimacro",
  7910. height: math.unit(21, "feet"),
  7911. default: true
  7912. },
  7913. {
  7914. name: "Macro",
  7915. height: math.unit(626, "feet")
  7916. },
  7917. ]
  7918. ))
  7919. characterMakers.push(() => makeCharacter(
  7920. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7921. {
  7922. front: {
  7923. height: math.unit(2.718, "meters"),
  7924. weight: math.unit(150, "lbs"),
  7925. name: "Front",
  7926. image: {
  7927. source: "./media/characters/sovrim-terraquian/front.svg"
  7928. }
  7929. },
  7930. back: {
  7931. height: math.unit(2.718, "meters"),
  7932. weight: math.unit(150, "lbs"),
  7933. name: "Back",
  7934. image: {
  7935. source: "./media/characters/sovrim-terraquian/back.svg"
  7936. }
  7937. }
  7938. },
  7939. [
  7940. {
  7941. name: "Micro",
  7942. height: math.unit(2, "inches")
  7943. },
  7944. {
  7945. name: "Small",
  7946. height: math.unit(1, "meter")
  7947. },
  7948. {
  7949. name: "Normal",
  7950. height: math.unit(Math.E, "meters"),
  7951. default: true
  7952. },
  7953. {
  7954. name: "Macro",
  7955. height: math.unit(20, "meters")
  7956. },
  7957. {
  7958. name: "Macro+",
  7959. height: math.unit(400, "meters")
  7960. },
  7961. ]
  7962. ))
  7963. characterMakers.push(() => makeCharacter(
  7964. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7965. {
  7966. front: {
  7967. height: math.unit(7, "feet"),
  7968. weight: math.unit(489, "lbs"),
  7969. name: "Front",
  7970. image: {
  7971. source: "./media/characters/reece-silvermane/front.svg",
  7972. bottom: 0.02,
  7973. extra: 1
  7974. }
  7975. },
  7976. },
  7977. [
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(1.5, "miles"),
  7981. default: true
  7982. },
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7987. {
  7988. front: {
  7989. height: math.unit(6, "feet"),
  7990. weight: math.unit(78, "kg"),
  7991. name: "Front",
  7992. image: {
  7993. source: "./media/characters/kane/front.svg",
  7994. extra: 978 / 899
  7995. }
  7996. },
  7997. },
  7998. [
  7999. {
  8000. name: "Normal",
  8001. height: math.unit(2.1, "m"),
  8002. },
  8003. {
  8004. name: "Macro",
  8005. height: math.unit(1, "km"),
  8006. default: true
  8007. },
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8012. {
  8013. front: {
  8014. height: math.unit(6, "feet"),
  8015. weight: math.unit(200, "kg"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/tegon/front.svg",
  8019. bottom: 0.01,
  8020. extra: 1
  8021. }
  8022. },
  8023. },
  8024. [
  8025. {
  8026. name: "Micro",
  8027. height: math.unit(1, "inch")
  8028. },
  8029. {
  8030. name: "Normal",
  8031. height: math.unit(6 + 3 / 12, "feet"),
  8032. default: true
  8033. },
  8034. {
  8035. name: "Macro",
  8036. height: math.unit(300, "feet")
  8037. },
  8038. {
  8039. name: "Megamacro",
  8040. height: math.unit(69, "miles")
  8041. },
  8042. ]
  8043. ))
  8044. characterMakers.push(() => makeCharacter(
  8045. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8046. {
  8047. side: {
  8048. height: math.unit(6, "feet"),
  8049. weight: math.unit(2304, "lbs"),
  8050. name: "Side",
  8051. image: {
  8052. source: "./media/characters/arcturax/side.svg",
  8053. extra: 790 / 376,
  8054. bottom: 0.01
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Micro",
  8061. height: math.unit(2, "inch")
  8062. },
  8063. {
  8064. name: "Normal",
  8065. height: math.unit(6, "feet")
  8066. },
  8067. {
  8068. name: "Macro",
  8069. height: math.unit(39, "feet"),
  8070. default: true
  8071. },
  8072. {
  8073. name: "Megamacro",
  8074. height: math.unit(7, "miles")
  8075. },
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(6, "feet"),
  8083. weight: math.unit(50, "lbs"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/sentri/front.svg",
  8087. extra: 1750 / 1570,
  8088. bottom: 0.025
  8089. }
  8090. },
  8091. frontAlt: {
  8092. height: math.unit(6, "feet"),
  8093. weight: math.unit(50, "lbs"),
  8094. name: "Front (Alt)",
  8095. image: {
  8096. source: "./media/characters/sentri/front-alt.svg",
  8097. extra: 1750 / 1570,
  8098. bottom: 0.025
  8099. }
  8100. },
  8101. },
  8102. [
  8103. {
  8104. name: "Normal",
  8105. height: math.unit(15, "feet"),
  8106. default: true
  8107. },
  8108. {
  8109. name: "Macro",
  8110. height: math.unit(2500, "feet")
  8111. }
  8112. ]
  8113. ))
  8114. characterMakers.push(() => makeCharacter(
  8115. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8116. {
  8117. front: {
  8118. height: math.unit(5 + 8 / 12, "feet"),
  8119. weight: math.unit(130, "lbs"),
  8120. name: "Front",
  8121. image: {
  8122. source: "./media/characters/corvin/front.svg",
  8123. extra: 1803 / 1629
  8124. }
  8125. },
  8126. frontShirt: {
  8127. height: math.unit(5 + 8 / 12, "feet"),
  8128. weight: math.unit(130, "lbs"),
  8129. name: "Front (Shirt)",
  8130. image: {
  8131. source: "./media/characters/corvin/front-shirt.svg",
  8132. extra: 1803 / 1629
  8133. }
  8134. },
  8135. frontPoncho: {
  8136. height: math.unit(5 + 8 / 12, "feet"),
  8137. weight: math.unit(130, "lbs"),
  8138. name: "Front (Poncho)",
  8139. image: {
  8140. source: "./media/characters/corvin/front-poncho.svg",
  8141. extra: 1803 / 1629
  8142. }
  8143. },
  8144. side: {
  8145. height: math.unit(5 + 8 / 12, "feet"),
  8146. weight: math.unit(130, "lbs"),
  8147. name: "Side",
  8148. image: {
  8149. source: "./media/characters/corvin/side.svg",
  8150. extra: 1012 / 945
  8151. }
  8152. },
  8153. back: {
  8154. height: math.unit(5 + 8 / 12, "feet"),
  8155. weight: math.unit(130, "lbs"),
  8156. name: "Back",
  8157. image: {
  8158. source: "./media/characters/corvin/back.svg",
  8159. extra: 1803 / 1629
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Micro",
  8166. height: math.unit(3, "inches")
  8167. },
  8168. {
  8169. name: "Normal",
  8170. height: math.unit(5 + 8 / 12, "feet")
  8171. },
  8172. {
  8173. name: "Macro",
  8174. height: math.unit(300, "feet"),
  8175. default: true
  8176. },
  8177. {
  8178. name: "Megamacro",
  8179. height: math.unit(500, "miles")
  8180. }
  8181. ]
  8182. ))
  8183. characterMakers.push(() => makeCharacter(
  8184. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8185. {
  8186. front: {
  8187. height: math.unit(6, "feet"),
  8188. weight: math.unit(135, "lbs"),
  8189. name: "Front",
  8190. image: {
  8191. source: "./media/characters/q/front.svg",
  8192. extra: 854 / 752,
  8193. bottom: 0.005
  8194. }
  8195. },
  8196. back: {
  8197. height: math.unit(6, "feet"),
  8198. weight: math.unit(130, "lbs"),
  8199. name: "Back",
  8200. image: {
  8201. source: "./media/characters/q/back.svg",
  8202. extra: 854 / 752
  8203. }
  8204. },
  8205. },
  8206. [
  8207. {
  8208. name: "Macro",
  8209. height: math.unit(90, "feet"),
  8210. default: true
  8211. },
  8212. {
  8213. name: "Extra Macro",
  8214. height: math.unit(300, "feet"),
  8215. },
  8216. {
  8217. name: "BIG WALF",
  8218. height: math.unit(750, "feet"),
  8219. },
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8224. {
  8225. front: {
  8226. height: math.unit(6, "feet"),
  8227. weight: math.unit(150, "lbs"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/carley/front.svg",
  8231. extra: 3927 / 3540,
  8232. bottom: 29.2 / 735
  8233. }
  8234. }
  8235. },
  8236. [
  8237. {
  8238. name: "Normal",
  8239. height: math.unit(6 + 3 / 12, "feet")
  8240. },
  8241. {
  8242. name: "Macro",
  8243. height: math.unit(185, "feet"),
  8244. default: true
  8245. },
  8246. {
  8247. name: "Megamacro",
  8248. height: math.unit(8, "miles"),
  8249. },
  8250. ]
  8251. ))
  8252. characterMakers.push(() => makeCharacter(
  8253. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8254. {
  8255. front: {
  8256. height: math.unit(3, "feet"),
  8257. weight: math.unit(28, "lbs"),
  8258. name: "Front",
  8259. image: {
  8260. source: "./media/characters/citrine/front.svg"
  8261. }
  8262. }
  8263. },
  8264. [
  8265. {
  8266. name: "Normal",
  8267. height: math.unit(3, "feet"),
  8268. default: true
  8269. }
  8270. ]
  8271. ))
  8272. characterMakers.push(() => makeCharacter(
  8273. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8274. {
  8275. front: {
  8276. height: math.unit(14, "feet"),
  8277. weight: math.unit(1450, "kg"),
  8278. capacity: math.unit(15, "people"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/aura-starwind/front.svg",
  8282. extra: 1440/1327,
  8283. bottom: 11/1451
  8284. }
  8285. },
  8286. side: {
  8287. height: math.unit(14, "feet"),
  8288. weight: math.unit(1450, "kg"),
  8289. capacity: math.unit(15, "people"),
  8290. name: "Side",
  8291. image: {
  8292. source: "./media/characters/aura-starwind/side.svg",
  8293. extra: 1654 / 1497
  8294. }
  8295. },
  8296. taur: {
  8297. height: math.unit(18, "feet"),
  8298. weight: math.unit(5500, "kg"),
  8299. capacity: math.unit(50, "people"),
  8300. name: "Taur",
  8301. image: {
  8302. source: "./media/characters/aura-starwind/taur.svg",
  8303. extra: 1760 / 1650
  8304. }
  8305. },
  8306. feral: {
  8307. height: math.unit(46, "feet"),
  8308. weight: math.unit(25000, "kg"),
  8309. capacity: math.unit(120, "people"),
  8310. name: "Feral",
  8311. image: {
  8312. source: "./media/characters/aura-starwind/feral.svg"
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Normal",
  8319. height: math.unit(14, "feet"),
  8320. default: true
  8321. },
  8322. {
  8323. name: "Macro",
  8324. height: math.unit(50, "meters")
  8325. },
  8326. {
  8327. name: "Megamacro",
  8328. height: math.unit(5000, "meters")
  8329. },
  8330. {
  8331. name: "Gigamacro",
  8332. height: math.unit(100000, "kilometers")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(2 + 7 / 12, "feet"),
  8341. weight: math.unit(32, "lbs"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/rivet/front.svg",
  8345. extra: 1716 / 1658,
  8346. bottom: 0.03
  8347. }
  8348. },
  8349. foot: {
  8350. height: math.unit(0.551, "feet"),
  8351. name: "Rivet's Foot",
  8352. image: {
  8353. source: "./media/characters/rivet/foot.svg"
  8354. },
  8355. rename: true
  8356. }
  8357. },
  8358. [
  8359. {
  8360. name: "Micro",
  8361. height: math.unit(1.5, "inches"),
  8362. },
  8363. {
  8364. name: "Normal",
  8365. height: math.unit(2 + 7 / 12, "feet"),
  8366. default: true
  8367. },
  8368. {
  8369. name: "Macro",
  8370. height: math.unit(85, "feet")
  8371. },
  8372. {
  8373. name: "Megamacro",
  8374. height: math.unit(2.2, "km")
  8375. }
  8376. ]
  8377. ))
  8378. characterMakers.push(() => makeCharacter(
  8379. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8380. {
  8381. front: {
  8382. height: math.unit(5 + 9 / 12, "feet"),
  8383. weight: math.unit(150, "lbs"),
  8384. name: "Front",
  8385. image: {
  8386. source: "./media/characters/coffee/front.svg",
  8387. extra: 3666 / 3032,
  8388. bottom: 0.04
  8389. }
  8390. },
  8391. foot: {
  8392. height: math.unit(1.29, "feet"),
  8393. name: "Foot",
  8394. image: {
  8395. source: "./media/characters/coffee/foot.svg"
  8396. }
  8397. },
  8398. },
  8399. [
  8400. {
  8401. name: "Micro",
  8402. height: math.unit(2, "inches"),
  8403. },
  8404. {
  8405. name: "Normal",
  8406. height: math.unit(5 + 9 / 12, "feet"),
  8407. default: true
  8408. },
  8409. {
  8410. name: "Macro",
  8411. height: math.unit(800, "feet")
  8412. },
  8413. {
  8414. name: "Megamacro",
  8415. height: math.unit(25, "miles")
  8416. }
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8421. {
  8422. front: {
  8423. height: math.unit(6, "feet"),
  8424. weight: math.unit(200, "lbs"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/chari-gal/front.svg",
  8428. extra: 1568 / 1385,
  8429. bottom: 0.047
  8430. }
  8431. },
  8432. gigantamax: {
  8433. height: math.unit(6 * 16, "feet"),
  8434. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8435. name: "Gigantamax",
  8436. image: {
  8437. source: "./media/characters/chari-gal/gigantamax.svg",
  8438. extra: 1124 / 888,
  8439. bottom: 0.03
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Normal",
  8446. height: math.unit(5 + 7 / 12, "feet")
  8447. },
  8448. {
  8449. name: "Macro",
  8450. height: math.unit(200, "feet"),
  8451. default: true
  8452. }
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8457. {
  8458. front: {
  8459. height: math.unit(6, "feet"),
  8460. weight: math.unit(150, "lbs"),
  8461. name: "Front",
  8462. image: {
  8463. source: "./media/characters/nova/front.svg",
  8464. extra: 5000 / 4722,
  8465. bottom: 0.02
  8466. }
  8467. }
  8468. },
  8469. [
  8470. {
  8471. name: "Micro-",
  8472. height: math.unit(0.8, "inches")
  8473. },
  8474. {
  8475. name: "Micro",
  8476. height: math.unit(2, "inches"),
  8477. default: true
  8478. },
  8479. ]
  8480. ))
  8481. characterMakers.push(() => makeCharacter(
  8482. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8483. {
  8484. front: {
  8485. height: math.unit(3 + 1 / 12, "feet"),
  8486. weight: math.unit(21.7, "lbs"),
  8487. name: "Front",
  8488. image: {
  8489. source: "./media/characters/argent/front.svg",
  8490. extra: 1471 / 1331,
  8491. bottom: 100.8 / 1575.5
  8492. }
  8493. }
  8494. },
  8495. [
  8496. {
  8497. name: "Micro",
  8498. height: math.unit(2, "inches")
  8499. },
  8500. {
  8501. name: "Normal",
  8502. height: math.unit(3 + 1 / 12, "feet"),
  8503. default: true
  8504. },
  8505. {
  8506. name: "Macro",
  8507. height: math.unit(120, "feet")
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8513. {
  8514. lamp: {
  8515. height: math.unit(7 * 1559 / 989, "feet"),
  8516. name: "Magic Lamp",
  8517. image: {
  8518. source: "./media/characters/mira-al-cul/lamp.svg",
  8519. extra: 1617 / 1559
  8520. }
  8521. },
  8522. front: {
  8523. height: math.unit(7, "feet"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/mira-al-cul/front.svg",
  8527. extra: 1044 / 990
  8528. }
  8529. },
  8530. },
  8531. [
  8532. {
  8533. name: "Heavily Restricted",
  8534. height: math.unit(7 * 1559 / 989, "feet")
  8535. },
  8536. {
  8537. name: "Freshly Freed",
  8538. height: math.unit(50 * 1559 / 989, "feet")
  8539. },
  8540. {
  8541. name: "World Encompassing",
  8542. height: math.unit(10000 * 1559 / 989, "miles")
  8543. },
  8544. {
  8545. name: "Galactic",
  8546. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8547. },
  8548. {
  8549. name: "Palmed Universe",
  8550. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8551. default: true
  8552. },
  8553. {
  8554. name: "Multiversal Matriarch",
  8555. height: math.unit(8.87e10, "yottameters")
  8556. },
  8557. {
  8558. name: "Void Mother",
  8559. height: math.unit(3.14e110, "yottaparsecs")
  8560. },
  8561. {
  8562. name: "Toying with Transcendence",
  8563. height: math.unit(1e307, "meters")
  8564. },
  8565. ]
  8566. ))
  8567. characterMakers.push(() => makeCharacter(
  8568. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8569. {
  8570. front: {
  8571. height: math.unit(17 + 1 / 12, "feet"),
  8572. weight: math.unit(476.2 * 5, "lbs"),
  8573. name: "Front",
  8574. image: {
  8575. source: "./media/characters/kuro-shi-uchū/front.svg",
  8576. extra: 2329 / 1835,
  8577. bottom: 0.02
  8578. }
  8579. },
  8580. },
  8581. [
  8582. {
  8583. name: "Micro",
  8584. height: math.unit(2, "inches")
  8585. },
  8586. {
  8587. name: "Normal",
  8588. height: math.unit(12, "meters")
  8589. },
  8590. {
  8591. name: "Planetary",
  8592. height: math.unit(0.00929, "AU"),
  8593. default: true
  8594. },
  8595. {
  8596. name: "Universal",
  8597. height: math.unit(20, "gigaparsecs")
  8598. },
  8599. ]
  8600. ))
  8601. characterMakers.push(() => makeCharacter(
  8602. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8603. {
  8604. front: {
  8605. height: math.unit(5 + 2 / 12, "feet"),
  8606. weight: math.unit(120, "lbs"),
  8607. name: "Front",
  8608. image: {
  8609. source: "./media/characters/katherine/front.svg",
  8610. extra: 2075 / 1969
  8611. }
  8612. },
  8613. dress: {
  8614. height: math.unit(5 + 2 / 12, "feet"),
  8615. weight: math.unit(120, "lbs"),
  8616. name: "Dress",
  8617. image: {
  8618. source: "./media/characters/katherine/dress.svg",
  8619. extra: 2258 / 2064
  8620. }
  8621. },
  8622. },
  8623. [
  8624. {
  8625. name: "Micro",
  8626. height: math.unit(1, "inches"),
  8627. default: true
  8628. },
  8629. {
  8630. name: "Normal",
  8631. height: math.unit(5 + 2 / 12, "feet")
  8632. },
  8633. {
  8634. name: "Macro",
  8635. height: math.unit(100, "meters")
  8636. },
  8637. {
  8638. name: "Megamacro",
  8639. height: math.unit(80, "miles")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(7 + 8 / 12, "feet"),
  8648. weight: math.unit(250, "lbs"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/yevis/front.svg",
  8652. extra: 1938 / 1755
  8653. }
  8654. }
  8655. },
  8656. [
  8657. {
  8658. name: "Mortal",
  8659. height: math.unit(7 + 8 / 12, "feet")
  8660. },
  8661. {
  8662. name: "Battle",
  8663. height: math.unit(25 + 11 / 12, "feet")
  8664. },
  8665. {
  8666. name: "Wrath",
  8667. height: math.unit(1654 + 11 / 12, "feet")
  8668. },
  8669. {
  8670. name: "Planet Destroyer",
  8671. height: math.unit(12000, "miles")
  8672. },
  8673. {
  8674. name: "Galaxy Conqueror",
  8675. height: math.unit(1.45, "zettameters"),
  8676. default: true
  8677. },
  8678. {
  8679. name: "Universal War",
  8680. height: math.unit(184, "gigaparsecs")
  8681. },
  8682. {
  8683. name: "Eternity War",
  8684. height: math.unit(1.98e55, "yottaparsecs")
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8690. {
  8691. front: {
  8692. height: math.unit(5 + 8 / 12, "feet"),
  8693. weight: math.unit(63, "kg"),
  8694. name: "Front",
  8695. image: {
  8696. source: "./media/characters/xavier/front.svg",
  8697. extra: 944 / 883
  8698. }
  8699. },
  8700. frontStretch: {
  8701. height: math.unit(5 + 8 / 12, "feet"),
  8702. weight: math.unit(63, "kg"),
  8703. name: "Stretching",
  8704. image: {
  8705. source: "./media/characters/xavier/front-stretch.svg",
  8706. extra: 962 / 820
  8707. }
  8708. },
  8709. },
  8710. [
  8711. {
  8712. name: "Normal",
  8713. height: math.unit(5 + 8 / 12, "feet")
  8714. },
  8715. {
  8716. name: "Macro",
  8717. height: math.unit(100, "meters"),
  8718. default: true
  8719. },
  8720. {
  8721. name: "McLargeHuge",
  8722. height: math.unit(10, "miles")
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(5 + 5 / 12, "feet"),
  8731. weight: math.unit(150, "lb"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/joshii/front.svg",
  8735. extra: 765 / 653,
  8736. bottom: 51 / 816
  8737. }
  8738. },
  8739. foot: {
  8740. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8741. name: "Foot",
  8742. image: {
  8743. source: "./media/characters/joshii/foot.svg"
  8744. }
  8745. },
  8746. },
  8747. [
  8748. {
  8749. name: "Micro",
  8750. height: math.unit(2, "inches"),
  8751. default: true
  8752. },
  8753. {
  8754. name: "Normal",
  8755. height: math.unit(5 + 5 / 12, "feet")
  8756. },
  8757. {
  8758. name: "Macro",
  8759. height: math.unit(785, "feet")
  8760. },
  8761. {
  8762. name: "Megamacro",
  8763. height: math.unit(24.5, "miles")
  8764. },
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8769. {
  8770. front: {
  8771. height: math.unit(6, "feet"),
  8772. weight: math.unit(150, "lb"),
  8773. name: "Front",
  8774. image: {
  8775. source: "./media/characters/goddess-elizabeth/front.svg",
  8776. extra: 1800 / 1525,
  8777. bottom: 0.005
  8778. }
  8779. },
  8780. foot: {
  8781. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8782. name: "Foot",
  8783. image: {
  8784. source: "./media/characters/goddess-elizabeth/foot.svg"
  8785. }
  8786. },
  8787. mouth: {
  8788. height: math.unit(6, "feet"),
  8789. name: "Mouth",
  8790. image: {
  8791. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Micro",
  8798. height: math.unit(12, "feet")
  8799. },
  8800. {
  8801. name: "Normal",
  8802. height: math.unit(80, "miles"),
  8803. default: true
  8804. },
  8805. {
  8806. name: "Macro",
  8807. height: math.unit(15000, "parsecs")
  8808. },
  8809. ]
  8810. ))
  8811. characterMakers.push(() => makeCharacter(
  8812. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8813. {
  8814. front: {
  8815. height: math.unit(5 + 9 / 12, "feet"),
  8816. weight: math.unit(144, "lb"),
  8817. name: "Front",
  8818. image: {
  8819. source: "./media/characters/kara/front.svg"
  8820. }
  8821. },
  8822. feet: {
  8823. height: math.unit(6 / 6.765, "feet"),
  8824. name: "Kara's Feet",
  8825. rename: true,
  8826. image: {
  8827. source: "./media/characters/kara/feet.svg"
  8828. }
  8829. },
  8830. },
  8831. [
  8832. {
  8833. name: "Normal",
  8834. height: math.unit(5 + 9 / 12, "feet")
  8835. },
  8836. {
  8837. name: "Macro",
  8838. height: math.unit(174, "feet"),
  8839. default: true
  8840. },
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8845. {
  8846. front: {
  8847. height: math.unit(18, "feet"),
  8848. weight: math.unit(4050, "lb"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/tyrone/front.svg",
  8852. extra: 2405 / 2270,
  8853. bottom: 182 / 2587
  8854. }
  8855. },
  8856. },
  8857. [
  8858. {
  8859. name: "Normal",
  8860. height: math.unit(18, "feet"),
  8861. default: true
  8862. },
  8863. {
  8864. name: "Macro",
  8865. height: math.unit(300, "feet")
  8866. },
  8867. {
  8868. name: "Megamacro",
  8869. height: math.unit(15, "km")
  8870. },
  8871. {
  8872. name: "Gigamacro",
  8873. height: math.unit(500, "km")
  8874. },
  8875. {
  8876. name: "Teramacro",
  8877. height: math.unit(0.5, "gigameters")
  8878. },
  8879. {
  8880. name: "Omnimacro",
  8881. height: math.unit(1e252, "yottauniverse")
  8882. },
  8883. ]
  8884. ))
  8885. characterMakers.push(() => makeCharacter(
  8886. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8887. {
  8888. front: {
  8889. height: math.unit(7 + 8 / 12, "feet"),
  8890. weight: math.unit(120, "lb"),
  8891. name: "Front",
  8892. image: {
  8893. source: "./media/characters/danny/front.svg",
  8894. extra: 1490 / 1350
  8895. }
  8896. },
  8897. back: {
  8898. height: math.unit(7 + 8 / 12, "feet"),
  8899. weight: math.unit(120, "lb"),
  8900. name: "Back",
  8901. image: {
  8902. source: "./media/characters/danny/back.svg",
  8903. extra: 1490 / 1350
  8904. }
  8905. },
  8906. },
  8907. [
  8908. {
  8909. name: "Normal",
  8910. height: math.unit(7 + 8 / 12, "feet"),
  8911. default: true
  8912. },
  8913. ]
  8914. ))
  8915. characterMakers.push(() => makeCharacter(
  8916. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8917. {
  8918. front: {
  8919. height: math.unit(3.5, "inches"),
  8920. weight: math.unit(19, "grams"),
  8921. name: "Front",
  8922. image: {
  8923. source: "./media/characters/mallow/front.svg",
  8924. extra: 471 / 431
  8925. }
  8926. },
  8927. back: {
  8928. height: math.unit(3.5, "inches"),
  8929. weight: math.unit(19, "grams"),
  8930. name: "Back",
  8931. image: {
  8932. source: "./media/characters/mallow/back.svg",
  8933. extra: 471 / 431
  8934. }
  8935. },
  8936. },
  8937. [
  8938. {
  8939. name: "Normal",
  8940. height: math.unit(3.5, "inches"),
  8941. default: true
  8942. },
  8943. ]
  8944. ))
  8945. characterMakers.push(() => makeCharacter(
  8946. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8947. {
  8948. front: {
  8949. height: math.unit(9, "feet"),
  8950. weight: math.unit(230, "kg"),
  8951. name: "Front",
  8952. image: {
  8953. source: "./media/characters/starry-aqua/front.svg"
  8954. }
  8955. },
  8956. back: {
  8957. height: math.unit(9, "feet"),
  8958. weight: math.unit(230, "kg"),
  8959. name: "Back",
  8960. image: {
  8961. source: "./media/characters/starry-aqua/back.svg"
  8962. }
  8963. },
  8964. hand: {
  8965. height: math.unit(9 * 0.1168, "feet"),
  8966. name: "Hand",
  8967. image: {
  8968. source: "./media/characters/starry-aqua/hand.svg"
  8969. }
  8970. },
  8971. foot: {
  8972. height: math.unit(9 * 0.18, "feet"),
  8973. name: "Foot",
  8974. image: {
  8975. source: "./media/characters/starry-aqua/foot.svg"
  8976. }
  8977. }
  8978. },
  8979. [
  8980. {
  8981. name: "Micro",
  8982. height: math.unit(3, "inches")
  8983. },
  8984. {
  8985. name: "Normal",
  8986. height: math.unit(9, "feet")
  8987. },
  8988. {
  8989. name: "Macro",
  8990. height: math.unit(300, "feet"),
  8991. default: true
  8992. },
  8993. {
  8994. name: "Megamacro",
  8995. height: math.unit(3200, "feet")
  8996. }
  8997. ]
  8998. ))
  8999. characterMakers.push(() => makeCharacter(
  9000. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9001. {
  9002. front: {
  9003. height: math.unit(15, "feet"),
  9004. weight: math.unit(5026, "lb"),
  9005. name: "Front",
  9006. image: {
  9007. source: "./media/characters/luka-towers/front.svg",
  9008. extra: 1269/1133,
  9009. bottom: 51/1320
  9010. }
  9011. },
  9012. },
  9013. [
  9014. {
  9015. name: "Normal",
  9016. height: math.unit(15, "feet"),
  9017. default: true
  9018. },
  9019. {
  9020. name: "Minimacro",
  9021. height: math.unit(25, "feet")
  9022. },
  9023. {
  9024. name: "Macro",
  9025. height: math.unit(320, "feet")
  9026. },
  9027. {
  9028. name: "Megamacro",
  9029. height: math.unit(35000, "feet")
  9030. },
  9031. {
  9032. name: "Gigamacro",
  9033. height: math.unit(4000, "miles")
  9034. },
  9035. {
  9036. name: "Teramacro",
  9037. height: math.unit(15000, "miles")
  9038. },
  9039. ]
  9040. ))
  9041. characterMakers.push(() => makeCharacter(
  9042. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9043. {
  9044. front: {
  9045. height: math.unit(6, "feet"),
  9046. weight: math.unit(150, "lb"),
  9047. name: "Front",
  9048. image: {
  9049. source: "./media/characters/natalie-nightring/front.svg",
  9050. extra: 1,
  9051. bottom: 0.06
  9052. }
  9053. },
  9054. },
  9055. [
  9056. {
  9057. name: "Uh Oh",
  9058. height: math.unit(0.1, "mm")
  9059. },
  9060. {
  9061. name: "Small",
  9062. height: math.unit(3, "inches")
  9063. },
  9064. {
  9065. name: "Human Scale",
  9066. height: math.unit(6, "feet")
  9067. },
  9068. {
  9069. name: "Librarian",
  9070. height: math.unit(50, "feet"),
  9071. default: true
  9072. },
  9073. {
  9074. name: "Immense",
  9075. height: math.unit(200, "miles")
  9076. },
  9077. ]
  9078. ))
  9079. characterMakers.push(() => makeCharacter(
  9080. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9081. {
  9082. front: {
  9083. height: math.unit(6, "feet"),
  9084. weight: math.unit(180, "lbs"),
  9085. name: "Front",
  9086. image: {
  9087. source: "./media/characters/danni-rosie/front.svg",
  9088. extra: 1260 / 1128,
  9089. bottom: 0.022
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Micro",
  9096. height: math.unit(2, "inches"),
  9097. default: true
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9103. {
  9104. front: {
  9105. height: math.unit(5 + 9 / 12, "feet"),
  9106. weight: math.unit(220, "lb"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/samantha-kruse/front.svg",
  9110. extra: (985 / 935),
  9111. bottom: 0.03
  9112. }
  9113. },
  9114. frontUndressed: {
  9115. height: math.unit(5 + 9 / 12, "feet"),
  9116. weight: math.unit(220, "lb"),
  9117. name: "Front (Undressed)",
  9118. image: {
  9119. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9120. extra: (973 / 923),
  9121. bottom: 0.025
  9122. }
  9123. },
  9124. fat: {
  9125. height: math.unit(5 + 9 / 12, "feet"),
  9126. weight: math.unit(900, "lb"),
  9127. name: "Front (Fat)",
  9128. image: {
  9129. source: "./media/characters/samantha-kruse/fat.svg",
  9130. extra: 2688 / 2561
  9131. }
  9132. },
  9133. },
  9134. [
  9135. {
  9136. name: "Normal",
  9137. height: math.unit(5 + 9 / 12, "feet"),
  9138. default: true
  9139. }
  9140. ]
  9141. ))
  9142. characterMakers.push(() => makeCharacter(
  9143. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9144. {
  9145. back: {
  9146. height: math.unit(5 + 4 / 12, "feet"),
  9147. weight: math.unit(4963, "lb"),
  9148. name: "Back",
  9149. image: {
  9150. source: "./media/characters/amelia-rosie/back.svg",
  9151. extra: 1113 / 963,
  9152. bottom: 0.01
  9153. }
  9154. },
  9155. },
  9156. [
  9157. {
  9158. name: "Level 0",
  9159. height: math.unit(5 + 4 / 12, "feet")
  9160. },
  9161. {
  9162. name: "Level 1",
  9163. height: math.unit(164597, "feet"),
  9164. default: true
  9165. },
  9166. {
  9167. name: "Level 2",
  9168. height: math.unit(956243, "miles")
  9169. },
  9170. {
  9171. name: "Level 3",
  9172. height: math.unit(29421709423, "miles")
  9173. },
  9174. {
  9175. name: "Level 4",
  9176. height: math.unit(154, "lightyears")
  9177. },
  9178. {
  9179. name: "Level 5",
  9180. height: math.unit(4738272, "lightyears")
  9181. },
  9182. {
  9183. name: "Level 6",
  9184. height: math.unit(145787152896, "lightyears")
  9185. },
  9186. ]
  9187. ))
  9188. characterMakers.push(() => makeCharacter(
  9189. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9190. {
  9191. front: {
  9192. height: math.unit(5 + 11 / 12, "feet"),
  9193. weight: math.unit(65, "kg"),
  9194. name: "Front",
  9195. image: {
  9196. source: "./media/characters/rook-kitara/front.svg",
  9197. extra: 1347 / 1274,
  9198. bottom: 0.005
  9199. }
  9200. },
  9201. },
  9202. [
  9203. {
  9204. name: "Totally Unfair",
  9205. height: math.unit(1.8, "mm")
  9206. },
  9207. {
  9208. name: "Lap Rookie",
  9209. height: math.unit(1.4, "feet")
  9210. },
  9211. {
  9212. name: "Normal",
  9213. height: math.unit(5 + 11 / 12, "feet"),
  9214. default: true
  9215. },
  9216. {
  9217. name: "How Did This Happen",
  9218. height: math.unit(80, "miles")
  9219. }
  9220. ]
  9221. ))
  9222. characterMakers.push(() => makeCharacter(
  9223. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9224. {
  9225. front: {
  9226. height: math.unit(7, "feet"),
  9227. weight: math.unit(300, "lb"),
  9228. name: "Front",
  9229. image: {
  9230. source: "./media/characters/pisces/front.svg",
  9231. extra: 2255 / 2115,
  9232. bottom: 0.03
  9233. }
  9234. },
  9235. back: {
  9236. height: math.unit(7, "feet"),
  9237. weight: math.unit(300, "lb"),
  9238. name: "Back",
  9239. image: {
  9240. source: "./media/characters/pisces/back.svg",
  9241. extra: 2146 / 2055,
  9242. bottom: 0.04
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Normal",
  9249. height: math.unit(7, "feet"),
  9250. default: true
  9251. },
  9252. {
  9253. name: "Swimming Pool",
  9254. height: math.unit(12.2, "meters")
  9255. },
  9256. {
  9257. name: "Olympic Swimming Pool",
  9258. height: math.unit(56.3, "meters")
  9259. },
  9260. {
  9261. name: "Lake Superior",
  9262. height: math.unit(93900, "meters")
  9263. },
  9264. {
  9265. name: "Mediterranean Sea",
  9266. height: math.unit(644457, "meters")
  9267. },
  9268. {
  9269. name: "World's Oceans",
  9270. height: math.unit(4567491, "meters")
  9271. },
  9272. ]
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9276. {
  9277. front: {
  9278. height: math.unit(2.3, "meters"),
  9279. weight: math.unit(120, "kg"),
  9280. name: "Front",
  9281. image: {
  9282. source: "./media/characters/zelas/front.svg"
  9283. }
  9284. },
  9285. side: {
  9286. height: math.unit(2.3, "meters"),
  9287. weight: math.unit(120, "kg"),
  9288. name: "Side",
  9289. image: {
  9290. source: "./media/characters/zelas/side.svg"
  9291. }
  9292. },
  9293. back: {
  9294. height: math.unit(2.3, "meters"),
  9295. weight: math.unit(120, "kg"),
  9296. name: "Back",
  9297. image: {
  9298. source: "./media/characters/zelas/back.svg"
  9299. }
  9300. },
  9301. foot: {
  9302. height: math.unit(1.116, "feet"),
  9303. name: "Foot",
  9304. image: {
  9305. source: "./media/characters/zelas/foot.svg"
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Normal",
  9312. height: math.unit(2.3, "meters")
  9313. },
  9314. {
  9315. name: "Macro",
  9316. height: math.unit(30, "meters"),
  9317. default: true
  9318. },
  9319. ]
  9320. ))
  9321. characterMakers.push(() => makeCharacter(
  9322. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9323. {
  9324. front: {
  9325. height: math.unit(1, "inch"),
  9326. weight: math.unit(0.21, "grams"),
  9327. name: "Front",
  9328. image: {
  9329. source: "./media/characters/talbot/front.svg",
  9330. extra: 594 / 544
  9331. }
  9332. },
  9333. },
  9334. [
  9335. {
  9336. name: "Micro",
  9337. height: math.unit(1, "inch"),
  9338. default: true
  9339. },
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9344. {
  9345. front: {
  9346. height: math.unit(3 + 3 / 12, "feet"),
  9347. weight: math.unit(51.8, "lb"),
  9348. name: "Front",
  9349. image: {
  9350. source: "./media/characters/fliss/front.svg",
  9351. extra: 840 / 640
  9352. }
  9353. },
  9354. },
  9355. [
  9356. {
  9357. name: "Teeny Tiny",
  9358. height: math.unit(1, "mm")
  9359. },
  9360. {
  9361. name: "Small",
  9362. height: math.unit(1, "inch"),
  9363. default: true
  9364. },
  9365. {
  9366. name: "Standard Sylveon",
  9367. height: math.unit(3 + 3 / 12, "feet")
  9368. },
  9369. {
  9370. name: "Large Nuisance",
  9371. height: math.unit(33, "feet")
  9372. },
  9373. {
  9374. name: "City Filler",
  9375. height: math.unit(3000, "feet")
  9376. },
  9377. {
  9378. name: "New Horizon",
  9379. height: math.unit(6000, "miles")
  9380. },
  9381. ]
  9382. ))
  9383. characterMakers.push(() => makeCharacter(
  9384. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9385. {
  9386. front: {
  9387. height: math.unit(5, "cm"),
  9388. weight: math.unit(1.94, "g"),
  9389. name: "Front",
  9390. image: {
  9391. source: "./media/characters/fleta/front.svg",
  9392. extra: 835 / 803
  9393. }
  9394. },
  9395. back: {
  9396. height: math.unit(5, "cm"),
  9397. weight: math.unit(1.94, "g"),
  9398. name: "Back",
  9399. image: {
  9400. source: "./media/characters/fleta/back.svg",
  9401. extra: 835 / 803
  9402. }
  9403. },
  9404. },
  9405. [
  9406. {
  9407. name: "Micro",
  9408. height: math.unit(5, "cm"),
  9409. default: true
  9410. },
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(6, "feet"),
  9418. weight: math.unit(225, "lb"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/dominic/front.svg",
  9422. extra: 1770 / 1620,
  9423. bottom: 0.025
  9424. }
  9425. },
  9426. back: {
  9427. height: math.unit(6, "feet"),
  9428. weight: math.unit(225, "lb"),
  9429. name: "Back",
  9430. image: {
  9431. source: "./media/characters/dominic/back.svg",
  9432. extra: 1745 / 1620,
  9433. bottom: 0.065
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Nano",
  9440. height: math.unit(0.1, "mm")
  9441. },
  9442. {
  9443. name: "Micro-",
  9444. height: math.unit(1, "mm")
  9445. },
  9446. {
  9447. name: "Micro",
  9448. height: math.unit(4, "inches")
  9449. },
  9450. {
  9451. name: "Normal",
  9452. height: math.unit(6 + 4 / 12, "feet"),
  9453. default: true
  9454. },
  9455. {
  9456. name: "Macro",
  9457. height: math.unit(115, "feet")
  9458. },
  9459. {
  9460. name: "Macro+",
  9461. height: math.unit(955, "feet")
  9462. },
  9463. {
  9464. name: "Megamacro",
  9465. height: math.unit(8990, "feet")
  9466. },
  9467. {
  9468. name: "Gigmacro",
  9469. height: math.unit(9310, "miles")
  9470. },
  9471. {
  9472. name: "Teramacro",
  9473. height: math.unit(1567005010, "miles")
  9474. },
  9475. {
  9476. name: "Examacro",
  9477. height: math.unit(1425, "parsecs")
  9478. },
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9483. {
  9484. front: {
  9485. height: math.unit(400, "feet"),
  9486. weight: math.unit(44444444, "lb"),
  9487. name: "Front",
  9488. image: {
  9489. source: "./media/characters/major-colonel/front.svg"
  9490. }
  9491. },
  9492. back: {
  9493. height: math.unit(400, "feet"),
  9494. weight: math.unit(44444444, "lb"),
  9495. name: "Back",
  9496. image: {
  9497. source: "./media/characters/major-colonel/back.svg"
  9498. }
  9499. },
  9500. },
  9501. [
  9502. {
  9503. name: "Macro",
  9504. height: math.unit(400, "feet"),
  9505. default: true
  9506. },
  9507. ]
  9508. ))
  9509. characterMakers.push(() => makeCharacter(
  9510. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9511. {
  9512. catFront: {
  9513. height: math.unit(6, "feet"),
  9514. weight: math.unit(120, "lb"),
  9515. name: "Front (Cat Side)",
  9516. image: {
  9517. source: "./media/characters/axel-lycan/cat-front.svg",
  9518. extra: 430 / 402,
  9519. bottom: 43 / 472.35
  9520. }
  9521. },
  9522. catBack: {
  9523. height: math.unit(6, "feet"),
  9524. weight: math.unit(120, "lb"),
  9525. name: "Back (Cat Side)",
  9526. image: {
  9527. source: "./media/characters/axel-lycan/cat-back.svg",
  9528. extra: 447 / 419,
  9529. bottom: 23.3 / 469
  9530. }
  9531. },
  9532. wolfFront: {
  9533. height: math.unit(6, "feet"),
  9534. weight: math.unit(120, "lb"),
  9535. name: "Front (Wolf Side)",
  9536. image: {
  9537. source: "./media/characters/axel-lycan/wolf-front.svg",
  9538. extra: 485 / 456,
  9539. bottom: 19 / 504
  9540. }
  9541. },
  9542. wolfBack: {
  9543. height: math.unit(6, "feet"),
  9544. weight: math.unit(120, "lb"),
  9545. name: "Back (Wolf Side)",
  9546. image: {
  9547. source: "./media/characters/axel-lycan/wolf-back.svg",
  9548. extra: 475 / 438,
  9549. bottom: 39.2 / 514
  9550. }
  9551. },
  9552. },
  9553. [
  9554. {
  9555. name: "Macro",
  9556. height: math.unit(1, "km"),
  9557. default: true
  9558. },
  9559. ]
  9560. ))
  9561. characterMakers.push(() => makeCharacter(
  9562. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9563. {
  9564. front: {
  9565. height: math.unit(5 + 9 / 12, "feet"),
  9566. weight: math.unit(175, "lb"),
  9567. name: "Front",
  9568. image: {
  9569. source: "./media/characters/vanrel-hyena/front.svg",
  9570. extra: 1086 / 1010,
  9571. bottom: 0.04
  9572. }
  9573. },
  9574. },
  9575. [
  9576. {
  9577. name: "Normal",
  9578. height: math.unit(5 + 9 / 12, "feet"),
  9579. default: true
  9580. },
  9581. ]
  9582. ))
  9583. characterMakers.push(() => makeCharacter(
  9584. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9585. {
  9586. front: {
  9587. height: math.unit(6, "feet"),
  9588. weight: math.unit(103, "lb"),
  9589. name: "Front",
  9590. image: {
  9591. source: "./media/characters/abbott-absol/front.svg",
  9592. extra: 2010 / 1842
  9593. }
  9594. },
  9595. },
  9596. [
  9597. {
  9598. name: "Megamicro",
  9599. height: math.unit(0.1, "mm")
  9600. },
  9601. {
  9602. name: "Micro",
  9603. height: math.unit(1, "inch")
  9604. },
  9605. {
  9606. name: "Normal",
  9607. height: math.unit(6, "feet"),
  9608. default: true
  9609. },
  9610. ]
  9611. ))
  9612. characterMakers.push(() => makeCharacter(
  9613. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9614. {
  9615. front: {
  9616. height: math.unit(6, "feet"),
  9617. weight: math.unit(264, "lb"),
  9618. name: "Front",
  9619. image: {
  9620. source: "./media/characters/hector/front.svg",
  9621. extra: 2280 / 2130,
  9622. bottom: 0.07
  9623. }
  9624. },
  9625. },
  9626. [
  9627. {
  9628. name: "Normal",
  9629. height: math.unit(12.25, "foot"),
  9630. default: true
  9631. },
  9632. {
  9633. name: "Macro",
  9634. height: math.unit(160, "feet")
  9635. },
  9636. ]
  9637. ))
  9638. characterMakers.push(() => makeCharacter(
  9639. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9640. {
  9641. front: {
  9642. height: math.unit(6, "feet"),
  9643. weight: math.unit(150, "lb"),
  9644. name: "Front",
  9645. image: {
  9646. source: "./media/characters/sal/front.svg",
  9647. extra: 1846 / 1699,
  9648. bottom: 0.04
  9649. }
  9650. },
  9651. },
  9652. [
  9653. {
  9654. name: "Megamacro",
  9655. height: math.unit(10, "miles"),
  9656. default: true
  9657. },
  9658. ]
  9659. ))
  9660. characterMakers.push(() => makeCharacter(
  9661. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9662. {
  9663. front: {
  9664. height: math.unit(3, "meters"),
  9665. weight: math.unit(450, "kg"),
  9666. name: "front",
  9667. image: {
  9668. source: "./media/characters/ranger/front.svg",
  9669. extra: 2401 / 2243,
  9670. bottom: 0.05
  9671. }
  9672. },
  9673. },
  9674. [
  9675. {
  9676. name: "Normal",
  9677. height: math.unit(3, "meters"),
  9678. default: true
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(14, "feet"),
  9687. weight: math.unit(800, "kg"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/theresa/front.svg",
  9691. extra: 3575 / 3346,
  9692. bottom: 0.03
  9693. }
  9694. },
  9695. },
  9696. [
  9697. {
  9698. name: "Normal",
  9699. height: math.unit(14, "feet"),
  9700. default: true
  9701. },
  9702. ]
  9703. ))
  9704. characterMakers.push(() => makeCharacter(
  9705. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9706. {
  9707. front: {
  9708. height: math.unit(6, "feet"),
  9709. weight: math.unit(3, "kg"),
  9710. name: "Front",
  9711. image: {
  9712. source: "./media/characters/ine/front.svg",
  9713. extra: 678 / 539,
  9714. bottom: 0.023
  9715. }
  9716. },
  9717. },
  9718. [
  9719. {
  9720. name: "Normal",
  9721. height: math.unit(2.265, "feet"),
  9722. default: true
  9723. },
  9724. ]
  9725. ))
  9726. characterMakers.push(() => makeCharacter(
  9727. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9728. {
  9729. front: {
  9730. height: math.unit(5, "feet"),
  9731. weight: math.unit(30, "kg"),
  9732. name: "Front",
  9733. image: {
  9734. source: "./media/characters/vial/front.svg",
  9735. extra: 1365 / 1277,
  9736. bottom: 0.04
  9737. }
  9738. },
  9739. },
  9740. [
  9741. {
  9742. name: "Normal",
  9743. height: math.unit(5, "feet"),
  9744. default: true
  9745. },
  9746. ]
  9747. ))
  9748. characterMakers.push(() => makeCharacter(
  9749. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9750. {
  9751. side: {
  9752. height: math.unit(3.4, "meters"),
  9753. weight: math.unit(1000, "lb"),
  9754. name: "Side",
  9755. image: {
  9756. source: "./media/characters/rovoska/side.svg",
  9757. extra: 4403 / 1515
  9758. }
  9759. },
  9760. },
  9761. [
  9762. {
  9763. name: "Normal",
  9764. height: math.unit(3.4, "meters"),
  9765. default: true
  9766. },
  9767. ]
  9768. ))
  9769. characterMakers.push(() => makeCharacter(
  9770. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9771. {
  9772. front: {
  9773. height: math.unit(8, "feet"),
  9774. weight: math.unit(315, "lb"),
  9775. name: "Front",
  9776. image: {
  9777. source: "./media/characters/gunner-rotthbauer/front.svg"
  9778. }
  9779. },
  9780. back: {
  9781. height: math.unit(8, "feet"),
  9782. weight: math.unit(315, "lb"),
  9783. name: "Back",
  9784. image: {
  9785. source: "./media/characters/gunner-rotthbauer/back.svg"
  9786. }
  9787. },
  9788. },
  9789. [
  9790. {
  9791. name: "Micro",
  9792. height: math.unit(3.5, "inches")
  9793. },
  9794. {
  9795. name: "Normal",
  9796. height: math.unit(8, "feet"),
  9797. default: true
  9798. },
  9799. {
  9800. name: "Macro",
  9801. height: math.unit(250, "feet")
  9802. },
  9803. {
  9804. name: "Megamacro",
  9805. height: math.unit(1, "AU")
  9806. },
  9807. ]
  9808. ))
  9809. characterMakers.push(() => makeCharacter(
  9810. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9811. {
  9812. front: {
  9813. height: math.unit(5 + 5 / 12, "feet"),
  9814. weight: math.unit(140, "lb"),
  9815. name: "Front",
  9816. image: {
  9817. source: "./media/characters/allatia/front.svg",
  9818. extra: 1227 / 1180,
  9819. bottom: 0.027
  9820. }
  9821. },
  9822. },
  9823. [
  9824. {
  9825. name: "Normal",
  9826. height: math.unit(5 + 5 / 12, "feet")
  9827. },
  9828. {
  9829. name: "Macro",
  9830. height: math.unit(250, "feet"),
  9831. default: true
  9832. },
  9833. {
  9834. name: "Megamacro",
  9835. height: math.unit(8, "miles")
  9836. }
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9841. {
  9842. front: {
  9843. height: math.unit(6, "feet"),
  9844. weight: math.unit(120, "lb"),
  9845. name: "Front",
  9846. image: {
  9847. source: "./media/characters/tene/front.svg",
  9848. extra: 1728 / 1578,
  9849. bottom: 0.022
  9850. }
  9851. },
  9852. stomping: {
  9853. height: math.unit(2.025, "meters"),
  9854. weight: math.unit(120, "lb"),
  9855. name: "Stomping",
  9856. image: {
  9857. source: "./media/characters/tene/stomping.svg",
  9858. extra: 938 / 873,
  9859. bottom: 0.01
  9860. }
  9861. },
  9862. sitting: {
  9863. height: math.unit(1, "meter"),
  9864. weight: math.unit(120, "lb"),
  9865. name: "Sitting",
  9866. image: {
  9867. source: "./media/characters/tene/sitting.svg",
  9868. extra: 437 / 415,
  9869. bottom: 0.1
  9870. }
  9871. },
  9872. feral: {
  9873. height: math.unit(3.9, "feet"),
  9874. weight: math.unit(250, "lb"),
  9875. name: "Feral",
  9876. image: {
  9877. source: "./media/characters/tene/feral.svg",
  9878. extra: 717 / 458,
  9879. bottom: 0.179
  9880. }
  9881. },
  9882. },
  9883. [
  9884. {
  9885. name: "Normal",
  9886. height: math.unit(6, "feet")
  9887. },
  9888. {
  9889. name: "Macro",
  9890. height: math.unit(300, "feet"),
  9891. default: true
  9892. },
  9893. {
  9894. name: "Megamacro",
  9895. height: math.unit(5, "miles")
  9896. },
  9897. ]
  9898. ))
  9899. characterMakers.push(() => makeCharacter(
  9900. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9901. {
  9902. side: {
  9903. height: math.unit(6, "feet"),
  9904. name: "Side",
  9905. image: {
  9906. source: "./media/characters/evander/side.svg",
  9907. extra: 877 / 477
  9908. }
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Normal",
  9914. height: math.unit(0.83, "meters"),
  9915. default: true
  9916. },
  9917. ]
  9918. ))
  9919. characterMakers.push(() => makeCharacter(
  9920. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9921. {
  9922. front: {
  9923. height: math.unit(12, "feet"),
  9924. weight: math.unit(1000, "lb"),
  9925. name: "Front",
  9926. image: {
  9927. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9928. extra: 1762 / 1611
  9929. }
  9930. },
  9931. back: {
  9932. height: math.unit(12, "feet"),
  9933. weight: math.unit(1000, "lb"),
  9934. name: "Back",
  9935. image: {
  9936. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9937. extra: 1762 / 1611
  9938. }
  9939. },
  9940. },
  9941. [
  9942. {
  9943. name: "Normal",
  9944. height: math.unit(12, "feet"),
  9945. default: true
  9946. },
  9947. {
  9948. name: "Kaiju",
  9949. height: math.unit(150, "feet")
  9950. },
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(6, "feet"),
  9958. weight: math.unit(150, "lb"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/zero-alurus/front.svg"
  9962. }
  9963. },
  9964. back: {
  9965. height: math.unit(6, "feet"),
  9966. weight: math.unit(150, "lb"),
  9967. name: "Back",
  9968. image: {
  9969. source: "./media/characters/zero-alurus/back.svg"
  9970. }
  9971. },
  9972. },
  9973. [
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(5 + 10 / 12, "feet")
  9977. },
  9978. {
  9979. name: "Macro",
  9980. height: math.unit(60, "feet"),
  9981. default: true
  9982. },
  9983. {
  9984. name: "Macro+",
  9985. height: math.unit(450, "feet")
  9986. },
  9987. ]
  9988. ))
  9989. characterMakers.push(() => makeCharacter(
  9990. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9991. {
  9992. front: {
  9993. height: math.unit(6, "feet"),
  9994. weight: math.unit(200, "lb"),
  9995. name: "Front",
  9996. image: {
  9997. source: "./media/characters/mega-shi/front.svg",
  9998. extra: 1279 / 1250,
  9999. bottom: 0.02
  10000. }
  10001. },
  10002. back: {
  10003. height: math.unit(6, "feet"),
  10004. weight: math.unit(200, "lb"),
  10005. name: "Back",
  10006. image: {
  10007. source: "./media/characters/mega-shi/back.svg",
  10008. extra: 1279 / 1250,
  10009. bottom: 0.02
  10010. }
  10011. },
  10012. },
  10013. [
  10014. {
  10015. name: "Micro",
  10016. height: math.unit(16 + 6 / 12, "feet")
  10017. },
  10018. {
  10019. name: "Third Dimension",
  10020. height: math.unit(40, "meters")
  10021. },
  10022. {
  10023. name: "Normal",
  10024. height: math.unit(660, "feet"),
  10025. default: true
  10026. },
  10027. {
  10028. name: "Megamacro",
  10029. height: math.unit(10, "miles")
  10030. },
  10031. {
  10032. name: "Planetary Launch",
  10033. height: math.unit(500, "miles")
  10034. },
  10035. {
  10036. name: "Interstellar",
  10037. height: math.unit(1e9, "miles")
  10038. },
  10039. {
  10040. name: "Leaving the Universe",
  10041. height: math.unit(1, "gigaparsec")
  10042. },
  10043. {
  10044. name: "Travelling Universes",
  10045. height: math.unit(30e15, "parsecs")
  10046. },
  10047. ]
  10048. ))
  10049. characterMakers.push(() => makeCharacter(
  10050. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10051. {
  10052. front: {
  10053. height: math.unit(6, "feet"),
  10054. weight: math.unit(150, "lb"),
  10055. name: "Front",
  10056. image: {
  10057. source: "./media/characters/odyssey/front.svg",
  10058. extra: 1782 / 1582,
  10059. bottom: 0.01
  10060. }
  10061. },
  10062. side: {
  10063. height: math.unit(5.7, "feet"),
  10064. weight: math.unit(140, "lb"),
  10065. name: "Side",
  10066. image: {
  10067. source: "./media/characters/odyssey/side.svg",
  10068. extra: 6462 / 5700
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Normal",
  10075. height: math.unit(5 + 4 / 12, "feet")
  10076. },
  10077. {
  10078. name: "Macro",
  10079. height: math.unit(1, "km")
  10080. },
  10081. {
  10082. name: "Megamacro",
  10083. height: math.unit(3000, "km")
  10084. },
  10085. {
  10086. name: "Gigamacro",
  10087. height: math.unit(1, "AU"),
  10088. default: true
  10089. },
  10090. {
  10091. name: "Omniversal",
  10092. height: math.unit(100e14, "lightyears")
  10093. },
  10094. ]
  10095. ))
  10096. characterMakers.push(() => makeCharacter(
  10097. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10098. {
  10099. front: {
  10100. height: math.unit(6, "feet"),
  10101. weight: math.unit(300, "lb"),
  10102. name: "Front",
  10103. image: {
  10104. source: "./media/characters/mekuto/front.svg",
  10105. extra: 921 / 832,
  10106. bottom: 0.03
  10107. }
  10108. },
  10109. hand: {
  10110. height: math.unit(6 / 10.24, "feet"),
  10111. name: "Hand",
  10112. image: {
  10113. source: "./media/characters/mekuto/hand.svg"
  10114. }
  10115. },
  10116. foot: {
  10117. height: math.unit(6 / 5.05, "feet"),
  10118. name: "Foot",
  10119. image: {
  10120. source: "./media/characters/mekuto/foot.svg"
  10121. }
  10122. },
  10123. },
  10124. [
  10125. {
  10126. name: "Minimicro",
  10127. height: math.unit(0.2, "inches")
  10128. },
  10129. {
  10130. name: "Micro",
  10131. height: math.unit(1.5, "inches")
  10132. },
  10133. {
  10134. name: "Normal",
  10135. height: math.unit(5 + 11 / 12, "feet"),
  10136. default: true
  10137. },
  10138. {
  10139. name: "Minimacro",
  10140. height: math.unit(17 + 9 / 12, "feet")
  10141. },
  10142. {
  10143. name: "Macro",
  10144. height: math.unit(177.5, "feet")
  10145. },
  10146. {
  10147. name: "Megamacro",
  10148. height: math.unit(152, "miles")
  10149. },
  10150. ]
  10151. ))
  10152. characterMakers.push(() => makeCharacter(
  10153. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10154. {
  10155. front: {
  10156. height: math.unit(6.5, "inches"),
  10157. weight: math.unit(13, "oz"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/dafydd-tomos/front.svg",
  10161. extra: 2990 / 2603,
  10162. bottom: 0.03
  10163. }
  10164. },
  10165. },
  10166. [
  10167. {
  10168. name: "Micro",
  10169. height: math.unit(6.5, "inches"),
  10170. default: true
  10171. },
  10172. ]
  10173. ))
  10174. characterMakers.push(() => makeCharacter(
  10175. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10176. {
  10177. front: {
  10178. height: math.unit(6, "feet"),
  10179. weight: math.unit(150, "lb"),
  10180. name: "Front",
  10181. image: {
  10182. source: "./media/characters/splinter/front.svg",
  10183. extra: 2990 / 2882,
  10184. bottom: 0.04
  10185. }
  10186. },
  10187. back: {
  10188. height: math.unit(6, "feet"),
  10189. weight: math.unit(150, "lb"),
  10190. name: "Back",
  10191. image: {
  10192. source: "./media/characters/splinter/back.svg",
  10193. extra: 2990 / 2882,
  10194. bottom: 0.04
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Normal",
  10201. height: math.unit(6, "feet")
  10202. },
  10203. {
  10204. name: "Macro",
  10205. height: math.unit(230, "meters"),
  10206. default: true
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(4 + 10 / 12, "feet"),
  10215. weight: math.unit(480, "lb"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/snow-gabumon/front.svg",
  10219. extra: 1140 / 963,
  10220. bottom: 0.058
  10221. }
  10222. },
  10223. back: {
  10224. height: math.unit(4 + 10 / 12, "feet"),
  10225. weight: math.unit(480, "lb"),
  10226. name: "Back",
  10227. image: {
  10228. source: "./media/characters/snow-gabumon/back.svg",
  10229. extra: 1115 / 962,
  10230. bottom: 0.041
  10231. }
  10232. },
  10233. frontUndresed: {
  10234. height: math.unit(4 + 10 / 12, "feet"),
  10235. weight: math.unit(480, "lb"),
  10236. name: "Front (Undressed)",
  10237. image: {
  10238. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10239. extra: 1061 / 960,
  10240. bottom: 0.045
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Micro",
  10247. height: math.unit(1, "inch")
  10248. },
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(4 + 10 / 12, "feet"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Macro",
  10256. height: math.unit(200, "feet")
  10257. },
  10258. {
  10259. name: "Megamacro",
  10260. height: math.unit(120, "miles")
  10261. },
  10262. {
  10263. name: "Gigamacro",
  10264. height: math.unit(9800, "miles")
  10265. },
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10270. {
  10271. front: {
  10272. height: math.unit(1.7, "meters"),
  10273. weight: math.unit(140, "lb"),
  10274. name: "Front",
  10275. image: {
  10276. source: "./media/characters/moody/front.svg",
  10277. extra: 3226 / 3007,
  10278. bottom: 0.087
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Micro",
  10285. height: math.unit(1, "mm")
  10286. },
  10287. {
  10288. name: "Normal",
  10289. height: math.unit(1.7, "meters"),
  10290. default: true
  10291. },
  10292. {
  10293. name: "Macro",
  10294. height: math.unit(80, "meters")
  10295. },
  10296. {
  10297. name: "Macro+",
  10298. height: math.unit(500, "meters")
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(6, "feet"),
  10307. weight: math.unit(150, "lb"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/zyas/front.svg",
  10311. extra: 1180 / 1120,
  10312. bottom: 0.045
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Normal",
  10319. height: math.unit(10, "feet"),
  10320. default: true
  10321. },
  10322. {
  10323. name: "Macro",
  10324. height: math.unit(500, "feet")
  10325. },
  10326. {
  10327. name: "Megamacro",
  10328. height: math.unit(5, "miles")
  10329. },
  10330. {
  10331. name: "Teramacro",
  10332. height: math.unit(150000, "miles")
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(6, "feet"),
  10341. weight: math.unit(150, "lb"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/cuon/front.svg",
  10345. extra: 1390 / 1320,
  10346. bottom: 0.008
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Micro",
  10353. height: math.unit(3, "inches")
  10354. },
  10355. {
  10356. name: "Normal",
  10357. height: math.unit(18 + 9 / 12, "feet"),
  10358. default: true
  10359. },
  10360. {
  10361. name: "Macro",
  10362. height: math.unit(360, "feet")
  10363. },
  10364. {
  10365. name: "Megamacro",
  10366. height: math.unit(360, "miles")
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(2.4, "meters"),
  10375. weight: math.unit(70, "kg"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/nyanuxk/front.svg",
  10379. extra: 1172 / 1084,
  10380. bottom: 0.065
  10381. }
  10382. },
  10383. side: {
  10384. height: math.unit(2.4, "meters"),
  10385. weight: math.unit(70, "kg"),
  10386. name: "Side",
  10387. image: {
  10388. source: "./media/characters/nyanuxk/side.svg",
  10389. extra: 1190 / 1132,
  10390. bottom: 0.007
  10391. }
  10392. },
  10393. back: {
  10394. height: math.unit(2.4, "meters"),
  10395. weight: math.unit(70, "kg"),
  10396. name: "Back",
  10397. image: {
  10398. source: "./media/characters/nyanuxk/back.svg",
  10399. extra: 1200 / 1141,
  10400. bottom: 0.015
  10401. }
  10402. },
  10403. foot: {
  10404. height: math.unit(0.52, "meters"),
  10405. name: "Foot",
  10406. image: {
  10407. source: "./media/characters/nyanuxk/foot.svg"
  10408. }
  10409. },
  10410. },
  10411. [
  10412. {
  10413. name: "Micro",
  10414. height: math.unit(2, "cm")
  10415. },
  10416. {
  10417. name: "Normal",
  10418. height: math.unit(2.4, "meters"),
  10419. default: true
  10420. },
  10421. {
  10422. name: "Smaller Macro",
  10423. height: math.unit(120, "meters")
  10424. },
  10425. {
  10426. name: "Bigger Macro",
  10427. height: math.unit(1.2, "km")
  10428. },
  10429. {
  10430. name: "Megamacro",
  10431. height: math.unit(15, "kilometers")
  10432. },
  10433. {
  10434. name: "Gigamacro",
  10435. height: math.unit(2000, "km")
  10436. },
  10437. {
  10438. name: "Teramacro",
  10439. height: math.unit(500000, "km")
  10440. },
  10441. ]
  10442. ))
  10443. characterMakers.push(() => makeCharacter(
  10444. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10445. {
  10446. side: {
  10447. height: math.unit(6, "feet"),
  10448. name: "Side",
  10449. image: {
  10450. source: "./media/characters/ailbhe/side.svg",
  10451. extra: 757 / 464,
  10452. bottom: 0.041
  10453. }
  10454. },
  10455. },
  10456. [
  10457. {
  10458. name: "Normal",
  10459. height: math.unit(1.07, "meters"),
  10460. default: true
  10461. },
  10462. ]
  10463. ))
  10464. characterMakers.push(() => makeCharacter(
  10465. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10466. {
  10467. front: {
  10468. height: math.unit(6, "feet"),
  10469. weight: math.unit(120, "kg"),
  10470. name: "Front",
  10471. image: {
  10472. source: "./media/characters/zevulfius/front.svg",
  10473. extra: 965 / 903
  10474. }
  10475. },
  10476. side: {
  10477. height: math.unit(6, "feet"),
  10478. weight: math.unit(120, "kg"),
  10479. name: "Side",
  10480. image: {
  10481. source: "./media/characters/zevulfius/side.svg",
  10482. extra: 939 / 900
  10483. }
  10484. },
  10485. back: {
  10486. height: math.unit(6, "feet"),
  10487. weight: math.unit(120, "kg"),
  10488. name: "Back",
  10489. image: {
  10490. source: "./media/characters/zevulfius/back.svg",
  10491. extra: 918 / 854,
  10492. bottom: 0.005
  10493. }
  10494. },
  10495. foot: {
  10496. height: math.unit(6 / 3.72, "feet"),
  10497. name: "Foot",
  10498. image: {
  10499. source: "./media/characters/zevulfius/foot.svg"
  10500. }
  10501. },
  10502. },
  10503. [
  10504. {
  10505. name: "Macro",
  10506. height: math.unit(750, "meters")
  10507. },
  10508. {
  10509. name: "Megamacro",
  10510. height: math.unit(20, "km"),
  10511. default: true
  10512. },
  10513. {
  10514. name: "Gigamacro",
  10515. height: math.unit(2000, "km")
  10516. },
  10517. {
  10518. name: "Teramacro",
  10519. height: math.unit(250000, "km")
  10520. },
  10521. ]
  10522. ))
  10523. characterMakers.push(() => makeCharacter(
  10524. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10525. {
  10526. front: {
  10527. height: math.unit(100, "feet"),
  10528. weight: math.unit(350, "kg"),
  10529. name: "Front",
  10530. image: {
  10531. source: "./media/characters/rikes/front.svg",
  10532. extra: 1565 / 1483,
  10533. bottom: 0.017
  10534. }
  10535. },
  10536. },
  10537. [
  10538. {
  10539. name: "Macro",
  10540. height: math.unit(100, "feet"),
  10541. default: true
  10542. },
  10543. ]
  10544. ))
  10545. characterMakers.push(() => makeCharacter(
  10546. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10547. {
  10548. front: {
  10549. height: math.unit(8, "feet"),
  10550. weight: math.unit(356, "lb"),
  10551. name: "Front",
  10552. image: {
  10553. source: "./media/characters/adam-silver-mane/front.svg",
  10554. extra: 1036/937,
  10555. bottom: 63/1099
  10556. }
  10557. },
  10558. side: {
  10559. height: math.unit(8, "feet"),
  10560. weight: math.unit(356, "lb"),
  10561. name: "Side",
  10562. image: {
  10563. source: "./media/characters/adam-silver-mane/side.svg",
  10564. extra: 997/901,
  10565. bottom: 59/1056
  10566. }
  10567. },
  10568. frontNsfw: {
  10569. height: math.unit(8, "feet"),
  10570. weight: math.unit(356, "lb"),
  10571. name: "Front (NSFW)",
  10572. image: {
  10573. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10574. extra: 1036/937,
  10575. bottom: 63/1099
  10576. }
  10577. },
  10578. sideNsfw: {
  10579. height: math.unit(8, "feet"),
  10580. weight: math.unit(356, "lb"),
  10581. name: "Side (NSFW)",
  10582. image: {
  10583. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10584. extra: 997/901,
  10585. bottom: 59/1056
  10586. }
  10587. },
  10588. dick: {
  10589. height: math.unit(2.1, "feet"),
  10590. name: "Dick",
  10591. image: {
  10592. source: "./media/characters/adam-silver-mane/dick.svg"
  10593. }
  10594. },
  10595. taur: {
  10596. height: math.unit(16, "feet"),
  10597. weight: math.unit(1500, "kg"),
  10598. name: "Taur",
  10599. image: {
  10600. source: "./media/characters/adam-silver-mane/taur.svg",
  10601. extra: 1713 / 1571,
  10602. bottom: 0.01
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Normal",
  10609. height: math.unit(8, "feet")
  10610. },
  10611. {
  10612. name: "Minimacro",
  10613. height: math.unit(80, "feet")
  10614. },
  10615. {
  10616. name: "MDA",
  10617. height: math.unit(80, "meters")
  10618. },
  10619. {
  10620. name: "Macro",
  10621. height: math.unit(800, "feet"),
  10622. default: true
  10623. },
  10624. {
  10625. name: "Megamacro",
  10626. height: math.unit(8000, "feet")
  10627. },
  10628. {
  10629. name: "Gigamacro",
  10630. height: math.unit(800, "miles")
  10631. },
  10632. {
  10633. name: "Teramacro",
  10634. height: math.unit(80000, "miles")
  10635. },
  10636. {
  10637. name: "Celestial",
  10638. height: math.unit(8e6, "miles")
  10639. },
  10640. {
  10641. name: "Star Dragon",
  10642. height: math.unit(800000, "parsecs")
  10643. },
  10644. {
  10645. name: "Godly",
  10646. height: math.unit(800, "teraparsecs")
  10647. },
  10648. ]
  10649. ))
  10650. characterMakers.push(() => makeCharacter(
  10651. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10652. {
  10653. front: {
  10654. height: math.unit(6, "feet"),
  10655. weight: math.unit(150, "lb"),
  10656. name: "Front",
  10657. image: {
  10658. source: "./media/characters/ky'owin/front.svg",
  10659. extra: 3888 / 3068,
  10660. bottom: 0.015
  10661. }
  10662. },
  10663. },
  10664. [
  10665. {
  10666. name: "Normal",
  10667. height: math.unit(6 + 8 / 12, "feet")
  10668. },
  10669. {
  10670. name: "Large",
  10671. height: math.unit(68, "feet")
  10672. },
  10673. {
  10674. name: "Macro",
  10675. height: math.unit(132, "feet")
  10676. },
  10677. {
  10678. name: "Macro+",
  10679. height: math.unit(340, "feet")
  10680. },
  10681. {
  10682. name: "Macro++",
  10683. height: math.unit(680, "feet"),
  10684. default: true
  10685. },
  10686. {
  10687. name: "Megamacro",
  10688. height: math.unit(1, "mile")
  10689. },
  10690. {
  10691. name: "Megamacro+",
  10692. height: math.unit(10, "miles")
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10698. {
  10699. front: {
  10700. height: math.unit(4, "feet"),
  10701. weight: math.unit(50, "lb"),
  10702. name: "Front",
  10703. image: {
  10704. source: "./media/characters/mal/front.svg",
  10705. extra: 785 / 724,
  10706. bottom: 0.07
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Micro",
  10713. height: math.unit(4, "inches")
  10714. },
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(4, "feet"),
  10718. default: true
  10719. },
  10720. {
  10721. name: "Macro",
  10722. height: math.unit(200, "feet")
  10723. },
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10728. {
  10729. front: {
  10730. height: math.unit(6, "feet"),
  10731. weight: math.unit(150, "lb"),
  10732. name: "Front",
  10733. image: {
  10734. source: "./media/characters/jordan-deware/front.svg",
  10735. extra: 1191 / 1012
  10736. }
  10737. },
  10738. },
  10739. [
  10740. {
  10741. name: "Nano",
  10742. height: math.unit(0.01, "mm")
  10743. },
  10744. {
  10745. name: "Minimicro",
  10746. height: math.unit(1, "mm")
  10747. },
  10748. {
  10749. name: "Micro",
  10750. height: math.unit(0.5, "inches")
  10751. },
  10752. {
  10753. name: "Normal",
  10754. height: math.unit(4, "feet"),
  10755. default: true
  10756. },
  10757. {
  10758. name: "Minimacro",
  10759. height: math.unit(40, "meters")
  10760. },
  10761. {
  10762. name: "Small Macro",
  10763. height: math.unit(400, "meters")
  10764. },
  10765. {
  10766. name: "Macro",
  10767. height: math.unit(4, "miles")
  10768. },
  10769. {
  10770. name: "Megamacro",
  10771. height: math.unit(40, "miles")
  10772. },
  10773. {
  10774. name: "Megamacro+",
  10775. height: math.unit(400, "miles")
  10776. },
  10777. {
  10778. name: "Gigamacro",
  10779. height: math.unit(400000, "miles")
  10780. },
  10781. ]
  10782. ))
  10783. characterMakers.push(() => makeCharacter(
  10784. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10785. {
  10786. side: {
  10787. height: math.unit(6, "feet"),
  10788. weight: math.unit(150, "lb"),
  10789. name: "Side",
  10790. image: {
  10791. source: "./media/characters/kimiko/side.svg",
  10792. extra: 600 / 358
  10793. }
  10794. },
  10795. },
  10796. [
  10797. {
  10798. name: "Normal",
  10799. height: math.unit(15, "feet"),
  10800. default: true
  10801. },
  10802. {
  10803. name: "Macro",
  10804. height: math.unit(220, "feet")
  10805. },
  10806. {
  10807. name: "Macro+",
  10808. height: math.unit(1450, "feet")
  10809. },
  10810. {
  10811. name: "Megamacro",
  10812. height: math.unit(11500, "feet")
  10813. },
  10814. {
  10815. name: "Gigamacro",
  10816. height: math.unit(9500, "miles")
  10817. },
  10818. {
  10819. name: "Teramacro",
  10820. height: math.unit(2208005005, "miles")
  10821. },
  10822. {
  10823. name: "Examacro",
  10824. height: math.unit(2750, "parsecs")
  10825. },
  10826. {
  10827. name: "Zettamacro",
  10828. height: math.unit(101500, "parsecs")
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10834. {
  10835. front: {
  10836. height: math.unit(6, "feet"),
  10837. weight: math.unit(70, "kg"),
  10838. name: "Front",
  10839. image: {
  10840. source: "./media/characters/andrew-sleepy/front.svg"
  10841. }
  10842. },
  10843. side: {
  10844. height: math.unit(6, "feet"),
  10845. weight: math.unit(70, "kg"),
  10846. name: "Side",
  10847. image: {
  10848. source: "./media/characters/andrew-sleepy/side.svg"
  10849. }
  10850. },
  10851. },
  10852. [
  10853. {
  10854. name: "Micro",
  10855. height: math.unit(1, "mm"),
  10856. default: true
  10857. },
  10858. ]
  10859. ))
  10860. characterMakers.push(() => makeCharacter(
  10861. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10862. {
  10863. front: {
  10864. height: math.unit(6, "feet"),
  10865. weight: math.unit(150, "lb"),
  10866. name: "Front",
  10867. image: {
  10868. source: "./media/characters/judio/front.svg",
  10869. extra: 1258 / 1110
  10870. }
  10871. },
  10872. },
  10873. [
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(5 + 6 / 12, "feet")
  10877. },
  10878. {
  10879. name: "Macro",
  10880. height: math.unit(1000, "feet"),
  10881. default: true
  10882. },
  10883. {
  10884. name: "Megamacro",
  10885. height: math.unit(10, "miles")
  10886. },
  10887. ]
  10888. ))
  10889. characterMakers.push(() => makeCharacter(
  10890. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10891. {
  10892. front: {
  10893. height: math.unit(6, "feet"),
  10894. weight: math.unit(68, "kg"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/nomaxice/front.svg",
  10898. extra: 1498 / 1073,
  10899. bottom: 0.075
  10900. }
  10901. },
  10902. foot: {
  10903. height: math.unit(1.1, "feet"),
  10904. name: "Foot",
  10905. image: {
  10906. source: "./media/characters/nomaxice/foot.svg"
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Micro",
  10913. height: math.unit(8, "cm")
  10914. },
  10915. {
  10916. name: "Norm",
  10917. height: math.unit(1.82, "m")
  10918. },
  10919. {
  10920. name: "Norm+",
  10921. height: math.unit(8.8, "feet")
  10922. },
  10923. {
  10924. name: "Big",
  10925. height: math.unit(8, "meters"),
  10926. default: true
  10927. },
  10928. {
  10929. name: "Macro",
  10930. height: math.unit(18, "meters")
  10931. },
  10932. {
  10933. name: "Macro+",
  10934. height: math.unit(88, "meters")
  10935. },
  10936. ]
  10937. ))
  10938. characterMakers.push(() => makeCharacter(
  10939. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10940. {
  10941. front: {
  10942. height: math.unit(12, "feet"),
  10943. weight: math.unit(1.5, "tons"),
  10944. name: "Front",
  10945. image: {
  10946. source: "./media/characters/dydros/front.svg",
  10947. extra: 863 / 800,
  10948. bottom: 0.015
  10949. }
  10950. },
  10951. back: {
  10952. height: math.unit(12, "feet"),
  10953. weight: math.unit(1.5, "tons"),
  10954. name: "Back",
  10955. image: {
  10956. source: "./media/characters/dydros/back.svg",
  10957. extra: 900 / 843,
  10958. bottom: 0.005
  10959. }
  10960. },
  10961. },
  10962. [
  10963. {
  10964. name: "Normal",
  10965. height: math.unit(12, "feet"),
  10966. default: true
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10972. {
  10973. front: {
  10974. height: math.unit(6, "feet"),
  10975. weight: math.unit(100, "kg"),
  10976. name: "Front",
  10977. image: {
  10978. source: "./media/characters/riggi/front.svg",
  10979. extra: 5787 / 5303
  10980. }
  10981. },
  10982. hyper: {
  10983. height: math.unit(6 * 5 / 3, "feet"),
  10984. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10985. name: "Hyper",
  10986. image: {
  10987. source: "./media/characters/riggi/hyper.svg",
  10988. extra: 3595 / 3485
  10989. }
  10990. },
  10991. },
  10992. [
  10993. {
  10994. name: "Small Macro",
  10995. height: math.unit(50, "feet")
  10996. },
  10997. {
  10998. name: "Default",
  10999. height: math.unit(200, "feet"),
  11000. default: true
  11001. },
  11002. {
  11003. name: "Loom",
  11004. height: math.unit(10000, "feet")
  11005. },
  11006. {
  11007. name: "Cruising Altitude",
  11008. height: math.unit(30000, "feet")
  11009. },
  11010. {
  11011. name: "Megamacro",
  11012. height: math.unit(100, "miles")
  11013. },
  11014. {
  11015. name: "Continent Sized",
  11016. height: math.unit(2800, "miles")
  11017. },
  11018. {
  11019. name: "Earth Sized",
  11020. height: math.unit(8000, "miles")
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11026. {
  11027. front: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(250, "lb"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/alexi/front.svg",
  11033. extra: 3483 / 3291,
  11034. bottom: 0.04
  11035. }
  11036. },
  11037. back: {
  11038. height: math.unit(6, "feet"),
  11039. weight: math.unit(250, "lb"),
  11040. name: "Back",
  11041. image: {
  11042. source: "./media/characters/alexi/back.svg",
  11043. extra: 3533 / 3356,
  11044. bottom: 0.021
  11045. }
  11046. },
  11047. frontTransforming: {
  11048. height: math.unit(8.58, "feet"),
  11049. weight: math.unit(1300, "lb"),
  11050. name: "Transforming",
  11051. image: {
  11052. source: "./media/characters/alexi/front-transforming.svg",
  11053. extra: 437 / 409,
  11054. bottom: 19 / 458.66
  11055. }
  11056. },
  11057. frontTransformed: {
  11058. height: math.unit(12.5, "feet"),
  11059. weight: math.unit(4000, "lb"),
  11060. name: "Transformed",
  11061. image: {
  11062. source: "./media/characters/alexi/front-transformed.svg",
  11063. extra: 639 / 614,
  11064. bottom: 30.55 / 671
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Normal",
  11071. height: math.unit(14, "feet"),
  11072. default: true
  11073. },
  11074. {
  11075. name: "Minimacro",
  11076. height: math.unit(30, "meters")
  11077. },
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(500, "meters")
  11081. },
  11082. {
  11083. name: "Megamacro",
  11084. height: math.unit(9000, "km")
  11085. },
  11086. {
  11087. name: "Teramacro",
  11088. height: math.unit(384000, "km")
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11094. {
  11095. front: {
  11096. height: math.unit(6, "feet"),
  11097. weight: math.unit(150, "lb"),
  11098. name: "Front",
  11099. image: {
  11100. source: "./media/characters/kayroo/front.svg",
  11101. extra: 1153 / 1038,
  11102. bottom: 0.06
  11103. }
  11104. },
  11105. foot: {
  11106. height: math.unit(6, "feet"),
  11107. weight: math.unit(150, "lb"),
  11108. name: "Foot",
  11109. image: {
  11110. source: "./media/characters/kayroo/foot.svg"
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Normal",
  11117. height: math.unit(8, "feet"),
  11118. default: true
  11119. },
  11120. {
  11121. name: "Minimacro",
  11122. height: math.unit(250, "feet")
  11123. },
  11124. {
  11125. name: "Macro",
  11126. height: math.unit(2800, "feet")
  11127. },
  11128. {
  11129. name: "Megamacro",
  11130. height: math.unit(5200, "feet")
  11131. },
  11132. {
  11133. name: "Gigamacro",
  11134. height: math.unit(27000, "feet")
  11135. },
  11136. {
  11137. name: "Omega",
  11138. height: math.unit(45000, "feet")
  11139. },
  11140. ]
  11141. ))
  11142. characterMakers.push(() => makeCharacter(
  11143. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11144. {
  11145. front: {
  11146. height: math.unit(18, "feet"),
  11147. weight: math.unit(5800, "lb"),
  11148. name: "Front",
  11149. image: {
  11150. source: "./media/characters/rhys/front.svg",
  11151. extra: 3386 / 3090,
  11152. bottom: 0.07
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Normal",
  11159. height: math.unit(18, "feet"),
  11160. default: true
  11161. },
  11162. {
  11163. name: "Working Size",
  11164. height: math.unit(200, "feet")
  11165. },
  11166. {
  11167. name: "Demolition Size",
  11168. height: math.unit(2000, "feet")
  11169. },
  11170. {
  11171. name: "Maximum Licensed Size",
  11172. height: math.unit(5, "miles")
  11173. },
  11174. {
  11175. name: "Maximum Observed Size",
  11176. height: math.unit(10, "yottameters")
  11177. },
  11178. ]
  11179. ))
  11180. characterMakers.push(() => makeCharacter(
  11181. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11182. {
  11183. front: {
  11184. height: math.unit(6, "feet"),
  11185. weight: math.unit(250, "lb"),
  11186. name: "Front",
  11187. image: {
  11188. source: "./media/characters/toto/front.svg",
  11189. extra: 527 / 479,
  11190. bottom: 0.05
  11191. }
  11192. },
  11193. },
  11194. [
  11195. {
  11196. name: "Micro",
  11197. height: math.unit(3, "feet")
  11198. },
  11199. {
  11200. name: "Normal",
  11201. height: math.unit(10, "feet")
  11202. },
  11203. {
  11204. name: "Macro",
  11205. height: math.unit(150, "feet"),
  11206. default: true
  11207. },
  11208. {
  11209. name: "Megamacro",
  11210. height: math.unit(1200, "feet")
  11211. },
  11212. ]
  11213. ))
  11214. characterMakers.push(() => makeCharacter(
  11215. { name: "King", species: ["lion"], tags: ["anthro"] },
  11216. {
  11217. back: {
  11218. height: math.unit(6, "feet"),
  11219. weight: math.unit(150, "lb"),
  11220. name: "Back",
  11221. image: {
  11222. source: "./media/characters/king/back.svg"
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Micro",
  11229. height: math.unit(2, "inches")
  11230. },
  11231. {
  11232. name: "Normal",
  11233. height: math.unit(8, "feet")
  11234. },
  11235. {
  11236. name: "Macro",
  11237. height: math.unit(200, "feet"),
  11238. default: true
  11239. },
  11240. {
  11241. name: "Megamacro",
  11242. height: math.unit(50, "miles")
  11243. },
  11244. ]
  11245. ))
  11246. characterMakers.push(() => makeCharacter(
  11247. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11248. {
  11249. front: {
  11250. height: math.unit(11, "feet"),
  11251. weight: math.unit(1400, "lb"),
  11252. name: "Front",
  11253. image: {
  11254. source: "./media/characters/cordite/front.svg",
  11255. extra: 1919/1827,
  11256. bottom: 40/1959
  11257. }
  11258. },
  11259. side: {
  11260. height: math.unit(11, "feet"),
  11261. weight: math.unit(1400, "lb"),
  11262. name: "Side",
  11263. image: {
  11264. source: "./media/characters/cordite/side.svg",
  11265. extra: 1908/1793,
  11266. bottom: 38/1946
  11267. }
  11268. },
  11269. back: {
  11270. height: math.unit(11, "feet"),
  11271. weight: math.unit(1400, "lb"),
  11272. name: "Back",
  11273. image: {
  11274. source: "./media/characters/cordite/back.svg",
  11275. extra: 1938/1837,
  11276. bottom: 10/1948
  11277. }
  11278. },
  11279. feral: {
  11280. height: math.unit(2, "feet"),
  11281. weight: math.unit(90, "lb"),
  11282. name: "Feral",
  11283. image: {
  11284. source: "./media/characters/cordite/feral.svg",
  11285. extra: 1260 / 755,
  11286. bottom: 0.05
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Normal",
  11293. height: math.unit(11, "feet"),
  11294. default: true
  11295. },
  11296. ]
  11297. ))
  11298. characterMakers.push(() => makeCharacter(
  11299. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11300. {
  11301. front: {
  11302. height: math.unit(6, "feet"),
  11303. weight: math.unit(150, "lb"),
  11304. name: "Front",
  11305. image: {
  11306. source: "./media/characters/pianostrong/front.svg",
  11307. extra: 6577 / 6254,
  11308. bottom: 0.02
  11309. }
  11310. },
  11311. side: {
  11312. height: math.unit(6, "feet"),
  11313. weight: math.unit(150, "lb"),
  11314. name: "Side",
  11315. image: {
  11316. source: "./media/characters/pianostrong/side.svg",
  11317. extra: 6106 / 5730
  11318. }
  11319. },
  11320. back: {
  11321. height: math.unit(6, "feet"),
  11322. weight: math.unit(150, "lb"),
  11323. name: "Back",
  11324. image: {
  11325. source: "./media/characters/pianostrong/back.svg",
  11326. extra: 6085 / 5733,
  11327. bottom: 0.01
  11328. }
  11329. },
  11330. },
  11331. [
  11332. {
  11333. name: "Macro",
  11334. height: math.unit(100, "feet")
  11335. },
  11336. {
  11337. name: "Macro+",
  11338. height: math.unit(300, "feet"),
  11339. default: true
  11340. },
  11341. {
  11342. name: "Macro++",
  11343. height: math.unit(1000, "feet")
  11344. },
  11345. ]
  11346. ))
  11347. characterMakers.push(() => makeCharacter(
  11348. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11349. {
  11350. front: {
  11351. height: math.unit(6, "feet"),
  11352. weight: math.unit(150, "lb"),
  11353. name: "Front",
  11354. image: {
  11355. source: "./media/characters/kona/front.svg",
  11356. extra: 2960 / 2629,
  11357. bottom: 0.005
  11358. }
  11359. },
  11360. },
  11361. [
  11362. {
  11363. name: "Normal",
  11364. height: math.unit(11 + 8 / 12, "feet")
  11365. },
  11366. {
  11367. name: "Macro",
  11368. height: math.unit(850, "feet"),
  11369. default: true
  11370. },
  11371. {
  11372. name: "Macro+",
  11373. height: math.unit(1.5, "km"),
  11374. default: true
  11375. },
  11376. {
  11377. name: "Megamacro",
  11378. height: math.unit(80, "miles")
  11379. },
  11380. {
  11381. name: "Gigamacro",
  11382. height: math.unit(3500, "miles")
  11383. },
  11384. ]
  11385. ))
  11386. characterMakers.push(() => makeCharacter(
  11387. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11388. {
  11389. side: {
  11390. height: math.unit(1.9, "meters"),
  11391. weight: math.unit(326, "kg"),
  11392. name: "Side",
  11393. image: {
  11394. source: "./media/characters/levi/side.svg",
  11395. extra: 1704 / 1334,
  11396. bottom: 0.02
  11397. }
  11398. },
  11399. },
  11400. [
  11401. {
  11402. name: "Normal",
  11403. height: math.unit(1.9, "meters"),
  11404. default: true
  11405. },
  11406. {
  11407. name: "Macro",
  11408. height: math.unit(20, "meters")
  11409. },
  11410. {
  11411. name: "Macro+",
  11412. height: math.unit(200, "meters")
  11413. },
  11414. {
  11415. name: "Megamacro",
  11416. height: math.unit(2, "km")
  11417. },
  11418. {
  11419. name: "Megamacro+",
  11420. height: math.unit(20, "km")
  11421. },
  11422. {
  11423. name: "Gigamacro",
  11424. height: math.unit(2500, "km")
  11425. },
  11426. {
  11427. name: "Gigamacro+",
  11428. height: math.unit(120000, "km")
  11429. },
  11430. {
  11431. name: "Teramacro",
  11432. height: math.unit(7.77e6, "km")
  11433. },
  11434. ]
  11435. ))
  11436. characterMakers.push(() => makeCharacter(
  11437. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11438. {
  11439. front: {
  11440. height: math.unit(6 + 4/12, "feet"),
  11441. weight: math.unit(190, "lb"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/bmc/front.svg",
  11445. extra: 1626/1472,
  11446. bottom: 79/1705
  11447. }
  11448. },
  11449. back: {
  11450. height: math.unit(6 + 4/12, "feet"),
  11451. weight: math.unit(190, "lb"),
  11452. name: "Back",
  11453. image: {
  11454. source: "./media/characters/bmc/back.svg",
  11455. extra: 1640/1479,
  11456. bottom: 45/1685
  11457. }
  11458. },
  11459. frontArmor: {
  11460. height: math.unit(6 + 4/12, "feet"),
  11461. weight: math.unit(190, "lb"),
  11462. name: "Front-armor",
  11463. image: {
  11464. source: "./media/characters/bmc/front-armor.svg",
  11465. extra: 1538/1468,
  11466. bottom: 79/1617
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Human-sized",
  11473. height: math.unit(6 + 4 / 12, "feet")
  11474. },
  11475. {
  11476. name: "Interactive Size",
  11477. height: math.unit(25, "feet")
  11478. },
  11479. {
  11480. name: "Small",
  11481. height: math.unit(250, "feet")
  11482. },
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(1250, "feet"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Good Day",
  11490. height: math.unit(88, "miles")
  11491. },
  11492. {
  11493. name: "Largest Measured Size",
  11494. height: math.unit(105.960, "galaxies")
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11500. {
  11501. front: {
  11502. height: math.unit(20, "feet"),
  11503. weight: math.unit(2016, "kg"),
  11504. name: "Front",
  11505. image: {
  11506. source: "./media/characters/sven-the-kaiju/front.svg",
  11507. extra: 1277/1250,
  11508. bottom: 35/1312
  11509. }
  11510. },
  11511. mouth: {
  11512. height: math.unit(1.85, "feet"),
  11513. name: "Mouth",
  11514. image: {
  11515. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11516. }
  11517. },
  11518. },
  11519. [
  11520. {
  11521. name: "Fairy",
  11522. height: math.unit(6, "inches")
  11523. },
  11524. {
  11525. name: "Normal",
  11526. height: math.unit(20, "feet"),
  11527. default: true
  11528. },
  11529. {
  11530. name: "Rampage",
  11531. height: math.unit(200, "feet")
  11532. },
  11533. {
  11534. name: "Archfey Forest Guardian",
  11535. height: math.unit(1, "mile")
  11536. },
  11537. ]
  11538. ))
  11539. characterMakers.push(() => makeCharacter(
  11540. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11541. {
  11542. front: {
  11543. height: math.unit(4, "meters"),
  11544. weight: math.unit(2, "tons"),
  11545. name: "Front",
  11546. image: {
  11547. source: "./media/characters/marik/front.svg",
  11548. extra: 1057 / 1003,
  11549. bottom: 0.08
  11550. }
  11551. },
  11552. },
  11553. [
  11554. {
  11555. name: "Normal",
  11556. height: math.unit(4, "meters"),
  11557. default: true
  11558. },
  11559. {
  11560. name: "Macro",
  11561. height: math.unit(20, "meters")
  11562. },
  11563. {
  11564. name: "Megamacro",
  11565. height: math.unit(50, "km")
  11566. },
  11567. {
  11568. name: "Gigamacro",
  11569. height: math.unit(100, "km")
  11570. },
  11571. {
  11572. name: "Alpha Macro",
  11573. height: math.unit(7.88e7, "yottameters")
  11574. },
  11575. ]
  11576. ))
  11577. characterMakers.push(() => makeCharacter(
  11578. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11579. {
  11580. front: {
  11581. height: math.unit(6, "feet"),
  11582. weight: math.unit(110, "lb"),
  11583. name: "Front",
  11584. image: {
  11585. source: "./media/characters/mel/front.svg",
  11586. extra: 736 / 617,
  11587. bottom: 0.017
  11588. }
  11589. },
  11590. },
  11591. [
  11592. {
  11593. name: "Pico",
  11594. height: math.unit(3, "pm")
  11595. },
  11596. {
  11597. name: "Nano",
  11598. height: math.unit(3, "nm")
  11599. },
  11600. {
  11601. name: "Micro",
  11602. height: math.unit(0.3, "mm"),
  11603. default: true
  11604. },
  11605. {
  11606. name: "Micro+",
  11607. height: math.unit(3, "mm")
  11608. },
  11609. {
  11610. name: "Normal",
  11611. height: math.unit(5 + 10.5 / 12, "feet")
  11612. },
  11613. ]
  11614. ))
  11615. characterMakers.push(() => makeCharacter(
  11616. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11617. {
  11618. kaiju: {
  11619. height: math.unit(1.75, "meters"),
  11620. weight: math.unit(55, "kg"),
  11621. name: "Kaiju",
  11622. image: {
  11623. source: "./media/characters/lykonous/kaiju.svg",
  11624. extra: 1055 / 946,
  11625. bottom: 0.135
  11626. }
  11627. },
  11628. },
  11629. [
  11630. {
  11631. name: "Normal",
  11632. height: math.unit(2.5, "meters"),
  11633. default: true
  11634. },
  11635. {
  11636. name: "Kaiju Dragon",
  11637. height: math.unit(60, "meters")
  11638. },
  11639. {
  11640. name: "Mega Kaiju",
  11641. height: math.unit(120, "km")
  11642. },
  11643. {
  11644. name: "Giga Kaiju",
  11645. height: math.unit(200, "megameters")
  11646. },
  11647. {
  11648. name: "Terra Kaiju",
  11649. height: math.unit(400, "gigameters")
  11650. },
  11651. {
  11652. name: "Kaiju Dragon God",
  11653. height: math.unit(13000, "exaparsecs")
  11654. },
  11655. ]
  11656. ))
  11657. characterMakers.push(() => makeCharacter(
  11658. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11659. {
  11660. front: {
  11661. height: math.unit(6, "feet"),
  11662. weight: math.unit(150, "lb"),
  11663. name: "Front",
  11664. image: {
  11665. source: "./media/characters/blü/front.svg",
  11666. extra: 1883 / 1564,
  11667. bottom: 0.031
  11668. }
  11669. },
  11670. },
  11671. [
  11672. {
  11673. name: "Normal",
  11674. height: math.unit(13, "feet"),
  11675. default: true
  11676. },
  11677. {
  11678. name: "Big Boi",
  11679. height: math.unit(150, "meters")
  11680. },
  11681. {
  11682. name: "Mini Stomper",
  11683. height: math.unit(300, "meters")
  11684. },
  11685. {
  11686. name: "Macro",
  11687. height: math.unit(1000, "meters")
  11688. },
  11689. {
  11690. name: "Megamacro",
  11691. height: math.unit(11000, "meters")
  11692. },
  11693. {
  11694. name: "Gigamacro",
  11695. height: math.unit(11000, "km")
  11696. },
  11697. {
  11698. name: "Teramacro",
  11699. height: math.unit(420000, "km")
  11700. },
  11701. {
  11702. name: "Examacro",
  11703. height: math.unit(120, "parsecs")
  11704. },
  11705. {
  11706. name: "God Tho",
  11707. height: math.unit(98000000000, "parsecs")
  11708. },
  11709. ]
  11710. ))
  11711. characterMakers.push(() => makeCharacter(
  11712. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11713. {
  11714. taurFront: {
  11715. height: math.unit(6, "feet"),
  11716. weight: math.unit(200, "lb"),
  11717. name: "Taur (Front)",
  11718. image: {
  11719. source: "./media/characters/scales/taur-front.svg",
  11720. extra: 1,
  11721. bottom: 0.05
  11722. }
  11723. },
  11724. taurBack: {
  11725. height: math.unit(6, "feet"),
  11726. weight: math.unit(200, "lb"),
  11727. name: "Taur (Back)",
  11728. image: {
  11729. source: "./media/characters/scales/taur-back.svg",
  11730. extra: 1,
  11731. bottom: 0.08
  11732. }
  11733. },
  11734. anthro: {
  11735. height: math.unit(6 * 7 / 12, "feet"),
  11736. weight: math.unit(100, "lb"),
  11737. name: "Anthro",
  11738. image: {
  11739. source: "./media/characters/scales/anthro.svg",
  11740. extra: 1,
  11741. bottom: 0.06
  11742. }
  11743. },
  11744. },
  11745. [
  11746. {
  11747. name: "Normal",
  11748. height: math.unit(12, "feet"),
  11749. default: true
  11750. },
  11751. ]
  11752. ))
  11753. characterMakers.push(() => makeCharacter(
  11754. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11755. {
  11756. front: {
  11757. height: math.unit(6, "feet"),
  11758. weight: math.unit(150, "lb"),
  11759. name: "Front",
  11760. image: {
  11761. source: "./media/characters/koragos/front.svg",
  11762. extra: 841 / 794,
  11763. bottom: 0.035
  11764. }
  11765. },
  11766. back: {
  11767. height: math.unit(6, "feet"),
  11768. weight: math.unit(150, "lb"),
  11769. name: "Back",
  11770. image: {
  11771. source: "./media/characters/koragos/back.svg",
  11772. extra: 841 / 810,
  11773. bottom: 0.022
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Normal",
  11780. height: math.unit(6 + 11 / 12, "feet"),
  11781. default: true
  11782. },
  11783. {
  11784. name: "Macro",
  11785. height: math.unit(490, "feet")
  11786. },
  11787. {
  11788. name: "Megamacro",
  11789. height: math.unit(10, "miles")
  11790. },
  11791. {
  11792. name: "Gigamacro",
  11793. height: math.unit(50, "miles")
  11794. },
  11795. ]
  11796. ))
  11797. characterMakers.push(() => makeCharacter(
  11798. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11799. {
  11800. front: {
  11801. height: math.unit(6, "feet"),
  11802. weight: math.unit(250, "lb"),
  11803. name: "Front",
  11804. image: {
  11805. source: "./media/characters/xylrem/front.svg",
  11806. extra: 3323 / 3050,
  11807. bottom: 0.065
  11808. }
  11809. },
  11810. },
  11811. [
  11812. {
  11813. name: "Micro",
  11814. height: math.unit(4, "feet")
  11815. },
  11816. {
  11817. name: "Normal",
  11818. height: math.unit(16, "feet"),
  11819. default: true
  11820. },
  11821. {
  11822. name: "Macro",
  11823. height: math.unit(2720, "feet")
  11824. },
  11825. {
  11826. name: "Megamacro",
  11827. height: math.unit(25000, "miles")
  11828. },
  11829. ]
  11830. ))
  11831. characterMakers.push(() => makeCharacter(
  11832. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11833. {
  11834. front: {
  11835. height: math.unit(8, "feet"),
  11836. weight: math.unit(250, "kg"),
  11837. name: "Front",
  11838. image: {
  11839. source: "./media/characters/ikideru/front.svg",
  11840. extra: 930 / 870,
  11841. bottom: 0.087
  11842. }
  11843. },
  11844. back: {
  11845. height: math.unit(8, "feet"),
  11846. weight: math.unit(250, "kg"),
  11847. name: "Back",
  11848. image: {
  11849. source: "./media/characters/ikideru/back.svg",
  11850. extra: 919 / 852,
  11851. bottom: 0.055
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Rare",
  11858. height: math.unit(8, "feet"),
  11859. default: true
  11860. },
  11861. {
  11862. name: "Playful Loom",
  11863. height: math.unit(80, "feet")
  11864. },
  11865. {
  11866. name: "City Leaner",
  11867. height: math.unit(230, "feet")
  11868. },
  11869. {
  11870. name: "Megamacro",
  11871. height: math.unit(2500, "feet")
  11872. },
  11873. {
  11874. name: "Gigamacro",
  11875. height: math.unit(26400, "feet")
  11876. },
  11877. {
  11878. name: "Tectonic Shifter",
  11879. height: math.unit(1.7, "megameters")
  11880. },
  11881. {
  11882. name: "Planet Carer",
  11883. height: math.unit(21, "megameters")
  11884. },
  11885. {
  11886. name: "God",
  11887. height: math.unit(11157.22, "parsecs")
  11888. },
  11889. ]
  11890. ))
  11891. characterMakers.push(() => makeCharacter(
  11892. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11893. {
  11894. front: {
  11895. height: math.unit(6, "feet"),
  11896. weight: math.unit(120, "lb"),
  11897. name: "Front",
  11898. image: {
  11899. source: "./media/characters/neo/front.svg"
  11900. }
  11901. },
  11902. },
  11903. [
  11904. {
  11905. name: "Micro",
  11906. height: math.unit(2, "inches"),
  11907. default: true
  11908. },
  11909. {
  11910. name: "Human Size",
  11911. height: math.unit(5 + 8 / 12, "feet")
  11912. },
  11913. ]
  11914. ))
  11915. characterMakers.push(() => makeCharacter(
  11916. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11917. {
  11918. front: {
  11919. height: math.unit(13 + 10 / 12, "feet"),
  11920. weight: math.unit(5320, "lb"),
  11921. name: "Front",
  11922. image: {
  11923. source: "./media/characters/chauncey-chantz/front.svg",
  11924. extra: 1587 / 1435,
  11925. bottom: 0.02
  11926. }
  11927. },
  11928. },
  11929. [
  11930. {
  11931. name: "Normal",
  11932. height: math.unit(13 + 10 / 12, "feet"),
  11933. default: true
  11934. },
  11935. {
  11936. name: "Macro",
  11937. height: math.unit(45, "feet")
  11938. },
  11939. {
  11940. name: "Megamacro",
  11941. height: math.unit(250, "miles")
  11942. },
  11943. {
  11944. name: "Planetary",
  11945. height: math.unit(10000, "miles")
  11946. },
  11947. {
  11948. name: "Galactic",
  11949. height: math.unit(40000, "parsecs")
  11950. },
  11951. {
  11952. name: "Universal",
  11953. height: math.unit(1, "yottameter")
  11954. },
  11955. ]
  11956. ))
  11957. characterMakers.push(() => makeCharacter(
  11958. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11959. {
  11960. front: {
  11961. height: math.unit(6, "feet"),
  11962. weight: math.unit(150, "lb"),
  11963. name: "Front",
  11964. image: {
  11965. source: "./media/characters/epifox/front.svg",
  11966. extra: 1,
  11967. bottom: 0.075
  11968. }
  11969. },
  11970. },
  11971. [
  11972. {
  11973. name: "Micro",
  11974. height: math.unit(6, "inches")
  11975. },
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(12, "feet"),
  11979. default: true
  11980. },
  11981. {
  11982. name: "Macro",
  11983. height: math.unit(3810, "feet")
  11984. },
  11985. {
  11986. name: "Megamacro",
  11987. height: math.unit(500, "miles")
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(1.8796, "m"),
  11996. weight: math.unit(230, "lb"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/colin-t/front.svg",
  12000. extra: 1272 / 1193,
  12001. bottom: 0.07
  12002. }
  12003. },
  12004. },
  12005. [
  12006. {
  12007. name: "Micro",
  12008. height: math.unit(0.571, "meters")
  12009. },
  12010. {
  12011. name: "Normal",
  12012. height: math.unit(1.8796, "meters"),
  12013. default: true
  12014. },
  12015. {
  12016. name: "Tall",
  12017. height: math.unit(4, "meters")
  12018. },
  12019. {
  12020. name: "Macro",
  12021. height: math.unit(67.241, "meters")
  12022. },
  12023. {
  12024. name: "Megamacro",
  12025. height: math.unit(371.856, "meters")
  12026. },
  12027. {
  12028. name: "Planetary",
  12029. height: math.unit(12631.5689, "km")
  12030. },
  12031. ]
  12032. ))
  12033. characterMakers.push(() => makeCharacter(
  12034. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12035. {
  12036. front: {
  12037. height: math.unit(1.85, "meters"),
  12038. weight: math.unit(80, "kg"),
  12039. name: "Front",
  12040. image: {
  12041. source: "./media/characters/matvei/front.svg",
  12042. extra: 614 / 594,
  12043. bottom: 0.01
  12044. }
  12045. },
  12046. },
  12047. [
  12048. {
  12049. name: "Normal",
  12050. height: math.unit(1.85, "meters"),
  12051. default: true
  12052. },
  12053. ]
  12054. ))
  12055. characterMakers.push(() => makeCharacter(
  12056. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12057. {
  12058. front: {
  12059. height: math.unit(5 + 9 / 12, "feet"),
  12060. weight: math.unit(70, "lb"),
  12061. name: "Front",
  12062. image: {
  12063. source: "./media/characters/quincy/front.svg",
  12064. extra: 3041 / 2751
  12065. }
  12066. },
  12067. back: {
  12068. height: math.unit(5 + 9 / 12, "feet"),
  12069. weight: math.unit(70, "lb"),
  12070. name: "Back",
  12071. image: {
  12072. source: "./media/characters/quincy/back.svg",
  12073. extra: 3041 / 2751
  12074. }
  12075. },
  12076. flying: {
  12077. height: math.unit(5 + 4 / 12, "feet"),
  12078. weight: math.unit(70, "lb"),
  12079. name: "Flying",
  12080. image: {
  12081. source: "./media/characters/quincy/flying.svg",
  12082. extra: 1044 / 930
  12083. }
  12084. },
  12085. },
  12086. [
  12087. {
  12088. name: "Micro",
  12089. height: math.unit(3, "cm")
  12090. },
  12091. {
  12092. name: "Normal",
  12093. height: math.unit(5 + 9 / 12, "feet")
  12094. },
  12095. {
  12096. name: "Macro",
  12097. height: math.unit(200, "meters"),
  12098. default: true
  12099. },
  12100. {
  12101. name: "Megamacro",
  12102. height: math.unit(1000, "meters")
  12103. },
  12104. ]
  12105. ))
  12106. characterMakers.push(() => makeCharacter(
  12107. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12108. {
  12109. front: {
  12110. height: math.unit(3 + 11/12, "feet"),
  12111. weight: math.unit(50, "lb"),
  12112. name: "Front",
  12113. image: {
  12114. source: "./media/characters/vanrel/front.svg",
  12115. extra: 1104/949,
  12116. bottom: 52/1156
  12117. }
  12118. },
  12119. back: {
  12120. height: math.unit(3 + 11/12, "feet"),
  12121. weight: math.unit(50, "lb"),
  12122. name: "Back",
  12123. image: {
  12124. source: "./media/characters/vanrel/back.svg",
  12125. extra: 1119/976,
  12126. bottom: 37/1156
  12127. }
  12128. },
  12129. tome: {
  12130. height: math.unit(1.35, "feet"),
  12131. weight: math.unit(10, "lb"),
  12132. name: "Vanrel's Tome",
  12133. rename: true,
  12134. image: {
  12135. source: "./media/characters/vanrel/tome.svg"
  12136. }
  12137. },
  12138. beans: {
  12139. height: math.unit(0.89, "feet"),
  12140. name: "Beans",
  12141. image: {
  12142. source: "./media/characters/vanrel/beans.svg"
  12143. }
  12144. },
  12145. },
  12146. [
  12147. {
  12148. name: "Normal",
  12149. height: math.unit(3 + 11/12, "feet"),
  12150. default: true
  12151. },
  12152. ]
  12153. ))
  12154. characterMakers.push(() => makeCharacter(
  12155. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12156. {
  12157. front: {
  12158. height: math.unit(7 + 5 / 12, "feet"),
  12159. name: "Front",
  12160. image: {
  12161. source: "./media/characters/kuiper-vanrel/front.svg",
  12162. extra: 1219/1169,
  12163. bottom: 69/1288
  12164. }
  12165. },
  12166. back: {
  12167. height: math.unit(7 + 5 / 12, "feet"),
  12168. name: "Back",
  12169. image: {
  12170. source: "./media/characters/kuiper-vanrel/back.svg",
  12171. extra: 1236/1193,
  12172. bottom: 27/1263
  12173. }
  12174. },
  12175. foot: {
  12176. height: math.unit(0.55, "meters"),
  12177. name: "Foot",
  12178. image: {
  12179. source: "./media/characters/kuiper-vanrel/foot.svg",
  12180. }
  12181. },
  12182. battle: {
  12183. height: math.unit(6.824, "feet"),
  12184. name: "Battle",
  12185. image: {
  12186. source: "./media/characters/kuiper-vanrel/battle.svg",
  12187. extra: 1466 / 1327,
  12188. bottom: 29 / 1492.5
  12189. }
  12190. },
  12191. meerkui: {
  12192. height: math.unit(18, "inches"),
  12193. name: "Meerkui",
  12194. image: {
  12195. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12196. extra: 1354/1289,
  12197. bottom: 69/1423
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(7 + 5 / 12, "feet"),
  12205. default: true
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12211. {
  12212. front: {
  12213. height: math.unit(8 + 5 / 12, "feet"),
  12214. name: "Front",
  12215. image: {
  12216. source: "./media/characters/keset-vanrel/front.svg",
  12217. extra: 1231/1148,
  12218. bottom: 82/1313
  12219. }
  12220. },
  12221. back: {
  12222. height: math.unit(8 + 5 / 12, "feet"),
  12223. name: "Back",
  12224. image: {
  12225. source: "./media/characters/keset-vanrel/back.svg",
  12226. extra: 1240/1174,
  12227. bottom: 33/1273
  12228. }
  12229. },
  12230. hand: {
  12231. height: math.unit(0.6, "meters"),
  12232. name: "Hand",
  12233. image: {
  12234. source: "./media/characters/keset-vanrel/hand.svg"
  12235. }
  12236. },
  12237. foot: {
  12238. height: math.unit(0.94978, "meters"),
  12239. name: "Foot",
  12240. image: {
  12241. source: "./media/characters/keset-vanrel/foot.svg"
  12242. }
  12243. },
  12244. battle: {
  12245. height: math.unit(7.408, "feet"),
  12246. name: "Battle",
  12247. image: {
  12248. source: "./media/characters/keset-vanrel/battle.svg",
  12249. extra: 1890 / 1386,
  12250. bottom: 73.28 / 1970
  12251. }
  12252. },
  12253. },
  12254. [
  12255. {
  12256. name: "Normal",
  12257. height: math.unit(8 + 5 / 12, "feet"),
  12258. default: true
  12259. },
  12260. ]
  12261. ))
  12262. characterMakers.push(() => makeCharacter(
  12263. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12264. {
  12265. front: {
  12266. height: math.unit(6, "feet"),
  12267. weight: math.unit(150, "lb"),
  12268. name: "Front",
  12269. image: {
  12270. source: "./media/characters/neos/front.svg",
  12271. extra: 1696 / 992,
  12272. bottom: 0.14
  12273. }
  12274. },
  12275. },
  12276. [
  12277. {
  12278. name: "Normal",
  12279. height: math.unit(54, "cm"),
  12280. default: true
  12281. },
  12282. {
  12283. name: "Macro",
  12284. height: math.unit(100, "m")
  12285. },
  12286. {
  12287. name: "Megamacro",
  12288. height: math.unit(10, "km")
  12289. },
  12290. {
  12291. name: "Megamacro+",
  12292. height: math.unit(100, "km")
  12293. },
  12294. {
  12295. name: "Gigamacro",
  12296. height: math.unit(100, "Mm")
  12297. },
  12298. {
  12299. name: "Teramacro",
  12300. height: math.unit(100, "Gm")
  12301. },
  12302. {
  12303. name: "Examacro",
  12304. height: math.unit(100, "Em")
  12305. },
  12306. {
  12307. name: "Godly",
  12308. height: math.unit(10000, "Ym")
  12309. },
  12310. {
  12311. name: "Beyond Godly",
  12312. height: math.unit(25, "multiverses")
  12313. },
  12314. ]
  12315. ))
  12316. characterMakers.push(() => makeCharacter(
  12317. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12318. {
  12319. feminine: {
  12320. height: math.unit(5, "feet"),
  12321. weight: math.unit(100, "lb"),
  12322. name: "Feminine",
  12323. image: {
  12324. source: "./media/characters/sammy-mouse/feminine.svg",
  12325. extra: 2526 / 2425,
  12326. bottom: 0.123
  12327. }
  12328. },
  12329. masculine: {
  12330. height: math.unit(5, "feet"),
  12331. weight: math.unit(100, "lb"),
  12332. name: "Masculine",
  12333. image: {
  12334. source: "./media/characters/sammy-mouse/masculine.svg",
  12335. extra: 2526 / 2425,
  12336. bottom: 0.123
  12337. }
  12338. },
  12339. },
  12340. [
  12341. {
  12342. name: "Micro",
  12343. height: math.unit(5, "inches")
  12344. },
  12345. {
  12346. name: "Normal",
  12347. height: math.unit(5, "feet"),
  12348. default: true
  12349. },
  12350. {
  12351. name: "Macro",
  12352. height: math.unit(60, "feet")
  12353. },
  12354. ]
  12355. ))
  12356. characterMakers.push(() => makeCharacter(
  12357. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12358. {
  12359. front: {
  12360. height: math.unit(4, "feet"),
  12361. weight: math.unit(50, "lb"),
  12362. name: "Front",
  12363. image: {
  12364. source: "./media/characters/kole/front.svg",
  12365. extra: 1423 / 1303,
  12366. bottom: 0.025
  12367. }
  12368. },
  12369. back: {
  12370. height: math.unit(4, "feet"),
  12371. weight: math.unit(50, "lb"),
  12372. name: "Back",
  12373. image: {
  12374. source: "./media/characters/kole/back.svg",
  12375. extra: 1426 / 1280,
  12376. bottom: 0.02
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Normal",
  12383. height: math.unit(4, "feet"),
  12384. default: true
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12390. {
  12391. front: {
  12392. height: math.unit(2.5, "feet"),
  12393. weight: math.unit(32, "lb"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/rufran/front.svg",
  12397. extra: 1313/885,
  12398. bottom: 94/1407
  12399. }
  12400. },
  12401. side: {
  12402. height: math.unit(2.5, "feet"),
  12403. weight: math.unit(32, "lb"),
  12404. name: "Side",
  12405. image: {
  12406. source: "./media/characters/rufran/side.svg",
  12407. extra: 1109/852,
  12408. bottom: 118/1227
  12409. }
  12410. },
  12411. back: {
  12412. height: math.unit(2.5, "feet"),
  12413. weight: math.unit(32, "lb"),
  12414. name: "Back",
  12415. image: {
  12416. source: "./media/characters/rufran/back.svg",
  12417. extra: 1280/878,
  12418. bottom: 131/1411
  12419. }
  12420. },
  12421. mouth: {
  12422. height: math.unit(1.13, "feet"),
  12423. name: "Mouth",
  12424. image: {
  12425. source: "./media/characters/rufran/mouth.svg"
  12426. }
  12427. },
  12428. foot: {
  12429. height: math.unit(1.33, "feet"),
  12430. name: "Foot",
  12431. image: {
  12432. source: "./media/characters/rufran/foot.svg"
  12433. }
  12434. },
  12435. koboldFront: {
  12436. height: math.unit(2 + 6 / 12, "feet"),
  12437. weight: math.unit(20, "lb"),
  12438. name: "Front (Kobold)",
  12439. image: {
  12440. source: "./media/characters/rufran/kobold-front.svg",
  12441. extra: 2041 / 1839,
  12442. bottom: 0.055
  12443. }
  12444. },
  12445. koboldBack: {
  12446. height: math.unit(2 + 6 / 12, "feet"),
  12447. weight: math.unit(20, "lb"),
  12448. name: "Back (Kobold)",
  12449. image: {
  12450. source: "./media/characters/rufran/kobold-back.svg",
  12451. extra: 2054 / 1839,
  12452. bottom: 0.01
  12453. }
  12454. },
  12455. koboldHand: {
  12456. height: math.unit(0.2166, "meters"),
  12457. name: "Hand (Kobold)",
  12458. image: {
  12459. source: "./media/characters/rufran/kobold-hand.svg"
  12460. }
  12461. },
  12462. koboldFoot: {
  12463. height: math.unit(0.185, "meters"),
  12464. name: "Foot (Kobold)",
  12465. image: {
  12466. source: "./media/characters/rufran/kobold-foot.svg"
  12467. }
  12468. },
  12469. },
  12470. [
  12471. {
  12472. name: "Micro",
  12473. height: math.unit(1, "inch")
  12474. },
  12475. {
  12476. name: "Normal",
  12477. height: math.unit(2 + 6 / 12, "feet"),
  12478. default: true
  12479. },
  12480. {
  12481. name: "Big",
  12482. height: math.unit(60, "feet")
  12483. },
  12484. {
  12485. name: "Macro",
  12486. height: math.unit(325, "feet")
  12487. },
  12488. ]
  12489. ))
  12490. characterMakers.push(() => makeCharacter(
  12491. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12492. {
  12493. front: {
  12494. height: math.unit(0.3, "meters"),
  12495. weight: math.unit(3.5, "kg"),
  12496. name: "Front",
  12497. image: {
  12498. source: "./media/characters/chip/front.svg",
  12499. extra: 748 / 674
  12500. }
  12501. },
  12502. },
  12503. [
  12504. {
  12505. name: "Micro",
  12506. height: math.unit(1, "inch"),
  12507. default: true
  12508. },
  12509. ]
  12510. ))
  12511. characterMakers.push(() => makeCharacter(
  12512. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12513. {
  12514. side: {
  12515. height: math.unit(2.3, "meters"),
  12516. weight: math.unit(3500, "lb"),
  12517. name: "Side",
  12518. image: {
  12519. source: "./media/characters/torvid/side.svg",
  12520. extra: 1972 / 722,
  12521. bottom: 0.035
  12522. }
  12523. },
  12524. },
  12525. [
  12526. {
  12527. name: "Normal",
  12528. height: math.unit(2.3, "meters"),
  12529. default: true
  12530. },
  12531. ]
  12532. ))
  12533. characterMakers.push(() => makeCharacter(
  12534. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12535. {
  12536. front: {
  12537. height: math.unit(2, "meters"),
  12538. weight: math.unit(150.5, "kg"),
  12539. name: "Front",
  12540. image: {
  12541. source: "./media/characters/susan/front.svg",
  12542. extra: 693 / 635,
  12543. bottom: 0.05
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Megamacro",
  12550. height: math.unit(505, "miles"),
  12551. default: true
  12552. },
  12553. ]
  12554. ))
  12555. characterMakers.push(() => makeCharacter(
  12556. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12557. {
  12558. front: {
  12559. height: math.unit(6, "feet"),
  12560. weight: math.unit(150, "lb"),
  12561. name: "Front",
  12562. image: {
  12563. source: "./media/characters/raindrops/front.svg",
  12564. extra: 2655 / 2461,
  12565. bottom: 49 / 2705
  12566. }
  12567. },
  12568. back: {
  12569. height: math.unit(6, "feet"),
  12570. weight: math.unit(150, "lb"),
  12571. name: "Back",
  12572. image: {
  12573. source: "./media/characters/raindrops/back.svg",
  12574. extra: 2574 / 2400,
  12575. bottom: 65 / 2634
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Micro",
  12582. height: math.unit(6, "inches")
  12583. },
  12584. {
  12585. name: "Normal",
  12586. height: math.unit(6 + 2 / 12, "feet")
  12587. },
  12588. {
  12589. name: "Macro",
  12590. height: math.unit(131, "feet"),
  12591. default: true
  12592. },
  12593. {
  12594. name: "Megamacro",
  12595. height: math.unit(15, "miles")
  12596. },
  12597. {
  12598. name: "Gigamacro",
  12599. height: math.unit(4000, "miles")
  12600. },
  12601. {
  12602. name: "Teramacro",
  12603. height: math.unit(315000, "miles")
  12604. },
  12605. ]
  12606. ))
  12607. characterMakers.push(() => makeCharacter(
  12608. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12609. {
  12610. front: {
  12611. height: math.unit(2.794, "meters"),
  12612. weight: math.unit(325, "kg"),
  12613. name: "Front",
  12614. image: {
  12615. source: "./media/characters/tezwa/front.svg",
  12616. extra: 2083 / 1906,
  12617. bottom: 0.031
  12618. }
  12619. },
  12620. foot: {
  12621. height: math.unit(0.687, "meters"),
  12622. name: "Foot",
  12623. image: {
  12624. source: "./media/characters/tezwa/foot.svg"
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Normal",
  12631. height: math.unit(9 + 2 / 12, "feet"),
  12632. default: true
  12633. },
  12634. ]
  12635. ))
  12636. characterMakers.push(() => makeCharacter(
  12637. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12638. {
  12639. front: {
  12640. height: math.unit(58, "feet"),
  12641. weight: math.unit(89000, "lb"),
  12642. name: "Front",
  12643. image: {
  12644. source: "./media/characters/typhus/front.svg",
  12645. extra: 816 / 800,
  12646. bottom: 0.065
  12647. }
  12648. },
  12649. },
  12650. [
  12651. {
  12652. name: "Macro",
  12653. height: math.unit(58, "feet"),
  12654. default: true
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12660. {
  12661. front: {
  12662. height: math.unit(12, "feet"),
  12663. weight: math.unit(6, "tonnes"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/lyra-von-wulf/front.svg",
  12667. extra: 1,
  12668. bottom: 0.10
  12669. }
  12670. },
  12671. frontMecha: {
  12672. height: math.unit(12, "feet"),
  12673. weight: math.unit(12, "tonnes"),
  12674. name: "Front (Mecha)",
  12675. image: {
  12676. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12677. extra: 1,
  12678. bottom: 0.042
  12679. }
  12680. },
  12681. maw: {
  12682. height: math.unit(2.2, "feet"),
  12683. name: "Maw",
  12684. image: {
  12685. source: "./media/characters/lyra-von-wulf/maw.svg"
  12686. }
  12687. },
  12688. },
  12689. [
  12690. {
  12691. name: "Normal",
  12692. height: math.unit(12, "feet"),
  12693. default: true
  12694. },
  12695. {
  12696. name: "Classic",
  12697. height: math.unit(50, "feet")
  12698. },
  12699. {
  12700. name: "Macro",
  12701. height: math.unit(500, "feet")
  12702. },
  12703. {
  12704. name: "Megamacro",
  12705. height: math.unit(1, "mile")
  12706. },
  12707. {
  12708. name: "Gigamacro",
  12709. height: math.unit(400, "miles")
  12710. },
  12711. {
  12712. name: "Teramacro",
  12713. height: math.unit(22000, "miles")
  12714. },
  12715. {
  12716. name: "Solarmacro",
  12717. height: math.unit(8600000, "miles")
  12718. },
  12719. {
  12720. name: "Galactic",
  12721. height: math.unit(1057000, "lightyears")
  12722. },
  12723. ]
  12724. ))
  12725. characterMakers.push(() => makeCharacter(
  12726. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12727. {
  12728. front: {
  12729. height: math.unit(6 + 10 / 12, "feet"),
  12730. weight: math.unit(150, "lb"),
  12731. name: "Front",
  12732. image: {
  12733. source: "./media/characters/dixon/front.svg",
  12734. extra: 3361 / 3209,
  12735. bottom: 0.01
  12736. }
  12737. },
  12738. },
  12739. [
  12740. {
  12741. name: "Normal",
  12742. height: math.unit(6 + 10 / 12, "feet"),
  12743. default: true
  12744. },
  12745. {
  12746. name: "Big",
  12747. height: math.unit(12, "meters")
  12748. },
  12749. {
  12750. name: "Macro",
  12751. height: math.unit(500, "meters")
  12752. },
  12753. {
  12754. name: "Megamacro",
  12755. height: math.unit(2, "km")
  12756. },
  12757. ]
  12758. ))
  12759. characterMakers.push(() => makeCharacter(
  12760. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12761. {
  12762. front: {
  12763. height: math.unit(185, "cm"),
  12764. weight: math.unit(68, "kg"),
  12765. name: "Front",
  12766. image: {
  12767. source: "./media/characters/kauko/front.svg",
  12768. extra: 1455 / 1421,
  12769. bottom: 0.03
  12770. }
  12771. },
  12772. back: {
  12773. height: math.unit(185, "cm"),
  12774. weight: math.unit(68, "kg"),
  12775. name: "Back",
  12776. image: {
  12777. source: "./media/characters/kauko/back.svg",
  12778. extra: 1455 / 1421,
  12779. bottom: 0.004
  12780. }
  12781. },
  12782. },
  12783. [
  12784. {
  12785. name: "Normal",
  12786. height: math.unit(185, "cm"),
  12787. default: true
  12788. },
  12789. ]
  12790. ))
  12791. characterMakers.push(() => makeCharacter(
  12792. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12793. {
  12794. front: {
  12795. height: math.unit(6, "feet"),
  12796. weight: math.unit(150, "kg"),
  12797. name: "Front",
  12798. image: {
  12799. source: "./media/characters/varg/front.svg",
  12800. extra: 1108 / 1018,
  12801. bottom: 0.0375
  12802. }
  12803. },
  12804. },
  12805. [
  12806. {
  12807. name: "Normal",
  12808. height: math.unit(5, "meters")
  12809. },
  12810. {
  12811. name: "Macro",
  12812. height: math.unit(200, "meters")
  12813. },
  12814. {
  12815. name: "Megamacro",
  12816. height: math.unit(20, "kilometers")
  12817. },
  12818. {
  12819. name: "True Size",
  12820. height: math.unit(211, "km"),
  12821. default: true
  12822. },
  12823. {
  12824. name: "Gigamacro",
  12825. height: math.unit(1000, "km")
  12826. },
  12827. {
  12828. name: "Gigamacro+",
  12829. height: math.unit(8000, "km")
  12830. },
  12831. {
  12832. name: "Teramacro",
  12833. height: math.unit(1000000, "km")
  12834. },
  12835. ]
  12836. ))
  12837. characterMakers.push(() => makeCharacter(
  12838. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12839. {
  12840. front: {
  12841. height: math.unit(7 + 7 / 12, "feet"),
  12842. weight: math.unit(267, "lb"),
  12843. name: "Front",
  12844. image: {
  12845. source: "./media/characters/dayza/front.svg",
  12846. extra: 1262 / 1200,
  12847. bottom: 0.035
  12848. }
  12849. },
  12850. side: {
  12851. height: math.unit(7 + 7 / 12, "feet"),
  12852. weight: math.unit(267, "lb"),
  12853. name: "Side",
  12854. image: {
  12855. source: "./media/characters/dayza/side.svg",
  12856. extra: 1295 / 1245,
  12857. bottom: 0.05
  12858. }
  12859. },
  12860. back: {
  12861. height: math.unit(7 + 7 / 12, "feet"),
  12862. weight: math.unit(267, "lb"),
  12863. name: "Back",
  12864. image: {
  12865. source: "./media/characters/dayza/back.svg",
  12866. extra: 1241 / 1170
  12867. }
  12868. },
  12869. },
  12870. [
  12871. {
  12872. name: "Normal",
  12873. height: math.unit(7 + 7 / 12, "feet"),
  12874. default: true
  12875. },
  12876. {
  12877. name: "Macro",
  12878. height: math.unit(155, "feet")
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12884. {
  12885. front: {
  12886. height: math.unit(6 + 5 / 12, "feet"),
  12887. weight: math.unit(160, "lb"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/xanthos/front.svg",
  12891. extra: 1,
  12892. bottom: 0.04
  12893. }
  12894. },
  12895. back: {
  12896. height: math.unit(6 + 5 / 12, "feet"),
  12897. weight: math.unit(160, "lb"),
  12898. name: "Back",
  12899. image: {
  12900. source: "./media/characters/xanthos/back.svg",
  12901. extra: 1,
  12902. bottom: 0.03
  12903. }
  12904. },
  12905. hand: {
  12906. height: math.unit(0.928, "feet"),
  12907. name: "Hand",
  12908. image: {
  12909. source: "./media/characters/xanthos/hand.svg"
  12910. }
  12911. },
  12912. foot: {
  12913. height: math.unit(1.286, "feet"),
  12914. name: "Foot",
  12915. image: {
  12916. source: "./media/characters/xanthos/foot.svg"
  12917. }
  12918. },
  12919. },
  12920. [
  12921. {
  12922. name: "Normal",
  12923. height: math.unit(6 + 5 / 12, "feet"),
  12924. default: true
  12925. },
  12926. {
  12927. name: "Normal+",
  12928. height: math.unit(6, "meters")
  12929. },
  12930. {
  12931. name: "Macro",
  12932. height: math.unit(40, "feet")
  12933. },
  12934. {
  12935. name: "Macro+",
  12936. height: math.unit(200, "meters")
  12937. },
  12938. {
  12939. name: "Megamacro",
  12940. height: math.unit(20, "km")
  12941. },
  12942. {
  12943. name: "Megamacro+",
  12944. height: math.unit(100, "km")
  12945. },
  12946. {
  12947. name: "Gigamacro",
  12948. height: math.unit(200, "megameters")
  12949. },
  12950. {
  12951. name: "Gigamacro+",
  12952. height: math.unit(1.5, "gigameters")
  12953. },
  12954. ]
  12955. ))
  12956. characterMakers.push(() => makeCharacter(
  12957. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12958. {
  12959. front: {
  12960. height: math.unit(6 + 3 / 12, "feet"),
  12961. weight: math.unit(215, "lb"),
  12962. name: "Front",
  12963. image: {
  12964. source: "./media/characters/grynn/front.svg",
  12965. extra: 4627 / 4209,
  12966. bottom: 0.047
  12967. }
  12968. },
  12969. },
  12970. [
  12971. {
  12972. name: "Micro",
  12973. height: math.unit(6, "inches")
  12974. },
  12975. {
  12976. name: "Normal",
  12977. height: math.unit(6 + 3 / 12, "feet"),
  12978. default: true
  12979. },
  12980. {
  12981. name: "Big",
  12982. height: math.unit(104, "feet")
  12983. },
  12984. {
  12985. name: "Macro",
  12986. height: math.unit(944, "feet")
  12987. },
  12988. {
  12989. name: "Macro+",
  12990. height: math.unit(9480, "feet")
  12991. },
  12992. {
  12993. name: "Megamacro",
  12994. height: math.unit(78752, "feet")
  12995. },
  12996. {
  12997. name: "Megamacro+",
  12998. height: math.unit(630128, "feet")
  12999. },
  13000. {
  13001. name: "Megamacro++",
  13002. height: math.unit(3150695, "feet")
  13003. },
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13008. {
  13009. front: {
  13010. height: math.unit(7 + 5 / 12, "feet"),
  13011. weight: math.unit(450, "lb"),
  13012. name: "Front",
  13013. image: {
  13014. source: "./media/characters/mocha-aura/front.svg",
  13015. extra: 1907 / 1817,
  13016. bottom: 0.04
  13017. }
  13018. },
  13019. back: {
  13020. height: math.unit(7 + 5 / 12, "feet"),
  13021. weight: math.unit(450, "lb"),
  13022. name: "Back",
  13023. image: {
  13024. source: "./media/characters/mocha-aura/back.svg",
  13025. extra: 1900 / 1825,
  13026. bottom: 0.045
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Nano",
  13033. height: math.unit(1, "nm")
  13034. },
  13035. {
  13036. name: "Megamicro",
  13037. height: math.unit(1, "mm")
  13038. },
  13039. {
  13040. name: "Micro",
  13041. height: math.unit(3, "inches")
  13042. },
  13043. {
  13044. name: "Normal",
  13045. height: math.unit(7 + 5 / 12, "feet"),
  13046. default: true
  13047. },
  13048. {
  13049. name: "Macro",
  13050. height: math.unit(30, "feet")
  13051. },
  13052. {
  13053. name: "Megamacro",
  13054. height: math.unit(3500, "feet")
  13055. },
  13056. {
  13057. name: "Teramacro",
  13058. height: math.unit(500000, "miles")
  13059. },
  13060. {
  13061. name: "Petamacro",
  13062. height: math.unit(50000000000000000, "parsecs")
  13063. },
  13064. ]
  13065. ))
  13066. characterMakers.push(() => makeCharacter(
  13067. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13068. {
  13069. front: {
  13070. height: math.unit(6, "feet"),
  13071. weight: math.unit(150, "lb"),
  13072. name: "Front",
  13073. image: {
  13074. source: "./media/characters/ilisha-devya/front.svg",
  13075. extra: 1,
  13076. bottom: 0.175
  13077. }
  13078. },
  13079. back: {
  13080. height: math.unit(6, "feet"),
  13081. weight: math.unit(150, "lb"),
  13082. name: "Back",
  13083. image: {
  13084. source: "./media/characters/ilisha-devya/back.svg",
  13085. extra: 1,
  13086. bottom: 0.015
  13087. }
  13088. },
  13089. },
  13090. [
  13091. {
  13092. name: "Macro",
  13093. height: math.unit(500, "feet"),
  13094. default: true
  13095. },
  13096. {
  13097. name: "Megamacro",
  13098. height: math.unit(10, "miles")
  13099. },
  13100. {
  13101. name: "Gigamacro",
  13102. height: math.unit(100000, "miles")
  13103. },
  13104. {
  13105. name: "Examacro",
  13106. height: math.unit(1e9, "lightyears")
  13107. },
  13108. {
  13109. name: "Omniversal",
  13110. height: math.unit(1e33, "lightyears")
  13111. },
  13112. {
  13113. name: "Beyond Infinite",
  13114. height: math.unit(1e100, "lightyears")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13120. {
  13121. Side: {
  13122. height: math.unit(6, "feet"),
  13123. weight: math.unit(150, "lb"),
  13124. name: "Side",
  13125. image: {
  13126. source: "./media/characters/mira/side.svg",
  13127. extra: 900 / 799,
  13128. bottom: 0.02
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Human Size",
  13135. height: math.unit(6, "feet")
  13136. },
  13137. {
  13138. name: "Macro",
  13139. height: math.unit(100, "feet"),
  13140. default: true
  13141. },
  13142. {
  13143. name: "Megamacro",
  13144. height: math.unit(10, "miles")
  13145. },
  13146. {
  13147. name: "Gigamacro",
  13148. height: math.unit(25000, "miles")
  13149. },
  13150. {
  13151. name: "Teramacro",
  13152. height: math.unit(300, "AU")
  13153. },
  13154. {
  13155. name: "Full Size",
  13156. height: math.unit(4.5e10, "lightyears")
  13157. },
  13158. ]
  13159. ))
  13160. characterMakers.push(() => makeCharacter(
  13161. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13162. {
  13163. front: {
  13164. height: math.unit(6, "feet"),
  13165. weight: math.unit(150, "lb"),
  13166. name: "Front",
  13167. image: {
  13168. source: "./media/characters/holly/front.svg",
  13169. extra: 639 / 606
  13170. }
  13171. },
  13172. back: {
  13173. height: math.unit(6, "feet"),
  13174. weight: math.unit(150, "lb"),
  13175. name: "Back",
  13176. image: {
  13177. source: "./media/characters/holly/back.svg",
  13178. extra: 623 / 598
  13179. }
  13180. },
  13181. frontWorking: {
  13182. height: math.unit(6, "feet"),
  13183. weight: math.unit(150, "lb"),
  13184. name: "Front (Working)",
  13185. image: {
  13186. source: "./media/characters/holly/front-working.svg",
  13187. extra: 607 / 577,
  13188. bottom: 0.048
  13189. }
  13190. },
  13191. },
  13192. [
  13193. {
  13194. name: "Normal",
  13195. height: math.unit(12 + 3 / 12, "feet"),
  13196. default: true
  13197. },
  13198. ]
  13199. ))
  13200. characterMakers.push(() => makeCharacter(
  13201. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13202. {
  13203. front: {
  13204. height: math.unit(6, "feet"),
  13205. weight: math.unit(150, "lb"),
  13206. name: "Front",
  13207. image: {
  13208. source: "./media/characters/porter/front.svg",
  13209. extra: 1,
  13210. bottom: 0.01
  13211. }
  13212. },
  13213. frontRobes: {
  13214. height: math.unit(6, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Front (Robes)",
  13217. image: {
  13218. source: "./media/characters/porter/front-robes.svg",
  13219. extra: 1.01,
  13220. bottom: 0.01
  13221. }
  13222. },
  13223. },
  13224. [
  13225. {
  13226. name: "Normal",
  13227. height: math.unit(11 + 9 / 12, "feet"),
  13228. default: true
  13229. },
  13230. ]
  13231. ))
  13232. characterMakers.push(() => makeCharacter(
  13233. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13234. {
  13235. legendary: {
  13236. height: math.unit(6, "feet"),
  13237. weight: math.unit(150, "lb"),
  13238. name: "Legendary",
  13239. image: {
  13240. source: "./media/characters/lucy/legendary.svg",
  13241. extra: 1355 / 1100,
  13242. bottom: 0.045
  13243. }
  13244. },
  13245. },
  13246. [
  13247. {
  13248. name: "Legendary",
  13249. height: math.unit(86882 * 2, "miles"),
  13250. default: true
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13256. {
  13257. front: {
  13258. height: math.unit(6, "feet"),
  13259. weight: math.unit(150, "lb"),
  13260. name: "Front",
  13261. image: {
  13262. source: "./media/characters/drusilla/front.svg",
  13263. extra: 678 / 635,
  13264. bottom: 0.03
  13265. }
  13266. },
  13267. back: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(150, "lb"),
  13270. name: "Back",
  13271. image: {
  13272. source: "./media/characters/drusilla/back.svg",
  13273. extra: 678 / 635,
  13274. bottom: 0.005
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Macro",
  13281. height: math.unit(100, "feet")
  13282. },
  13283. {
  13284. name: "Canon Height",
  13285. height: math.unit(2000, "feet"),
  13286. default: true
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13292. {
  13293. front: {
  13294. height: math.unit(6, "feet"),
  13295. weight: math.unit(180, "lb"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/renard-thatch/front.svg",
  13299. extra: 2411 / 2275,
  13300. bottom: 0.01
  13301. }
  13302. },
  13303. frontPosing: {
  13304. height: math.unit(6, "feet"),
  13305. weight: math.unit(180, "lb"),
  13306. name: "Front (Posing)",
  13307. image: {
  13308. source: "./media/characters/renard-thatch/front-posing.svg",
  13309. extra: 2381 / 2261,
  13310. bottom: 0.01
  13311. }
  13312. },
  13313. back: {
  13314. height: math.unit(6, "feet"),
  13315. weight: math.unit(180, "lb"),
  13316. name: "Back",
  13317. image: {
  13318. source: "./media/characters/renard-thatch/back.svg",
  13319. extra: 2428 / 2288
  13320. }
  13321. },
  13322. },
  13323. [
  13324. {
  13325. name: "Micro",
  13326. height: math.unit(3, "inches")
  13327. },
  13328. {
  13329. name: "Default",
  13330. height: math.unit(6, "feet"),
  13331. default: true
  13332. },
  13333. {
  13334. name: "Macro",
  13335. height: math.unit(75, "feet")
  13336. },
  13337. ]
  13338. ))
  13339. characterMakers.push(() => makeCharacter(
  13340. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13341. {
  13342. front: {
  13343. height: math.unit(1450, "feet"),
  13344. weight: math.unit(1.21e6, "tons"),
  13345. name: "Front",
  13346. image: {
  13347. source: "./media/characters/sekvra/front.svg",
  13348. extra: 1,
  13349. bottom: 0.03
  13350. }
  13351. },
  13352. frontClothed: {
  13353. height: math.unit(1450, "feet"),
  13354. weight: math.unit(1.21e6, "tons"),
  13355. name: "Front (Clothed)",
  13356. image: {
  13357. source: "./media/characters/sekvra/front-clothed.svg",
  13358. extra: 1,
  13359. bottom: 0.03
  13360. }
  13361. },
  13362. side: {
  13363. height: math.unit(1450, "feet"),
  13364. weight: math.unit(1.21e6, "tons"),
  13365. name: "Side",
  13366. image: {
  13367. source: "./media/characters/sekvra/side.svg",
  13368. extra: 1,
  13369. bottom: 0.025
  13370. }
  13371. },
  13372. back: {
  13373. height: math.unit(1450, "feet"),
  13374. weight: math.unit(1.21e6, "tons"),
  13375. name: "Back",
  13376. image: {
  13377. source: "./media/characters/sekvra/back.svg",
  13378. extra: 1,
  13379. bottom: 0.005
  13380. }
  13381. },
  13382. },
  13383. [
  13384. {
  13385. name: "Macro",
  13386. height: math.unit(1450, "feet"),
  13387. default: true
  13388. },
  13389. {
  13390. name: "Megamacro",
  13391. height: math.unit(15000, "feet")
  13392. },
  13393. ]
  13394. ))
  13395. characterMakers.push(() => makeCharacter(
  13396. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13397. {
  13398. front: {
  13399. height: math.unit(6, "feet"),
  13400. weight: math.unit(150, "lb"),
  13401. name: "Front",
  13402. image: {
  13403. source: "./media/characters/carmine/front.svg",
  13404. extra: 1,
  13405. bottom: 0.035
  13406. }
  13407. },
  13408. frontArmor: {
  13409. height: math.unit(6, "feet"),
  13410. weight: math.unit(150, "lb"),
  13411. name: "Front (Armor)",
  13412. image: {
  13413. source: "./media/characters/carmine/front-armor.svg",
  13414. extra: 1,
  13415. bottom: 0.035
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Large",
  13422. height: math.unit(1, "mile")
  13423. },
  13424. {
  13425. name: "Huge",
  13426. height: math.unit(40, "miles"),
  13427. default: true
  13428. },
  13429. {
  13430. name: "Colossal",
  13431. height: math.unit(2500, "miles")
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13437. {
  13438. front: {
  13439. height: math.unit(6, "feet"),
  13440. weight: math.unit(150, "lb"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/elyssia/front.svg",
  13444. extra: 2201 / 2035,
  13445. bottom: 0.05
  13446. }
  13447. },
  13448. frontClothed: {
  13449. height: math.unit(6, "feet"),
  13450. weight: math.unit(150, "lb"),
  13451. name: "Front (Clothed)",
  13452. image: {
  13453. source: "./media/characters/elyssia/front-clothed.svg",
  13454. extra: 2201 / 2035,
  13455. bottom: 0.05
  13456. }
  13457. },
  13458. back: {
  13459. height: math.unit(6, "feet"),
  13460. weight: math.unit(150, "lb"),
  13461. name: "Back",
  13462. image: {
  13463. source: "./media/characters/elyssia/back.svg",
  13464. extra: 2201 / 2035,
  13465. bottom: 0.013
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Smaller",
  13472. height: math.unit(150, "feet")
  13473. },
  13474. {
  13475. name: "Standard",
  13476. height: math.unit(1400, "feet"),
  13477. default: true
  13478. },
  13479. {
  13480. name: "Distracted",
  13481. height: math.unit(15000, "feet")
  13482. },
  13483. ]
  13484. ))
  13485. characterMakers.push(() => makeCharacter(
  13486. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13487. {
  13488. front: {
  13489. height: math.unit(7 + 4/12, "feet"),
  13490. weight: math.unit(690, "lb"),
  13491. name: "Front",
  13492. image: {
  13493. source: "./media/characters/geno-maxwell/front.svg",
  13494. extra: 984/856,
  13495. bottom: 87/1071
  13496. }
  13497. },
  13498. back: {
  13499. height: math.unit(7 + 4/12, "feet"),
  13500. weight: math.unit(690, "lb"),
  13501. name: "Back",
  13502. image: {
  13503. source: "./media/characters/geno-maxwell/back.svg",
  13504. extra: 981/854,
  13505. bottom: 57/1038
  13506. }
  13507. },
  13508. frontCostume: {
  13509. height: math.unit(7 + 4/12, "feet"),
  13510. weight: math.unit(690, "lb"),
  13511. name: "Front (Costume)",
  13512. image: {
  13513. source: "./media/characters/geno-maxwell/front-costume.svg",
  13514. extra: 984/856,
  13515. bottom: 87/1071
  13516. }
  13517. },
  13518. backcostume: {
  13519. height: math.unit(7 + 4/12, "feet"),
  13520. weight: math.unit(690, "lb"),
  13521. name: "Back (Costume)",
  13522. image: {
  13523. source: "./media/characters/geno-maxwell/back-costume.svg",
  13524. extra: 981/854,
  13525. bottom: 57/1038
  13526. }
  13527. },
  13528. },
  13529. [
  13530. {
  13531. name: "Micro",
  13532. height: math.unit(3, "inches")
  13533. },
  13534. {
  13535. name: "Normal",
  13536. height: math.unit(7 + 4 / 12, "feet"),
  13537. default: true
  13538. },
  13539. {
  13540. name: "Macro",
  13541. height: math.unit(220, "feet")
  13542. },
  13543. {
  13544. name: "Megamacro",
  13545. height: math.unit(11, "miles")
  13546. },
  13547. ]
  13548. ))
  13549. characterMakers.push(() => makeCharacter(
  13550. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13551. {
  13552. front: {
  13553. height: math.unit(7 + 4/12, "feet"),
  13554. weight: math.unit(750, "lb"),
  13555. name: "Front",
  13556. image: {
  13557. source: "./media/characters/regena-maxwell/front.svg",
  13558. extra: 984/856,
  13559. bottom: 87/1071
  13560. }
  13561. },
  13562. back: {
  13563. height: math.unit(7 + 4/12, "feet"),
  13564. weight: math.unit(750, "lb"),
  13565. name: "Back",
  13566. image: {
  13567. source: "./media/characters/regena-maxwell/back.svg",
  13568. extra: 981/854,
  13569. bottom: 57/1038
  13570. }
  13571. },
  13572. frontCostume: {
  13573. height: math.unit(7 + 4/12, "feet"),
  13574. weight: math.unit(750, "lb"),
  13575. name: "Front (Costume)",
  13576. image: {
  13577. source: "./media/characters/regena-maxwell/front-costume.svg",
  13578. extra: 984/856,
  13579. bottom: 87/1071
  13580. }
  13581. },
  13582. backcostume: {
  13583. height: math.unit(7 + 4/12, "feet"),
  13584. weight: math.unit(750, "lb"),
  13585. name: "Back (Costume)",
  13586. image: {
  13587. source: "./media/characters/regena-maxwell/back-costume.svg",
  13588. extra: 981/854,
  13589. bottom: 57/1038
  13590. }
  13591. },
  13592. },
  13593. [
  13594. {
  13595. name: "Normal",
  13596. height: math.unit(7 + 4 / 12, "feet"),
  13597. default: true
  13598. },
  13599. {
  13600. name: "Macro",
  13601. height: math.unit(220, "feet")
  13602. },
  13603. {
  13604. name: "Megamacro",
  13605. height: math.unit(11, "miles")
  13606. },
  13607. ]
  13608. ))
  13609. characterMakers.push(() => makeCharacter(
  13610. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13611. {
  13612. front: {
  13613. height: math.unit(6, "feet"),
  13614. weight: math.unit(150, "lb"),
  13615. name: "Front",
  13616. image: {
  13617. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13618. extra: 860 / 690,
  13619. bottom: 0.03
  13620. }
  13621. },
  13622. },
  13623. [
  13624. {
  13625. name: "Normal",
  13626. height: math.unit(1.7, "meters"),
  13627. default: true
  13628. },
  13629. ]
  13630. ))
  13631. characterMakers.push(() => makeCharacter(
  13632. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13633. {
  13634. front: {
  13635. height: math.unit(6, "feet"),
  13636. weight: math.unit(150, "lb"),
  13637. name: "Front",
  13638. image: {
  13639. source: "./media/characters/quilly/front.svg",
  13640. extra: 890 / 776
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Gigamacro",
  13647. height: math.unit(404090, "miles"),
  13648. default: true
  13649. },
  13650. ]
  13651. ))
  13652. characterMakers.push(() => makeCharacter(
  13653. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13654. {
  13655. front: {
  13656. height: math.unit(7 + 8 / 12, "feet"),
  13657. weight: math.unit(350, "lb"),
  13658. name: "Front",
  13659. image: {
  13660. source: "./media/characters/tempest/front.svg",
  13661. extra: 1175 / 1086,
  13662. bottom: 0.02
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Normal",
  13669. height: math.unit(7 + 8 / 12, "feet"),
  13670. default: true
  13671. },
  13672. ]
  13673. ))
  13674. characterMakers.push(() => makeCharacter(
  13675. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13676. {
  13677. side: {
  13678. height: math.unit(4 + 5 / 12, "feet"),
  13679. weight: math.unit(80, "lb"),
  13680. name: "Side",
  13681. image: {
  13682. source: "./media/characters/rodger/side.svg",
  13683. extra: 1235 / 1118
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Micro",
  13690. height: math.unit(1, "inch")
  13691. },
  13692. {
  13693. name: "Normal",
  13694. height: math.unit(4 + 5 / 12, "feet"),
  13695. default: true
  13696. },
  13697. {
  13698. name: "Macro",
  13699. height: math.unit(120, "feet")
  13700. },
  13701. ]
  13702. ))
  13703. characterMakers.push(() => makeCharacter(
  13704. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13705. {
  13706. front: {
  13707. height: math.unit(6, "feet"),
  13708. weight: math.unit(150, "lb"),
  13709. name: "Front",
  13710. image: {
  13711. source: "./media/characters/danyel/front.svg",
  13712. extra: 1185 / 1123,
  13713. bottom: 0.05
  13714. }
  13715. },
  13716. },
  13717. [
  13718. {
  13719. name: "Shrunken",
  13720. height: math.unit(0.5, "mm")
  13721. },
  13722. {
  13723. name: "Micro",
  13724. height: math.unit(1, "mm"),
  13725. default: true
  13726. },
  13727. {
  13728. name: "Upsized",
  13729. height: math.unit(5 + 5 / 12, "feet")
  13730. },
  13731. ]
  13732. ))
  13733. characterMakers.push(() => makeCharacter(
  13734. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13735. {
  13736. front: {
  13737. height: math.unit(5 + 6 / 12, "feet"),
  13738. weight: math.unit(200, "lb"),
  13739. name: "Front",
  13740. image: {
  13741. source: "./media/characters/vivian-bijoux/front.svg",
  13742. extra: 1217/1209,
  13743. bottom: 76/1293
  13744. }
  13745. },
  13746. back: {
  13747. height: math.unit(5 + 6 / 12, "feet"),
  13748. weight: math.unit(200, "lb"),
  13749. name: "Back",
  13750. image: {
  13751. source: "./media/characters/vivian-bijoux/back.svg",
  13752. extra: 1214/1208,
  13753. bottom: 51/1265
  13754. }
  13755. },
  13756. dressed: {
  13757. height: math.unit(5 + 6 / 12, "feet"),
  13758. weight: math.unit(200, "lb"),
  13759. name: "Dressed",
  13760. image: {
  13761. source: "./media/characters/vivian-bijoux/dressed.svg",
  13762. extra: 1217/1209,
  13763. bottom: 76/1293
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Normal",
  13770. height: math.unit(5 + 6 / 12, "feet"),
  13771. default: true
  13772. },
  13773. {
  13774. name: "Bad Dream",
  13775. height: math.unit(500, "feet")
  13776. },
  13777. {
  13778. name: "Nightmare",
  13779. height: math.unit(500, "miles")
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(6 + 1 / 12, "feet"),
  13788. weight: math.unit(260, "lb"),
  13789. name: "Front",
  13790. image: {
  13791. source: "./media/characters/zeta/front.svg",
  13792. extra: 1968 / 1889,
  13793. bottom: 0.06
  13794. }
  13795. },
  13796. back: {
  13797. height: math.unit(6 + 1 / 12, "feet"),
  13798. weight: math.unit(260, "lb"),
  13799. name: "Back",
  13800. image: {
  13801. source: "./media/characters/zeta/back.svg",
  13802. extra: 1944 / 1858,
  13803. bottom: 0.03
  13804. }
  13805. },
  13806. hand: {
  13807. height: math.unit(1.112, "feet"),
  13808. name: "Hand",
  13809. image: {
  13810. source: "./media/characters/zeta/hand.svg"
  13811. }
  13812. },
  13813. foot: {
  13814. height: math.unit(1.48, "feet"),
  13815. name: "Foot",
  13816. image: {
  13817. source: "./media/characters/zeta/foot.svg"
  13818. }
  13819. },
  13820. },
  13821. [
  13822. {
  13823. name: "Micro",
  13824. height: math.unit(6, "inches")
  13825. },
  13826. {
  13827. name: "Normal",
  13828. height: math.unit(6 + 1 / 12, "feet"),
  13829. default: true
  13830. },
  13831. {
  13832. name: "Macro",
  13833. height: math.unit(20, "feet")
  13834. },
  13835. ]
  13836. ))
  13837. characterMakers.push(() => makeCharacter(
  13838. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13839. {
  13840. front: {
  13841. height: math.unit(6, "feet"),
  13842. weight: math.unit(150, "lb"),
  13843. name: "Front",
  13844. image: {
  13845. source: "./media/characters/jamie-larsen/front.svg",
  13846. extra: 962 / 933,
  13847. bottom: 0.02
  13848. }
  13849. },
  13850. back: {
  13851. height: math.unit(6, "feet"),
  13852. weight: math.unit(150, "lb"),
  13853. name: "Back",
  13854. image: {
  13855. source: "./media/characters/jamie-larsen/back.svg",
  13856. extra: 997 / 946
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Macro",
  13863. height: math.unit(28 + 7 / 12, "feet"),
  13864. default: true
  13865. },
  13866. {
  13867. name: "Macro+",
  13868. height: math.unit(180, "feet")
  13869. },
  13870. {
  13871. name: "Megamacro",
  13872. height: math.unit(10, "miles")
  13873. },
  13874. {
  13875. name: "Gigamacro",
  13876. height: math.unit(200000, "miles")
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(6, "feet"),
  13885. weight: math.unit(120, "lb"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/vance/front.svg",
  13889. extra: 1980 / 1890,
  13890. bottom: 0.09
  13891. }
  13892. },
  13893. back: {
  13894. height: math.unit(6, "feet"),
  13895. weight: math.unit(120, "lb"),
  13896. name: "Back",
  13897. image: {
  13898. source: "./media/characters/vance/back.svg",
  13899. extra: 2081 / 1994,
  13900. bottom: 0.014
  13901. }
  13902. },
  13903. hand: {
  13904. height: math.unit(0.88, "feet"),
  13905. name: "Hand",
  13906. image: {
  13907. source: "./media/characters/vance/hand.svg"
  13908. }
  13909. },
  13910. foot: {
  13911. height: math.unit(0.64, "feet"),
  13912. name: "Foot",
  13913. image: {
  13914. source: "./media/characters/vance/foot.svg"
  13915. }
  13916. },
  13917. },
  13918. [
  13919. {
  13920. name: "Small",
  13921. height: math.unit(90, "feet"),
  13922. default: true
  13923. },
  13924. {
  13925. name: "Macro",
  13926. height: math.unit(100, "meters")
  13927. },
  13928. {
  13929. name: "Megamacro",
  13930. height: math.unit(15, "miles")
  13931. },
  13932. ]
  13933. ))
  13934. characterMakers.push(() => makeCharacter(
  13935. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13936. {
  13937. front: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(180, "lb"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/xochitl/front.svg",
  13943. extra: 2297 / 2261,
  13944. bottom: 0.065
  13945. }
  13946. },
  13947. back: {
  13948. height: math.unit(6, "feet"),
  13949. weight: math.unit(180, "lb"),
  13950. name: "Back",
  13951. image: {
  13952. source: "./media/characters/xochitl/back.svg",
  13953. extra: 2386 / 2354,
  13954. bottom: 0.01
  13955. }
  13956. },
  13957. foot: {
  13958. height: math.unit(6 / 5 * 1.15, "feet"),
  13959. weight: math.unit(150, "lb"),
  13960. name: "Foot",
  13961. image: {
  13962. source: "./media/characters/xochitl/foot.svg"
  13963. }
  13964. },
  13965. },
  13966. [
  13967. {
  13968. name: "Macro",
  13969. height: math.unit(80, "feet")
  13970. },
  13971. {
  13972. name: "Macro+",
  13973. height: math.unit(400, "feet"),
  13974. default: true
  13975. },
  13976. {
  13977. name: "Gigamacro",
  13978. height: math.unit(80000, "miles")
  13979. },
  13980. {
  13981. name: "Gigamacro+",
  13982. height: math.unit(400000, "miles")
  13983. },
  13984. {
  13985. name: "Teramacro",
  13986. height: math.unit(300, "AU")
  13987. },
  13988. ]
  13989. ))
  13990. characterMakers.push(() => makeCharacter(
  13991. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13992. {
  13993. front: {
  13994. height: math.unit(6, "feet"),
  13995. weight: math.unit(150, "lb"),
  13996. name: "Front",
  13997. image: {
  13998. source: "./media/characters/vincent/front.svg",
  13999. extra: 1130 / 1080,
  14000. bottom: 0.055
  14001. }
  14002. },
  14003. beak: {
  14004. height: math.unit(6 * 0.1, "feet"),
  14005. name: "Beak",
  14006. image: {
  14007. source: "./media/characters/vincent/beak.svg"
  14008. }
  14009. },
  14010. hand: {
  14011. height: math.unit(6 * 0.85, "feet"),
  14012. weight: math.unit(150, "lb"),
  14013. name: "Hand",
  14014. image: {
  14015. source: "./media/characters/vincent/hand.svg"
  14016. }
  14017. },
  14018. foot: {
  14019. height: math.unit(6 * 0.19, "feet"),
  14020. weight: math.unit(150, "lb"),
  14021. name: "Foot",
  14022. image: {
  14023. source: "./media/characters/vincent/foot.svg"
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Base",
  14030. height: math.unit(6 + 5 / 12, "feet"),
  14031. default: true
  14032. },
  14033. {
  14034. name: "Macro",
  14035. height: math.unit(300, "feet")
  14036. },
  14037. {
  14038. name: "Megamacro",
  14039. height: math.unit(2, "miles")
  14040. },
  14041. {
  14042. name: "Gigamacro",
  14043. height: math.unit(1000, "miles")
  14044. },
  14045. ]
  14046. ))
  14047. characterMakers.push(() => makeCharacter(
  14048. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14049. {
  14050. front: {
  14051. height: math.unit(2, "meters"),
  14052. weight: math.unit(500, "kg"),
  14053. name: "Front",
  14054. image: {
  14055. source: "./media/characters/coatl/front.svg",
  14056. extra: 3948 / 3500,
  14057. bottom: 0.082
  14058. }
  14059. },
  14060. },
  14061. [
  14062. {
  14063. name: "Normal",
  14064. height: math.unit(4, "meters")
  14065. },
  14066. {
  14067. name: "Macro",
  14068. height: math.unit(100, "meters"),
  14069. default: true
  14070. },
  14071. {
  14072. name: "Macro+",
  14073. height: math.unit(300, "meters")
  14074. },
  14075. {
  14076. name: "Megamacro",
  14077. height: math.unit(3, "gigameters")
  14078. },
  14079. {
  14080. name: "Megamacro+",
  14081. height: math.unit(300, "terameters")
  14082. },
  14083. {
  14084. name: "Megamacro++",
  14085. height: math.unit(3, "lightyears")
  14086. },
  14087. ]
  14088. ))
  14089. characterMakers.push(() => makeCharacter(
  14090. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14091. {
  14092. front: {
  14093. height: math.unit(6, "feet"),
  14094. weight: math.unit(50, "kg"),
  14095. name: "front",
  14096. image: {
  14097. source: "./media/characters/shiroryu/front.svg",
  14098. extra: 1990 / 1935
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Mortal Mingling",
  14105. height: math.unit(3, "meters")
  14106. },
  14107. {
  14108. name: "Kaiju-ish",
  14109. height: math.unit(250, "meters")
  14110. },
  14111. {
  14112. name: "Somewhat Godly",
  14113. height: math.unit(400, "km"),
  14114. default: true
  14115. },
  14116. {
  14117. name: "Planetary",
  14118. height: math.unit(300, "megameters")
  14119. },
  14120. {
  14121. name: "Galaxy-dwarfing",
  14122. height: math.unit(450, "kiloparsecs")
  14123. },
  14124. {
  14125. name: "Universe Eater",
  14126. height: math.unit(150, "gigaparsecs")
  14127. },
  14128. {
  14129. name: "Almost Immeasurable",
  14130. height: math.unit(1.3e266, "yottaparsecs")
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14136. {
  14137. front: {
  14138. height: math.unit(6, "feet"),
  14139. weight: math.unit(150, "lb"),
  14140. name: "Front",
  14141. image: {
  14142. source: "./media/characters/umeko/front.svg",
  14143. extra: 1,
  14144. bottom: 0.019
  14145. }
  14146. },
  14147. frontArmored: {
  14148. height: math.unit(6, "feet"),
  14149. weight: math.unit(150, "lb"),
  14150. name: "Front (Armored)",
  14151. image: {
  14152. source: "./media/characters/umeko/front-armored.svg",
  14153. extra: 1,
  14154. bottom: 0.021
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Macro",
  14161. height: math.unit(220, "feet"),
  14162. default: true
  14163. },
  14164. {
  14165. name: "Guardian Dragon",
  14166. height: math.unit(50, "miles")
  14167. },
  14168. {
  14169. name: "Cosmic",
  14170. height: math.unit(800000, "miles")
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14176. {
  14177. front: {
  14178. height: math.unit(6, "feet"),
  14179. weight: math.unit(150, "lb"),
  14180. name: "Front",
  14181. image: {
  14182. source: "./media/characters/cassidy/front.svg",
  14183. extra: 1,
  14184. bottom: 0.043
  14185. }
  14186. },
  14187. },
  14188. [
  14189. {
  14190. name: "Canon Height",
  14191. height: math.unit(120, "feet"),
  14192. default: true
  14193. },
  14194. {
  14195. name: "Macro+",
  14196. height: math.unit(400, "feet")
  14197. },
  14198. {
  14199. name: "Macro++",
  14200. height: math.unit(4000, "feet")
  14201. },
  14202. {
  14203. name: "Megamacro",
  14204. height: math.unit(3, "miles")
  14205. },
  14206. ]
  14207. ))
  14208. characterMakers.push(() => makeCharacter(
  14209. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14210. {
  14211. front: {
  14212. height: math.unit(6, "feet"),
  14213. weight: math.unit(150, "lb"),
  14214. name: "Front",
  14215. image: {
  14216. source: "./media/characters/isaac/front.svg",
  14217. extra: 896 / 815,
  14218. bottom: 0.11
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Human Size",
  14225. height: math.unit(8, "feet"),
  14226. default: true
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(400, "feet")
  14231. },
  14232. {
  14233. name: "Megamacro",
  14234. height: math.unit(50, "miles")
  14235. },
  14236. {
  14237. name: "Canon Height",
  14238. height: math.unit(200, "AU")
  14239. },
  14240. ]
  14241. ))
  14242. characterMakers.push(() => makeCharacter(
  14243. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14244. {
  14245. front: {
  14246. height: math.unit(6, "feet"),
  14247. weight: math.unit(72, "kg"),
  14248. name: "Front",
  14249. image: {
  14250. source: "./media/characters/sleekit/front.svg",
  14251. extra: 4693 / 4487,
  14252. bottom: 0.012
  14253. }
  14254. },
  14255. },
  14256. [
  14257. {
  14258. name: "Minimum Height",
  14259. height: math.unit(10, "meters")
  14260. },
  14261. {
  14262. name: "Smaller",
  14263. height: math.unit(25, "meters")
  14264. },
  14265. {
  14266. name: "Larger",
  14267. height: math.unit(38, "meters"),
  14268. default: true
  14269. },
  14270. {
  14271. name: "Maximum height",
  14272. height: math.unit(100, "meters")
  14273. },
  14274. ]
  14275. ))
  14276. characterMakers.push(() => makeCharacter(
  14277. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14278. {
  14279. front: {
  14280. height: math.unit(6, "feet"),
  14281. weight: math.unit(150, "lb"),
  14282. name: "Front",
  14283. image: {
  14284. source: "./media/characters/nillia/front.svg",
  14285. extra: 2195 / 2037,
  14286. bottom: 0.005
  14287. }
  14288. },
  14289. back: {
  14290. height: math.unit(6, "feet"),
  14291. weight: math.unit(150, "lb"),
  14292. name: "Back",
  14293. image: {
  14294. source: "./media/characters/nillia/back.svg",
  14295. extra: 2195 / 2037,
  14296. bottom: 0.005
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Canon Height",
  14303. height: math.unit(489, "feet"),
  14304. default: true
  14305. }
  14306. ]
  14307. ))
  14308. characterMakers.push(() => makeCharacter(
  14309. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14310. {
  14311. front: {
  14312. height: math.unit(6, "feet"),
  14313. weight: math.unit(150, "lb"),
  14314. name: "Front",
  14315. image: {
  14316. source: "./media/characters/mesmyriza/front.svg",
  14317. extra: 2067 / 1784,
  14318. bottom: 0.035
  14319. }
  14320. },
  14321. foot: {
  14322. height: math.unit(6 / (250 / 35), "feet"),
  14323. name: "Foot",
  14324. image: {
  14325. source: "./media/characters/mesmyriza/foot.svg"
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Macro",
  14332. height: math.unit(457, "meters"),
  14333. default: true
  14334. },
  14335. {
  14336. name: "Megamacro",
  14337. height: math.unit(8, "megameters")
  14338. },
  14339. ]
  14340. ))
  14341. characterMakers.push(() => makeCharacter(
  14342. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14343. {
  14344. front: {
  14345. height: math.unit(6, "feet"),
  14346. weight: math.unit(250, "lb"),
  14347. name: "Front",
  14348. image: {
  14349. source: "./media/characters/saudade/front.svg",
  14350. extra: 1172 / 1139,
  14351. bottom: 0.035
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Micro",
  14358. height: math.unit(3, "inches")
  14359. },
  14360. {
  14361. name: "Normal",
  14362. height: math.unit(6, "feet"),
  14363. default: true
  14364. },
  14365. {
  14366. name: "Macro",
  14367. height: math.unit(50, "feet")
  14368. },
  14369. {
  14370. name: "Megamacro",
  14371. height: math.unit(2800, "feet")
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14377. {
  14378. front: {
  14379. height: math.unit(5 + 4 / 12, "feet"),
  14380. weight: math.unit(100, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/keireer/front.svg",
  14384. extra: 716 / 666,
  14385. bottom: 0.05
  14386. }
  14387. },
  14388. },
  14389. [
  14390. {
  14391. name: "Normal",
  14392. height: math.unit(5 + 4 / 12, "feet"),
  14393. default: true
  14394. },
  14395. ]
  14396. ))
  14397. characterMakers.push(() => makeCharacter(
  14398. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14399. {
  14400. front: {
  14401. height: math.unit(6, "feet"),
  14402. weight: math.unit(90, "kg"),
  14403. name: "Front",
  14404. image: {
  14405. source: "./media/characters/mirja/front.svg",
  14406. extra: 1789 / 1683,
  14407. bottom: 0.05
  14408. }
  14409. },
  14410. frontDressed: {
  14411. height: math.unit(6, "feet"),
  14412. weight: math.unit(90, "lb"),
  14413. name: "Front (Dressed)",
  14414. image: {
  14415. source: "./media/characters/mirja/front-dressed.svg",
  14416. extra: 1789 / 1683,
  14417. bottom: 0.05
  14418. }
  14419. },
  14420. back: {
  14421. height: math.unit(6, "feet"),
  14422. weight: math.unit(90, "lb"),
  14423. name: "Back",
  14424. image: {
  14425. source: "./media/characters/mirja/back.svg",
  14426. extra: 953 / 917,
  14427. bottom: 0.017
  14428. }
  14429. },
  14430. },
  14431. [
  14432. {
  14433. name: "\"Incognito\"",
  14434. height: math.unit(3, "meters")
  14435. },
  14436. {
  14437. name: "Strolling Size",
  14438. height: math.unit(15, "km")
  14439. },
  14440. {
  14441. name: "Larger Strolling Size",
  14442. height: math.unit(400, "km")
  14443. },
  14444. {
  14445. name: "Preferred Size",
  14446. height: math.unit(5000, "km")
  14447. },
  14448. {
  14449. name: "True Size",
  14450. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14451. default: true
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(15, "feet"),
  14460. weight: math.unit(880, "kg"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/nightraver/front.svg",
  14464. extra: 2444 / 2160,
  14465. bottom: 0.027
  14466. }
  14467. },
  14468. back: {
  14469. height: math.unit(15, "feet"),
  14470. weight: math.unit(880, "kg"),
  14471. name: "Back",
  14472. image: {
  14473. source: "./media/characters/nightraver/back.svg",
  14474. extra: 2309 / 2180,
  14475. bottom: 0.005
  14476. }
  14477. },
  14478. sole: {
  14479. height: math.unit(2.878, "feet"),
  14480. name: "Sole",
  14481. image: {
  14482. source: "./media/characters/nightraver/sole.svg"
  14483. }
  14484. },
  14485. foot: {
  14486. height: math.unit(2.285, "feet"),
  14487. name: "Foot",
  14488. image: {
  14489. source: "./media/characters/nightraver/foot.svg"
  14490. }
  14491. },
  14492. maw: {
  14493. height: math.unit(2.67, "feet"),
  14494. name: "Maw",
  14495. image: {
  14496. source: "./media/characters/nightraver/maw.svg"
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Micro",
  14503. height: math.unit(1, "cm")
  14504. },
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(15, "feet"),
  14508. default: true
  14509. },
  14510. {
  14511. name: "Macro",
  14512. height: math.unit(300, "feet")
  14513. },
  14514. {
  14515. name: "Megamacro",
  14516. height: math.unit(300, "miles")
  14517. },
  14518. {
  14519. name: "Gigamacro",
  14520. height: math.unit(10000, "miles")
  14521. },
  14522. ]
  14523. ))
  14524. characterMakers.push(() => makeCharacter(
  14525. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14526. {
  14527. side: {
  14528. height: math.unit(2, "inches"),
  14529. weight: math.unit(5, "grams"),
  14530. name: "Side",
  14531. image: {
  14532. source: "./media/characters/arc/side.svg"
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Micro",
  14539. height: math.unit(2, "inches"),
  14540. default: true
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14546. {
  14547. front: {
  14548. height: math.unit(1.1938, "meters"),
  14549. weight: math.unit(54, "kg"),
  14550. name: "Front",
  14551. image: {
  14552. source: "./media/characters/nebula-shahar/front.svg",
  14553. extra: 1642 / 1436,
  14554. bottom: 0.06
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Megamicro",
  14561. height: math.unit(0.3, "mm")
  14562. },
  14563. {
  14564. name: "Micro",
  14565. height: math.unit(3, "cm")
  14566. },
  14567. {
  14568. name: "Normal",
  14569. height: math.unit(138, "cm"),
  14570. default: true
  14571. },
  14572. {
  14573. name: "Macro",
  14574. height: math.unit(30, "m")
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(5.24, "feet"),
  14583. weight: math.unit(150, "lb"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/shayla/front.svg",
  14587. extra: 1512 / 1414,
  14588. bottom: 0.01
  14589. }
  14590. },
  14591. back: {
  14592. height: math.unit(5.24, "feet"),
  14593. weight: math.unit(150, "lb"),
  14594. name: "Back",
  14595. image: {
  14596. source: "./media/characters/shayla/back.svg",
  14597. extra: 1512 / 1414
  14598. }
  14599. },
  14600. hand: {
  14601. height: math.unit(0.7781496062992126, "feet"),
  14602. name: "Hand",
  14603. image: {
  14604. source: "./media/characters/shayla/hand.svg"
  14605. }
  14606. },
  14607. foot: {
  14608. height: math.unit(1.4206036745406823, "feet"),
  14609. name: "Foot",
  14610. image: {
  14611. source: "./media/characters/shayla/foot.svg"
  14612. }
  14613. },
  14614. },
  14615. [
  14616. {
  14617. name: "Micro",
  14618. height: math.unit(0.32, "feet")
  14619. },
  14620. {
  14621. name: "Normal",
  14622. height: math.unit(5.24, "feet"),
  14623. default: true
  14624. },
  14625. {
  14626. name: "Macro",
  14627. height: math.unit(492.12, "feet")
  14628. },
  14629. {
  14630. name: "Megamacro",
  14631. height: math.unit(186.41, "miles")
  14632. },
  14633. ]
  14634. ))
  14635. characterMakers.push(() => makeCharacter(
  14636. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14637. {
  14638. front: {
  14639. height: math.unit(2.2, "m"),
  14640. weight: math.unit(120, "kg"),
  14641. name: "Front",
  14642. image: {
  14643. source: "./media/characters/pia-jr/front.svg",
  14644. extra: 1000 / 970,
  14645. bottom: 0.035
  14646. }
  14647. },
  14648. hand: {
  14649. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14650. name: "Hand",
  14651. image: {
  14652. source: "./media/characters/pia-jr/hand.svg"
  14653. }
  14654. },
  14655. paw: {
  14656. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14657. name: "Paw",
  14658. image: {
  14659. source: "./media/characters/pia-jr/paw.svg"
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Micro",
  14666. height: math.unit(1.2, "cm")
  14667. },
  14668. {
  14669. name: "Normal",
  14670. height: math.unit(2.2, "m"),
  14671. default: true
  14672. },
  14673. {
  14674. name: "Macro",
  14675. height: math.unit(180, "m")
  14676. },
  14677. {
  14678. name: "Megamacro",
  14679. height: math.unit(420, "km")
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14685. {
  14686. front: {
  14687. height: math.unit(2, "m"),
  14688. weight: math.unit(115, "kg"),
  14689. name: "Front",
  14690. image: {
  14691. source: "./media/characters/pia-sr/front.svg",
  14692. extra: 760 / 730,
  14693. bottom: 0.015
  14694. }
  14695. },
  14696. back: {
  14697. height: math.unit(2, "m"),
  14698. weight: math.unit(115, "kg"),
  14699. name: "Back",
  14700. image: {
  14701. source: "./media/characters/pia-sr/back.svg",
  14702. extra: 760 / 730,
  14703. bottom: 0.01
  14704. }
  14705. },
  14706. hand: {
  14707. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14708. name: "Hand",
  14709. image: {
  14710. source: "./media/characters/pia-sr/hand.svg"
  14711. }
  14712. },
  14713. foot: {
  14714. height: math.unit(1.83, "feet"),
  14715. name: "Foot",
  14716. image: {
  14717. source: "./media/characters/pia-sr/foot.svg"
  14718. }
  14719. },
  14720. },
  14721. [
  14722. {
  14723. name: "Micro",
  14724. height: math.unit(88, "mm")
  14725. },
  14726. {
  14727. name: "Normal",
  14728. height: math.unit(2, "m"),
  14729. default: true
  14730. },
  14731. {
  14732. name: "Macro",
  14733. height: math.unit(200, "m")
  14734. },
  14735. {
  14736. name: "Megamacro",
  14737. height: math.unit(420, "km")
  14738. },
  14739. ]
  14740. ))
  14741. characterMakers.push(() => makeCharacter(
  14742. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14743. {
  14744. front: {
  14745. height: math.unit(8 + 2 / 12, "feet"),
  14746. weight: math.unit(300, "lb"),
  14747. name: "Front",
  14748. image: {
  14749. source: "./media/characters/kibibyte/front.svg",
  14750. extra: 2221 / 2098,
  14751. bottom: 0.04
  14752. }
  14753. },
  14754. },
  14755. [
  14756. {
  14757. name: "Normal",
  14758. height: math.unit(8 + 2 / 12, "feet"),
  14759. default: true
  14760. },
  14761. {
  14762. name: "Socialable Macro",
  14763. height: math.unit(50, "feet")
  14764. },
  14765. {
  14766. name: "Macro",
  14767. height: math.unit(300, "feet")
  14768. },
  14769. {
  14770. name: "Megamacro",
  14771. height: math.unit(500, "miles")
  14772. },
  14773. ]
  14774. ))
  14775. characterMakers.push(() => makeCharacter(
  14776. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14777. {
  14778. front: {
  14779. height: math.unit(6, "feet"),
  14780. weight: math.unit(150, "lb"),
  14781. name: "Front",
  14782. image: {
  14783. source: "./media/characters/felix/front.svg",
  14784. extra: 762 / 722,
  14785. bottom: 0.02
  14786. }
  14787. },
  14788. frontClothed: {
  14789. height: math.unit(6, "feet"),
  14790. weight: math.unit(150, "lb"),
  14791. name: "Front (Clothed)",
  14792. image: {
  14793. source: "./media/characters/felix/front-clothed.svg",
  14794. extra: 762 / 722,
  14795. bottom: 0.02
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Normal",
  14802. height: math.unit(6 + 8 / 12, "feet"),
  14803. default: true
  14804. },
  14805. {
  14806. name: "Macro",
  14807. height: math.unit(2600, "feet")
  14808. },
  14809. {
  14810. name: "Megamacro",
  14811. height: math.unit(450, "miles")
  14812. },
  14813. ]
  14814. ))
  14815. characterMakers.push(() => makeCharacter(
  14816. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14817. {
  14818. front: {
  14819. height: math.unit(6 + 1 / 12, "feet"),
  14820. weight: math.unit(250, "lb"),
  14821. name: "Front",
  14822. image: {
  14823. source: "./media/characters/tobo/front.svg",
  14824. extra: 608 / 586,
  14825. bottom: 0.023
  14826. }
  14827. },
  14828. back: {
  14829. height: math.unit(6 + 1 / 12, "feet"),
  14830. weight: math.unit(250, "lb"),
  14831. name: "Back",
  14832. image: {
  14833. source: "./media/characters/tobo/back.svg",
  14834. extra: 608 / 586
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Nano",
  14841. height: math.unit(2, "nm")
  14842. },
  14843. {
  14844. name: "Megamicro",
  14845. height: math.unit(0.1, "mm")
  14846. },
  14847. {
  14848. name: "Micro",
  14849. height: math.unit(1, "inch"),
  14850. default: true
  14851. },
  14852. {
  14853. name: "Human-sized",
  14854. height: math.unit(6 + 1 / 12, "feet")
  14855. },
  14856. {
  14857. name: "Macro",
  14858. height: math.unit(250, "feet")
  14859. },
  14860. {
  14861. name: "Megamacro",
  14862. height: math.unit(75, "miles")
  14863. },
  14864. {
  14865. name: "Texas-sized",
  14866. height: math.unit(750, "miles")
  14867. },
  14868. {
  14869. name: "Teramacro",
  14870. height: math.unit(50000, "miles")
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14876. {
  14877. front: {
  14878. height: math.unit(6, "feet"),
  14879. weight: math.unit(269, "lb"),
  14880. name: "Front",
  14881. image: {
  14882. source: "./media/characters/danny-kapowsky/front.svg",
  14883. extra: 766 / 736,
  14884. bottom: 0.044
  14885. }
  14886. },
  14887. back: {
  14888. height: math.unit(6, "feet"),
  14889. weight: math.unit(269, "lb"),
  14890. name: "Back",
  14891. image: {
  14892. source: "./media/characters/danny-kapowsky/back.svg",
  14893. extra: 797 / 760,
  14894. bottom: 0.025
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Macro",
  14901. height: math.unit(150, "feet"),
  14902. default: true
  14903. },
  14904. {
  14905. name: "Macro+",
  14906. height: math.unit(200, "feet")
  14907. },
  14908. {
  14909. name: "Macro++",
  14910. height: math.unit(300, "feet")
  14911. },
  14912. {
  14913. name: "Macro+++",
  14914. height: math.unit(400, "feet")
  14915. },
  14916. ]
  14917. ))
  14918. characterMakers.push(() => makeCharacter(
  14919. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14920. {
  14921. side: {
  14922. height: math.unit(6, "feet"),
  14923. weight: math.unit(170, "lb"),
  14924. name: "Side",
  14925. image: {
  14926. source: "./media/characters/finn/side.svg",
  14927. extra: 1953 / 1807,
  14928. bottom: 0.057
  14929. }
  14930. },
  14931. },
  14932. [
  14933. {
  14934. name: "Megamacro",
  14935. height: math.unit(14445, "feet"),
  14936. default: true
  14937. },
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14942. {
  14943. front: {
  14944. height: math.unit(5 + 6 / 12, "feet"),
  14945. weight: math.unit(125, "lb"),
  14946. name: "Front",
  14947. image: {
  14948. source: "./media/characters/roy/front.svg",
  14949. extra: 1,
  14950. bottom: 0.11
  14951. }
  14952. },
  14953. },
  14954. [
  14955. {
  14956. name: "Micro",
  14957. height: math.unit(3, "inches"),
  14958. default: true
  14959. },
  14960. {
  14961. name: "Normal",
  14962. height: math.unit(5 + 6 / 12, "feet")
  14963. },
  14964. {
  14965. name: "Lesser Macro",
  14966. height: math.unit(60, "feet")
  14967. },
  14968. {
  14969. name: "Greater Macro",
  14970. height: math.unit(120, "feet")
  14971. },
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14976. {
  14977. front: {
  14978. height: math.unit(6, "feet"),
  14979. weight: math.unit(100, "lb"),
  14980. name: "Front",
  14981. image: {
  14982. source: "./media/characters/aevsivs/front.svg",
  14983. extra: 1,
  14984. bottom: 0.03
  14985. }
  14986. },
  14987. back: {
  14988. height: math.unit(6, "feet"),
  14989. weight: math.unit(100, "lb"),
  14990. name: "Back",
  14991. image: {
  14992. source: "./media/characters/aevsivs/back.svg"
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "Micro",
  14999. height: math.unit(2, "inches"),
  15000. default: true
  15001. },
  15002. {
  15003. name: "Normal",
  15004. height: math.unit(5, "feet")
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15010. {
  15011. front: {
  15012. height: math.unit(5 + 7 / 12, "feet"),
  15013. weight: math.unit(159, "lb"),
  15014. name: "Front",
  15015. image: {
  15016. source: "./media/characters/hildegard/front.svg",
  15017. extra: 289 / 269,
  15018. bottom: 7.63 / 297.8
  15019. }
  15020. },
  15021. back: {
  15022. height: math.unit(5 + 7 / 12, "feet"),
  15023. weight: math.unit(159, "lb"),
  15024. name: "Back",
  15025. image: {
  15026. source: "./media/characters/hildegard/back.svg",
  15027. extra: 280 / 260,
  15028. bottom: 2.3 / 282
  15029. }
  15030. },
  15031. },
  15032. [
  15033. {
  15034. name: "Normal",
  15035. height: math.unit(5 + 7 / 12, "feet"),
  15036. default: true
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15042. {
  15043. bernard: {
  15044. height: math.unit(2 + 7 / 12, "feet"),
  15045. weight: math.unit(66, "lb"),
  15046. name: "Bernard",
  15047. rename: true,
  15048. image: {
  15049. source: "./media/characters/bernard-wilder/bernard.svg",
  15050. extra: 192 / 128,
  15051. bottom: 0.05
  15052. }
  15053. },
  15054. wilder: {
  15055. height: math.unit(5 + 8 / 12, "feet"),
  15056. weight: math.unit(143, "lb"),
  15057. name: "Wilder",
  15058. rename: true,
  15059. image: {
  15060. source: "./media/characters/bernard-wilder/wilder.svg",
  15061. extra: 361 / 312,
  15062. bottom: 0.02
  15063. }
  15064. },
  15065. },
  15066. [
  15067. {
  15068. name: "Normal",
  15069. height: math.unit(2 + 7 / 12, "feet"),
  15070. default: true
  15071. },
  15072. ]
  15073. ))
  15074. characterMakers.push(() => makeCharacter(
  15075. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15076. {
  15077. anthro: {
  15078. height: math.unit(6 + 1 / 12, "feet"),
  15079. weight: math.unit(155, "lb"),
  15080. name: "Anthro",
  15081. image: {
  15082. source: "./media/characters/hearth/anthro.svg",
  15083. extra: 1178/1136,
  15084. bottom: 28/1206
  15085. }
  15086. },
  15087. feral: {
  15088. height: math.unit(3.78, "feet"),
  15089. weight: math.unit(35, "kg"),
  15090. name: "Feral",
  15091. image: {
  15092. source: "./media/characters/hearth/feral.svg",
  15093. extra: 153 / 135,
  15094. bottom: 0.03
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Normal",
  15101. height: math.unit(6 + 1 / 12, "feet"),
  15102. default: true
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15108. {
  15109. front: {
  15110. height: math.unit(6, "feet"),
  15111. weight: math.unit(182, "lb"),
  15112. name: "Front",
  15113. image: {
  15114. source: "./media/characters/ingrid/front.svg",
  15115. extra: 294 / 268,
  15116. bottom: 0.027
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Normal",
  15123. height: math.unit(6, "feet"),
  15124. default: true
  15125. },
  15126. ]
  15127. ))
  15128. characterMakers.push(() => makeCharacter(
  15129. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15130. {
  15131. eevee: {
  15132. height: math.unit(2 + 10 / 12, "feet"),
  15133. weight: math.unit(86, "lb"),
  15134. name: "Malgam",
  15135. image: {
  15136. source: "./media/characters/malgam/eevee.svg",
  15137. extra: 218 / 180,
  15138. bottom: 0.2
  15139. }
  15140. },
  15141. sylveon: {
  15142. height: math.unit(4, "feet"),
  15143. weight: math.unit(101, "lb"),
  15144. name: "Future Malgam",
  15145. rename: true,
  15146. image: {
  15147. source: "./media/characters/malgam/sylveon.svg",
  15148. extra: 371 / 325,
  15149. bottom: 0.015
  15150. }
  15151. },
  15152. gigantamax: {
  15153. height: math.unit(50, "feet"),
  15154. name: "Gigantamax Malgam",
  15155. rename: true,
  15156. image: {
  15157. source: "./media/characters/malgam/gigantamax.svg"
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Normal",
  15164. height: math.unit(2 + 10 / 12, "feet"),
  15165. default: true
  15166. },
  15167. ]
  15168. ))
  15169. characterMakers.push(() => makeCharacter(
  15170. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15171. {
  15172. front: {
  15173. height: math.unit(5 + 11 / 12, "feet"),
  15174. weight: math.unit(188, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/fleur/front.svg",
  15178. extra: 309 / 283,
  15179. bottom: 0.007
  15180. }
  15181. },
  15182. },
  15183. [
  15184. {
  15185. name: "Normal",
  15186. height: math.unit(5 + 11 / 12, "feet"),
  15187. default: true
  15188. },
  15189. ]
  15190. ))
  15191. characterMakers.push(() => makeCharacter(
  15192. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15193. {
  15194. front: {
  15195. height: math.unit(5 + 4 / 12, "feet"),
  15196. weight: math.unit(122, "lb"),
  15197. name: "Front",
  15198. image: {
  15199. source: "./media/characters/jude/front.svg",
  15200. extra: 288 / 273,
  15201. bottom: 0.03
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(5 + 4 / 12, "feet"),
  15209. default: true
  15210. },
  15211. ]
  15212. ))
  15213. characterMakers.push(() => makeCharacter(
  15214. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15215. {
  15216. front: {
  15217. height: math.unit(5 + 11 / 12, "feet"),
  15218. weight: math.unit(190, "lb"),
  15219. name: "Front",
  15220. image: {
  15221. source: "./media/characters/seara/front.svg",
  15222. extra: 1,
  15223. bottom: 0.05
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Normal",
  15230. height: math.unit(5 + 11 / 12, "feet"),
  15231. default: true
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15237. {
  15238. front: {
  15239. height: math.unit(16 + 5 / 12, "feet"),
  15240. weight: math.unit(524, "lb"),
  15241. name: "Front",
  15242. image: {
  15243. source: "./media/characters/caspian/front.svg",
  15244. extra: 1,
  15245. bottom: 0.04
  15246. }
  15247. },
  15248. },
  15249. [
  15250. {
  15251. name: "Normal",
  15252. height: math.unit(16 + 5 / 12, "feet"),
  15253. default: true
  15254. },
  15255. ]
  15256. ))
  15257. characterMakers.push(() => makeCharacter(
  15258. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15259. {
  15260. front: {
  15261. height: math.unit(5 + 7 / 12, "feet"),
  15262. weight: math.unit(170, "lb"),
  15263. name: "Front",
  15264. image: {
  15265. source: "./media/characters/mika/front.svg",
  15266. extra: 1,
  15267. bottom: 0.016
  15268. }
  15269. },
  15270. },
  15271. [
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(5 + 7 / 12, "feet"),
  15275. default: true
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15281. {
  15282. front: {
  15283. height: math.unit(6 + 2 / 12, "feet"),
  15284. weight: math.unit(268, "lb"),
  15285. name: "Front",
  15286. image: {
  15287. source: "./media/characters/sol/front.svg",
  15288. extra: 247 / 231,
  15289. bottom: 0.05
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(6 + 2 / 12, "feet"),
  15297. default: true
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15303. {
  15304. buizel: {
  15305. height: math.unit(2 + 5 / 12, "feet"),
  15306. weight: math.unit(87, "lb"),
  15307. name: "Buizel",
  15308. image: {
  15309. source: "./media/characters/umiko/buizel.svg",
  15310. extra: 172 / 157,
  15311. bottom: 0.01
  15312. }
  15313. },
  15314. floatzel: {
  15315. height: math.unit(5 + 9 / 12, "feet"),
  15316. weight: math.unit(250, "lb"),
  15317. name: "Floatzel",
  15318. image: {
  15319. source: "./media/characters/umiko/floatzel.svg",
  15320. extra: 262 / 248
  15321. }
  15322. },
  15323. },
  15324. [
  15325. {
  15326. name: "Normal",
  15327. height: math.unit(2 + 5 / 12, "feet"),
  15328. default: true
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15334. {
  15335. front: {
  15336. height: math.unit(6 + 2 / 12, "feet"),
  15337. weight: math.unit(146, "lb"),
  15338. name: "Front",
  15339. image: {
  15340. source: "./media/characters/iliac/front.svg",
  15341. extra: 389 / 365,
  15342. bottom: 0.035
  15343. }
  15344. },
  15345. },
  15346. [
  15347. {
  15348. name: "Normal",
  15349. height: math.unit(6 + 2 / 12, "feet"),
  15350. default: true
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15356. {
  15357. front: {
  15358. height: math.unit(6, "feet"),
  15359. weight: math.unit(170, "lb"),
  15360. name: "Front",
  15361. image: {
  15362. source: "./media/characters/topaz/front.svg",
  15363. extra: 317 / 303,
  15364. bottom: 0.055
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Normal",
  15371. height: math.unit(6, "feet"),
  15372. default: true
  15373. },
  15374. ]
  15375. ))
  15376. characterMakers.push(() => makeCharacter(
  15377. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15378. {
  15379. front: {
  15380. height: math.unit(5 + 11 / 12, "feet"),
  15381. weight: math.unit(144, "lb"),
  15382. name: "Front",
  15383. image: {
  15384. source: "./media/characters/gabriel/front.svg",
  15385. extra: 285 / 262,
  15386. bottom: 0.004
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Normal",
  15393. height: math.unit(5 + 11 / 12, "feet"),
  15394. default: true
  15395. },
  15396. ]
  15397. ))
  15398. characterMakers.push(() => makeCharacter(
  15399. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15400. {
  15401. side: {
  15402. height: math.unit(6 + 5 / 12, "feet"),
  15403. weight: math.unit(300, "lb"),
  15404. name: "Side",
  15405. image: {
  15406. source: "./media/characters/tempest-suicune/side.svg",
  15407. extra: 195 / 154,
  15408. bottom: 0.04
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Normal",
  15415. height: math.unit(6 + 5 / 12, "feet"),
  15416. default: true
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(7 + 2 / 12, "feet"),
  15425. weight: math.unit(322, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/vulcan/front.svg",
  15429. extra: 154 / 147,
  15430. bottom: 0.04
  15431. }
  15432. },
  15433. },
  15434. [
  15435. {
  15436. name: "Normal",
  15437. height: math.unit(7 + 2 / 12, "feet"),
  15438. default: true
  15439. },
  15440. ]
  15441. ))
  15442. characterMakers.push(() => makeCharacter(
  15443. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15444. {
  15445. front: {
  15446. height: math.unit(5 + 10 / 12, "feet"),
  15447. weight: math.unit(264, "lb"),
  15448. name: "Front",
  15449. image: {
  15450. source: "./media/characters/gault/front.svg",
  15451. extra: 161 / 140,
  15452. bottom: 0.028
  15453. }
  15454. },
  15455. },
  15456. [
  15457. {
  15458. name: "Normal",
  15459. height: math.unit(5 + 10 / 12, "feet"),
  15460. default: true
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15466. {
  15467. front: {
  15468. height: math.unit(6, "feet"),
  15469. weight: math.unit(150, "lb"),
  15470. name: "Front",
  15471. image: {
  15472. source: "./media/characters/shard/front.svg",
  15473. extra: 273 / 238,
  15474. bottom: 0.02
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Normal",
  15481. height: math.unit(3 + 6 / 12, "feet"),
  15482. default: true
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15488. {
  15489. front: {
  15490. height: math.unit(5 + 11 / 12, "feet"),
  15491. weight: math.unit(146, "lb"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/ashe/front.svg",
  15495. extra: 400 / 373,
  15496. bottom: 0.01
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(5 + 11 / 12, "feet"),
  15504. default: true
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(5 + 5 / 12, "feet"),
  15513. weight: math.unit(135, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/beatrix/front.svg",
  15517. extra: 392 / 379,
  15518. bottom: 0.01
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Normal",
  15525. height: math.unit(6, "feet"),
  15526. default: true
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(6 + 2/12, "feet"),
  15535. weight: math.unit(135, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/ignatius/front.svg",
  15539. extra: 1380/1259,
  15540. bottom: 27/1407
  15541. }
  15542. },
  15543. },
  15544. [
  15545. {
  15546. name: "Normal",
  15547. height: math.unit(6 + 2/12, "feet"),
  15548. default: true
  15549. },
  15550. ]
  15551. ))
  15552. characterMakers.push(() => makeCharacter(
  15553. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15554. {
  15555. front: {
  15556. height: math.unit(6 + 2 / 12, "feet"),
  15557. weight: math.unit(138, "lb"),
  15558. name: "Front",
  15559. image: {
  15560. source: "./media/characters/mei-li/front.svg",
  15561. extra: 237 / 229,
  15562. bottom: 0.03
  15563. }
  15564. },
  15565. },
  15566. [
  15567. {
  15568. name: "Normal",
  15569. height: math.unit(6 + 2 / 12, "feet"),
  15570. default: true
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(2 + 4 / 12, "feet"),
  15579. weight: math.unit(62, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/puru/front.svg",
  15583. extra: 206 / 149,
  15584. bottom: 0.06
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(2 + 4 / 12, "feet"),
  15592. default: true
  15593. },
  15594. ]
  15595. ))
  15596. characterMakers.push(() => makeCharacter(
  15597. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15598. {
  15599. anthro: {
  15600. height: math.unit(5 + 8/12, "feet"),
  15601. weight: math.unit(200, "lb"),
  15602. energyNeed: math.unit(2000, "kcal"),
  15603. name: "Anthro",
  15604. image: {
  15605. source: "./media/characters/kee/anthro.svg",
  15606. extra: 3251/3184,
  15607. bottom: 250/3501
  15608. }
  15609. },
  15610. taur: {
  15611. height: math.unit(11, "feet"),
  15612. weight: math.unit(500, "lb"),
  15613. energyNeed: math.unit(5000, "kcal"),
  15614. name: "Taur",
  15615. image: {
  15616. source: "./media/characters/kee/taur.svg",
  15617. extra: 1362/1320,
  15618. bottom: 83/1445
  15619. }
  15620. },
  15621. },
  15622. [
  15623. {
  15624. name: "Normal",
  15625. height: math.unit(5 + 8/12, "feet"),
  15626. default: true
  15627. },
  15628. {
  15629. name: "Macro",
  15630. height: math.unit(35, "feet")
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15636. {
  15637. anthro: {
  15638. height: math.unit(7, "feet"),
  15639. weight: math.unit(190, "lb"),
  15640. name: "Anthro",
  15641. image: {
  15642. source: "./media/characters/cobalt-dracha/anthro.svg",
  15643. extra: 231 / 225,
  15644. bottom: 0.04
  15645. }
  15646. },
  15647. feral: {
  15648. height: math.unit(9 + 7 / 12, "feet"),
  15649. weight: math.unit(294, "lb"),
  15650. name: "Feral",
  15651. image: {
  15652. source: "./media/characters/cobalt-dracha/feral.svg",
  15653. extra: 692 / 633,
  15654. bottom: 0.05
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(7, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15668. {
  15669. fallen: {
  15670. height: math.unit(11 + 8 / 12, "feet"),
  15671. weight: math.unit(485, "lb"),
  15672. name: "Java (Fallen)",
  15673. rename: true,
  15674. image: {
  15675. source: "./media/characters/java/fallen.svg",
  15676. extra: 226 / 208,
  15677. bottom: 0.005
  15678. }
  15679. },
  15680. godkin: {
  15681. height: math.unit(10 + 6 / 12, "feet"),
  15682. weight: math.unit(328, "lb"),
  15683. name: "Java (Godkin)",
  15684. rename: true,
  15685. image: {
  15686. source: "./media/characters/java/godkin.svg",
  15687. extra: 1104/1068,
  15688. bottom: 36/1140
  15689. }
  15690. },
  15691. },
  15692. [
  15693. {
  15694. name: "Normal",
  15695. height: math.unit(11 + 8 / 12, "feet"),
  15696. default: true
  15697. },
  15698. ]
  15699. ))
  15700. characterMakers.push(() => makeCharacter(
  15701. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15702. {
  15703. front: {
  15704. height: math.unit(5 + 9 / 12, "feet"),
  15705. weight: math.unit(170, "lb"),
  15706. name: "Front",
  15707. image: {
  15708. source: "./media/characters/purna/front.svg",
  15709. extra: 239 / 229,
  15710. bottom: 0.01
  15711. }
  15712. },
  15713. },
  15714. [
  15715. {
  15716. name: "Normal",
  15717. height: math.unit(5 + 9 / 12, "feet"),
  15718. default: true
  15719. },
  15720. ]
  15721. ))
  15722. characterMakers.push(() => makeCharacter(
  15723. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15724. {
  15725. front: {
  15726. height: math.unit(5 + 9 / 12, "feet"),
  15727. weight: math.unit(142, "lb"),
  15728. name: "Front",
  15729. image: {
  15730. source: "./media/characters/kuva/front.svg",
  15731. extra: 281 / 271,
  15732. bottom: 0.006
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Normal",
  15739. height: math.unit(5 + 9 / 12, "feet"),
  15740. default: true
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15746. {
  15747. anthro: {
  15748. height: math.unit(9 + 2 / 12, "feet"),
  15749. weight: math.unit(270, "lb"),
  15750. name: "Anthro",
  15751. image: {
  15752. source: "./media/characters/embra/anthro.svg",
  15753. extra: 200 / 187,
  15754. bottom: 0.02
  15755. }
  15756. },
  15757. feral: {
  15758. height: math.unit(18 + 8 / 12, "feet"),
  15759. weight: math.unit(576, "lb"),
  15760. name: "Feral",
  15761. image: {
  15762. source: "./media/characters/embra/feral.svg",
  15763. extra: 152 / 137,
  15764. bottom: 0.037
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(9 + 2 / 12, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15778. {
  15779. anthro: {
  15780. height: math.unit(10 + 9 / 12, "feet"),
  15781. weight: math.unit(224, "lb"),
  15782. name: "Anthro",
  15783. image: {
  15784. source: "./media/characters/grottos/anthro.svg",
  15785. extra: 350 / 332,
  15786. bottom: 0.045
  15787. }
  15788. },
  15789. feral: {
  15790. height: math.unit(20 + 7 / 12, "feet"),
  15791. weight: math.unit(629, "lb"),
  15792. name: "Feral",
  15793. image: {
  15794. source: "./media/characters/grottos/feral.svg",
  15795. extra: 207 / 190,
  15796. bottom: 0.05
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Normal",
  15803. height: math.unit(10 + 9 / 12, "feet"),
  15804. default: true
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15810. {
  15811. anthro: {
  15812. height: math.unit(9 + 6 / 12, "feet"),
  15813. weight: math.unit(298, "lb"),
  15814. name: "Anthro",
  15815. image: {
  15816. source: "./media/characters/frifna/anthro.svg",
  15817. extra: 282 / 269,
  15818. bottom: 0.015
  15819. }
  15820. },
  15821. feral: {
  15822. height: math.unit(16 + 2 / 12, "feet"),
  15823. weight: math.unit(624, "lb"),
  15824. name: "Feral",
  15825. image: {
  15826. source: "./media/characters/frifna/feral.svg"
  15827. }
  15828. },
  15829. },
  15830. [
  15831. {
  15832. name: "Normal",
  15833. height: math.unit(9 + 6 / 12, "feet"),
  15834. default: true
  15835. },
  15836. ]
  15837. ))
  15838. characterMakers.push(() => makeCharacter(
  15839. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15840. {
  15841. front: {
  15842. height: math.unit(6 + 2 / 12, "feet"),
  15843. weight: math.unit(168, "lb"),
  15844. name: "Front",
  15845. image: {
  15846. source: "./media/characters/elise/front.svg",
  15847. extra: 276 / 271
  15848. }
  15849. },
  15850. },
  15851. [
  15852. {
  15853. name: "Normal",
  15854. height: math.unit(6 + 2 / 12, "feet"),
  15855. default: true
  15856. },
  15857. ]
  15858. ))
  15859. characterMakers.push(() => makeCharacter(
  15860. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15861. {
  15862. front: {
  15863. height: math.unit(5 + 10 / 12, "feet"),
  15864. weight: math.unit(210, "lb"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/glade/front.svg",
  15868. extra: 258 / 247,
  15869. bottom: 0.008
  15870. }
  15871. },
  15872. },
  15873. [
  15874. {
  15875. name: "Normal",
  15876. height: math.unit(5 + 10 / 12, "feet"),
  15877. default: true
  15878. },
  15879. ]
  15880. ))
  15881. characterMakers.push(() => makeCharacter(
  15882. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15883. {
  15884. front: {
  15885. height: math.unit(5 + 10 / 12, "feet"),
  15886. weight: math.unit(129, "lb"),
  15887. name: "Front",
  15888. image: {
  15889. source: "./media/characters/rina/front.svg",
  15890. extra: 266 / 255,
  15891. bottom: 0.005
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(5 + 10 / 12, "feet"),
  15899. default: true
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15905. {
  15906. front: {
  15907. height: math.unit(6 + 1 / 12, "feet"),
  15908. weight: math.unit(192, "lb"),
  15909. name: "Front",
  15910. image: {
  15911. source: "./media/characters/veronica/front.svg",
  15912. extra: 319 / 309,
  15913. bottom: 0.005
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Normal",
  15920. height: math.unit(6 + 1 / 12, "feet"),
  15921. default: true
  15922. },
  15923. ]
  15924. ))
  15925. characterMakers.push(() => makeCharacter(
  15926. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15927. {
  15928. front: {
  15929. height: math.unit(9 + 3 / 12, "feet"),
  15930. weight: math.unit(1100, "lb"),
  15931. name: "Front",
  15932. image: {
  15933. source: "./media/characters/braxton/front.svg",
  15934. extra: 1057 / 984,
  15935. bottom: 0.05
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Normal",
  15942. height: math.unit(9 + 3 / 12, "feet")
  15943. },
  15944. {
  15945. name: "Giant",
  15946. height: math.unit(300, "feet"),
  15947. default: true
  15948. },
  15949. {
  15950. name: "Macro",
  15951. height: math.unit(700, "feet")
  15952. },
  15953. {
  15954. name: "Megamacro",
  15955. height: math.unit(6000, "feet")
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15961. {
  15962. front: {
  15963. height: math.unit(6 + 7 / 12, "feet"),
  15964. weight: math.unit(150, "lb"),
  15965. name: "Front",
  15966. image: {
  15967. source: "./media/characters/blue-feyonics/front.svg",
  15968. extra: 1403 / 1306,
  15969. bottom: 0.047
  15970. }
  15971. },
  15972. },
  15973. [
  15974. {
  15975. name: "Normal",
  15976. height: math.unit(6 + 7 / 12, "feet"),
  15977. default: true
  15978. },
  15979. ]
  15980. ))
  15981. characterMakers.push(() => makeCharacter(
  15982. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15983. {
  15984. front: {
  15985. height: math.unit(1.8, "meters"),
  15986. weight: math.unit(60, "kg"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/maxwell/front.svg",
  15990. extra: 2060 / 1873
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Micro",
  15997. height: math.unit(1, "mm")
  15998. },
  15999. {
  16000. name: "Normal",
  16001. height: math.unit(1.8, "meter"),
  16002. default: true
  16003. },
  16004. {
  16005. name: "Macro",
  16006. height: math.unit(30, "meters")
  16007. },
  16008. {
  16009. name: "Megamacro",
  16010. height: math.unit(10, "km")
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16016. {
  16017. front: {
  16018. height: math.unit(6, "feet"),
  16019. weight: math.unit(150, "lb"),
  16020. name: "Front",
  16021. image: {
  16022. source: "./media/characters/jack/front.svg",
  16023. extra: 1754 / 1640,
  16024. bottom: 0.01
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Normal",
  16031. height: math.unit(80000, "feet"),
  16032. default: true
  16033. },
  16034. {
  16035. name: "Max size",
  16036. height: math.unit(10, "lightyears")
  16037. },
  16038. ]
  16039. ))
  16040. characterMakers.push(() => makeCharacter(
  16041. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16042. {
  16043. urban: {
  16044. height: math.unit(5, "feet"),
  16045. weight: math.unit(240, "lb"),
  16046. name: "Urban",
  16047. image: {
  16048. source: "./media/characters/cafat/urban.svg",
  16049. extra: 1223/1126,
  16050. bottom: 205/1428
  16051. }
  16052. },
  16053. summer: {
  16054. height: math.unit(5, "feet"),
  16055. weight: math.unit(240, "lb"),
  16056. name: "Summer",
  16057. image: {
  16058. source: "./media/characters/cafat/summer.svg",
  16059. extra: 1223/1126,
  16060. bottom: 205/1428
  16061. }
  16062. },
  16063. winter: {
  16064. height: math.unit(5, "feet"),
  16065. weight: math.unit(240, "lb"),
  16066. name: "Winter",
  16067. image: {
  16068. source: "./media/characters/cafat/winter.svg",
  16069. extra: 1223/1126,
  16070. bottom: 205/1428
  16071. }
  16072. },
  16073. lingerie: {
  16074. height: math.unit(5, "feet"),
  16075. weight: math.unit(240, "lb"),
  16076. name: "Lingerie",
  16077. image: {
  16078. source: "./media/characters/cafat/lingerie.svg",
  16079. extra: 1223/1126,
  16080. bottom: 205/1428
  16081. }
  16082. },
  16083. upright: {
  16084. height: math.unit(6.3, "feet"),
  16085. weight: math.unit(240, "lb"),
  16086. name: "Upright",
  16087. image: {
  16088. source: "./media/characters/cafat/upright.svg",
  16089. bottom: 0.01
  16090. }
  16091. },
  16092. uprightFull: {
  16093. height: math.unit(6.3, "feet"),
  16094. weight: math.unit(240, "lb"),
  16095. name: "Upright (Full)",
  16096. image: {
  16097. source: "./media/characters/cafat/upright-full.svg",
  16098. bottom: 0.01
  16099. }
  16100. },
  16101. },
  16102. [
  16103. {
  16104. name: "Small",
  16105. height: math.unit(5, "feet"),
  16106. default: true
  16107. },
  16108. {
  16109. name: "Large",
  16110. height: math.unit(13, "feet")
  16111. },
  16112. ]
  16113. ))
  16114. characterMakers.push(() => makeCharacter(
  16115. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16116. {
  16117. front: {
  16118. height: math.unit(6, "feet"),
  16119. weight: math.unit(150, "lb"),
  16120. name: "Front",
  16121. image: {
  16122. source: "./media/characters/verin-raharra/front.svg",
  16123. extra: 5019 / 4835,
  16124. bottom: 0.023
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Normal",
  16131. height: math.unit(7 + 5 / 12, "feet"),
  16132. default: true
  16133. },
  16134. {
  16135. name: "Upsized",
  16136. height: math.unit(20, "feet")
  16137. },
  16138. ]
  16139. ))
  16140. characterMakers.push(() => makeCharacter(
  16141. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16142. {
  16143. front: {
  16144. height: math.unit(7, "feet"),
  16145. weight: math.unit(230, "lb"),
  16146. name: "Front",
  16147. image: {
  16148. source: "./media/characters/nakata/front.svg",
  16149. extra: 1.005,
  16150. bottom: 0.01
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Normal",
  16157. height: math.unit(7, "feet"),
  16158. default: true
  16159. },
  16160. {
  16161. name: "Big",
  16162. height: math.unit(14, "feet")
  16163. },
  16164. {
  16165. name: "Macro",
  16166. height: math.unit(400, "feet")
  16167. },
  16168. ]
  16169. ))
  16170. characterMakers.push(() => makeCharacter(
  16171. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16172. {
  16173. front: {
  16174. height: math.unit(4.91, "feet"),
  16175. weight: math.unit(100, "lb"),
  16176. name: "Front",
  16177. image: {
  16178. source: "./media/characters/lily/front.svg",
  16179. extra: 1585 / 1415,
  16180. bottom: 0.02
  16181. }
  16182. },
  16183. },
  16184. [
  16185. {
  16186. name: "Normal",
  16187. height: math.unit(4.91, "feet"),
  16188. default: true
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16194. {
  16195. laying: {
  16196. height: math.unit(4 + 4 / 12, "feet"),
  16197. weight: math.unit(600, "lb"),
  16198. name: "Laying",
  16199. image: {
  16200. source: "./media/characters/sheila/laying.svg",
  16201. extra: 1333 / 1265,
  16202. bottom: 0.16
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Normal",
  16209. height: math.unit(4 + 4 / 12, "feet"),
  16210. default: true
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16216. {
  16217. front: {
  16218. height: math.unit(6, "feet"),
  16219. weight: math.unit(190, "lb"),
  16220. name: "Front",
  16221. image: {
  16222. source: "./media/characters/sax/front.svg",
  16223. extra: 1187 / 973,
  16224. bottom: 0.042
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Micro",
  16231. height: math.unit(4, "inches"),
  16232. default: true
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(6, "feet"),
  16241. weight: math.unit(150, "lb"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/pandora/front.svg",
  16245. extra: 2720 / 2556,
  16246. bottom: 0.015
  16247. }
  16248. },
  16249. back: {
  16250. height: math.unit(6, "feet"),
  16251. weight: math.unit(150, "lb"),
  16252. name: "Back",
  16253. image: {
  16254. source: "./media/characters/pandora/back.svg",
  16255. extra: 2720 / 2556,
  16256. bottom: 0.01
  16257. }
  16258. },
  16259. beans: {
  16260. height: math.unit(6 / 8, "feet"),
  16261. name: "Beans",
  16262. image: {
  16263. source: "./media/characters/pandora/beans.svg"
  16264. }
  16265. },
  16266. collar: {
  16267. height: math.unit(0.31, "feet"),
  16268. name: "Collar",
  16269. image: {
  16270. source: "./media/characters/pandora/collar.svg"
  16271. }
  16272. },
  16273. skirt: {
  16274. height: math.unit(6, "feet"),
  16275. weight: math.unit(150, "lb"),
  16276. name: "Skirt",
  16277. image: {
  16278. source: "./media/characters/pandora/skirt.svg",
  16279. extra: 1622 / 1525,
  16280. bottom: 0.015
  16281. }
  16282. },
  16283. hoodie: {
  16284. height: math.unit(6, "feet"),
  16285. weight: math.unit(150, "lb"),
  16286. name: "Hoodie",
  16287. image: {
  16288. source: "./media/characters/pandora/hoodie.svg",
  16289. extra: 1622 / 1525,
  16290. bottom: 0.015
  16291. }
  16292. },
  16293. casual: {
  16294. height: math.unit(6, "feet"),
  16295. weight: math.unit(150, "lb"),
  16296. name: "Casual",
  16297. image: {
  16298. source: "./media/characters/pandora/casual.svg",
  16299. extra: 1622 / 1525,
  16300. bottom: 0.015
  16301. }
  16302. },
  16303. },
  16304. [
  16305. {
  16306. name: "Normal",
  16307. height: math.unit(6, "feet")
  16308. },
  16309. {
  16310. name: "Big Steppy",
  16311. height: math.unit(1, "km"),
  16312. default: true
  16313. },
  16314. {
  16315. name: "Galactic Steppy",
  16316. height: math.unit(2, "gigameters")
  16317. },
  16318. ]
  16319. ))
  16320. characterMakers.push(() => makeCharacter(
  16321. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16322. {
  16323. side: {
  16324. height: math.unit(10, "feet"),
  16325. weight: math.unit(800, "kg"),
  16326. name: "Side",
  16327. image: {
  16328. source: "./media/characters/venio-darcony/side.svg",
  16329. extra: 1373 / 1003,
  16330. bottom: 0.037
  16331. }
  16332. },
  16333. front: {
  16334. height: math.unit(19, "feet"),
  16335. weight: math.unit(800, "kg"),
  16336. name: "Front",
  16337. image: {
  16338. source: "./media/characters/venio-darcony/front.svg"
  16339. }
  16340. },
  16341. back: {
  16342. height: math.unit(19, "feet"),
  16343. weight: math.unit(800, "kg"),
  16344. name: "Back",
  16345. image: {
  16346. source: "./media/characters/venio-darcony/back.svg"
  16347. }
  16348. },
  16349. sideNsfw: {
  16350. height: math.unit(10, "feet"),
  16351. weight: math.unit(800, "kg"),
  16352. name: "Side (NSFW)",
  16353. image: {
  16354. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16355. extra: 1373 / 1003,
  16356. bottom: 0.037
  16357. }
  16358. },
  16359. frontNsfw: {
  16360. height: math.unit(19, "feet"),
  16361. weight: math.unit(800, "kg"),
  16362. name: "Front (NSFW)",
  16363. image: {
  16364. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16365. }
  16366. },
  16367. backNsfw: {
  16368. height: math.unit(19, "feet"),
  16369. weight: math.unit(800, "kg"),
  16370. name: "Back (NSFW)",
  16371. image: {
  16372. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16373. }
  16374. },
  16375. sideArmored: {
  16376. height: math.unit(10, "feet"),
  16377. weight: math.unit(800, "kg"),
  16378. name: "Side (Armored)",
  16379. image: {
  16380. source: "./media/characters/venio-darcony/side-armored.svg",
  16381. extra: 1373 / 1003,
  16382. bottom: 0.037
  16383. }
  16384. },
  16385. frontArmored: {
  16386. height: math.unit(19, "feet"),
  16387. weight: math.unit(900, "kg"),
  16388. name: "Front (Armored)",
  16389. image: {
  16390. source: "./media/characters/venio-darcony/front-armored.svg"
  16391. }
  16392. },
  16393. backArmored: {
  16394. height: math.unit(19, "feet"),
  16395. weight: math.unit(900, "kg"),
  16396. name: "Back (Armored)",
  16397. image: {
  16398. source: "./media/characters/venio-darcony/back-armored.svg"
  16399. }
  16400. },
  16401. sword: {
  16402. height: math.unit(10, "feet"),
  16403. weight: math.unit(50, "lb"),
  16404. name: "Sword",
  16405. image: {
  16406. source: "./media/characters/venio-darcony/sword.svg"
  16407. }
  16408. },
  16409. },
  16410. [
  16411. {
  16412. name: "Normal",
  16413. height: math.unit(10, "feet")
  16414. },
  16415. {
  16416. name: "Macro",
  16417. height: math.unit(130, "feet"),
  16418. default: true
  16419. },
  16420. {
  16421. name: "Macro+",
  16422. height: math.unit(240, "feet")
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16428. {
  16429. front: {
  16430. height: math.unit(6, "feet"),
  16431. weight: math.unit(150, "lb"),
  16432. name: "Front",
  16433. image: {
  16434. source: "./media/characters/veski/front.svg",
  16435. extra: 1299 / 1225,
  16436. bottom: 0.04
  16437. }
  16438. },
  16439. back: {
  16440. height: math.unit(6, "feet"),
  16441. weight: math.unit(150, "lb"),
  16442. name: "Back",
  16443. image: {
  16444. source: "./media/characters/veski/back.svg",
  16445. extra: 1299 / 1225,
  16446. bottom: 0.008
  16447. }
  16448. },
  16449. maw: {
  16450. height: math.unit(1.5 * 1.21, "feet"),
  16451. name: "Maw",
  16452. image: {
  16453. source: "./media/characters/veski/maw.svg"
  16454. }
  16455. },
  16456. },
  16457. [
  16458. {
  16459. name: "Macro",
  16460. height: math.unit(2, "km"),
  16461. default: true
  16462. },
  16463. ]
  16464. ))
  16465. characterMakers.push(() => makeCharacter(
  16466. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16467. {
  16468. front: {
  16469. height: math.unit(5 + 7 / 12, "feet"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/isabelle/front.svg",
  16473. extra: 2130 / 1976,
  16474. bottom: 0.05
  16475. }
  16476. },
  16477. },
  16478. [
  16479. {
  16480. name: "Supermicro",
  16481. height: math.unit(10, "micrometers")
  16482. },
  16483. {
  16484. name: "Micro",
  16485. height: math.unit(1, "inch")
  16486. },
  16487. {
  16488. name: "Tiny",
  16489. height: math.unit(5, "inches")
  16490. },
  16491. {
  16492. name: "Standard",
  16493. height: math.unit(5 + 7 / 12, "inches")
  16494. },
  16495. {
  16496. name: "Macro",
  16497. height: math.unit(80, "meters"),
  16498. default: true
  16499. },
  16500. {
  16501. name: "Megamacro",
  16502. height: math.unit(250, "meters")
  16503. },
  16504. {
  16505. name: "Gigamacro",
  16506. height: math.unit(5, "km")
  16507. },
  16508. {
  16509. name: "Cosmic",
  16510. height: math.unit(2.5e6, "miles")
  16511. },
  16512. ]
  16513. ))
  16514. characterMakers.push(() => makeCharacter(
  16515. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16516. {
  16517. front: {
  16518. height: math.unit(6, "feet"),
  16519. weight: math.unit(150, "lb"),
  16520. name: "Front",
  16521. image: {
  16522. source: "./media/characters/hanzo/front.svg",
  16523. extra: 374 / 344,
  16524. bottom: 0.02
  16525. }
  16526. },
  16527. },
  16528. [
  16529. {
  16530. name: "Normal",
  16531. height: math.unit(8, "feet"),
  16532. default: true
  16533. },
  16534. ]
  16535. ))
  16536. characterMakers.push(() => makeCharacter(
  16537. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16538. {
  16539. front: {
  16540. height: math.unit(7, "feet"),
  16541. weight: math.unit(130, "lb"),
  16542. name: "Front",
  16543. image: {
  16544. source: "./media/characters/anna/front.svg",
  16545. extra: 169 / 145,
  16546. bottom: 0.06
  16547. }
  16548. },
  16549. full: {
  16550. height: math.unit(4.96, "feet"),
  16551. weight: math.unit(220, "lb"),
  16552. name: "Full",
  16553. image: {
  16554. source: "./media/characters/anna/full.svg",
  16555. extra: 138 / 114,
  16556. bottom: 0.15
  16557. }
  16558. },
  16559. tongue: {
  16560. height: math.unit(2.53, "feet"),
  16561. name: "Tongue",
  16562. image: {
  16563. source: "./media/characters/anna/tongue.svg"
  16564. }
  16565. },
  16566. },
  16567. [
  16568. {
  16569. name: "Normal",
  16570. height: math.unit(7, "feet"),
  16571. default: true
  16572. },
  16573. ]
  16574. ))
  16575. characterMakers.push(() => makeCharacter(
  16576. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16577. {
  16578. front: {
  16579. height: math.unit(7, "feet"),
  16580. weight: math.unit(150, "lb"),
  16581. name: "Front",
  16582. image: {
  16583. source: "./media/characters/ian-corvid/front.svg",
  16584. extra: 150 / 142,
  16585. bottom: 0.02
  16586. }
  16587. },
  16588. back: {
  16589. height: math.unit(7, "feet"),
  16590. weight: math.unit(150, "lb"),
  16591. name: "Back",
  16592. image: {
  16593. source: "./media/characters/ian-corvid/back.svg",
  16594. extra: 150 / 143,
  16595. bottom: 0.01
  16596. }
  16597. },
  16598. stomping: {
  16599. height: math.unit(7, "feet"),
  16600. weight: math.unit(150, "lb"),
  16601. name: "Stomping",
  16602. image: {
  16603. source: "./media/characters/ian-corvid/stomping.svg",
  16604. extra: 76 / 72
  16605. }
  16606. },
  16607. sitting: {
  16608. height: math.unit(7 / 1.8, "feet"),
  16609. weight: math.unit(150, "lb"),
  16610. name: "Sitting",
  16611. image: {
  16612. source: "./media/characters/ian-corvid/sitting.svg",
  16613. extra: 1400 / 1269,
  16614. bottom: 0.15
  16615. }
  16616. },
  16617. },
  16618. [
  16619. {
  16620. name: "Tiny Microw",
  16621. height: math.unit(1, "inch")
  16622. },
  16623. {
  16624. name: "Microw",
  16625. height: math.unit(6, "inches")
  16626. },
  16627. {
  16628. name: "Crow",
  16629. height: math.unit(7 + 1 / 12, "feet"),
  16630. default: true
  16631. },
  16632. {
  16633. name: "Macrow",
  16634. height: math.unit(176, "feet")
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16640. {
  16641. front: {
  16642. height: math.unit(5 + 7 / 12, "feet"),
  16643. weight: math.unit(147, "lb"),
  16644. name: "Front",
  16645. image: {
  16646. source: "./media/characters/natalie-kellon/front.svg",
  16647. extra: 1214 / 1141,
  16648. bottom: 0.02
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Micro",
  16655. height: math.unit(1 / 16, "inch")
  16656. },
  16657. {
  16658. name: "Tiny",
  16659. height: math.unit(4, "inches")
  16660. },
  16661. {
  16662. name: "Normal",
  16663. height: math.unit(5 + 7 / 12, "feet"),
  16664. default: true
  16665. },
  16666. {
  16667. name: "Amazon",
  16668. height: math.unit(12, "feet")
  16669. },
  16670. {
  16671. name: "Giantess",
  16672. height: math.unit(160, "meters")
  16673. },
  16674. {
  16675. name: "Titaness",
  16676. height: math.unit(800, "meters")
  16677. },
  16678. ]
  16679. ))
  16680. characterMakers.push(() => makeCharacter(
  16681. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16682. {
  16683. front: {
  16684. height: math.unit(6, "feet"),
  16685. weight: math.unit(150, "lb"),
  16686. name: "Front",
  16687. image: {
  16688. source: "./media/characters/alluria/front.svg",
  16689. extra: 806 / 738,
  16690. bottom: 0.01
  16691. }
  16692. },
  16693. side: {
  16694. height: math.unit(6, "feet"),
  16695. weight: math.unit(150, "lb"),
  16696. name: "Side",
  16697. image: {
  16698. source: "./media/characters/alluria/side.svg",
  16699. extra: 800 / 750,
  16700. }
  16701. },
  16702. back: {
  16703. height: math.unit(6, "feet"),
  16704. weight: math.unit(150, "lb"),
  16705. name: "Back",
  16706. image: {
  16707. source: "./media/characters/alluria/back.svg",
  16708. extra: 806 / 738,
  16709. }
  16710. },
  16711. frontMaid: {
  16712. height: math.unit(6, "feet"),
  16713. weight: math.unit(150, "lb"),
  16714. name: "Front (Maid)",
  16715. image: {
  16716. source: "./media/characters/alluria/front-maid.svg",
  16717. extra: 806 / 738,
  16718. bottom: 0.01
  16719. }
  16720. },
  16721. sideMaid: {
  16722. height: math.unit(6, "feet"),
  16723. weight: math.unit(150, "lb"),
  16724. name: "Side (Maid)",
  16725. image: {
  16726. source: "./media/characters/alluria/side-maid.svg",
  16727. extra: 800 / 750,
  16728. bottom: 0.005
  16729. }
  16730. },
  16731. backMaid: {
  16732. height: math.unit(6, "feet"),
  16733. weight: math.unit(150, "lb"),
  16734. name: "Back (Maid)",
  16735. image: {
  16736. source: "./media/characters/alluria/back-maid.svg",
  16737. extra: 806 / 738,
  16738. }
  16739. },
  16740. },
  16741. [
  16742. {
  16743. name: "Micro",
  16744. height: math.unit(6, "inches"),
  16745. default: true
  16746. },
  16747. ]
  16748. ))
  16749. characterMakers.push(() => makeCharacter(
  16750. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16751. {
  16752. front: {
  16753. height: math.unit(6, "feet"),
  16754. weight: math.unit(150, "lb"),
  16755. name: "Front",
  16756. image: {
  16757. source: "./media/characters/kyle/front.svg",
  16758. extra: 1069 / 962,
  16759. bottom: 77.228 / 1727.45
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Macro",
  16766. height: math.unit(150, "feet"),
  16767. default: true
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(6, "feet"),
  16776. weight: math.unit(300, "lb"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/duncan/front.svg",
  16780. extra: 1650 / 1482,
  16781. bottom: 0.05
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Macro",
  16788. height: math.unit(100, "feet"),
  16789. default: true
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(5 + 4 / 12, "feet"),
  16798. weight: math.unit(220, "lb"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/memory/front.svg",
  16802. extra: 3641 / 3545,
  16803. bottom: 0.03
  16804. }
  16805. },
  16806. back: {
  16807. height: math.unit(5 + 4 / 12, "feet"),
  16808. weight: math.unit(220, "lb"),
  16809. name: "Back",
  16810. image: {
  16811. source: "./media/characters/memory/back.svg",
  16812. extra: 3641 / 3545,
  16813. bottom: 0.025
  16814. }
  16815. },
  16816. frontSkirt: {
  16817. height: math.unit(5 + 4 / 12, "feet"),
  16818. weight: math.unit(220, "lb"),
  16819. name: "Front (Skirt)",
  16820. image: {
  16821. source: "./media/characters/memory/front-skirt.svg",
  16822. extra: 3641 / 3545,
  16823. bottom: 0.03
  16824. }
  16825. },
  16826. frontDress: {
  16827. height: math.unit(5 + 4 / 12, "feet"),
  16828. weight: math.unit(220, "lb"),
  16829. name: "Front (Dress)",
  16830. image: {
  16831. source: "./media/characters/memory/front-dress.svg",
  16832. extra: 3641 / 3545,
  16833. bottom: 0.03
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Micro",
  16840. height: math.unit(6, "inches"),
  16841. default: true
  16842. },
  16843. {
  16844. name: "Normal",
  16845. height: math.unit(5 + 4 / 12, "feet")
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16851. {
  16852. front: {
  16853. height: math.unit(4 + 11 / 12, "feet"),
  16854. weight: math.unit(100, "lb"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/luno/front.svg",
  16858. extra: 1535 / 1487,
  16859. bottom: 0.03
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Micro",
  16866. height: math.unit(3, "inches")
  16867. },
  16868. {
  16869. name: "Normal",
  16870. height: math.unit(4 + 11 / 12, "feet"),
  16871. default: true
  16872. },
  16873. {
  16874. name: "Macro",
  16875. height: math.unit(300, "feet")
  16876. },
  16877. {
  16878. name: "Megamacro",
  16879. height: math.unit(700, "miles")
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16885. {
  16886. front: {
  16887. height: math.unit(6 + 2 / 12, "feet"),
  16888. weight: math.unit(170, "lb"),
  16889. name: "Front",
  16890. image: {
  16891. source: "./media/characters/jamesy/front.svg",
  16892. extra: 440 / 382,
  16893. bottom: 0.005
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Micro",
  16900. height: math.unit(3, "inches")
  16901. },
  16902. {
  16903. name: "Normal",
  16904. height: math.unit(6 + 2 / 12, "feet"),
  16905. default: true
  16906. },
  16907. {
  16908. name: "Macro",
  16909. height: math.unit(300, "feet")
  16910. },
  16911. {
  16912. name: "Megamacro",
  16913. height: math.unit(700, "miles")
  16914. },
  16915. ]
  16916. ))
  16917. characterMakers.push(() => makeCharacter(
  16918. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16919. {
  16920. front: {
  16921. height: math.unit(6, "feet"),
  16922. weight: math.unit(160, "lb"),
  16923. name: "Front",
  16924. image: {
  16925. source: "./media/characters/mark/front.svg",
  16926. extra: 3300 / 3100,
  16927. bottom: 136.42 / 3440.47
  16928. }
  16929. },
  16930. },
  16931. [
  16932. {
  16933. name: "Macro",
  16934. height: math.unit(120, "meters")
  16935. },
  16936. {
  16937. name: "Bigger Macro",
  16938. height: math.unit(350, "meters")
  16939. },
  16940. {
  16941. name: "Megamacro",
  16942. height: math.unit(8, "km"),
  16943. default: true
  16944. },
  16945. {
  16946. name: "Continental",
  16947. height: math.unit(4550, "km")
  16948. },
  16949. {
  16950. name: "Planetary",
  16951. height: math.unit(65000, "km")
  16952. },
  16953. ]
  16954. ))
  16955. characterMakers.push(() => makeCharacter(
  16956. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16957. {
  16958. front: {
  16959. height: math.unit(6, "feet"),
  16960. weight: math.unit(400, "lb"),
  16961. name: "Front",
  16962. image: {
  16963. source: "./media/characters/mac/front.svg",
  16964. extra: 1048 / 987.7,
  16965. bottom: 60 / 1107.6,
  16966. }
  16967. },
  16968. },
  16969. [
  16970. {
  16971. name: "Macro",
  16972. height: math.unit(500, "feet"),
  16973. default: true
  16974. },
  16975. ]
  16976. ))
  16977. characterMakers.push(() => makeCharacter(
  16978. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16979. {
  16980. front: {
  16981. height: math.unit(5 + 2 / 12, "feet"),
  16982. weight: math.unit(190, "lb"),
  16983. name: "Front",
  16984. image: {
  16985. source: "./media/characters/bari/front.svg",
  16986. extra: 3156 / 2880,
  16987. bottom: 0.03
  16988. }
  16989. },
  16990. back: {
  16991. height: math.unit(5 + 2 / 12, "feet"),
  16992. weight: math.unit(190, "lb"),
  16993. name: "Back",
  16994. image: {
  16995. source: "./media/characters/bari/back.svg",
  16996. extra: 3260 / 2834,
  16997. bottom: 0.025
  16998. }
  16999. },
  17000. frontPlush: {
  17001. height: math.unit(5 + 2 / 12, "feet"),
  17002. weight: math.unit(190, "lb"),
  17003. name: "Front (Plush)",
  17004. image: {
  17005. source: "./media/characters/bari/front-plush.svg",
  17006. extra: 1112 / 1061,
  17007. bottom: 0.002
  17008. }
  17009. },
  17010. },
  17011. [
  17012. {
  17013. name: "Micro",
  17014. height: math.unit(3, "inches")
  17015. },
  17016. {
  17017. name: "Normal",
  17018. height: math.unit(5 + 2 / 12, "feet"),
  17019. default: true
  17020. },
  17021. {
  17022. name: "Macro",
  17023. height: math.unit(20, "feet")
  17024. },
  17025. ]
  17026. ))
  17027. characterMakers.push(() => makeCharacter(
  17028. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17029. {
  17030. front: {
  17031. height: math.unit(6 + 1 / 12, "feet"),
  17032. weight: math.unit(275, "lb"),
  17033. name: "Front",
  17034. image: {
  17035. source: "./media/characters/hunter-misha-raven/front.svg"
  17036. }
  17037. },
  17038. },
  17039. [
  17040. {
  17041. name: "Mortal",
  17042. height: math.unit(6 + 1 / 12, "feet")
  17043. },
  17044. {
  17045. name: "Divine",
  17046. height: math.unit(1.12134e34, "parsecs"),
  17047. default: true
  17048. },
  17049. ]
  17050. ))
  17051. characterMakers.push(() => makeCharacter(
  17052. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17053. {
  17054. front: {
  17055. height: math.unit(6 + 3 / 12, "feet"),
  17056. weight: math.unit(220, "lb"),
  17057. name: "Front",
  17058. image: {
  17059. source: "./media/characters/max-calore/front.svg",
  17060. extra: 1700 / 1648,
  17061. bottom: 0.01
  17062. }
  17063. },
  17064. back: {
  17065. height: math.unit(6 + 3 / 12, "feet"),
  17066. weight: math.unit(220, "lb"),
  17067. name: "Back",
  17068. image: {
  17069. source: "./media/characters/max-calore/back.svg",
  17070. extra: 1700 / 1648,
  17071. bottom: 0.01
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Normal",
  17078. height: math.unit(6 + 3 / 12, "feet"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17085. {
  17086. side: {
  17087. height: math.unit(2 + 8 / 12, "feet"),
  17088. weight: math.unit(99, "lb"),
  17089. name: "Side",
  17090. image: {
  17091. source: "./media/characters/aspen/side.svg",
  17092. extra: 152 / 138,
  17093. bottom: 0.032
  17094. }
  17095. },
  17096. },
  17097. [
  17098. {
  17099. name: "Normal",
  17100. height: math.unit(2 + 8 / 12, "feet"),
  17101. default: true
  17102. },
  17103. ]
  17104. ))
  17105. characterMakers.push(() => makeCharacter(
  17106. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17107. {
  17108. side: {
  17109. height: math.unit(3 + 2 / 12, "feet"),
  17110. weight: math.unit(224, "lb"),
  17111. name: "Side",
  17112. image: {
  17113. source: "./media/characters/sheila-feral-wolf/side.svg",
  17114. extra: 179 / 166,
  17115. bottom: 0.03
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(3 + 2 / 12, "feet"),
  17123. default: true
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17129. {
  17130. side: {
  17131. height: math.unit(1 + 9 / 12, "feet"),
  17132. weight: math.unit(38, "lb"),
  17133. name: "Side",
  17134. image: {
  17135. source: "./media/characters/michelle/side.svg",
  17136. extra: 147 / 136.7,
  17137. bottom: 0.03
  17138. }
  17139. },
  17140. },
  17141. [
  17142. {
  17143. name: "Normal",
  17144. height: math.unit(1 + 9 / 12, "feet"),
  17145. default: true
  17146. },
  17147. ]
  17148. ))
  17149. characterMakers.push(() => makeCharacter(
  17150. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17151. {
  17152. front: {
  17153. height: math.unit(1 + 1 / 12, "feet"),
  17154. weight: math.unit(18, "lb"),
  17155. name: "Front",
  17156. image: {
  17157. source: "./media/characters/nino/front.svg"
  17158. }
  17159. },
  17160. },
  17161. [
  17162. {
  17163. name: "Normal",
  17164. height: math.unit(1 + 1 / 12, "feet"),
  17165. default: true
  17166. },
  17167. ]
  17168. ))
  17169. characterMakers.push(() => makeCharacter(
  17170. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17171. {
  17172. front: {
  17173. height: math.unit(1, "feet"),
  17174. weight: math.unit(16, "lb"),
  17175. name: "Front",
  17176. image: {
  17177. source: "./media/characters/viola/front.svg"
  17178. }
  17179. },
  17180. },
  17181. [
  17182. {
  17183. name: "Normal",
  17184. height: math.unit(1, "feet"),
  17185. default: true
  17186. },
  17187. ]
  17188. ))
  17189. characterMakers.push(() => makeCharacter(
  17190. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17191. {
  17192. front: {
  17193. height: math.unit(6 + 5 / 12, "feet"),
  17194. weight: math.unit(580, "lb"),
  17195. name: "Front",
  17196. image: {
  17197. source: "./media/characters/atlas/front.svg",
  17198. extra: 298.5 / 290,
  17199. bottom: 0.015
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Normal",
  17206. height: math.unit(6 + 5 / 12, "feet"),
  17207. default: true
  17208. },
  17209. ]
  17210. ))
  17211. characterMakers.push(() => makeCharacter(
  17212. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17213. {
  17214. side: {
  17215. height: math.unit(1 + 10 / 12, "feet"),
  17216. weight: math.unit(25, "lb"),
  17217. name: "Side",
  17218. image: {
  17219. source: "./media/characters/davy/side.svg",
  17220. extra: 200 / 170,
  17221. bottom: 0.01
  17222. }
  17223. },
  17224. },
  17225. [
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(1 + 10 / 12, "feet"),
  17229. default: true
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17235. {
  17236. side: {
  17237. height: math.unit(4 + 8 / 12, "feet"),
  17238. weight: math.unit(166, "lb"),
  17239. name: "Side",
  17240. image: {
  17241. source: "./media/characters/fiona/side.svg",
  17242. extra: 232 / 220,
  17243. bottom: 0.03
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Normal",
  17250. height: math.unit(4 + 8 / 12, "feet"),
  17251. default: true
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17257. {
  17258. front: {
  17259. height: math.unit(3, "feet"),
  17260. weight: math.unit(100, "lb"),
  17261. name: "Front",
  17262. image: {
  17263. source: "./media/characters/lyla/front.svg",
  17264. bottom: 0.1
  17265. }
  17266. },
  17267. },
  17268. [
  17269. {
  17270. name: "Normal",
  17271. height: math.unit(3, "feet"),
  17272. default: true
  17273. },
  17274. ]
  17275. ))
  17276. characterMakers.push(() => makeCharacter(
  17277. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17278. {
  17279. side: {
  17280. height: math.unit(1.8, "feet"),
  17281. weight: math.unit(44, "lb"),
  17282. name: "Side",
  17283. image: {
  17284. source: "./media/characters/perseus/side.svg",
  17285. bottom: 0.21
  17286. }
  17287. },
  17288. },
  17289. [
  17290. {
  17291. name: "Normal",
  17292. height: math.unit(1.8, "feet"),
  17293. default: true
  17294. },
  17295. ]
  17296. ))
  17297. characterMakers.push(() => makeCharacter(
  17298. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17299. {
  17300. side: {
  17301. height: math.unit(4 + 2 / 12, "feet"),
  17302. weight: math.unit(20, "lb"),
  17303. name: "Side",
  17304. image: {
  17305. source: "./media/characters/remus/side.svg"
  17306. }
  17307. },
  17308. },
  17309. [
  17310. {
  17311. name: "Normal",
  17312. height: math.unit(4 + 2 / 12, "feet"),
  17313. default: true
  17314. },
  17315. ]
  17316. ))
  17317. characterMakers.push(() => makeCharacter(
  17318. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17319. {
  17320. front: {
  17321. height: math.unit(4 + 11 / 12, "feet"),
  17322. weight: math.unit(114, "lb"),
  17323. name: "Front",
  17324. image: {
  17325. source: "./media/characters/raf/front.svg",
  17326. extra: 1504/1339,
  17327. bottom: 26/1530
  17328. }
  17329. },
  17330. side: {
  17331. height: math.unit(4 + 11 / 12, "feet"),
  17332. weight: math.unit(114, "lb"),
  17333. name: "Side",
  17334. image: {
  17335. source: "./media/characters/raf/side.svg",
  17336. extra: 1466/1316,
  17337. bottom: 29/1495
  17338. }
  17339. },
  17340. },
  17341. [
  17342. {
  17343. name: "Micro",
  17344. height: math.unit(2, "inches")
  17345. },
  17346. {
  17347. name: "Normal",
  17348. height: math.unit(4 + 11 / 12, "feet"),
  17349. default: true
  17350. },
  17351. {
  17352. name: "Macro",
  17353. height: math.unit(70, "feet")
  17354. },
  17355. ]
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17359. {
  17360. front: {
  17361. height: math.unit(1.5, "meters"),
  17362. weight: math.unit(68, "kg"),
  17363. name: "Front",
  17364. image: {
  17365. source: "./media/characters/liam-einarr/front.svg",
  17366. extra: 2822 / 2666
  17367. }
  17368. },
  17369. back: {
  17370. height: math.unit(1.5, "meters"),
  17371. weight: math.unit(68, "kg"),
  17372. name: "Back",
  17373. image: {
  17374. source: "./media/characters/liam-einarr/back.svg",
  17375. extra: 2822 / 2666,
  17376. bottom: 0.015
  17377. }
  17378. },
  17379. },
  17380. [
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(1.5, "meters"),
  17384. default: true
  17385. },
  17386. {
  17387. name: "Macro",
  17388. height: math.unit(150, "meters")
  17389. },
  17390. {
  17391. name: "Megamacro",
  17392. height: math.unit(35, "km")
  17393. },
  17394. ]
  17395. ))
  17396. characterMakers.push(() => makeCharacter(
  17397. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17398. {
  17399. front: {
  17400. height: math.unit(6, "feet"),
  17401. weight: math.unit(75, "kg"),
  17402. name: "Front",
  17403. image: {
  17404. source: "./media/characters/linda/front.svg",
  17405. extra: 930 / 874,
  17406. bottom: 0.004
  17407. }
  17408. },
  17409. },
  17410. [
  17411. {
  17412. name: "Normal",
  17413. height: math.unit(6, "feet"),
  17414. default: true
  17415. },
  17416. ]
  17417. ))
  17418. characterMakers.push(() => makeCharacter(
  17419. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17420. {
  17421. front: {
  17422. height: math.unit(6 + 8 / 12, "feet"),
  17423. weight: math.unit(220, "lb"),
  17424. name: "Front",
  17425. image: {
  17426. source: "./media/characters/caylex/front.svg",
  17427. extra: 821 / 772,
  17428. bottom: 0.07
  17429. }
  17430. },
  17431. back: {
  17432. height: math.unit(6 + 8 / 12, "feet"),
  17433. weight: math.unit(220, "lb"),
  17434. name: "Back",
  17435. image: {
  17436. source: "./media/characters/caylex/back.svg",
  17437. extra: 821 / 772,
  17438. bottom: 0.022
  17439. }
  17440. },
  17441. hand: {
  17442. height: math.unit(1.25, "feet"),
  17443. name: "Hand",
  17444. image: {
  17445. source: "./media/characters/caylex/hand.svg"
  17446. }
  17447. },
  17448. foot: {
  17449. height: math.unit(1.6, "feet"),
  17450. name: "Foot",
  17451. image: {
  17452. source: "./media/characters/caylex/foot.svg"
  17453. }
  17454. },
  17455. armored: {
  17456. height: math.unit(6 + 8 / 12, "feet"),
  17457. weight: math.unit(250, "lb"),
  17458. name: "Armored",
  17459. image: {
  17460. source: "./media/characters/caylex/armored.svg",
  17461. extra: 1420 / 1310,
  17462. bottom: 0.045
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(6 + 8 / 12, "feet"),
  17470. default: true
  17471. },
  17472. {
  17473. name: "Normal+",
  17474. height: math.unit(12, "feet")
  17475. },
  17476. ]
  17477. ))
  17478. characterMakers.push(() => makeCharacter(
  17479. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17480. {
  17481. front: {
  17482. height: math.unit(7 + 6 / 12, "feet"),
  17483. weight: math.unit(288, "lb"),
  17484. name: "Front",
  17485. image: {
  17486. source: "./media/characters/alana/front.svg",
  17487. extra: 679 / 653,
  17488. bottom: 22.5 / 701
  17489. }
  17490. },
  17491. },
  17492. [
  17493. {
  17494. name: "Normal",
  17495. height: math.unit(7 + 6 / 12, "feet")
  17496. },
  17497. {
  17498. name: "Large",
  17499. height: math.unit(50, "feet")
  17500. },
  17501. {
  17502. name: "Macro",
  17503. height: math.unit(100, "feet"),
  17504. default: true
  17505. },
  17506. {
  17507. name: "Macro+",
  17508. height: math.unit(200, "feet")
  17509. },
  17510. ]
  17511. ))
  17512. characterMakers.push(() => makeCharacter(
  17513. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17514. {
  17515. front: {
  17516. height: math.unit(6 + 1 / 12, "feet"),
  17517. weight: math.unit(210, "lb"),
  17518. name: "Front",
  17519. image: {
  17520. source: "./media/characters/hasani/front.svg",
  17521. extra: 244 / 232,
  17522. bottom: 0.01
  17523. }
  17524. },
  17525. back: {
  17526. height: math.unit(6 + 1 / 12, "feet"),
  17527. weight: math.unit(210, "lb"),
  17528. name: "Back",
  17529. image: {
  17530. source: "./media/characters/hasani/back.svg",
  17531. extra: 244 / 232,
  17532. bottom: 0.01
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Normal",
  17539. height: math.unit(6 + 1 / 12, "feet")
  17540. },
  17541. {
  17542. name: "Macro",
  17543. height: math.unit(175, "feet"),
  17544. default: true
  17545. },
  17546. ]
  17547. ))
  17548. characterMakers.push(() => makeCharacter(
  17549. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17550. {
  17551. front: {
  17552. height: math.unit(1.82, "meters"),
  17553. weight: math.unit(140, "lb"),
  17554. name: "Front",
  17555. image: {
  17556. source: "./media/characters/nita/front.svg",
  17557. extra: 2473 / 2363,
  17558. bottom: 0.01
  17559. }
  17560. },
  17561. },
  17562. [
  17563. {
  17564. name: "Normal",
  17565. height: math.unit(1.82, "m")
  17566. },
  17567. {
  17568. name: "Macro",
  17569. height: math.unit(300, "m")
  17570. },
  17571. {
  17572. name: "Mistake Canon",
  17573. height: math.unit(0.5, "miles"),
  17574. default: true
  17575. },
  17576. {
  17577. name: "Big Mistake",
  17578. height: math.unit(13, "miles")
  17579. },
  17580. {
  17581. name: "Playing God",
  17582. height: math.unit(2450, "miles")
  17583. },
  17584. ]
  17585. ))
  17586. characterMakers.push(() => makeCharacter(
  17587. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17588. {
  17589. front: {
  17590. height: math.unit(4, "feet"),
  17591. weight: math.unit(120, "lb"),
  17592. name: "Front",
  17593. image: {
  17594. source: "./media/characters/shiriko/front.svg",
  17595. extra: 970/934,
  17596. bottom: 5/975
  17597. }
  17598. },
  17599. },
  17600. [
  17601. {
  17602. name: "Normal",
  17603. height: math.unit(4, "feet"),
  17604. default: true
  17605. },
  17606. ]
  17607. ))
  17608. characterMakers.push(() => makeCharacter(
  17609. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17610. {
  17611. front: {
  17612. height: math.unit(6, "feet"),
  17613. name: "front",
  17614. image: {
  17615. source: "./media/characters/deja/front.svg",
  17616. extra: 926 / 840,
  17617. bottom: 0.07
  17618. }
  17619. },
  17620. },
  17621. [
  17622. {
  17623. name: "Planck Length",
  17624. height: math.unit(1.6e-35, "meters")
  17625. },
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(30.48, "meters"),
  17629. default: true
  17630. },
  17631. {
  17632. name: "Universal",
  17633. height: math.unit(8.8e26, "meters")
  17634. },
  17635. ]
  17636. ))
  17637. characterMakers.push(() => makeCharacter(
  17638. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17639. {
  17640. side: {
  17641. height: math.unit(8, "feet"),
  17642. weight: math.unit(6300, "lb"),
  17643. name: "Side",
  17644. image: {
  17645. source: "./media/characters/anima/side.svg",
  17646. bottom: 0.035
  17647. }
  17648. },
  17649. },
  17650. [
  17651. {
  17652. name: "Normal",
  17653. height: math.unit(8, "feet"),
  17654. default: true
  17655. },
  17656. ]
  17657. ))
  17658. characterMakers.push(() => makeCharacter(
  17659. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17660. {
  17661. front: {
  17662. height: math.unit(8, "feet"),
  17663. weight: math.unit(350, "lb"),
  17664. name: "Front",
  17665. image: {
  17666. source: "./media/characters/bianca/front.svg",
  17667. extra: 234 / 225,
  17668. bottom: 0.03
  17669. }
  17670. },
  17671. },
  17672. [
  17673. {
  17674. name: "Normal",
  17675. height: math.unit(8, "feet"),
  17676. default: true
  17677. },
  17678. ]
  17679. ))
  17680. characterMakers.push(() => makeCharacter(
  17681. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17682. {
  17683. front: {
  17684. height: math.unit(6, "feet"),
  17685. weight: math.unit(150, "lb"),
  17686. name: "Front",
  17687. image: {
  17688. source: "./media/characters/adinia/front.svg",
  17689. extra: 1845 / 1672,
  17690. bottom: 0.02
  17691. }
  17692. },
  17693. back: {
  17694. height: math.unit(6, "feet"),
  17695. weight: math.unit(150, "lb"),
  17696. name: "Back",
  17697. image: {
  17698. source: "./media/characters/adinia/back.svg",
  17699. extra: 1845 / 1672,
  17700. bottom: 0.002
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(11 + 5 / 12, "feet"),
  17708. default: true
  17709. },
  17710. ]
  17711. ))
  17712. characterMakers.push(() => makeCharacter(
  17713. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17714. {
  17715. front: {
  17716. height: math.unit(3, "meters"),
  17717. weight: math.unit(200, "kg"),
  17718. name: "Front",
  17719. image: {
  17720. source: "./media/characters/lykasa/front.svg",
  17721. extra: 1076 / 976,
  17722. bottom: 0.06
  17723. }
  17724. },
  17725. },
  17726. [
  17727. {
  17728. name: "Normal",
  17729. height: math.unit(3, "meters")
  17730. },
  17731. {
  17732. name: "Kaiju",
  17733. height: math.unit(120, "meters"),
  17734. default: true
  17735. },
  17736. {
  17737. name: "Mega Kaiju",
  17738. height: math.unit(240, "km")
  17739. },
  17740. {
  17741. name: "Giga Kaiju",
  17742. height: math.unit(400, "megameters")
  17743. },
  17744. {
  17745. name: "Tera Kaiju",
  17746. height: math.unit(800, "gigameters")
  17747. },
  17748. {
  17749. name: "Kaiju Dragon Goddess",
  17750. height: math.unit(26, "zettaparsecs")
  17751. },
  17752. ]
  17753. ))
  17754. characterMakers.push(() => makeCharacter(
  17755. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17756. {
  17757. side: {
  17758. height: math.unit(283 / 124 * 6, "feet"),
  17759. weight: math.unit(35000, "lb"),
  17760. name: "Side",
  17761. image: {
  17762. source: "./media/characters/malfaren/side.svg",
  17763. extra: 2500 / 1010,
  17764. bottom: 0.01
  17765. }
  17766. },
  17767. front: {
  17768. height: math.unit(22.36, "feet"),
  17769. weight: math.unit(35000, "lb"),
  17770. name: "Front",
  17771. image: {
  17772. source: "./media/characters/malfaren/front.svg",
  17773. extra: 1631 / 1476,
  17774. bottom: 0.01
  17775. }
  17776. },
  17777. maw: {
  17778. height: math.unit(6.9, "feet"),
  17779. name: "Maw",
  17780. image: {
  17781. source: "./media/characters/malfaren/maw.svg"
  17782. }
  17783. },
  17784. },
  17785. [
  17786. {
  17787. name: "Big",
  17788. height: math.unit(283 / 162 * 6, "feet"),
  17789. },
  17790. {
  17791. name: "Bigger",
  17792. height: math.unit(283 / 124 * 6, "feet")
  17793. },
  17794. {
  17795. name: "Massive",
  17796. height: math.unit(283 / 92 * 6, "feet"),
  17797. default: true
  17798. },
  17799. {
  17800. name: "👀💦",
  17801. height: math.unit(283 / 73 * 6, "feet"),
  17802. },
  17803. ]
  17804. ))
  17805. characterMakers.push(() => makeCharacter(
  17806. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17807. {
  17808. front: {
  17809. height: math.unit(1.7, "m"),
  17810. weight: math.unit(70, "kg"),
  17811. name: "Front",
  17812. image: {
  17813. source: "./media/characters/kernel/front.svg",
  17814. extra: 222 / 210,
  17815. bottom: 0.007
  17816. }
  17817. },
  17818. },
  17819. [
  17820. {
  17821. name: "Nano",
  17822. height: math.unit(17, "micrometers")
  17823. },
  17824. {
  17825. name: "Micro",
  17826. height: math.unit(1.7, "mm")
  17827. },
  17828. {
  17829. name: "Small",
  17830. height: math.unit(1.7, "cm")
  17831. },
  17832. {
  17833. name: "Normal",
  17834. height: math.unit(1.7, "m"),
  17835. default: true
  17836. },
  17837. ]
  17838. ))
  17839. characterMakers.push(() => makeCharacter(
  17840. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17841. {
  17842. front: {
  17843. height: math.unit(1.75, "meters"),
  17844. weight: math.unit(65, "kg"),
  17845. name: "Front",
  17846. image: {
  17847. source: "./media/characters/jayne-folest/front.svg",
  17848. extra: 2115 / 2007,
  17849. bottom: 0.02
  17850. }
  17851. },
  17852. back: {
  17853. height: math.unit(1.75, "meters"),
  17854. weight: math.unit(65, "kg"),
  17855. name: "Back",
  17856. image: {
  17857. source: "./media/characters/jayne-folest/back.svg",
  17858. extra: 2115 / 2007,
  17859. bottom: 0.005
  17860. }
  17861. },
  17862. frontClothed: {
  17863. height: math.unit(1.75, "meters"),
  17864. weight: math.unit(65, "kg"),
  17865. name: "Front (Clothed)",
  17866. image: {
  17867. source: "./media/characters/jayne-folest/front-clothed.svg",
  17868. extra: 2115 / 2007,
  17869. bottom: 0.035
  17870. }
  17871. },
  17872. hand: {
  17873. height: math.unit(1 / 1.260, "feet"),
  17874. name: "Hand",
  17875. image: {
  17876. source: "./media/characters/jayne-folest/hand.svg"
  17877. }
  17878. },
  17879. foot: {
  17880. height: math.unit(1 / 0.918, "feet"),
  17881. name: "Foot",
  17882. image: {
  17883. source: "./media/characters/jayne-folest/foot.svg"
  17884. }
  17885. },
  17886. },
  17887. [
  17888. {
  17889. name: "Micro",
  17890. height: math.unit(4, "cm")
  17891. },
  17892. {
  17893. name: "Normal",
  17894. height: math.unit(1.75, "meters")
  17895. },
  17896. {
  17897. name: "Macro",
  17898. height: math.unit(47.5, "meters"),
  17899. default: true
  17900. },
  17901. ]
  17902. ))
  17903. characterMakers.push(() => makeCharacter(
  17904. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17905. {
  17906. front: {
  17907. height: math.unit(180, "cm"),
  17908. weight: math.unit(70, "kg"),
  17909. name: "Front",
  17910. image: {
  17911. source: "./media/characters/algier/front.svg",
  17912. extra: 596 / 572,
  17913. bottom: 0.04
  17914. }
  17915. },
  17916. back: {
  17917. height: math.unit(180, "cm"),
  17918. weight: math.unit(70, "kg"),
  17919. name: "Back",
  17920. image: {
  17921. source: "./media/characters/algier/back.svg",
  17922. extra: 596 / 572,
  17923. bottom: 0.025
  17924. }
  17925. },
  17926. frontdressed: {
  17927. height: math.unit(180, "cm"),
  17928. weight: math.unit(150, "kg"),
  17929. name: "Front-dressed",
  17930. image: {
  17931. source: "./media/characters/algier/front-dressed.svg",
  17932. extra: 596 / 572,
  17933. bottom: 0.038
  17934. }
  17935. },
  17936. },
  17937. [
  17938. {
  17939. name: "Micro",
  17940. height: math.unit(5, "cm")
  17941. },
  17942. {
  17943. name: "Normal",
  17944. height: math.unit(180, "cm"),
  17945. default: true
  17946. },
  17947. {
  17948. name: "Macro",
  17949. height: math.unit(64, "m")
  17950. },
  17951. ]
  17952. ))
  17953. characterMakers.push(() => makeCharacter(
  17954. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17955. {
  17956. upright: {
  17957. height: math.unit(7, "feet"),
  17958. weight: math.unit(300, "lb"),
  17959. name: "Upright",
  17960. image: {
  17961. source: "./media/characters/pretzel/upright.svg",
  17962. extra: 534 / 522,
  17963. bottom: 0.065
  17964. }
  17965. },
  17966. sprawling: {
  17967. height: math.unit(3.75, "feet"),
  17968. weight: math.unit(300, "lb"),
  17969. name: "Sprawling",
  17970. image: {
  17971. source: "./media/characters/pretzel/sprawling.svg",
  17972. extra: 314 / 281,
  17973. bottom: 0.1
  17974. }
  17975. },
  17976. tongue: {
  17977. height: math.unit(2, "feet"),
  17978. name: "Tongue",
  17979. image: {
  17980. source: "./media/characters/pretzel/tongue.svg"
  17981. }
  17982. },
  17983. },
  17984. [
  17985. {
  17986. name: "Normal",
  17987. height: math.unit(7, "feet"),
  17988. default: true
  17989. },
  17990. {
  17991. name: "Oversized",
  17992. height: math.unit(15, "feet")
  17993. },
  17994. {
  17995. name: "Huge",
  17996. height: math.unit(30, "feet")
  17997. },
  17998. {
  17999. name: "Macro",
  18000. height: math.unit(250, "feet")
  18001. },
  18002. ]
  18003. ))
  18004. characterMakers.push(() => makeCharacter(
  18005. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18006. {
  18007. sideFront: {
  18008. height: math.unit(5 + 2 / 12, "feet"),
  18009. weight: math.unit(120, "lb"),
  18010. name: "Front Side",
  18011. image: {
  18012. source: "./media/characters/roxi/side-front.svg",
  18013. extra: 2924 / 2717,
  18014. bottom: 0.08
  18015. }
  18016. },
  18017. sideBack: {
  18018. height: math.unit(5 + 2 / 12, "feet"),
  18019. weight: math.unit(120, "lb"),
  18020. name: "Back Side",
  18021. image: {
  18022. source: "./media/characters/roxi/side-back.svg",
  18023. extra: 2904 / 2693,
  18024. bottom: 0.06
  18025. }
  18026. },
  18027. front: {
  18028. height: math.unit(5 + 2 / 12, "feet"),
  18029. weight: math.unit(120, "lb"),
  18030. name: "Front",
  18031. image: {
  18032. source: "./media/characters/roxi/front.svg",
  18033. extra: 2028 / 1907,
  18034. bottom: 0.01
  18035. }
  18036. },
  18037. frontAlt: {
  18038. height: math.unit(5 + 2 / 12, "feet"),
  18039. weight: math.unit(120, "lb"),
  18040. name: "Front (Alt)",
  18041. image: {
  18042. source: "./media/characters/roxi/front-alt.svg",
  18043. extra: 1828 / 1798,
  18044. bottom: 0.01
  18045. }
  18046. },
  18047. sitting: {
  18048. height: math.unit(2.8, "feet"),
  18049. weight: math.unit(120, "lb"),
  18050. name: "Sitting",
  18051. image: {
  18052. source: "./media/characters/roxi/sitting.svg",
  18053. extra: 2660 / 2462,
  18054. bottom: 0.1
  18055. }
  18056. },
  18057. },
  18058. [
  18059. {
  18060. name: "Normal",
  18061. height: math.unit(5 + 2 / 12, "feet"),
  18062. default: true
  18063. },
  18064. ]
  18065. ))
  18066. characterMakers.push(() => makeCharacter(
  18067. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18068. {
  18069. side: {
  18070. height: math.unit(55, "feet"),
  18071. weight: math.unit(153, "tons"),
  18072. name: "Side",
  18073. image: {
  18074. source: "./media/characters/shadow/side.svg",
  18075. extra: 701 / 628,
  18076. bottom: 0.02
  18077. }
  18078. },
  18079. flying: {
  18080. height: math.unit(145, "feet"),
  18081. weight: math.unit(153, "tons"),
  18082. name: "Flying",
  18083. image: {
  18084. source: "./media/characters/shadow/flying.svg"
  18085. }
  18086. },
  18087. },
  18088. [
  18089. {
  18090. name: "Normal",
  18091. height: math.unit(55, "feet"),
  18092. default: true
  18093. },
  18094. ]
  18095. ))
  18096. characterMakers.push(() => makeCharacter(
  18097. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18098. {
  18099. front: {
  18100. height: math.unit(6, "feet"),
  18101. weight: math.unit(200, "lb"),
  18102. name: "Front",
  18103. image: {
  18104. source: "./media/characters/marcie/front.svg",
  18105. extra: 960 / 876,
  18106. bottom: 58 / 1017.87
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Macro",
  18113. height: math.unit(1, "mile"),
  18114. default: true
  18115. },
  18116. ]
  18117. ))
  18118. characterMakers.push(() => makeCharacter(
  18119. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18120. {
  18121. front: {
  18122. height: math.unit(7, "feet"),
  18123. weight: math.unit(200, "lb"),
  18124. name: "Front",
  18125. image: {
  18126. source: "./media/characters/kachina/front.svg",
  18127. extra: 1290.68 / 1119,
  18128. bottom: 36.5 / 1327.18
  18129. }
  18130. },
  18131. },
  18132. [
  18133. {
  18134. name: "Normal",
  18135. height: math.unit(7, "feet"),
  18136. default: true
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18142. {
  18143. looking: {
  18144. height: math.unit(2, "meters"),
  18145. weight: math.unit(300, "kg"),
  18146. name: "Looking",
  18147. image: {
  18148. source: "./media/characters/kash/looking.svg",
  18149. extra: 474 / 344,
  18150. bottom: 0.03
  18151. }
  18152. },
  18153. side: {
  18154. height: math.unit(2, "meters"),
  18155. weight: math.unit(300, "kg"),
  18156. name: "Side",
  18157. image: {
  18158. source: "./media/characters/kash/side.svg",
  18159. extra: 302 / 251,
  18160. bottom: 0.03
  18161. }
  18162. },
  18163. front: {
  18164. height: math.unit(2, "meters"),
  18165. weight: math.unit(300, "kg"),
  18166. name: "Front",
  18167. image: {
  18168. source: "./media/characters/kash/front.svg",
  18169. extra: 495 / 360,
  18170. bottom: 0.015
  18171. }
  18172. },
  18173. },
  18174. [
  18175. {
  18176. name: "Normal",
  18177. height: math.unit(2, "meters"),
  18178. default: true
  18179. },
  18180. {
  18181. name: "Big",
  18182. height: math.unit(3, "meters")
  18183. },
  18184. {
  18185. name: "Large",
  18186. height: math.unit(5, "meters")
  18187. },
  18188. ]
  18189. ))
  18190. characterMakers.push(() => makeCharacter(
  18191. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18192. {
  18193. feeding: {
  18194. height: math.unit(6.7, "feet"),
  18195. weight: math.unit(350, "lb"),
  18196. name: "Feeding",
  18197. image: {
  18198. source: "./media/characters/lalim/feeding.svg",
  18199. }
  18200. },
  18201. },
  18202. [
  18203. {
  18204. name: "Normal",
  18205. height: math.unit(6.7, "feet"),
  18206. default: true
  18207. },
  18208. ]
  18209. ))
  18210. characterMakers.push(() => makeCharacter(
  18211. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18212. {
  18213. front: {
  18214. height: math.unit(9.5, "feet"),
  18215. weight: math.unit(600, "lb"),
  18216. name: "Front",
  18217. image: {
  18218. source: "./media/characters/de'vout/front.svg",
  18219. extra: 1443 / 1328,
  18220. bottom: 0.025
  18221. }
  18222. },
  18223. back: {
  18224. height: math.unit(9.5, "feet"),
  18225. weight: math.unit(600, "lb"),
  18226. name: "Back",
  18227. image: {
  18228. source: "./media/characters/de'vout/back.svg",
  18229. extra: 1443 / 1328
  18230. }
  18231. },
  18232. frontDressed: {
  18233. height: math.unit(9.5, "feet"),
  18234. weight: math.unit(600, "lb"),
  18235. name: "Front (Dressed",
  18236. image: {
  18237. source: "./media/characters/de'vout/front-dressed.svg",
  18238. extra: 1443 / 1328,
  18239. bottom: 0.025
  18240. }
  18241. },
  18242. backDressed: {
  18243. height: math.unit(9.5, "feet"),
  18244. weight: math.unit(600, "lb"),
  18245. name: "Back (Dressed",
  18246. image: {
  18247. source: "./media/characters/de'vout/back-dressed.svg",
  18248. extra: 1443 / 1328
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Normal",
  18255. height: math.unit(9.5, "feet"),
  18256. default: true
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18262. {
  18263. front: {
  18264. height: math.unit(8, "feet"),
  18265. weight: math.unit(225, "lb"),
  18266. name: "Front",
  18267. image: {
  18268. source: "./media/characters/talana/front.svg",
  18269. extra: 1410 / 1300,
  18270. bottom: 0.015
  18271. }
  18272. },
  18273. frontDressed: {
  18274. height: math.unit(8, "feet"),
  18275. weight: math.unit(225, "lb"),
  18276. name: "Front (Dressed",
  18277. image: {
  18278. source: "./media/characters/talana/front-dressed.svg",
  18279. extra: 1410 / 1300,
  18280. bottom: 0.015
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Normal",
  18287. height: math.unit(8, "feet"),
  18288. default: true
  18289. },
  18290. ]
  18291. ))
  18292. characterMakers.push(() => makeCharacter(
  18293. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18294. {
  18295. side: {
  18296. height: math.unit(7.2, "feet"),
  18297. weight: math.unit(150, "lb"),
  18298. name: "Side",
  18299. image: {
  18300. source: "./media/characters/xeauvok/side.svg",
  18301. extra: 1975 / 1523,
  18302. bottom: 0.07
  18303. }
  18304. },
  18305. },
  18306. [
  18307. {
  18308. name: "Normal",
  18309. height: math.unit(7.2, "feet"),
  18310. default: true
  18311. },
  18312. ]
  18313. ))
  18314. characterMakers.push(() => makeCharacter(
  18315. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18316. {
  18317. side: {
  18318. height: math.unit(10, "feet"),
  18319. weight: math.unit(900, "kg"),
  18320. name: "Side",
  18321. image: {
  18322. source: "./media/characters/zara/side.svg",
  18323. extra: 504 / 498
  18324. }
  18325. },
  18326. },
  18327. [
  18328. {
  18329. name: "Normal",
  18330. height: math.unit(10, "feet"),
  18331. default: true
  18332. },
  18333. ]
  18334. ))
  18335. characterMakers.push(() => makeCharacter(
  18336. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18337. {
  18338. side: {
  18339. height: math.unit(6, "feet"),
  18340. weight: math.unit(150, "lb"),
  18341. name: "Side",
  18342. image: {
  18343. source: "./media/characters/richard-dragon/side.svg",
  18344. extra: 845 / 340,
  18345. bottom: 0.017
  18346. }
  18347. },
  18348. maw: {
  18349. height: math.unit(2.97, "feet"),
  18350. name: "Maw",
  18351. image: {
  18352. source: "./media/characters/richard-dragon/maw.svg"
  18353. }
  18354. },
  18355. },
  18356. [
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(4, "feet"),
  18364. weight: math.unit(100, "lb"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/richard-smeargle/front.svg",
  18368. extra: 2952 / 2820,
  18369. bottom: 0.028
  18370. }
  18371. },
  18372. },
  18373. [
  18374. {
  18375. name: "Normal",
  18376. height: math.unit(4, "feet"),
  18377. default: true
  18378. },
  18379. {
  18380. name: "Dynamax",
  18381. height: math.unit(20, "meters")
  18382. },
  18383. ]
  18384. ))
  18385. characterMakers.push(() => makeCharacter(
  18386. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18387. {
  18388. front: {
  18389. height: math.unit(6, "feet"),
  18390. weight: math.unit(110, "lb"),
  18391. name: "Front",
  18392. image: {
  18393. source: "./media/characters/klay/front.svg",
  18394. extra: 962 / 883,
  18395. bottom: 0.04
  18396. }
  18397. },
  18398. back: {
  18399. height: math.unit(6, "feet"),
  18400. weight: math.unit(110, "lb"),
  18401. name: "Back",
  18402. image: {
  18403. source: "./media/characters/klay/back.svg",
  18404. extra: 962 / 883
  18405. }
  18406. },
  18407. beans: {
  18408. height: math.unit(1.15, "feet"),
  18409. name: "Beans",
  18410. image: {
  18411. source: "./media/characters/klay/beans.svg"
  18412. }
  18413. },
  18414. },
  18415. [
  18416. {
  18417. name: "Micro",
  18418. height: math.unit(6, "inches")
  18419. },
  18420. {
  18421. name: "Mini",
  18422. height: math.unit(3, "feet")
  18423. },
  18424. {
  18425. name: "Normal",
  18426. height: math.unit(6, "feet"),
  18427. default: true
  18428. },
  18429. {
  18430. name: "Big",
  18431. height: math.unit(25, "feet")
  18432. },
  18433. {
  18434. name: "Macro",
  18435. height: math.unit(100, "feet")
  18436. },
  18437. {
  18438. name: "Megamacro",
  18439. height: math.unit(400, "feet")
  18440. },
  18441. ]
  18442. ))
  18443. characterMakers.push(() => makeCharacter(
  18444. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18445. {
  18446. front: {
  18447. height: math.unit(6, "feet"),
  18448. weight: math.unit(160, "lb"),
  18449. name: "Front",
  18450. image: {
  18451. source: "./media/characters/marcus/front.svg",
  18452. extra: 734 / 676,
  18453. bottom: 0.03
  18454. }
  18455. },
  18456. },
  18457. [
  18458. {
  18459. name: "Little",
  18460. height: math.unit(6, "feet")
  18461. },
  18462. {
  18463. name: "Normal",
  18464. height: math.unit(110, "feet"),
  18465. default: true
  18466. },
  18467. {
  18468. name: "Macro",
  18469. height: math.unit(250, "feet")
  18470. },
  18471. {
  18472. name: "Megamacro",
  18473. height: math.unit(1000, "feet")
  18474. },
  18475. ]
  18476. ))
  18477. characterMakers.push(() => makeCharacter(
  18478. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18479. {
  18480. front: {
  18481. height: math.unit(7, "feet"),
  18482. weight: math.unit(275, "lb"),
  18483. name: "Front",
  18484. image: {
  18485. source: "./media/characters/claude-delroute/front.svg",
  18486. extra: 902/827,
  18487. bottom: 26/928
  18488. }
  18489. },
  18490. side: {
  18491. height: math.unit(7, "feet"),
  18492. weight: math.unit(275, "lb"),
  18493. name: "Side",
  18494. image: {
  18495. source: "./media/characters/claude-delroute/side.svg",
  18496. extra: 908/853,
  18497. bottom: 16/924
  18498. }
  18499. },
  18500. back: {
  18501. height: math.unit(7, "feet"),
  18502. weight: math.unit(275, "lb"),
  18503. name: "Back",
  18504. image: {
  18505. source: "./media/characters/claude-delroute/back.svg",
  18506. extra: 911/829,
  18507. bottom: 18/929
  18508. }
  18509. },
  18510. maw: {
  18511. height: math.unit(0.6407, "meters"),
  18512. name: "Maw",
  18513. image: {
  18514. source: "./media/characters/claude-delroute/maw.svg"
  18515. }
  18516. },
  18517. },
  18518. [
  18519. {
  18520. name: "Normal",
  18521. height: math.unit(7, "feet"),
  18522. default: true
  18523. },
  18524. {
  18525. name: "Lorge",
  18526. height: math.unit(20, "feet")
  18527. },
  18528. ]
  18529. ))
  18530. characterMakers.push(() => makeCharacter(
  18531. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18532. {
  18533. front: {
  18534. height: math.unit(8 + 4 / 12, "feet"),
  18535. weight: math.unit(600, "lb"),
  18536. name: "Front",
  18537. image: {
  18538. source: "./media/characters/dragonien/front.svg",
  18539. extra: 100 / 94,
  18540. bottom: 3.3 / 103.3445
  18541. }
  18542. },
  18543. back: {
  18544. height: math.unit(8 + 4 / 12, "feet"),
  18545. weight: math.unit(600, "lb"),
  18546. name: "Back",
  18547. image: {
  18548. source: "./media/characters/dragonien/back.svg",
  18549. extra: 776 / 746,
  18550. bottom: 6.4 / 782.0616
  18551. }
  18552. },
  18553. foot: {
  18554. height: math.unit(1.54, "feet"),
  18555. name: "Foot",
  18556. image: {
  18557. source: "./media/characters/dragonien/foot.svg",
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Normal",
  18564. height: math.unit(8 + 4 / 12, "feet"),
  18565. default: true
  18566. },
  18567. {
  18568. name: "Macro",
  18569. height: math.unit(200, "feet")
  18570. },
  18571. {
  18572. name: "Megamacro",
  18573. height: math.unit(1, "mile")
  18574. },
  18575. {
  18576. name: "Gigamacro",
  18577. height: math.unit(1000, "miles")
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18583. {
  18584. front: {
  18585. height: math.unit(5 + 2 / 12, "feet"),
  18586. weight: math.unit(110, "lb"),
  18587. name: "Front",
  18588. image: {
  18589. source: "./media/characters/desta/front.svg",
  18590. extra: 767 / 726,
  18591. bottom: 11.7 / 779
  18592. }
  18593. },
  18594. back: {
  18595. height: math.unit(5 + 2 / 12, "feet"),
  18596. weight: math.unit(110, "lb"),
  18597. name: "Back",
  18598. image: {
  18599. source: "./media/characters/desta/back.svg",
  18600. extra: 777 / 728,
  18601. bottom: 6 / 784
  18602. }
  18603. },
  18604. frontAlt: {
  18605. height: math.unit(5 + 2 / 12, "feet"),
  18606. weight: math.unit(110, "lb"),
  18607. name: "Front",
  18608. image: {
  18609. source: "./media/characters/desta/front-alt.svg",
  18610. extra: 1482 / 1417
  18611. }
  18612. },
  18613. side: {
  18614. height: math.unit(5 + 2 / 12, "feet"),
  18615. weight: math.unit(110, "lb"),
  18616. name: "Side",
  18617. image: {
  18618. source: "./media/characters/desta/side.svg",
  18619. extra: 2579 / 2491,
  18620. bottom: 0.053
  18621. }
  18622. },
  18623. },
  18624. [
  18625. {
  18626. name: "Micro",
  18627. height: math.unit(6, "inches")
  18628. },
  18629. {
  18630. name: "Normal",
  18631. height: math.unit(5 + 2 / 12, "feet"),
  18632. default: true
  18633. },
  18634. {
  18635. name: "Macro",
  18636. height: math.unit(62, "feet")
  18637. },
  18638. {
  18639. name: "Megamacro",
  18640. height: math.unit(1800, "feet")
  18641. },
  18642. ]
  18643. ))
  18644. characterMakers.push(() => makeCharacter(
  18645. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18646. {
  18647. front: {
  18648. height: math.unit(10, "feet"),
  18649. weight: math.unit(700, "lb"),
  18650. name: "Front",
  18651. image: {
  18652. source: "./media/characters/storm-alystar/front.svg",
  18653. extra: 2112 / 1898,
  18654. bottom: 0.034
  18655. }
  18656. },
  18657. },
  18658. [
  18659. {
  18660. name: "Micro",
  18661. height: math.unit(3.5, "inches")
  18662. },
  18663. {
  18664. name: "Normal",
  18665. height: math.unit(10, "feet"),
  18666. default: true
  18667. },
  18668. {
  18669. name: "Macro",
  18670. height: math.unit(400, "feet")
  18671. },
  18672. {
  18673. name: "Deific",
  18674. height: math.unit(60, "miles")
  18675. },
  18676. ]
  18677. ))
  18678. characterMakers.push(() => makeCharacter(
  18679. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18680. {
  18681. front: {
  18682. height: math.unit(2.35, "meters"),
  18683. weight: math.unit(119, "kg"),
  18684. name: "Front",
  18685. image: {
  18686. source: "./media/characters/ilia/front.svg",
  18687. extra: 1285 / 1255,
  18688. bottom: 0.06
  18689. }
  18690. },
  18691. },
  18692. [
  18693. {
  18694. name: "Normal",
  18695. height: math.unit(2.35, "meters")
  18696. },
  18697. {
  18698. name: "Macro",
  18699. height: math.unit(140, "meters"),
  18700. default: true
  18701. },
  18702. {
  18703. name: "Megamacro",
  18704. height: math.unit(100, "miles")
  18705. },
  18706. ]
  18707. ))
  18708. characterMakers.push(() => makeCharacter(
  18709. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18710. {
  18711. front: {
  18712. height: math.unit(6 + 5 / 12, "feet"),
  18713. weight: math.unit(190, "lb"),
  18714. name: "Front",
  18715. image: {
  18716. source: "./media/characters/kingdead/front.svg",
  18717. extra: 1228 / 1177
  18718. }
  18719. },
  18720. },
  18721. [
  18722. {
  18723. name: "Micro",
  18724. height: math.unit(7, "inches")
  18725. },
  18726. {
  18727. name: "Normal",
  18728. height: math.unit(6 + 5 / 12, "feet")
  18729. },
  18730. {
  18731. name: "Macro",
  18732. height: math.unit(150, "feet"),
  18733. default: true
  18734. },
  18735. {
  18736. name: "Megamacro",
  18737. height: math.unit(200, "miles")
  18738. },
  18739. ]
  18740. ))
  18741. characterMakers.push(() => makeCharacter(
  18742. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18743. {
  18744. front: {
  18745. height: math.unit(8, "feet"),
  18746. weight: math.unit(600, "lb"),
  18747. name: "Front",
  18748. image: {
  18749. source: "./media/characters/kyrehx/front.svg",
  18750. extra: 1195 / 1095,
  18751. bottom: 0.034
  18752. }
  18753. },
  18754. },
  18755. [
  18756. {
  18757. name: "Micro",
  18758. height: math.unit(2, "inches")
  18759. },
  18760. {
  18761. name: "Normal",
  18762. height: math.unit(8, "feet"),
  18763. default: true
  18764. },
  18765. {
  18766. name: "Macro",
  18767. height: math.unit(255, "feet")
  18768. },
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18773. {
  18774. front: {
  18775. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18776. weight: math.unit(184, "lb"),
  18777. name: "Front",
  18778. image: {
  18779. source: "./media/characters/xang/front.svg",
  18780. extra: 845 / 755
  18781. }
  18782. },
  18783. },
  18784. [
  18785. {
  18786. name: "Normal",
  18787. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18788. default: true
  18789. },
  18790. {
  18791. name: "Macro",
  18792. height: math.unit(0.935 * 146, "feet")
  18793. },
  18794. {
  18795. name: "Megamacro",
  18796. height: math.unit(0.935 * 3, "miles")
  18797. },
  18798. ]
  18799. ))
  18800. characterMakers.push(() => makeCharacter(
  18801. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18802. {
  18803. frontDressed: {
  18804. height: math.unit(5 + 7 / 12, "feet"),
  18805. weight: math.unit(140, "lb"),
  18806. name: "Front (Dressed)",
  18807. image: {
  18808. source: "./media/characters/doc-weardno/front-dressed.svg",
  18809. extra: 263 / 234
  18810. }
  18811. },
  18812. backDressed: {
  18813. height: math.unit(5 + 7 / 12, "feet"),
  18814. weight: math.unit(140, "lb"),
  18815. name: "Back (Dressed)",
  18816. image: {
  18817. source: "./media/characters/doc-weardno/back-dressed.svg",
  18818. extra: 266 / 238
  18819. }
  18820. },
  18821. front: {
  18822. height: math.unit(5 + 7 / 12, "feet"),
  18823. weight: math.unit(140, "lb"),
  18824. name: "Front",
  18825. image: {
  18826. source: "./media/characters/doc-weardno/front.svg",
  18827. extra: 254 / 233
  18828. }
  18829. },
  18830. },
  18831. [
  18832. {
  18833. name: "Micro",
  18834. height: math.unit(3, "inches")
  18835. },
  18836. {
  18837. name: "Normal",
  18838. height: math.unit(5 + 7 / 12, "feet"),
  18839. default: true
  18840. },
  18841. {
  18842. name: "Macro",
  18843. height: math.unit(25, "feet")
  18844. },
  18845. {
  18846. name: "Megamacro",
  18847. height: math.unit(2, "miles")
  18848. },
  18849. ]
  18850. ))
  18851. characterMakers.push(() => makeCharacter(
  18852. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18853. {
  18854. front: {
  18855. height: math.unit(6 + 2 / 12, "feet"),
  18856. weight: math.unit(153, "lb"),
  18857. name: "Front",
  18858. image: {
  18859. source: "./media/characters/seth-whilst/front.svg",
  18860. bottom: 0.07
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Micro",
  18867. height: math.unit(5, "inches")
  18868. },
  18869. {
  18870. name: "Normal",
  18871. height: math.unit(6 + 2 / 12, "feet"),
  18872. default: true
  18873. },
  18874. ]
  18875. ))
  18876. characterMakers.push(() => makeCharacter(
  18877. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18878. {
  18879. front: {
  18880. height: math.unit(3, "inches"),
  18881. weight: math.unit(8, "grams"),
  18882. name: "Front",
  18883. image: {
  18884. source: "./media/characters/pocket-jabari/front.svg",
  18885. extra: 1024 / 974,
  18886. bottom: 0.039
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Minimicro",
  18893. height: math.unit(8, "mm")
  18894. },
  18895. {
  18896. name: "Micro",
  18897. height: math.unit(3, "inches"),
  18898. default: true
  18899. },
  18900. {
  18901. name: "Normal",
  18902. height: math.unit(3, "feet")
  18903. },
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18908. {
  18909. front: {
  18910. height: math.unit(15, "feet"),
  18911. weight: math.unit(3280, "lb"),
  18912. name: "Front",
  18913. image: {
  18914. source: "./media/characters/sapphy/front.svg",
  18915. extra: 671 / 577,
  18916. bottom: 0.085
  18917. }
  18918. },
  18919. back: {
  18920. height: math.unit(15, "feet"),
  18921. weight: math.unit(3280, "lb"),
  18922. name: "Back",
  18923. image: {
  18924. source: "./media/characters/sapphy/back.svg",
  18925. extra: 631 / 607,
  18926. bottom: 0.045
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(15, "feet")
  18934. },
  18935. {
  18936. name: "Casual Macro",
  18937. height: math.unit(120, "feet")
  18938. },
  18939. {
  18940. name: "Macro",
  18941. height: math.unit(2150, "feet"),
  18942. default: true
  18943. },
  18944. {
  18945. name: "Megamacro",
  18946. height: math.unit(8, "miles")
  18947. },
  18948. {
  18949. name: "Galaxy Mom",
  18950. height: math.unit(6, "megalightyears")
  18951. },
  18952. ]
  18953. ))
  18954. characterMakers.push(() => makeCharacter(
  18955. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18956. {
  18957. front: {
  18958. height: math.unit(6, "feet"),
  18959. weight: math.unit(170, "lb"),
  18960. name: "Front",
  18961. image: {
  18962. source: "./media/characters/kiro/front.svg",
  18963. extra: 1064 / 1012,
  18964. bottom: 0.052
  18965. }
  18966. },
  18967. },
  18968. [
  18969. {
  18970. name: "Micro",
  18971. height: math.unit(6, "inches")
  18972. },
  18973. {
  18974. name: "Normal",
  18975. height: math.unit(6, "feet"),
  18976. default: true
  18977. },
  18978. {
  18979. name: "Macro",
  18980. height: math.unit(72, "feet")
  18981. },
  18982. ]
  18983. ))
  18984. characterMakers.push(() => makeCharacter(
  18985. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18986. {
  18987. front: {
  18988. height: math.unit(5 + 9 / 12, "feet"),
  18989. weight: math.unit(175, "lb"),
  18990. name: "Front",
  18991. image: {
  18992. source: "./media/characters/irishfox/front.svg",
  18993. extra: 1912 / 1680,
  18994. bottom: 0.02
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Nano",
  19001. height: math.unit(1, "mm")
  19002. },
  19003. {
  19004. name: "Micro",
  19005. height: math.unit(2, "inches")
  19006. },
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(5 + 9 / 12, "feet"),
  19010. default: true
  19011. },
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(45, "feet")
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19020. {
  19021. front: {
  19022. height: math.unit(6 + 1 / 12, "feet"),
  19023. weight: math.unit(75, "lb"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/aronai-sieyes/front.svg",
  19027. extra: 1532/1450,
  19028. bottom: 42/1574
  19029. }
  19030. },
  19031. side: {
  19032. height: math.unit(6 + 1 / 12, "feet"),
  19033. weight: math.unit(75, "lb"),
  19034. name: "Side",
  19035. image: {
  19036. source: "./media/characters/aronai-sieyes/side.svg",
  19037. extra: 1422/1365,
  19038. bottom: 148/1570
  19039. }
  19040. },
  19041. back: {
  19042. height: math.unit(6 + 1 / 12, "feet"),
  19043. weight: math.unit(75, "lb"),
  19044. name: "Back",
  19045. image: {
  19046. source: "./media/characters/aronai-sieyes/back.svg",
  19047. extra: 1526/1464,
  19048. bottom: 51/1577
  19049. }
  19050. },
  19051. dressed: {
  19052. height: math.unit(6 + 1 / 12, "feet"),
  19053. weight: math.unit(75, "lb"),
  19054. name: "Dressed",
  19055. image: {
  19056. source: "./media/characters/aronai-sieyes/dressed.svg",
  19057. extra: 1559/1483,
  19058. bottom: 39/1598
  19059. }
  19060. },
  19061. slit: {
  19062. height: math.unit(1.3, "feet"),
  19063. name: "Slit",
  19064. image: {
  19065. source: "./media/characters/aronai-sieyes/slit.svg"
  19066. }
  19067. },
  19068. slitSpread: {
  19069. height: math.unit(0.9, "feet"),
  19070. name: "Slit (Spread)",
  19071. image: {
  19072. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19073. }
  19074. },
  19075. rump: {
  19076. height: math.unit(1.3, "feet"),
  19077. name: "Rump",
  19078. image: {
  19079. source: "./media/characters/aronai-sieyes/rump.svg"
  19080. }
  19081. },
  19082. maw: {
  19083. height: math.unit(1.25, "feet"),
  19084. name: "Maw",
  19085. image: {
  19086. source: "./media/characters/aronai-sieyes/maw.svg"
  19087. }
  19088. },
  19089. feral: {
  19090. height: math.unit(18, "feet"),
  19091. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19092. name: "Feral",
  19093. image: {
  19094. source: "./media/characters/aronai-sieyes/feral.svg",
  19095. extra: 1530 / 1240,
  19096. bottom: 0.035
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Micro",
  19103. height: math.unit(2, "inches")
  19104. },
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(6 + 1 / 12, "feet"),
  19108. default: true
  19109. }
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19114. {
  19115. front: {
  19116. height: math.unit(12, "feet"),
  19117. weight: math.unit(410, "kg"),
  19118. name: "Front",
  19119. image: {
  19120. source: "./media/characters/xuna/front.svg",
  19121. extra: 2184 / 1980
  19122. }
  19123. },
  19124. side: {
  19125. height: math.unit(12, "feet"),
  19126. weight: math.unit(410, "kg"),
  19127. name: "Side",
  19128. image: {
  19129. source: "./media/characters/xuna/side.svg",
  19130. extra: 2184 / 1980
  19131. }
  19132. },
  19133. back: {
  19134. height: math.unit(12, "feet"),
  19135. weight: math.unit(410, "kg"),
  19136. name: "Back",
  19137. image: {
  19138. source: "./media/characters/xuna/back.svg",
  19139. extra: 2184 / 1980
  19140. }
  19141. },
  19142. },
  19143. [
  19144. {
  19145. name: "Nano glow",
  19146. height: math.unit(10, "nm")
  19147. },
  19148. {
  19149. name: "Micro floof",
  19150. height: math.unit(0.3, "m")
  19151. },
  19152. {
  19153. name: "Huggable softy boi",
  19154. height: math.unit(3.6576, "m"),
  19155. default: true
  19156. },
  19157. {
  19158. name: "Admirable floof",
  19159. height: math.unit(80, "meters")
  19160. },
  19161. {
  19162. name: "Gentle macro",
  19163. height: math.unit(300, "meters")
  19164. },
  19165. {
  19166. name: "Very careful floof",
  19167. height: math.unit(3200, "meters")
  19168. },
  19169. {
  19170. name: "The mega floof",
  19171. height: math.unit(36000, "meters")
  19172. },
  19173. {
  19174. name: "Giga-fur-Wicker",
  19175. height: math.unit(4800000, "meters")
  19176. },
  19177. {
  19178. name: "Licky world",
  19179. height: math.unit(20000000, "meters")
  19180. },
  19181. {
  19182. name: "Floofy cyan sun",
  19183. height: math.unit(1500000000, "meters")
  19184. },
  19185. {
  19186. name: "Milky Wicker",
  19187. height: math.unit(1000000000000000000000, "meters")
  19188. },
  19189. {
  19190. name: "The observing Wicker",
  19191. height: math.unit(999999999999999999999999999, "meters")
  19192. },
  19193. ]
  19194. ))
  19195. characterMakers.push(() => makeCharacter(
  19196. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19197. {
  19198. front: {
  19199. height: math.unit(5 + 9 / 12, "feet"),
  19200. weight: math.unit(150, "lb"),
  19201. name: "Front",
  19202. image: {
  19203. source: "./media/characters/arokha-sieyes/front.svg",
  19204. extra: 1425 / 1284,
  19205. bottom: 0.05
  19206. }
  19207. },
  19208. },
  19209. [
  19210. {
  19211. name: "Normal",
  19212. height: math.unit(5 + 9 / 12, "feet")
  19213. },
  19214. {
  19215. name: "Macro",
  19216. height: math.unit(30, "meters"),
  19217. default: true
  19218. },
  19219. ]
  19220. ))
  19221. characterMakers.push(() => makeCharacter(
  19222. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19223. {
  19224. front: {
  19225. height: math.unit(6, "feet"),
  19226. weight: math.unit(180, "lb"),
  19227. name: "Front",
  19228. image: {
  19229. source: "./media/characters/arokh-sieyes/front.svg",
  19230. extra: 1830 / 1769,
  19231. bottom: 0.01
  19232. }
  19233. },
  19234. },
  19235. [
  19236. {
  19237. name: "Normal",
  19238. height: math.unit(6, "feet")
  19239. },
  19240. {
  19241. name: "Macro",
  19242. height: math.unit(30, "meters"),
  19243. default: true
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19249. {
  19250. side: {
  19251. height: math.unit(13 + 1 / 12, "feet"),
  19252. weight: math.unit(8.5, "tonnes"),
  19253. name: "Side",
  19254. image: {
  19255. source: "./media/characters/goldeneye/side.svg",
  19256. extra: 1182 / 778,
  19257. bottom: 0.067
  19258. }
  19259. },
  19260. paw: {
  19261. height: math.unit(3.4, "feet"),
  19262. name: "Paw",
  19263. image: {
  19264. source: "./media/characters/goldeneye/paw.svg"
  19265. }
  19266. },
  19267. },
  19268. [
  19269. {
  19270. name: "Normal",
  19271. height: math.unit(13 + 1 / 12, "feet"),
  19272. default: true
  19273. },
  19274. ]
  19275. ))
  19276. characterMakers.push(() => makeCharacter(
  19277. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19278. {
  19279. front: {
  19280. height: math.unit(6 + 1 / 12, "feet"),
  19281. weight: math.unit(210, "lb"),
  19282. name: "Front",
  19283. image: {
  19284. source: "./media/characters/leonardo-lycheborne/front.svg",
  19285. extra: 776/723,
  19286. bottom: 34/810
  19287. }
  19288. },
  19289. side: {
  19290. height: math.unit(6 + 1 / 12, "feet"),
  19291. weight: math.unit(210, "lb"),
  19292. name: "Side",
  19293. image: {
  19294. source: "./media/characters/leonardo-lycheborne/side.svg",
  19295. extra: 780/728,
  19296. bottom: 12/792
  19297. }
  19298. },
  19299. back: {
  19300. height: math.unit(6 + 1 / 12, "feet"),
  19301. weight: math.unit(210, "lb"),
  19302. name: "Back",
  19303. image: {
  19304. source: "./media/characters/leonardo-lycheborne/back.svg",
  19305. extra: 775/721,
  19306. bottom: 17/792
  19307. }
  19308. },
  19309. hand: {
  19310. height: math.unit(1.08, "feet"),
  19311. name: "Hand",
  19312. image: {
  19313. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19314. }
  19315. },
  19316. foot: {
  19317. height: math.unit(1.32, "feet"),
  19318. name: "Foot",
  19319. image: {
  19320. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19321. }
  19322. },
  19323. maw: {
  19324. height: math.unit(1, "feet"),
  19325. name: "Maw",
  19326. image: {
  19327. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19328. }
  19329. },
  19330. were: {
  19331. height: math.unit(20, "feet"),
  19332. weight: math.unit(7800, "lb"),
  19333. name: "Were",
  19334. image: {
  19335. source: "./media/characters/leonardo-lycheborne/were.svg",
  19336. extra: 1224/1165,
  19337. bottom: 72/1296
  19338. }
  19339. },
  19340. feral: {
  19341. height: math.unit(7.5, "feet"),
  19342. weight: math.unit(600, "lb"),
  19343. name: "Feral",
  19344. image: {
  19345. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19346. extra: 797/702,
  19347. bottom: 139/936
  19348. }
  19349. },
  19350. taur: {
  19351. height: math.unit(11, "feet"),
  19352. weight: math.unit(3300, "lb"),
  19353. name: "Taur",
  19354. image: {
  19355. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19356. extra: 1271/1197,
  19357. bottom: 47/1318
  19358. }
  19359. },
  19360. barghest: {
  19361. height: math.unit(11, "feet"),
  19362. weight: math.unit(1300, "lb"),
  19363. name: "Barghest",
  19364. image: {
  19365. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19366. extra: 1291/1204,
  19367. bottom: 37/1328
  19368. }
  19369. },
  19370. dick: {
  19371. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19372. name: "Dick",
  19373. image: {
  19374. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19375. }
  19376. },
  19377. dickWere: {
  19378. height: math.unit((20) / 3.8, "feet"),
  19379. name: "Dick (Were)",
  19380. image: {
  19381. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19382. }
  19383. },
  19384. },
  19385. [
  19386. {
  19387. name: "Normal",
  19388. height: math.unit(6 + 1 / 12, "feet"),
  19389. default: true
  19390. },
  19391. ]
  19392. ))
  19393. characterMakers.push(() => makeCharacter(
  19394. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19395. {
  19396. front: {
  19397. height: math.unit(10, "feet"),
  19398. weight: math.unit(350, "lb"),
  19399. name: "Front",
  19400. image: {
  19401. source: "./media/characters/jet/front.svg",
  19402. extra: 2050 / 1980,
  19403. bottom: 0.013
  19404. }
  19405. },
  19406. back: {
  19407. height: math.unit(10, "feet"),
  19408. weight: math.unit(350, "lb"),
  19409. name: "Back",
  19410. image: {
  19411. source: "./media/characters/jet/back.svg",
  19412. extra: 2050 / 1980,
  19413. bottom: 0.013
  19414. }
  19415. },
  19416. },
  19417. [
  19418. {
  19419. name: "Micro",
  19420. height: math.unit(6, "inches")
  19421. },
  19422. {
  19423. name: "Normal",
  19424. height: math.unit(10, "feet"),
  19425. default: true
  19426. },
  19427. {
  19428. name: "Macro",
  19429. height: math.unit(100, "feet")
  19430. },
  19431. ]
  19432. ))
  19433. characterMakers.push(() => makeCharacter(
  19434. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19435. {
  19436. front: {
  19437. height: math.unit(15, "feet"),
  19438. weight: math.unit(2800, "lb"),
  19439. name: "Front",
  19440. image: {
  19441. source: "./media/characters/tanarath/front.svg",
  19442. extra: 2392 / 2220,
  19443. bottom: 0.03
  19444. }
  19445. },
  19446. back: {
  19447. height: math.unit(15, "feet"),
  19448. weight: math.unit(2800, "lb"),
  19449. name: "Back",
  19450. image: {
  19451. source: "./media/characters/tanarath/back.svg",
  19452. extra: 2392 / 2220,
  19453. bottom: 0.03
  19454. }
  19455. },
  19456. },
  19457. [
  19458. {
  19459. name: "Normal",
  19460. height: math.unit(15, "feet"),
  19461. default: true
  19462. },
  19463. ]
  19464. ))
  19465. characterMakers.push(() => makeCharacter(
  19466. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19467. {
  19468. front: {
  19469. height: math.unit(7 + 1 / 12, "feet"),
  19470. weight: math.unit(175, "lb"),
  19471. name: "Front",
  19472. image: {
  19473. source: "./media/characters/patty-cattybatty/front.svg",
  19474. extra: 908 / 874,
  19475. bottom: 0.025
  19476. }
  19477. },
  19478. },
  19479. [
  19480. {
  19481. name: "Micro",
  19482. height: math.unit(1, "inch")
  19483. },
  19484. {
  19485. name: "Normal",
  19486. height: math.unit(7 + 1 / 12, "feet")
  19487. },
  19488. {
  19489. name: "Mini Macro",
  19490. height: math.unit(155, "feet")
  19491. },
  19492. {
  19493. name: "Macro",
  19494. height: math.unit(1077, "feet")
  19495. },
  19496. {
  19497. name: "Mega Macro",
  19498. height: math.unit(47650, "feet"),
  19499. default: true
  19500. },
  19501. {
  19502. name: "Giga Macro",
  19503. height: math.unit(440, "miles")
  19504. },
  19505. {
  19506. name: "Tera Macro",
  19507. height: math.unit(8700, "miles")
  19508. },
  19509. {
  19510. name: "Planetary Macro",
  19511. height: math.unit(32700, "miles")
  19512. },
  19513. {
  19514. name: "Solar Macro",
  19515. height: math.unit(550000, "miles")
  19516. },
  19517. {
  19518. name: "Celestial Macro",
  19519. height: math.unit(2.5, "AU")
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19525. {
  19526. front: {
  19527. height: math.unit(4 + 5 / 12, "feet"),
  19528. weight: math.unit(90, "lb"),
  19529. name: "Front",
  19530. image: {
  19531. source: "./media/characters/cappu/front.svg",
  19532. extra: 1247 / 1152,
  19533. bottom: 0.012
  19534. }
  19535. },
  19536. },
  19537. [
  19538. {
  19539. name: "Normal",
  19540. height: math.unit(4 + 5 / 12, "feet"),
  19541. default: true
  19542. },
  19543. ]
  19544. ))
  19545. characterMakers.push(() => makeCharacter(
  19546. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19547. {
  19548. frontDressed: {
  19549. height: math.unit(70, "cm"),
  19550. weight: math.unit(6, "kg"),
  19551. name: "Front (Dressed)",
  19552. image: {
  19553. source: "./media/characters/sebi/front-dressed.svg",
  19554. extra: 713.5 / 686.5,
  19555. bottom: 0.003
  19556. }
  19557. },
  19558. front: {
  19559. height: math.unit(70, "cm"),
  19560. weight: math.unit(5, "kg"),
  19561. name: "Front",
  19562. image: {
  19563. source: "./media/characters/sebi/front.svg",
  19564. extra: 713.5 / 686.5,
  19565. bottom: 0.003
  19566. }
  19567. }
  19568. },
  19569. [
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(70, "cm"),
  19573. default: true
  19574. },
  19575. {
  19576. name: "Macro",
  19577. height: math.unit(8, "meters")
  19578. },
  19579. ]
  19580. ))
  19581. characterMakers.push(() => makeCharacter(
  19582. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19583. {
  19584. front: {
  19585. height: math.unit(6, "feet"),
  19586. weight: math.unit(150, "lb"),
  19587. name: "Front",
  19588. image: {
  19589. source: "./media/characters/typhek/front.svg",
  19590. extra: 1948 / 1929,
  19591. bottom: 0.025
  19592. }
  19593. },
  19594. side: {
  19595. height: math.unit(6, "feet"),
  19596. weight: math.unit(150, "lb"),
  19597. name: "Side",
  19598. image: {
  19599. source: "./media/characters/typhek/side.svg",
  19600. extra: 2034 / 2010,
  19601. bottom: 0.003
  19602. }
  19603. },
  19604. back: {
  19605. height: math.unit(6, "feet"),
  19606. weight: math.unit(150, "lb"),
  19607. name: "Back",
  19608. image: {
  19609. source: "./media/characters/typhek/back.svg",
  19610. extra: 2005 / 1978,
  19611. bottom: 0.004
  19612. }
  19613. },
  19614. palm: {
  19615. height: math.unit(1.2, "feet"),
  19616. name: "Palm",
  19617. image: {
  19618. source: "./media/characters/typhek/palm.svg"
  19619. }
  19620. },
  19621. fist: {
  19622. height: math.unit(1.1, "feet"),
  19623. name: "Fist",
  19624. image: {
  19625. source: "./media/characters/typhek/fist.svg"
  19626. }
  19627. },
  19628. foot: {
  19629. height: math.unit(1.57, "feet"),
  19630. name: "Foot",
  19631. image: {
  19632. source: "./media/characters/typhek/foot.svg"
  19633. }
  19634. },
  19635. sole: {
  19636. height: math.unit(2.05, "feet"),
  19637. name: "Sole",
  19638. image: {
  19639. source: "./media/characters/typhek/sole.svg"
  19640. }
  19641. },
  19642. },
  19643. [
  19644. {
  19645. name: "Macro",
  19646. height: math.unit(40, "stories"),
  19647. default: true
  19648. },
  19649. {
  19650. name: "Megamacro",
  19651. height: math.unit(1, "mile")
  19652. },
  19653. {
  19654. name: "Gigamacro",
  19655. height: math.unit(4000, "solarradii")
  19656. },
  19657. {
  19658. name: "Universal",
  19659. height: math.unit(1.1, "universes")
  19660. }
  19661. ]
  19662. ))
  19663. characterMakers.push(() => makeCharacter(
  19664. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19665. {
  19666. side: {
  19667. height: math.unit(5 + 7 / 12, "feet"),
  19668. weight: math.unit(150, "lb"),
  19669. name: "Side",
  19670. image: {
  19671. source: "./media/characters/kassy/side.svg",
  19672. extra: 1280 / 1225,
  19673. bottom: 0.002
  19674. }
  19675. },
  19676. front: {
  19677. height: math.unit(5 + 7 / 12, "feet"),
  19678. weight: math.unit(150, "lb"),
  19679. name: "Front",
  19680. image: {
  19681. source: "./media/characters/kassy/front.svg",
  19682. extra: 1280 / 1225,
  19683. bottom: 0.025
  19684. }
  19685. },
  19686. back: {
  19687. height: math.unit(5 + 7 / 12, "feet"),
  19688. weight: math.unit(150, "lb"),
  19689. name: "Back",
  19690. image: {
  19691. source: "./media/characters/kassy/back.svg",
  19692. extra: 1280 / 1225,
  19693. bottom: 0.002
  19694. }
  19695. },
  19696. foot: {
  19697. height: math.unit(1.266, "feet"),
  19698. name: "Foot",
  19699. image: {
  19700. source: "./media/characters/kassy/foot.svg"
  19701. }
  19702. },
  19703. },
  19704. [
  19705. {
  19706. name: "Normal",
  19707. height: math.unit(5 + 7 / 12, "feet")
  19708. },
  19709. {
  19710. name: "Macro",
  19711. height: math.unit(137, "feet"),
  19712. default: true
  19713. },
  19714. {
  19715. name: "Megamacro",
  19716. height: math.unit(1, "mile")
  19717. },
  19718. ]
  19719. ))
  19720. characterMakers.push(() => makeCharacter(
  19721. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19722. {
  19723. front: {
  19724. height: math.unit(6 + 1 / 12, "feet"),
  19725. weight: math.unit(200, "lb"),
  19726. name: "Front",
  19727. image: {
  19728. source: "./media/characters/neil/front.svg",
  19729. extra: 1326 / 1250,
  19730. bottom: 0.023
  19731. }
  19732. },
  19733. },
  19734. [
  19735. {
  19736. name: "Normal",
  19737. height: math.unit(6 + 1 / 12, "feet"),
  19738. default: true
  19739. },
  19740. {
  19741. name: "Macro",
  19742. height: math.unit(200, "feet")
  19743. },
  19744. ]
  19745. ))
  19746. characterMakers.push(() => makeCharacter(
  19747. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19748. {
  19749. front: {
  19750. height: math.unit(5 + 9 / 12, "feet"),
  19751. weight: math.unit(190, "lb"),
  19752. name: "Front",
  19753. image: {
  19754. source: "./media/characters/atticus/front.svg",
  19755. extra: 2934 / 2785,
  19756. bottom: 0.025
  19757. }
  19758. },
  19759. },
  19760. [
  19761. {
  19762. name: "Normal",
  19763. height: math.unit(5 + 9 / 12, "feet"),
  19764. default: true
  19765. },
  19766. {
  19767. name: "Macro",
  19768. height: math.unit(180, "feet")
  19769. },
  19770. ]
  19771. ))
  19772. characterMakers.push(() => makeCharacter(
  19773. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19774. {
  19775. side: {
  19776. height: math.unit(9, "feet"),
  19777. weight: math.unit(650, "lb"),
  19778. name: "Side",
  19779. image: {
  19780. source: "./media/characters/milo/side.svg",
  19781. extra: 2644 / 2310,
  19782. bottom: 0.032
  19783. }
  19784. },
  19785. },
  19786. [
  19787. {
  19788. name: "Normal",
  19789. height: math.unit(9, "feet"),
  19790. default: true
  19791. },
  19792. {
  19793. name: "Macro",
  19794. height: math.unit(300, "feet")
  19795. },
  19796. ]
  19797. ))
  19798. characterMakers.push(() => makeCharacter(
  19799. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19800. {
  19801. side: {
  19802. height: math.unit(8, "meters"),
  19803. weight: math.unit(90000, "kg"),
  19804. name: "Side",
  19805. image: {
  19806. source: "./media/characters/ijzer/side.svg",
  19807. extra: 2756 / 1600,
  19808. bottom: 0.01
  19809. }
  19810. },
  19811. },
  19812. [
  19813. {
  19814. name: "Small",
  19815. height: math.unit(3, "meters")
  19816. },
  19817. {
  19818. name: "Normal",
  19819. height: math.unit(8, "meters"),
  19820. default: true
  19821. },
  19822. {
  19823. name: "Normal+",
  19824. height: math.unit(10, "meters")
  19825. },
  19826. {
  19827. name: "Bigger",
  19828. height: math.unit(24, "meters")
  19829. },
  19830. {
  19831. name: "Huge",
  19832. height: math.unit(80, "meters")
  19833. },
  19834. ]
  19835. ))
  19836. characterMakers.push(() => makeCharacter(
  19837. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19838. {
  19839. front: {
  19840. height: math.unit(6 + 2 / 12, "feet"),
  19841. weight: math.unit(153, "lb"),
  19842. name: "Front",
  19843. image: {
  19844. source: "./media/characters/luca-cervicum/front.svg",
  19845. extra: 370 / 327,
  19846. bottom: 0.015
  19847. }
  19848. },
  19849. back: {
  19850. height: math.unit(6 + 2 / 12, "feet"),
  19851. weight: math.unit(153, "lb"),
  19852. name: "Back",
  19853. image: {
  19854. source: "./media/characters/luca-cervicum/back.svg",
  19855. extra: 367 / 333,
  19856. bottom: 0.005
  19857. }
  19858. },
  19859. frontGear: {
  19860. height: math.unit(6 + 2 / 12, "feet"),
  19861. weight: math.unit(173, "lb"),
  19862. name: "Front (Gear)",
  19863. image: {
  19864. source: "./media/characters/luca-cervicum/front-gear.svg",
  19865. extra: 377 / 333,
  19866. bottom: 0.006
  19867. }
  19868. },
  19869. },
  19870. [
  19871. {
  19872. name: "Normal",
  19873. height: math.unit(6 + 2 / 12, "feet"),
  19874. default: true
  19875. },
  19876. ]
  19877. ))
  19878. characterMakers.push(() => makeCharacter(
  19879. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19880. {
  19881. front: {
  19882. height: math.unit(6 + 1 / 12, "feet"),
  19883. weight: math.unit(304, "lb"),
  19884. name: "Front",
  19885. image: {
  19886. source: "./media/characters/oliver/front.svg",
  19887. extra: 157 / 143,
  19888. bottom: 0.08
  19889. }
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Normal",
  19895. height: math.unit(6 + 1 / 12, "feet"),
  19896. default: true
  19897. },
  19898. ]
  19899. ))
  19900. characterMakers.push(() => makeCharacter(
  19901. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19902. {
  19903. front: {
  19904. height: math.unit(5 + 7 / 12, "feet"),
  19905. weight: math.unit(140, "lb"),
  19906. name: "Front",
  19907. image: {
  19908. source: "./media/characters/shane/front.svg",
  19909. extra: 304 / 289,
  19910. bottom: 0.005
  19911. }
  19912. },
  19913. },
  19914. [
  19915. {
  19916. name: "Normal",
  19917. height: math.unit(5 + 7 / 12, "feet"),
  19918. default: true
  19919. },
  19920. ]
  19921. ))
  19922. characterMakers.push(() => makeCharacter(
  19923. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19924. {
  19925. front: {
  19926. height: math.unit(5 + 9 / 12, "feet"),
  19927. weight: math.unit(178, "lb"),
  19928. name: "Front",
  19929. image: {
  19930. source: "./media/characters/shin/front.svg",
  19931. extra: 159 / 151,
  19932. bottom: 0.015
  19933. }
  19934. },
  19935. },
  19936. [
  19937. {
  19938. name: "Normal",
  19939. height: math.unit(5 + 9 / 12, "feet"),
  19940. default: true
  19941. },
  19942. ]
  19943. ))
  19944. characterMakers.push(() => makeCharacter(
  19945. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19946. {
  19947. front: {
  19948. height: math.unit(5 + 10 / 12, "feet"),
  19949. weight: math.unit(168, "lb"),
  19950. name: "Front",
  19951. image: {
  19952. source: "./media/characters/xerxes/front.svg",
  19953. extra: 282 / 260,
  19954. bottom: 0.045
  19955. }
  19956. },
  19957. },
  19958. [
  19959. {
  19960. name: "Normal",
  19961. height: math.unit(5 + 10 / 12, "feet"),
  19962. default: true
  19963. },
  19964. ]
  19965. ))
  19966. characterMakers.push(() => makeCharacter(
  19967. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19968. {
  19969. front: {
  19970. height: math.unit(6 + 7 / 12, "feet"),
  19971. weight: math.unit(208, "lb"),
  19972. name: "Front",
  19973. image: {
  19974. source: "./media/characters/chaska/front.svg",
  19975. extra: 332 / 319,
  19976. bottom: 0.015
  19977. }
  19978. },
  19979. },
  19980. [
  19981. {
  19982. name: "Normal",
  19983. height: math.unit(6 + 7 / 12, "feet"),
  19984. default: true
  19985. },
  19986. ]
  19987. ))
  19988. characterMakers.push(() => makeCharacter(
  19989. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19990. {
  19991. front: {
  19992. height: math.unit(5 + 8 / 12, "feet"),
  19993. weight: math.unit(208, "lb"),
  19994. name: "Front",
  19995. image: {
  19996. source: "./media/characters/enuk/front.svg",
  19997. extra: 437 / 406,
  19998. bottom: 0.02
  19999. }
  20000. },
  20001. },
  20002. [
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(5 + 8 / 12, "feet"),
  20006. default: true
  20007. },
  20008. ]
  20009. ))
  20010. characterMakers.push(() => makeCharacter(
  20011. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20012. {
  20013. front: {
  20014. height: math.unit(5 + 10 / 12, "feet"),
  20015. weight: math.unit(252, "lb"),
  20016. name: "Front",
  20017. image: {
  20018. source: "./media/characters/bruun/front.svg",
  20019. extra: 197 / 187,
  20020. bottom: 0.012
  20021. }
  20022. },
  20023. },
  20024. [
  20025. {
  20026. name: "Normal",
  20027. height: math.unit(5 + 10 / 12, "feet"),
  20028. default: true
  20029. },
  20030. ]
  20031. ))
  20032. characterMakers.push(() => makeCharacter(
  20033. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20034. {
  20035. front: {
  20036. height: math.unit(6 + 10 / 12, "feet"),
  20037. weight: math.unit(255, "lb"),
  20038. name: "Front",
  20039. image: {
  20040. source: "./media/characters/alexeev/front.svg",
  20041. extra: 213 / 200,
  20042. bottom: 0.05
  20043. }
  20044. },
  20045. },
  20046. [
  20047. {
  20048. name: "Normal",
  20049. height: math.unit(6 + 10 / 12, "feet"),
  20050. default: true
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20056. {
  20057. front: {
  20058. height: math.unit(2 + 8 / 12, "feet"),
  20059. weight: math.unit(22, "lb"),
  20060. name: "Front",
  20061. image: {
  20062. source: "./media/characters/evelyn/front.svg",
  20063. extra: 208 / 180
  20064. }
  20065. },
  20066. },
  20067. [
  20068. {
  20069. name: "Normal",
  20070. height: math.unit(2 + 8 / 12, "feet"),
  20071. default: true
  20072. },
  20073. ]
  20074. ))
  20075. characterMakers.push(() => makeCharacter(
  20076. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20077. {
  20078. front: {
  20079. height: math.unit(5 + 9 / 12, "feet"),
  20080. weight: math.unit(139, "lb"),
  20081. name: "Front",
  20082. image: {
  20083. source: "./media/characters/inca/front.svg",
  20084. extra: 294 / 291,
  20085. bottom: 0.03
  20086. }
  20087. },
  20088. },
  20089. [
  20090. {
  20091. name: "Normal",
  20092. height: math.unit(5 + 9 / 12, "feet"),
  20093. default: true
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20099. {
  20100. front: {
  20101. height: math.unit(6 + 3 / 12, "feet"),
  20102. weight: math.unit(185, "lb"),
  20103. name: "Front",
  20104. image: {
  20105. source: "./media/characters/mera/front.svg",
  20106. extra: 291 / 277,
  20107. bottom: 0.03
  20108. }
  20109. },
  20110. },
  20111. [
  20112. {
  20113. name: "Normal",
  20114. height: math.unit(6 + 3 / 12, "feet"),
  20115. default: true
  20116. },
  20117. ]
  20118. ))
  20119. characterMakers.push(() => makeCharacter(
  20120. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20121. {
  20122. front: {
  20123. height: math.unit(6 + 7 / 12, "feet"),
  20124. weight: math.unit(160, "lb"),
  20125. name: "Front",
  20126. image: {
  20127. source: "./media/characters/ceres/front.svg",
  20128. extra: 1023 / 950,
  20129. bottom: 0.027
  20130. }
  20131. },
  20132. back: {
  20133. height: math.unit(6 + 7 / 12, "feet"),
  20134. weight: math.unit(160, "lb"),
  20135. name: "Back",
  20136. image: {
  20137. source: "./media/characters/ceres/back.svg",
  20138. extra: 1023 / 950
  20139. }
  20140. },
  20141. },
  20142. [
  20143. {
  20144. name: "Normal",
  20145. height: math.unit(6 + 7 / 12, "feet"),
  20146. default: true
  20147. },
  20148. ]
  20149. ))
  20150. characterMakers.push(() => makeCharacter(
  20151. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20152. {
  20153. front: {
  20154. height: math.unit(5 + 10 / 12, "feet"),
  20155. weight: math.unit(150, "lb"),
  20156. name: "Front",
  20157. image: {
  20158. source: "./media/characters/kris/front.svg",
  20159. extra: 885 / 803,
  20160. bottom: 0.03
  20161. }
  20162. },
  20163. },
  20164. [
  20165. {
  20166. name: "Normal",
  20167. height: math.unit(5 + 10 / 12, "feet"),
  20168. default: true
  20169. },
  20170. ]
  20171. ))
  20172. characterMakers.push(() => makeCharacter(
  20173. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20174. {
  20175. front: {
  20176. height: math.unit(7, "feet"),
  20177. weight: math.unit(120, "kg"),
  20178. name: "Front",
  20179. image: {
  20180. source: "./media/characters/taluthus/front.svg",
  20181. extra: 903 / 833,
  20182. bottom: 0.015
  20183. }
  20184. },
  20185. },
  20186. [
  20187. {
  20188. name: "Normal",
  20189. height: math.unit(7, "feet"),
  20190. default: true
  20191. },
  20192. {
  20193. name: "Macro",
  20194. height: math.unit(300, "feet")
  20195. },
  20196. ]
  20197. ))
  20198. characterMakers.push(() => makeCharacter(
  20199. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20200. {
  20201. front: {
  20202. height: math.unit(5 + 9 / 12, "feet"),
  20203. weight: math.unit(145, "lb"),
  20204. name: "Front",
  20205. image: {
  20206. source: "./media/characters/dawn/front.svg",
  20207. extra: 2094 / 2016,
  20208. bottom: 0.025
  20209. }
  20210. },
  20211. back: {
  20212. height: math.unit(5 + 9 / 12, "feet"),
  20213. weight: math.unit(160, "lb"),
  20214. name: "Back",
  20215. image: {
  20216. source: "./media/characters/dawn/back.svg",
  20217. extra: 2112 / 2080,
  20218. bottom: 0.005
  20219. }
  20220. },
  20221. },
  20222. [
  20223. {
  20224. name: "Normal",
  20225. height: math.unit(6 + 7 / 12, "feet"),
  20226. default: true
  20227. },
  20228. ]
  20229. ))
  20230. characterMakers.push(() => makeCharacter(
  20231. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20232. {
  20233. anthro: {
  20234. height: math.unit(8 + 3 / 12, "feet"),
  20235. weight: math.unit(450, "lb"),
  20236. name: "Anthro",
  20237. image: {
  20238. source: "./media/characters/arador/anthro.svg",
  20239. extra: 1835 / 1718,
  20240. bottom: 0.025
  20241. }
  20242. },
  20243. feral: {
  20244. height: math.unit(4, "feet"),
  20245. weight: math.unit(200, "lb"),
  20246. name: "Feral",
  20247. image: {
  20248. source: "./media/characters/arador/feral.svg",
  20249. extra: 1683 / 1514,
  20250. bottom: 0.07
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "Normal",
  20257. height: math.unit(8 + 3 / 12, "feet")
  20258. },
  20259. {
  20260. name: "Macro",
  20261. height: math.unit(82.5, "feet"),
  20262. default: true
  20263. },
  20264. ]
  20265. ))
  20266. characterMakers.push(() => makeCharacter(
  20267. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20268. {
  20269. front: {
  20270. height: math.unit(5 + 10 / 12, "feet"),
  20271. weight: math.unit(125, "lb"),
  20272. name: "Front",
  20273. image: {
  20274. source: "./media/characters/dharsi/front.svg",
  20275. extra: 716 / 630,
  20276. bottom: 0.035
  20277. }
  20278. },
  20279. },
  20280. [
  20281. {
  20282. name: "Nano",
  20283. height: math.unit(100, "nm")
  20284. },
  20285. {
  20286. name: "Micro",
  20287. height: math.unit(2, "inches")
  20288. },
  20289. {
  20290. name: "Normal",
  20291. height: math.unit(5 + 10 / 12, "feet"),
  20292. default: true
  20293. },
  20294. {
  20295. name: "Macro",
  20296. height: math.unit(1000, "feet")
  20297. },
  20298. {
  20299. name: "Megamacro",
  20300. height: math.unit(10, "miles")
  20301. },
  20302. {
  20303. name: "Gigamacro",
  20304. height: math.unit(3000, "miles")
  20305. },
  20306. {
  20307. name: "Teramacro",
  20308. height: math.unit(500000, "miles")
  20309. },
  20310. {
  20311. name: "Teramacro+",
  20312. height: math.unit(30, "galaxies")
  20313. },
  20314. ]
  20315. ))
  20316. characterMakers.push(() => makeCharacter(
  20317. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20318. {
  20319. front: {
  20320. height: math.unit(6, "feet"),
  20321. weight: math.unit(150, "lb"),
  20322. name: "Front",
  20323. image: {
  20324. source: "./media/characters/deathy/front.svg",
  20325. extra: 1552 / 1463,
  20326. bottom: 0.025
  20327. }
  20328. },
  20329. side: {
  20330. height: math.unit(6, "feet"),
  20331. weight: math.unit(150, "lb"),
  20332. name: "Side",
  20333. image: {
  20334. source: "./media/characters/deathy/side.svg",
  20335. extra: 1604 / 1455,
  20336. bottom: 0.025
  20337. }
  20338. },
  20339. back: {
  20340. height: math.unit(6, "feet"),
  20341. weight: math.unit(150, "lb"),
  20342. name: "Back",
  20343. image: {
  20344. source: "./media/characters/deathy/back.svg",
  20345. extra: 1580 / 1463,
  20346. bottom: 0.005
  20347. }
  20348. },
  20349. },
  20350. [
  20351. {
  20352. name: "Micro",
  20353. height: math.unit(5, "millimeters")
  20354. },
  20355. {
  20356. name: "Normal",
  20357. height: math.unit(6 + 5 / 12, "feet"),
  20358. default: true
  20359. },
  20360. ]
  20361. ))
  20362. characterMakers.push(() => makeCharacter(
  20363. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20364. {
  20365. front: {
  20366. height: math.unit(16, "feet"),
  20367. weight: math.unit(4000, "lb"),
  20368. name: "Front",
  20369. image: {
  20370. source: "./media/characters/juniper/front.svg",
  20371. bottom: 0.04
  20372. }
  20373. },
  20374. },
  20375. [
  20376. {
  20377. name: "Normal",
  20378. height: math.unit(16, "feet"),
  20379. default: true
  20380. },
  20381. ]
  20382. ))
  20383. characterMakers.push(() => makeCharacter(
  20384. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20385. {
  20386. front: {
  20387. height: math.unit(6, "feet"),
  20388. weight: math.unit(150, "lb"),
  20389. name: "Front",
  20390. image: {
  20391. source: "./media/characters/hipster/front.svg",
  20392. extra: 1312 / 1209,
  20393. bottom: 0.025
  20394. }
  20395. },
  20396. back: {
  20397. height: math.unit(6, "feet"),
  20398. weight: math.unit(150, "lb"),
  20399. name: "Back",
  20400. image: {
  20401. source: "./media/characters/hipster/back.svg",
  20402. extra: 1281 / 1196,
  20403. bottom: 0.01
  20404. }
  20405. },
  20406. },
  20407. [
  20408. {
  20409. name: "Micro",
  20410. height: math.unit(1, "mm")
  20411. },
  20412. {
  20413. name: "Normal",
  20414. height: math.unit(4, "inches"),
  20415. default: true
  20416. },
  20417. {
  20418. name: "Macro",
  20419. height: math.unit(500, "feet")
  20420. },
  20421. {
  20422. name: "Megamacro",
  20423. height: math.unit(1000, "miles")
  20424. },
  20425. ]
  20426. ))
  20427. characterMakers.push(() => makeCharacter(
  20428. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20429. {
  20430. front: {
  20431. height: math.unit(6, "feet"),
  20432. weight: math.unit(150, "lb"),
  20433. name: "Front",
  20434. image: {
  20435. source: "./media/characters/tendirmuldr/front.svg",
  20436. extra: 1878 / 1772,
  20437. bottom: 0.015
  20438. }
  20439. },
  20440. },
  20441. [
  20442. {
  20443. name: "Megamacro",
  20444. height: math.unit(1500, "miles"),
  20445. default: true
  20446. },
  20447. ]
  20448. ))
  20449. characterMakers.push(() => makeCharacter(
  20450. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20451. {
  20452. front: {
  20453. height: math.unit(14, "feet"),
  20454. weight: math.unit(12000, "lb"),
  20455. name: "Front",
  20456. image: {
  20457. source: "./media/characters/mort/front.svg",
  20458. extra: 365 / 318,
  20459. bottom: 0.01
  20460. }
  20461. },
  20462. side: {
  20463. height: math.unit(14, "feet"),
  20464. weight: math.unit(12000, "lb"),
  20465. name: "Side",
  20466. image: {
  20467. source: "./media/characters/mort/side.svg",
  20468. extra: 365 / 318,
  20469. bottom: 0.052
  20470. },
  20471. default: true
  20472. },
  20473. back: {
  20474. height: math.unit(14, "feet"),
  20475. weight: math.unit(12000, "lb"),
  20476. name: "Back",
  20477. image: {
  20478. source: "./media/characters/mort/back.svg",
  20479. extra: 371 / 332,
  20480. bottom: 0.18
  20481. }
  20482. },
  20483. },
  20484. [
  20485. {
  20486. name: "Normal",
  20487. height: math.unit(14, "feet"),
  20488. default: true
  20489. },
  20490. ]
  20491. ))
  20492. characterMakers.push(() => makeCharacter(
  20493. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20494. {
  20495. front: {
  20496. height: math.unit(8, "feet"),
  20497. weight: math.unit(1, "ton"),
  20498. name: "Front",
  20499. image: {
  20500. source: "./media/characters/lycoa/front.svg",
  20501. extra: 1875 / 1789,
  20502. bottom: 0.022
  20503. }
  20504. },
  20505. back: {
  20506. height: math.unit(8, "feet"),
  20507. weight: math.unit(1, "ton"),
  20508. name: "Back",
  20509. image: {
  20510. source: "./media/characters/lycoa/back.svg",
  20511. extra: 1835 / 1781,
  20512. bottom: 0.03
  20513. }
  20514. },
  20515. head: {
  20516. height: math.unit(2.1, "feet"),
  20517. name: "Head",
  20518. image: {
  20519. source: "./media/characters/lycoa/head.svg"
  20520. }
  20521. },
  20522. tailmaw: {
  20523. height: math.unit(1.9, "feet"),
  20524. name: "Tailmaw",
  20525. image: {
  20526. source: "./media/characters/lycoa/tailmaw.svg"
  20527. }
  20528. },
  20529. tentacles: {
  20530. height: math.unit(2.1, "feet"),
  20531. name: "Tentacles",
  20532. image: {
  20533. source: "./media/characters/lycoa/tentacles.svg"
  20534. }
  20535. },
  20536. dick: {
  20537. height: math.unit(1.73, "feet"),
  20538. name: "Dick",
  20539. image: {
  20540. source: "./media/characters/lycoa/dick.svg"
  20541. }
  20542. },
  20543. },
  20544. [
  20545. {
  20546. name: "Normal",
  20547. height: math.unit(8, "feet"),
  20548. default: true
  20549. },
  20550. {
  20551. name: "Macro",
  20552. height: math.unit(30, "feet")
  20553. },
  20554. ]
  20555. ))
  20556. characterMakers.push(() => makeCharacter(
  20557. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20558. {
  20559. front: {
  20560. height: math.unit(4 + 2 / 12, "feet"),
  20561. weight: math.unit(70, "lb"),
  20562. name: "Front",
  20563. image: {
  20564. source: "./media/characters/naldara/front.svg",
  20565. extra: 841 / 720,
  20566. bottom: 0.04
  20567. }
  20568. },
  20569. naga: {
  20570. height: math.unit(23, "feet"),
  20571. weight: math.unit(15000, "kg"),
  20572. name: "Naga",
  20573. image: {
  20574. source: "./media/characters/naldara/naga.svg",
  20575. extra: 3290 / 2959,
  20576. bottom: 124 / 3432
  20577. }
  20578. },
  20579. },
  20580. [
  20581. {
  20582. name: "Normal",
  20583. height: math.unit(4 + 2 / 12, "feet"),
  20584. default: true
  20585. },
  20586. ]
  20587. ))
  20588. characterMakers.push(() => makeCharacter(
  20589. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20590. {
  20591. front: {
  20592. height: math.unit(13 + 7 / 12, "feet"),
  20593. weight: math.unit(1500, "lb"),
  20594. name: "Front",
  20595. image: {
  20596. source: "./media/characters/briar/front.svg",
  20597. extra: 626 / 596,
  20598. bottom: 0.08
  20599. }
  20600. },
  20601. },
  20602. [
  20603. {
  20604. name: "Normal",
  20605. height: math.unit(13 + 7 / 12, "feet"),
  20606. default: true
  20607. },
  20608. ]
  20609. ))
  20610. characterMakers.push(() => makeCharacter(
  20611. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20612. {
  20613. side: {
  20614. height: math.unit(10, "feet"),
  20615. weight: math.unit(500, "lb"),
  20616. name: "Side",
  20617. image: {
  20618. source: "./media/characters/vanguard/side.svg",
  20619. extra: 502 / 425,
  20620. bottom: 0.087
  20621. }
  20622. },
  20623. },
  20624. [
  20625. {
  20626. name: "Normal",
  20627. height: math.unit(10, "feet"),
  20628. default: true
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20634. {
  20635. front: {
  20636. height: math.unit(7.5, "feet"),
  20637. weight: math.unit(2, "lb"),
  20638. name: "Front",
  20639. image: {
  20640. source: "./media/characters/artemis/front.svg",
  20641. extra: 1192 / 1075,
  20642. bottom: 0.07
  20643. }
  20644. },
  20645. frontNsfw: {
  20646. height: math.unit(7.5, "feet"),
  20647. weight: math.unit(2, "lb"),
  20648. name: "Front (NSFW)",
  20649. image: {
  20650. source: "./media/characters/artemis/front-nsfw.svg",
  20651. extra: 1192 / 1075,
  20652. bottom: 0.07
  20653. }
  20654. },
  20655. frontNsfwer: {
  20656. height: math.unit(7.5, "feet"),
  20657. weight: math.unit(2, "lb"),
  20658. name: "Front (NSFW-er)",
  20659. image: {
  20660. source: "./media/characters/artemis/front-nsfwer.svg",
  20661. extra: 1192 / 1075,
  20662. bottom: 0.07
  20663. }
  20664. },
  20665. side: {
  20666. height: math.unit(7.5, "feet"),
  20667. weight: math.unit(2, "lb"),
  20668. name: "Side",
  20669. image: {
  20670. source: "./media/characters/artemis/side.svg",
  20671. extra: 1192 / 1075,
  20672. bottom: 0.07
  20673. }
  20674. },
  20675. sideNsfw: {
  20676. height: math.unit(7.5, "feet"),
  20677. weight: math.unit(2, "lb"),
  20678. name: "Side (NSFW)",
  20679. image: {
  20680. source: "./media/characters/artemis/side-nsfw.svg",
  20681. extra: 1192 / 1075,
  20682. bottom: 0.07
  20683. }
  20684. },
  20685. sideNsfwer: {
  20686. height: math.unit(7.5, "feet"),
  20687. weight: math.unit(2, "lb"),
  20688. name: "Side (NSFW-er)",
  20689. image: {
  20690. source: "./media/characters/artemis/side-nsfwer.svg",
  20691. extra: 1192 / 1075,
  20692. bottom: 0.07
  20693. }
  20694. },
  20695. maw: {
  20696. height: math.unit(1.1, "feet"),
  20697. name: "Maw",
  20698. image: {
  20699. source: "./media/characters/artemis/maw.svg"
  20700. }
  20701. },
  20702. stomach: {
  20703. height: math.unit(0.95, "feet"),
  20704. name: "Stomach",
  20705. image: {
  20706. source: "./media/characters/artemis/stomach.svg"
  20707. }
  20708. },
  20709. dickCanine: {
  20710. height: math.unit(1, "feet"),
  20711. name: "Dick (Canine)",
  20712. image: {
  20713. source: "./media/characters/artemis/dick-canine.svg"
  20714. }
  20715. },
  20716. dickEquine: {
  20717. height: math.unit(0.85, "feet"),
  20718. name: "Dick (Equine)",
  20719. image: {
  20720. source: "./media/characters/artemis/dick-equine.svg"
  20721. }
  20722. },
  20723. dickExotic: {
  20724. height: math.unit(0.85, "feet"),
  20725. name: "Dick (Exotic)",
  20726. image: {
  20727. source: "./media/characters/artemis/dick-exotic.svg"
  20728. }
  20729. },
  20730. },
  20731. [
  20732. {
  20733. name: "Normal",
  20734. height: math.unit(7.5, "feet"),
  20735. default: true
  20736. },
  20737. {
  20738. name: "Enlarged",
  20739. height: math.unit(12, "feet")
  20740. },
  20741. ]
  20742. ))
  20743. characterMakers.push(() => makeCharacter(
  20744. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20745. {
  20746. front: {
  20747. height: math.unit(5 + 3 / 12, "feet"),
  20748. weight: math.unit(160, "lb"),
  20749. name: "Front",
  20750. image: {
  20751. source: "./media/characters/kira/front.svg",
  20752. extra: 906 / 786,
  20753. bottom: 0.01
  20754. }
  20755. },
  20756. back: {
  20757. height: math.unit(5 + 3 / 12, "feet"),
  20758. weight: math.unit(160, "lb"),
  20759. name: "Back",
  20760. image: {
  20761. source: "./media/characters/kira/back.svg",
  20762. extra: 882 / 757,
  20763. bottom: 0.005
  20764. }
  20765. },
  20766. frontDressed: {
  20767. height: math.unit(5 + 3 / 12, "feet"),
  20768. weight: math.unit(160, "lb"),
  20769. name: "Front (Dressed)",
  20770. image: {
  20771. source: "./media/characters/kira/front-dressed.svg",
  20772. extra: 906 / 786,
  20773. bottom: 0.01
  20774. }
  20775. },
  20776. beans: {
  20777. height: math.unit(0.92, "feet"),
  20778. name: "Beans",
  20779. image: {
  20780. source: "./media/characters/kira/beans.svg"
  20781. }
  20782. },
  20783. },
  20784. [
  20785. {
  20786. name: "Normal",
  20787. height: math.unit(5 + 3 / 12, "feet"),
  20788. default: true
  20789. },
  20790. ]
  20791. ))
  20792. characterMakers.push(() => makeCharacter(
  20793. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20794. {
  20795. front: {
  20796. height: math.unit(5 + 4 / 12, "feet"),
  20797. weight: math.unit(145, "lb"),
  20798. name: "Front",
  20799. image: {
  20800. source: "./media/characters/scramble/front.svg",
  20801. extra: 763 / 727,
  20802. bottom: 0.05
  20803. }
  20804. },
  20805. back: {
  20806. height: math.unit(5 + 4 / 12, "feet"),
  20807. weight: math.unit(145, "lb"),
  20808. name: "Back",
  20809. image: {
  20810. source: "./media/characters/scramble/back.svg",
  20811. extra: 826 / 737,
  20812. bottom: 0.002
  20813. }
  20814. },
  20815. },
  20816. [
  20817. {
  20818. name: "Normal",
  20819. height: math.unit(5 + 4 / 12, "feet"),
  20820. default: true
  20821. },
  20822. ]
  20823. ))
  20824. characterMakers.push(() => makeCharacter(
  20825. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20826. {
  20827. side: {
  20828. height: math.unit(6 + 2 / 12, "feet"),
  20829. weight: math.unit(190, "lb"),
  20830. name: "Side",
  20831. image: {
  20832. source: "./media/characters/biscuit/side.svg",
  20833. extra: 858 / 791,
  20834. bottom: 0.044
  20835. }
  20836. },
  20837. },
  20838. [
  20839. {
  20840. name: "Normal",
  20841. height: math.unit(6 + 2 / 12, "feet"),
  20842. default: true
  20843. },
  20844. ]
  20845. ))
  20846. characterMakers.push(() => makeCharacter(
  20847. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20848. {
  20849. front: {
  20850. height: math.unit(5 + 2 / 12, "feet"),
  20851. weight: math.unit(120, "lb"),
  20852. name: "Front",
  20853. image: {
  20854. source: "./media/characters/poffin/front.svg",
  20855. extra: 786 / 680,
  20856. bottom: 0.005
  20857. }
  20858. },
  20859. },
  20860. [
  20861. {
  20862. name: "Normal",
  20863. height: math.unit(5 + 2 / 12, "feet"),
  20864. default: true
  20865. },
  20866. ]
  20867. ))
  20868. characterMakers.push(() => makeCharacter(
  20869. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20870. {
  20871. front: {
  20872. height: math.unit(6 + 3 / 12, "feet"),
  20873. weight: math.unit(519, "lb"),
  20874. name: "Front",
  20875. image: {
  20876. source: "./media/characters/dhari/front.svg",
  20877. extra: 1048 / 946,
  20878. bottom: 0.015
  20879. }
  20880. },
  20881. back: {
  20882. height: math.unit(6 + 3 / 12, "feet"),
  20883. weight: math.unit(519, "lb"),
  20884. name: "Back",
  20885. image: {
  20886. source: "./media/characters/dhari/back.svg",
  20887. extra: 1048 / 931,
  20888. bottom: 0.005
  20889. }
  20890. },
  20891. frontDressed: {
  20892. height: math.unit(6 + 3 / 12, "feet"),
  20893. weight: math.unit(519, "lb"),
  20894. name: "Front (Dressed)",
  20895. image: {
  20896. source: "./media/characters/dhari/front-dressed.svg",
  20897. extra: 1713 / 1546,
  20898. bottom: 0.02
  20899. }
  20900. },
  20901. backDressed: {
  20902. height: math.unit(6 + 3 / 12, "feet"),
  20903. weight: math.unit(519, "lb"),
  20904. name: "Back (Dressed)",
  20905. image: {
  20906. source: "./media/characters/dhari/back-dressed.svg",
  20907. extra: 1699 / 1537,
  20908. bottom: 0.01
  20909. }
  20910. },
  20911. maw: {
  20912. height: math.unit(0.95, "feet"),
  20913. name: "Maw",
  20914. image: {
  20915. source: "./media/characters/dhari/maw.svg"
  20916. }
  20917. },
  20918. wereFront: {
  20919. height: math.unit(12 + 8 / 12, "feet"),
  20920. weight: math.unit(4000, "lb"),
  20921. name: "Front (Were)",
  20922. image: {
  20923. source: "./media/characters/dhari/were-front.svg",
  20924. extra: 1065 / 969,
  20925. bottom: 0.015
  20926. }
  20927. },
  20928. wereBack: {
  20929. height: math.unit(12 + 8 / 12, "feet"),
  20930. weight: math.unit(4000, "lb"),
  20931. name: "Back (Were)",
  20932. image: {
  20933. source: "./media/characters/dhari/were-back.svg",
  20934. extra: 1065 / 969,
  20935. bottom: 0.012
  20936. }
  20937. },
  20938. wereMaw: {
  20939. height: math.unit(0.625, "meters"),
  20940. name: "Maw (Were)",
  20941. image: {
  20942. source: "./media/characters/dhari/were-maw.svg"
  20943. }
  20944. },
  20945. },
  20946. [
  20947. {
  20948. name: "Normal",
  20949. height: math.unit(6 + 3 / 12, "feet"),
  20950. default: true
  20951. },
  20952. ]
  20953. ))
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20956. {
  20957. anthro: {
  20958. height: math.unit(5 + 7 / 12, "feet"),
  20959. weight: math.unit(175, "lb"),
  20960. name: "Anthro",
  20961. image: {
  20962. source: "./media/characters/rena-dyne/anthro.svg",
  20963. extra: 1849 / 1785,
  20964. bottom: 0.005
  20965. }
  20966. },
  20967. taur: {
  20968. height: math.unit(15 + 6 / 12, "feet"),
  20969. weight: math.unit(8000, "lb"),
  20970. name: "Taur",
  20971. image: {
  20972. source: "./media/characters/rena-dyne/taur.svg",
  20973. extra: 2315 / 2234,
  20974. bottom: 0.033
  20975. }
  20976. },
  20977. },
  20978. [
  20979. {
  20980. name: "Normal",
  20981. height: math.unit(5 + 7 / 12, "feet"),
  20982. default: true
  20983. },
  20984. ]
  20985. ))
  20986. characterMakers.push(() => makeCharacter(
  20987. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20988. {
  20989. front: {
  20990. height: math.unit(8, "feet"),
  20991. weight: math.unit(600, "lb"),
  20992. name: "Front",
  20993. image: {
  20994. source: "./media/characters/weremeep/front.svg",
  20995. extra: 967 / 862,
  20996. bottom: 0.01
  20997. }
  20998. },
  20999. },
  21000. [
  21001. {
  21002. name: "Normal",
  21003. height: math.unit(8, "feet"),
  21004. default: true
  21005. },
  21006. {
  21007. name: "Lorg",
  21008. height: math.unit(12, "feet")
  21009. },
  21010. {
  21011. name: "Oh Lawd She Comin'",
  21012. height: math.unit(20, "feet")
  21013. },
  21014. ]
  21015. ))
  21016. characterMakers.push(() => makeCharacter(
  21017. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21018. {
  21019. front: {
  21020. height: math.unit(4, "feet"),
  21021. weight: math.unit(90, "lb"),
  21022. name: "Front",
  21023. image: {
  21024. source: "./media/characters/reza/front.svg",
  21025. extra: 1183 / 1111,
  21026. bottom: 0.017
  21027. }
  21028. },
  21029. back: {
  21030. height: math.unit(4, "feet"),
  21031. weight: math.unit(90, "lb"),
  21032. name: "Back",
  21033. image: {
  21034. source: "./media/characters/reza/back.svg",
  21035. extra: 1183 / 1111,
  21036. bottom: 0.01
  21037. }
  21038. },
  21039. drake: {
  21040. height: math.unit(30, "feet"),
  21041. weight: math.unit(246960, "lb"),
  21042. name: "Drake",
  21043. image: {
  21044. source: "./media/characters/reza/drake.svg",
  21045. extra: 2350 / 2024,
  21046. bottom: 60.7 / 2403
  21047. }
  21048. },
  21049. },
  21050. [
  21051. {
  21052. name: "Normal",
  21053. height: math.unit(4, "feet"),
  21054. default: true
  21055. },
  21056. ]
  21057. ))
  21058. characterMakers.push(() => makeCharacter(
  21059. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21060. {
  21061. side: {
  21062. height: math.unit(15, "feet"),
  21063. weight: math.unit(14, "tons"),
  21064. name: "Side",
  21065. image: {
  21066. source: "./media/characters/athea/side.svg",
  21067. extra: 960 / 540,
  21068. bottom: 0.003
  21069. }
  21070. },
  21071. sitting: {
  21072. height: math.unit(6 * 2.85, "feet"),
  21073. weight: math.unit(14, "tons"),
  21074. name: "Sitting",
  21075. image: {
  21076. source: "./media/characters/athea/sitting.svg",
  21077. extra: 621 / 581,
  21078. bottom: 0.075
  21079. }
  21080. },
  21081. maw: {
  21082. height: math.unit(7.59498031496063, "feet"),
  21083. name: "Maw",
  21084. image: {
  21085. source: "./media/characters/athea/maw.svg"
  21086. }
  21087. },
  21088. },
  21089. [
  21090. {
  21091. name: "Lap Cat",
  21092. height: math.unit(2.5, "feet")
  21093. },
  21094. {
  21095. name: "Minimacro",
  21096. height: math.unit(15, "feet"),
  21097. default: true
  21098. },
  21099. {
  21100. name: "Macro",
  21101. height: math.unit(120, "feet")
  21102. },
  21103. {
  21104. name: "Macro+",
  21105. height: math.unit(640, "feet")
  21106. },
  21107. {
  21108. name: "Colossus",
  21109. height: math.unit(2.2, "miles")
  21110. },
  21111. ]
  21112. ))
  21113. characterMakers.push(() => makeCharacter(
  21114. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21115. {
  21116. front: {
  21117. height: math.unit(8 + 8 / 12, "feet"),
  21118. weight: math.unit(130, "kg"),
  21119. name: "Front",
  21120. image: {
  21121. source: "./media/characters/seroko/front.svg",
  21122. extra: 1385 / 1280,
  21123. bottom: 0.025
  21124. }
  21125. },
  21126. back: {
  21127. height: math.unit(8 + 8 / 12, "feet"),
  21128. weight: math.unit(130, "kg"),
  21129. name: "Back",
  21130. image: {
  21131. source: "./media/characters/seroko/back.svg",
  21132. extra: 1369 / 1238,
  21133. bottom: 0.018
  21134. }
  21135. },
  21136. frontDressed: {
  21137. height: math.unit(8 + 8 / 12, "feet"),
  21138. weight: math.unit(130, "kg"),
  21139. name: "Front (Dressed)",
  21140. image: {
  21141. source: "./media/characters/seroko/front-dressed.svg",
  21142. extra: 1366 / 1275,
  21143. bottom: 0.03
  21144. }
  21145. },
  21146. },
  21147. [
  21148. {
  21149. name: "Normal",
  21150. height: math.unit(8 + 8 / 12, "feet"),
  21151. default: true
  21152. },
  21153. ]
  21154. ))
  21155. characterMakers.push(() => makeCharacter(
  21156. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21157. {
  21158. front: {
  21159. height: math.unit(5.5, "feet"),
  21160. weight: math.unit(160, "lb"),
  21161. name: "Front",
  21162. image: {
  21163. source: "./media/characters/quatzi/front.svg",
  21164. extra: 2346 / 2242,
  21165. bottom: 0.015
  21166. }
  21167. },
  21168. },
  21169. [
  21170. {
  21171. name: "Normal",
  21172. height: math.unit(5.5, "feet"),
  21173. default: true
  21174. },
  21175. {
  21176. name: "Big",
  21177. height: math.unit(7.7, "feet")
  21178. },
  21179. ]
  21180. ))
  21181. characterMakers.push(() => makeCharacter(
  21182. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21183. {
  21184. front: {
  21185. height: math.unit(5 + 11 / 12, "feet"),
  21186. weight: math.unit(180, "lb"),
  21187. name: "Front",
  21188. image: {
  21189. source: "./media/characters/sen/front.svg",
  21190. extra: 1321 / 1254,
  21191. bottom: 0.015
  21192. }
  21193. },
  21194. side: {
  21195. height: math.unit(5 + 11 / 12, "feet"),
  21196. weight: math.unit(180, "lb"),
  21197. name: "Side",
  21198. image: {
  21199. source: "./media/characters/sen/side.svg",
  21200. extra: 1321 / 1254,
  21201. bottom: 0.007
  21202. }
  21203. },
  21204. back: {
  21205. height: math.unit(5 + 11 / 12, "feet"),
  21206. weight: math.unit(180, "lb"),
  21207. name: "Back",
  21208. image: {
  21209. source: "./media/characters/sen/back.svg",
  21210. extra: 1321 / 1254
  21211. }
  21212. },
  21213. },
  21214. [
  21215. {
  21216. name: "Normal",
  21217. height: math.unit(5 + 11 / 12, "feet"),
  21218. default: true
  21219. },
  21220. ]
  21221. ))
  21222. characterMakers.push(() => makeCharacter(
  21223. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21224. {
  21225. front: {
  21226. height: math.unit(166.6, "cm"),
  21227. weight: math.unit(66.6, "kg"),
  21228. name: "Front",
  21229. image: {
  21230. source: "./media/characters/fruity/front.svg",
  21231. extra: 1510 / 1386,
  21232. bottom: 0.04
  21233. }
  21234. },
  21235. back: {
  21236. height: math.unit(166.6, "cm"),
  21237. weight: math.unit(66.6, "lb"),
  21238. name: "Back",
  21239. image: {
  21240. source: "./media/characters/fruity/back.svg",
  21241. extra: 1563 / 1435,
  21242. bottom: 0.005
  21243. }
  21244. },
  21245. },
  21246. [
  21247. {
  21248. name: "Normal",
  21249. height: math.unit(166.6, "cm"),
  21250. default: true
  21251. },
  21252. {
  21253. name: "Demonic",
  21254. height: math.unit(166.6, "feet")
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21260. {
  21261. side: {
  21262. height: math.unit(10, "feet"),
  21263. weight: math.unit(500, "lb"),
  21264. name: "Side",
  21265. image: {
  21266. source: "./media/characters/zost/side.svg",
  21267. extra: 966 / 880,
  21268. bottom: 0.075
  21269. }
  21270. },
  21271. mawFront: {
  21272. height: math.unit(1.08, "meters"),
  21273. name: "Maw (Front)",
  21274. image: {
  21275. source: "./media/characters/zost/maw-front.svg"
  21276. }
  21277. },
  21278. mawSide: {
  21279. height: math.unit(2.66, "feet"),
  21280. name: "Maw (Side)",
  21281. image: {
  21282. source: "./media/characters/zost/maw-side.svg"
  21283. }
  21284. },
  21285. },
  21286. [
  21287. {
  21288. name: "Normal",
  21289. height: math.unit(10, "feet"),
  21290. default: true
  21291. },
  21292. ]
  21293. ))
  21294. characterMakers.push(() => makeCharacter(
  21295. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21296. {
  21297. front: {
  21298. height: math.unit(5 + 4 / 12, "feet"),
  21299. weight: math.unit(120, "lb"),
  21300. name: "Front",
  21301. image: {
  21302. source: "./media/characters/luci/front.svg",
  21303. extra: 1985 / 1884,
  21304. bottom: 0.04
  21305. }
  21306. },
  21307. back: {
  21308. height: math.unit(5 + 4 / 12, "feet"),
  21309. weight: math.unit(120, "lb"),
  21310. name: "Back",
  21311. image: {
  21312. source: "./media/characters/luci/back.svg",
  21313. extra: 1892 / 1791,
  21314. bottom: 0.002
  21315. }
  21316. },
  21317. },
  21318. [
  21319. {
  21320. name: "Normal",
  21321. height: math.unit(5 + 4 / 12, "feet"),
  21322. default: true
  21323. },
  21324. ]
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21328. {
  21329. front: {
  21330. height: math.unit(1500, "feet"),
  21331. weight: math.unit(3.8e6, "tons"),
  21332. name: "Front",
  21333. image: {
  21334. source: "./media/characters/2th/front.svg",
  21335. extra: 3489 / 3350,
  21336. bottom: 0.1
  21337. }
  21338. },
  21339. foot: {
  21340. height: math.unit(461, "feet"),
  21341. name: "Foot",
  21342. image: {
  21343. source: "./media/characters/2th/foot.svg"
  21344. }
  21345. },
  21346. },
  21347. [
  21348. {
  21349. name: "\"Micro\"",
  21350. height: math.unit(15 + 7 / 12, "feet")
  21351. },
  21352. {
  21353. name: "Normal",
  21354. height: math.unit(1500, "feet"),
  21355. default: true
  21356. },
  21357. {
  21358. name: "Macro",
  21359. height: math.unit(5000, "feet")
  21360. },
  21361. {
  21362. name: "Megamacro",
  21363. height: math.unit(15, "miles")
  21364. },
  21365. {
  21366. name: "Gigamacro",
  21367. height: math.unit(4000, "miles")
  21368. },
  21369. {
  21370. name: "Galactic",
  21371. height: math.unit(50, "AU")
  21372. },
  21373. ]
  21374. ))
  21375. characterMakers.push(() => makeCharacter(
  21376. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21377. {
  21378. front: {
  21379. height: math.unit(5 + 6 / 12, "feet"),
  21380. weight: math.unit(220, "lb"),
  21381. name: "Front",
  21382. image: {
  21383. source: "./media/characters/amethyst/front.svg",
  21384. extra: 2078 / 2040,
  21385. bottom: 0.045
  21386. }
  21387. },
  21388. back: {
  21389. height: math.unit(5 + 6 / 12, "feet"),
  21390. weight: math.unit(220, "lb"),
  21391. name: "Back",
  21392. image: {
  21393. source: "./media/characters/amethyst/back.svg",
  21394. extra: 2021 / 1989,
  21395. bottom: 0.02
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(5 + 6 / 12, "feet"),
  21403. default: true
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21409. {
  21410. front: {
  21411. height: math.unit(4 + 11 / 12, "feet"),
  21412. weight: math.unit(120, "lb"),
  21413. name: "Front",
  21414. image: {
  21415. source: "./media/characters/yumi-akiyama/front.svg",
  21416. extra: 1327 / 1235,
  21417. bottom: 0.02
  21418. }
  21419. },
  21420. back: {
  21421. height: math.unit(4 + 11 / 12, "feet"),
  21422. weight: math.unit(120, "lb"),
  21423. name: "Back",
  21424. image: {
  21425. source: "./media/characters/yumi-akiyama/back.svg",
  21426. extra: 1287 / 1245,
  21427. bottom: 0.002
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Galactic",
  21434. height: math.unit(50, "galaxies"),
  21435. default: true
  21436. },
  21437. {
  21438. name: "Universal",
  21439. height: math.unit(100, "universes")
  21440. },
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21445. {
  21446. front: {
  21447. height: math.unit(8, "feet"),
  21448. weight: math.unit(500, "lb"),
  21449. name: "Front",
  21450. image: {
  21451. source: "./media/characters/rifter-yrmori/front.svg",
  21452. extra: 1180 / 1125,
  21453. bottom: 0.02
  21454. }
  21455. },
  21456. back: {
  21457. height: math.unit(8, "feet"),
  21458. weight: math.unit(500, "lb"),
  21459. name: "Back",
  21460. image: {
  21461. source: "./media/characters/rifter-yrmori/back.svg",
  21462. extra: 1190 / 1145,
  21463. bottom: 0.001
  21464. }
  21465. },
  21466. wings: {
  21467. height: math.unit(7.75, "feet"),
  21468. weight: math.unit(500, "lb"),
  21469. name: "Wings",
  21470. image: {
  21471. source: "./media/characters/rifter-yrmori/wings.svg",
  21472. extra: 1357 / 1285
  21473. }
  21474. },
  21475. maw: {
  21476. height: math.unit(0.8, "feet"),
  21477. name: "Maw",
  21478. image: {
  21479. source: "./media/characters/rifter-yrmori/maw.svg"
  21480. }
  21481. },
  21482. mawfront: {
  21483. height: math.unit(1.45, "feet"),
  21484. name: "Maw (Front)",
  21485. image: {
  21486. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21487. }
  21488. },
  21489. },
  21490. [
  21491. {
  21492. name: "Normal",
  21493. height: math.unit(8, "feet"),
  21494. default: true
  21495. },
  21496. {
  21497. name: "Macro",
  21498. height: math.unit(42, "meters")
  21499. },
  21500. ]
  21501. ))
  21502. characterMakers.push(() => makeCharacter(
  21503. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21504. {
  21505. were: {
  21506. height: math.unit(25 + 6 / 12, "feet"),
  21507. weight: math.unit(10000, "lb"),
  21508. name: "Were",
  21509. image: {
  21510. source: "./media/characters/tahajin/were.svg",
  21511. extra: 801 / 770,
  21512. bottom: 0.042
  21513. }
  21514. },
  21515. aquatic: {
  21516. height: math.unit(6 + 4 / 12, "feet"),
  21517. weight: math.unit(160, "lb"),
  21518. name: "Aquatic",
  21519. image: {
  21520. source: "./media/characters/tahajin/aquatic.svg",
  21521. extra: 572 / 542,
  21522. bottom: 0.04
  21523. }
  21524. },
  21525. chow: {
  21526. height: math.unit(8 + 11 / 12, "feet"),
  21527. weight: math.unit(450, "lb"),
  21528. name: "Chow",
  21529. image: {
  21530. source: "./media/characters/tahajin/chow.svg",
  21531. extra: 660 / 640,
  21532. bottom: 0.015
  21533. }
  21534. },
  21535. demiNaga: {
  21536. height: math.unit(6 + 8 / 12, "feet"),
  21537. weight: math.unit(300, "lb"),
  21538. name: "Demi Naga",
  21539. image: {
  21540. source: "./media/characters/tahajin/demi-naga.svg",
  21541. extra: 643 / 615,
  21542. bottom: 0.1
  21543. }
  21544. },
  21545. data: {
  21546. height: math.unit(5, "inches"),
  21547. weight: math.unit(0.1, "lb"),
  21548. name: "Data",
  21549. image: {
  21550. source: "./media/characters/tahajin/data.svg"
  21551. }
  21552. },
  21553. fluu: {
  21554. height: math.unit(5 + 7 / 12, "feet"),
  21555. weight: math.unit(140, "lb"),
  21556. name: "Fluu",
  21557. image: {
  21558. source: "./media/characters/tahajin/fluu.svg",
  21559. extra: 628 / 592,
  21560. bottom: 0.02
  21561. }
  21562. },
  21563. starWarrior: {
  21564. height: math.unit(4 + 5 / 12, "feet"),
  21565. weight: math.unit(50, "lb"),
  21566. name: "Star Warrior",
  21567. image: {
  21568. source: "./media/characters/tahajin/star-warrior.svg"
  21569. }
  21570. },
  21571. },
  21572. [
  21573. {
  21574. name: "Normal",
  21575. height: math.unit(25 + 6 / 12, "feet"),
  21576. default: true
  21577. },
  21578. ]
  21579. ))
  21580. characterMakers.push(() => makeCharacter(
  21581. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21582. {
  21583. front: {
  21584. height: math.unit(8, "feet"),
  21585. weight: math.unit(350, "lb"),
  21586. name: "Front",
  21587. image: {
  21588. source: "./media/characters/gabira/front.svg",
  21589. extra: 608 / 580,
  21590. bottom: 0.03
  21591. }
  21592. },
  21593. back: {
  21594. height: math.unit(8, "feet"),
  21595. weight: math.unit(350, "lb"),
  21596. name: "Back",
  21597. image: {
  21598. source: "./media/characters/gabira/back.svg",
  21599. extra: 608 / 580,
  21600. bottom: 0.03
  21601. }
  21602. },
  21603. },
  21604. [
  21605. {
  21606. name: "Normal",
  21607. height: math.unit(8, "feet"),
  21608. default: true
  21609. },
  21610. ]
  21611. ))
  21612. characterMakers.push(() => makeCharacter(
  21613. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21614. {
  21615. front: {
  21616. height: math.unit(5 + 3 / 12, "feet"),
  21617. weight: math.unit(137, "lb"),
  21618. name: "Front",
  21619. image: {
  21620. source: "./media/characters/sasha-katraine/front.svg",
  21621. bottom: 0.045
  21622. }
  21623. },
  21624. },
  21625. [
  21626. {
  21627. name: "Micro",
  21628. height: math.unit(5, "inches")
  21629. },
  21630. {
  21631. name: "Normal",
  21632. height: math.unit(5 + 3 / 12, "feet"),
  21633. default: true
  21634. },
  21635. ]
  21636. ))
  21637. characterMakers.push(() => makeCharacter(
  21638. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21639. {
  21640. side: {
  21641. height: math.unit(4, "inches"),
  21642. weight: math.unit(200, "grams"),
  21643. name: "Side",
  21644. image: {
  21645. source: "./media/characters/der/side.svg",
  21646. extra: 719 / 400,
  21647. bottom: 30.6 / 749.9187
  21648. }
  21649. },
  21650. },
  21651. [
  21652. {
  21653. name: "Micro",
  21654. height: math.unit(4, "inches"),
  21655. default: true
  21656. },
  21657. ]
  21658. ))
  21659. characterMakers.push(() => makeCharacter(
  21660. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21661. {
  21662. side: {
  21663. height: math.unit(30, "meters"),
  21664. weight: math.unit(700, "tonnes"),
  21665. name: "Side",
  21666. image: {
  21667. source: "./media/characters/fixerdragon/side.svg",
  21668. extra: (1293.0514 - 116.03) / 1106.86,
  21669. bottom: 116.03 / 1293.0514
  21670. }
  21671. },
  21672. },
  21673. [
  21674. {
  21675. name: "Planck",
  21676. height: math.unit(1.6e-35, "meters")
  21677. },
  21678. {
  21679. name: "Micro",
  21680. height: math.unit(0.4, "meters")
  21681. },
  21682. {
  21683. name: "Normal",
  21684. height: math.unit(30, "meters"),
  21685. default: true
  21686. },
  21687. {
  21688. name: "Megamacro",
  21689. height: math.unit(1.2, "megameters")
  21690. },
  21691. {
  21692. name: "Teramacro",
  21693. height: math.unit(130, "terameters")
  21694. },
  21695. {
  21696. name: "Yottamacro",
  21697. height: math.unit(6200, "yottameters")
  21698. },
  21699. ]
  21700. ));
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21703. {
  21704. front: {
  21705. height: math.unit(8, "feet"),
  21706. weight: math.unit(250, "lb"),
  21707. name: "Front",
  21708. image: {
  21709. source: "./media/characters/kite/front.svg",
  21710. extra: 2796 / 2659,
  21711. bottom: 0.002
  21712. }
  21713. },
  21714. },
  21715. [
  21716. {
  21717. name: "Normal",
  21718. height: math.unit(8, "feet"),
  21719. default: true
  21720. },
  21721. {
  21722. name: "Macro",
  21723. height: math.unit(360, "feet")
  21724. },
  21725. {
  21726. name: "Megamacro",
  21727. height: math.unit(1500, "feet")
  21728. },
  21729. ]
  21730. ))
  21731. characterMakers.push(() => makeCharacter(
  21732. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21733. {
  21734. front: {
  21735. height: math.unit(5 + 11/12, "feet"),
  21736. weight: math.unit(170, "lb"),
  21737. name: "Front",
  21738. image: {
  21739. source: "./media/characters/poojawa-vynar/front.svg",
  21740. extra: 1735/1585,
  21741. bottom: 96/1831
  21742. }
  21743. },
  21744. back: {
  21745. height: math.unit(5 + 11/12, "feet"),
  21746. weight: math.unit(170, "lb"),
  21747. name: "Back",
  21748. image: {
  21749. source: "./media/characters/poojawa-vynar/back.svg",
  21750. extra: 1749/1607,
  21751. bottom: 28/1777
  21752. }
  21753. },
  21754. male: {
  21755. height: math.unit(5 + 11/12, "feet"),
  21756. weight: math.unit(170, "lb"),
  21757. name: "Male",
  21758. image: {
  21759. source: "./media/characters/poojawa-vynar/male.svg",
  21760. extra: 1855/1713,
  21761. bottom: 63/1918
  21762. }
  21763. },
  21764. taur: {
  21765. height: math.unit(5 + 11/12, "feet"),
  21766. weight: math.unit(170, "lb"),
  21767. name: "Taur",
  21768. image: {
  21769. source: "./media/characters/poojawa-vynar/taur.svg",
  21770. extra: 1151/1059,
  21771. bottom: 356/1507
  21772. }
  21773. },
  21774. frontDressed: {
  21775. height: math.unit(5 + 11/12, "feet"),
  21776. weight: math.unit(170, "lb"),
  21777. name: "Front (Dressed)",
  21778. image: {
  21779. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21780. extra: 1735/1585,
  21781. bottom: 96/1831
  21782. }
  21783. },
  21784. backDressed: {
  21785. height: math.unit(5 + 11/12, "feet"),
  21786. weight: math.unit(170, "lb"),
  21787. name: "Back (Dressed)",
  21788. image: {
  21789. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21790. extra: 1749/1607,
  21791. bottom: 28/1777
  21792. }
  21793. },
  21794. maleDressed: {
  21795. height: math.unit(5 + 11/12, "feet"),
  21796. weight: math.unit(170, "lb"),
  21797. name: "Male (Dressed)",
  21798. image: {
  21799. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21800. extra: 1855/1713,
  21801. bottom: 63/1918
  21802. }
  21803. },
  21804. taurDressed: {
  21805. height: math.unit(5 + 11/12, "feet"),
  21806. weight: math.unit(170, "lb"),
  21807. name: "Taur (Dressed)",
  21808. image: {
  21809. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21810. extra: 1151/1059,
  21811. bottom: 356/1507
  21812. }
  21813. },
  21814. maw: {
  21815. height: math.unit(1.46, "feet"),
  21816. name: "Maw",
  21817. image: {
  21818. source: "./media/characters/poojawa-vynar/maw.svg"
  21819. }
  21820. },
  21821. head: {
  21822. height: math.unit(2.34, "feet"),
  21823. name: "Head",
  21824. image: {
  21825. source: "./media/characters/poojawa-vynar/head.svg"
  21826. }
  21827. },
  21828. paw: {
  21829. height: math.unit(1.61, "feet"),
  21830. name: "Paw",
  21831. image: {
  21832. source: "./media/characters/poojawa-vynar/paw.svg"
  21833. }
  21834. },
  21835. pawToering: {
  21836. height: math.unit(1.72, "feet"),
  21837. name: "Paw (Toering)",
  21838. image: {
  21839. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21840. }
  21841. },
  21842. toering: {
  21843. height: math.unit(2.9, "inches"),
  21844. name: "Toering",
  21845. image: {
  21846. source: "./media/characters/poojawa-vynar/toering.svg"
  21847. }
  21848. },
  21849. shaft: {
  21850. height: math.unit(0.625, "feet"),
  21851. name: "Shaft",
  21852. image: {
  21853. source: "./media/characters/poojawa-vynar/shaft.svg"
  21854. }
  21855. },
  21856. spade: {
  21857. height: math.unit(0.42, "feet"),
  21858. name: "Spade",
  21859. image: {
  21860. source: "./media/characters/poojawa-vynar/spade.svg"
  21861. }
  21862. },
  21863. },
  21864. [
  21865. {
  21866. name: "Shortstack",
  21867. height: math.unit(4, "feet")
  21868. },
  21869. {
  21870. name: "Normal",
  21871. height: math.unit(5 + 11 / 12, "feet"),
  21872. default: true
  21873. },
  21874. {
  21875. name: "Tauric",
  21876. height: math.unit(4, "meters")
  21877. },
  21878. ]
  21879. ))
  21880. characterMakers.push(() => makeCharacter(
  21881. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21882. {
  21883. front: {
  21884. height: math.unit(293, "meters"),
  21885. weight: math.unit(70400, "tons"),
  21886. name: "Front",
  21887. image: {
  21888. source: "./media/characters/violette/front.svg",
  21889. extra: 1227 / 1180,
  21890. bottom: 0.005
  21891. }
  21892. },
  21893. back: {
  21894. height: math.unit(293, "meters"),
  21895. weight: math.unit(70400, "tons"),
  21896. name: "Back",
  21897. image: {
  21898. source: "./media/characters/violette/back.svg",
  21899. extra: 1227 / 1180,
  21900. bottom: 0.005
  21901. }
  21902. },
  21903. },
  21904. [
  21905. {
  21906. name: "Macro",
  21907. height: math.unit(293, "meters"),
  21908. default: true
  21909. },
  21910. ]
  21911. ))
  21912. characterMakers.push(() => makeCharacter(
  21913. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21914. {
  21915. front: {
  21916. height: math.unit(1050, "feet"),
  21917. weight: math.unit(200000, "tons"),
  21918. name: "Front",
  21919. image: {
  21920. source: "./media/characters/alessandra/front.svg",
  21921. extra: 960 / 912,
  21922. bottom: 0.06
  21923. }
  21924. },
  21925. },
  21926. [
  21927. {
  21928. name: "Macro",
  21929. height: math.unit(1050, "feet")
  21930. },
  21931. {
  21932. name: "Macro+",
  21933. height: math.unit(900, "meters"),
  21934. default: true
  21935. },
  21936. ]
  21937. ))
  21938. characterMakers.push(() => makeCharacter(
  21939. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21940. {
  21941. front: {
  21942. height: math.unit(5, "feet"),
  21943. weight: math.unit(187, "lb"),
  21944. name: "Front",
  21945. image: {
  21946. source: "./media/characters/person/front.svg",
  21947. extra: 3087 / 2945,
  21948. bottom: 91 / 3181
  21949. }
  21950. },
  21951. },
  21952. [
  21953. {
  21954. name: "Micro",
  21955. height: math.unit(3, "inches")
  21956. },
  21957. {
  21958. name: "Normal",
  21959. height: math.unit(5, "feet"),
  21960. default: true
  21961. },
  21962. {
  21963. name: "Macro",
  21964. height: math.unit(90, "feet")
  21965. },
  21966. {
  21967. name: "Max Size",
  21968. height: math.unit(280, "feet")
  21969. },
  21970. ]
  21971. ))
  21972. characterMakers.push(() => makeCharacter(
  21973. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21974. {
  21975. front: {
  21976. height: math.unit(4.5, "meters"),
  21977. weight: math.unit(3200, "lb"),
  21978. name: "Front",
  21979. image: {
  21980. source: "./media/characters/ty/front.svg",
  21981. extra: 1038 / 960,
  21982. bottom: 31.156 / 1068
  21983. }
  21984. },
  21985. back: {
  21986. height: math.unit(4.5, "meters"),
  21987. weight: math.unit(3200, "lb"),
  21988. name: "Back",
  21989. image: {
  21990. source: "./media/characters/ty/back.svg",
  21991. extra: 1044 / 966,
  21992. bottom: 7.48 / 1049
  21993. }
  21994. },
  21995. },
  21996. [
  21997. {
  21998. name: "Normal",
  21999. height: math.unit(4.5, "meters"),
  22000. default: true
  22001. },
  22002. ]
  22003. ))
  22004. characterMakers.push(() => makeCharacter(
  22005. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22006. {
  22007. front: {
  22008. height: math.unit(5 + 4 / 12, "feet"),
  22009. weight: math.unit(115, "lb"),
  22010. name: "Front",
  22011. image: {
  22012. source: "./media/characters/rocky/front.svg",
  22013. extra: 1012 / 975,
  22014. bottom: 54 / 1066
  22015. }
  22016. },
  22017. },
  22018. [
  22019. {
  22020. name: "Normal",
  22021. height: math.unit(5 + 4 / 12, "feet"),
  22022. default: true
  22023. },
  22024. ]
  22025. ))
  22026. characterMakers.push(() => makeCharacter(
  22027. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22028. {
  22029. upright: {
  22030. height: math.unit(6, "meters"),
  22031. weight: math.unit(4000, "kg"),
  22032. name: "Upright",
  22033. image: {
  22034. source: "./media/characters/ruin/upright.svg",
  22035. extra: 668 / 661,
  22036. bottom: 42 / 799.8396
  22037. }
  22038. },
  22039. },
  22040. [
  22041. {
  22042. name: "Normal",
  22043. height: math.unit(6, "meters"),
  22044. default: true
  22045. },
  22046. ]
  22047. ))
  22048. characterMakers.push(() => makeCharacter(
  22049. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22050. {
  22051. front: {
  22052. height: math.unit(5, "feet"),
  22053. weight: math.unit(106, "lb"),
  22054. name: "Front",
  22055. image: {
  22056. source: "./media/characters/robin/front.svg",
  22057. extra: 862 / 799,
  22058. bottom: 42.4 / 914.8856
  22059. }
  22060. },
  22061. },
  22062. [
  22063. {
  22064. name: "Normal",
  22065. height: math.unit(5, "feet"),
  22066. default: true
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22072. {
  22073. side: {
  22074. height: math.unit(3, "feet"),
  22075. weight: math.unit(225, "lb"),
  22076. name: "Side",
  22077. image: {
  22078. source: "./media/characters/saian/side.svg",
  22079. extra: 566 / 356,
  22080. bottom: 79.7 / 643
  22081. }
  22082. },
  22083. maw: {
  22084. height: math.unit(2.85, "feet"),
  22085. name: "Maw",
  22086. image: {
  22087. source: "./media/characters/saian/maw.svg"
  22088. }
  22089. },
  22090. },
  22091. [
  22092. {
  22093. name: "Normal",
  22094. height: math.unit(3, "feet"),
  22095. default: true
  22096. },
  22097. ]
  22098. ))
  22099. characterMakers.push(() => makeCharacter(
  22100. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22101. {
  22102. side: {
  22103. height: math.unit(8, "feet"),
  22104. weight: math.unit(300, "lb"),
  22105. name: "Side",
  22106. image: {
  22107. source: "./media/characters/equus-silvermane/side.svg",
  22108. extra: 2176 / 2050,
  22109. bottom: 65.7 / 2245
  22110. }
  22111. },
  22112. front: {
  22113. height: math.unit(8, "feet"),
  22114. weight: math.unit(300, "lb"),
  22115. name: "Front",
  22116. image: {
  22117. source: "./media/characters/equus-silvermane/front.svg",
  22118. extra: 4633 / 4400,
  22119. bottom: 71.3 / 4706.915
  22120. }
  22121. },
  22122. sideStepping: {
  22123. height: math.unit(8, "feet"),
  22124. weight: math.unit(300, "lb"),
  22125. name: "Side (Stepping)",
  22126. image: {
  22127. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22128. extra: 1968 / 1860,
  22129. bottom: 16.4 / 1989
  22130. }
  22131. },
  22132. },
  22133. [
  22134. {
  22135. name: "Normal",
  22136. height: math.unit(8, "feet")
  22137. },
  22138. {
  22139. name: "Minimacro",
  22140. height: math.unit(75, "feet"),
  22141. default: true
  22142. },
  22143. {
  22144. name: "Macro",
  22145. height: math.unit(150, "feet")
  22146. },
  22147. {
  22148. name: "Macro+",
  22149. height: math.unit(1000, "feet")
  22150. },
  22151. {
  22152. name: "Megamacro",
  22153. height: math.unit(1, "mile")
  22154. },
  22155. ]
  22156. ))
  22157. characterMakers.push(() => makeCharacter(
  22158. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22159. {
  22160. side: {
  22161. height: math.unit(20, "feet"),
  22162. weight: math.unit(30000, "kg"),
  22163. name: "Side",
  22164. image: {
  22165. source: "./media/characters/windar/side.svg",
  22166. extra: 1491 / 1248,
  22167. bottom: 82.56 / 1568
  22168. }
  22169. },
  22170. },
  22171. [
  22172. {
  22173. name: "Normal",
  22174. height: math.unit(20, "feet"),
  22175. default: true
  22176. },
  22177. ]
  22178. ))
  22179. characterMakers.push(() => makeCharacter(
  22180. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22181. {
  22182. side: {
  22183. height: math.unit(15.66, "feet"),
  22184. weight: math.unit(150, "lb"),
  22185. name: "Side",
  22186. image: {
  22187. source: "./media/characters/melody/side.svg",
  22188. extra: 1097 / 944,
  22189. bottom: 11.8 / 1109
  22190. }
  22191. },
  22192. sideOutfit: {
  22193. height: math.unit(15.66, "feet"),
  22194. weight: math.unit(150, "lb"),
  22195. name: "Side (Outfit)",
  22196. image: {
  22197. source: "./media/characters/melody/side-outfit.svg",
  22198. extra: 1097 / 944,
  22199. bottom: 11.8 / 1109
  22200. }
  22201. },
  22202. },
  22203. [
  22204. {
  22205. name: "Normal",
  22206. height: math.unit(15.66, "feet"),
  22207. default: true
  22208. },
  22209. ]
  22210. ))
  22211. characterMakers.push(() => makeCharacter(
  22212. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22213. {
  22214. front: {
  22215. height: math.unit(8, "feet"),
  22216. weight: math.unit(325, "lb"),
  22217. name: "Front",
  22218. image: {
  22219. source: "./media/characters/windera/front.svg",
  22220. extra: 3180 / 2845,
  22221. bottom: 178 / 3365
  22222. }
  22223. },
  22224. },
  22225. [
  22226. {
  22227. name: "Normal",
  22228. height: math.unit(8, "feet"),
  22229. default: true
  22230. },
  22231. ]
  22232. ))
  22233. characterMakers.push(() => makeCharacter(
  22234. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22235. {
  22236. front: {
  22237. height: math.unit(28.75, "feet"),
  22238. weight: math.unit(2000, "kg"),
  22239. name: "Front",
  22240. image: {
  22241. source: "./media/characters/sonear/front.svg",
  22242. extra: 1041.1 / 964.9,
  22243. bottom: 53.7 / 1096.6
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(28.75, "feet"),
  22251. default: true
  22252. },
  22253. ]
  22254. ))
  22255. characterMakers.push(() => makeCharacter(
  22256. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22257. {
  22258. side: {
  22259. height: math.unit(25.5, "feet"),
  22260. weight: math.unit(23000, "kg"),
  22261. name: "Side",
  22262. image: {
  22263. source: "./media/characters/kanara/side.svg"
  22264. }
  22265. },
  22266. },
  22267. [
  22268. {
  22269. name: "Normal",
  22270. height: math.unit(25.5, "feet"),
  22271. default: true
  22272. },
  22273. ]
  22274. ))
  22275. characterMakers.push(() => makeCharacter(
  22276. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22277. {
  22278. side: {
  22279. height: math.unit(10, "feet"),
  22280. weight: math.unit(1000, "kg"),
  22281. name: "Side",
  22282. image: {
  22283. source: "./media/characters/ereus/side.svg",
  22284. extra: 1157 / 959,
  22285. bottom: 153 / 1312.5
  22286. }
  22287. },
  22288. },
  22289. [
  22290. {
  22291. name: "Normal",
  22292. height: math.unit(10, "feet"),
  22293. default: true
  22294. },
  22295. ]
  22296. ))
  22297. characterMakers.push(() => makeCharacter(
  22298. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22299. {
  22300. side: {
  22301. height: math.unit(4.5, "feet"),
  22302. weight: math.unit(500, "lb"),
  22303. name: "Side",
  22304. image: {
  22305. source: "./media/characters/e-ter/side.svg",
  22306. extra: 1550 / 1248,
  22307. bottom: 146 / 1694
  22308. }
  22309. },
  22310. },
  22311. [
  22312. {
  22313. name: "Normal",
  22314. height: math.unit(4.5, "feet"),
  22315. default: true
  22316. },
  22317. ]
  22318. ))
  22319. characterMakers.push(() => makeCharacter(
  22320. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22321. {
  22322. side: {
  22323. height: math.unit(9.7, "feet"),
  22324. weight: math.unit(4000, "kg"),
  22325. name: "Side",
  22326. image: {
  22327. source: "./media/characters/yamie/side.svg"
  22328. }
  22329. },
  22330. },
  22331. [
  22332. {
  22333. name: "Normal",
  22334. height: math.unit(9.7, "feet"),
  22335. default: true
  22336. },
  22337. ]
  22338. ))
  22339. characterMakers.push(() => makeCharacter(
  22340. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22341. {
  22342. front: {
  22343. height: math.unit(50, "feet"),
  22344. weight: math.unit(50000, "kg"),
  22345. name: "Front",
  22346. image: {
  22347. source: "./media/characters/anders/front.svg",
  22348. extra: 570 / 539,
  22349. bottom: 14.7 / 586.7
  22350. }
  22351. },
  22352. },
  22353. [
  22354. {
  22355. name: "Large",
  22356. height: math.unit(50, "feet")
  22357. },
  22358. {
  22359. name: "Macro",
  22360. height: math.unit(2000, "feet"),
  22361. default: true
  22362. },
  22363. {
  22364. name: "Megamacro",
  22365. height: math.unit(12, "miles")
  22366. },
  22367. ]
  22368. ))
  22369. characterMakers.push(() => makeCharacter(
  22370. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22371. {
  22372. front: {
  22373. height: math.unit(7 + 2 / 12, "feet"),
  22374. weight: math.unit(300, "lb"),
  22375. name: "Front",
  22376. image: {
  22377. source: "./media/characters/reban/front.svg",
  22378. extra: 516 / 487,
  22379. bottom: 42.82 / 558.356
  22380. }
  22381. },
  22382. dick: {
  22383. height: math.unit(7 / 5, "feet"),
  22384. name: "Dick",
  22385. image: {
  22386. source: "./media/characters/reban/dick.svg"
  22387. }
  22388. },
  22389. },
  22390. [
  22391. {
  22392. name: "Natural Height",
  22393. height: math.unit(7 + 2 / 12, "feet")
  22394. },
  22395. {
  22396. name: "Macro",
  22397. height: math.unit(500, "feet"),
  22398. default: true
  22399. },
  22400. {
  22401. name: "Canon Height",
  22402. height: math.unit(50, "AU")
  22403. },
  22404. ]
  22405. ))
  22406. characterMakers.push(() => makeCharacter(
  22407. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22408. {
  22409. front: {
  22410. height: math.unit(6, "feet"),
  22411. weight: math.unit(150, "lb"),
  22412. name: "Front",
  22413. image: {
  22414. source: "./media/characters/terrance-keayes/front.svg",
  22415. extra: 1.005,
  22416. bottom: 151 / 1615
  22417. }
  22418. },
  22419. side: {
  22420. height: math.unit(6, "feet"),
  22421. weight: math.unit(150, "lb"),
  22422. name: "Side",
  22423. image: {
  22424. source: "./media/characters/terrance-keayes/side.svg",
  22425. extra: 1.005,
  22426. bottom: 129.4 / 1544
  22427. }
  22428. },
  22429. back: {
  22430. height: math.unit(6, "feet"),
  22431. weight: math.unit(150, "lb"),
  22432. name: "Back",
  22433. image: {
  22434. source: "./media/characters/terrance-keayes/back.svg",
  22435. extra: 1.005,
  22436. bottom: 58.4 / 1557.3
  22437. }
  22438. },
  22439. dick: {
  22440. height: math.unit(6 * 0.208, "feet"),
  22441. name: "Dick",
  22442. image: {
  22443. source: "./media/characters/terrance-keayes/dick.svg"
  22444. }
  22445. },
  22446. },
  22447. [
  22448. {
  22449. name: "Canon Height",
  22450. height: math.unit(35, "miles"),
  22451. default: true
  22452. },
  22453. ]
  22454. ))
  22455. characterMakers.push(() => makeCharacter(
  22456. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22457. {
  22458. front: {
  22459. height: math.unit(6, "feet"),
  22460. weight: math.unit(150, "lb"),
  22461. name: "Front",
  22462. image: {
  22463. source: "./media/characters/ofelia/front.svg",
  22464. extra: 546 / 541,
  22465. bottom: 39 / 583
  22466. }
  22467. },
  22468. back: {
  22469. height: math.unit(6, "feet"),
  22470. weight: math.unit(150, "lb"),
  22471. name: "Back",
  22472. image: {
  22473. source: "./media/characters/ofelia/back.svg",
  22474. extra: 564 / 559.5,
  22475. bottom: 8.69 / 573.02
  22476. }
  22477. },
  22478. maw: {
  22479. height: math.unit(1, "feet"),
  22480. name: "Maw",
  22481. image: {
  22482. source: "./media/characters/ofelia/maw.svg"
  22483. }
  22484. },
  22485. foot: {
  22486. height: math.unit(1.949, "feet"),
  22487. name: "Foot",
  22488. image: {
  22489. source: "./media/characters/ofelia/foot.svg"
  22490. }
  22491. },
  22492. },
  22493. [
  22494. {
  22495. name: "Canon Height",
  22496. height: math.unit(2000, "miles"),
  22497. default: true
  22498. },
  22499. ]
  22500. ))
  22501. characterMakers.push(() => makeCharacter(
  22502. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22503. {
  22504. front: {
  22505. height: math.unit(6, "feet"),
  22506. weight: math.unit(150, "lb"),
  22507. name: "Front",
  22508. image: {
  22509. source: "./media/characters/samuel/front.svg",
  22510. extra: 265 / 258,
  22511. bottom: 2 / 266.1566
  22512. }
  22513. },
  22514. },
  22515. [
  22516. {
  22517. name: "Macro",
  22518. height: math.unit(100, "feet"),
  22519. default: true
  22520. },
  22521. {
  22522. name: "Full Size",
  22523. height: math.unit(1000, "miles")
  22524. },
  22525. ]
  22526. ))
  22527. characterMakers.push(() => makeCharacter(
  22528. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22529. {
  22530. front: {
  22531. height: math.unit(6, "feet"),
  22532. weight: math.unit(300, "lb"),
  22533. name: "Front",
  22534. image: {
  22535. source: "./media/characters/beishir-kiel/front.svg",
  22536. extra: 569 / 547,
  22537. bottom: 41.9 / 609
  22538. }
  22539. },
  22540. maw: {
  22541. height: math.unit(6 * 0.202, "feet"),
  22542. name: "Maw",
  22543. image: {
  22544. source: "./media/characters/beishir-kiel/maw.svg"
  22545. }
  22546. },
  22547. },
  22548. [
  22549. {
  22550. name: "Macro",
  22551. height: math.unit(300, "feet"),
  22552. default: true
  22553. },
  22554. ]
  22555. ))
  22556. characterMakers.push(() => makeCharacter(
  22557. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22558. {
  22559. front: {
  22560. height: math.unit(5 + 7/12, "feet"),
  22561. weight: math.unit(120, "lb"),
  22562. name: "Front",
  22563. image: {
  22564. source: "./media/characters/logan-grey/front.svg",
  22565. extra: 1836/1738,
  22566. bottom: 108/1944
  22567. }
  22568. },
  22569. back: {
  22570. height: math.unit(5 + 7/12, "feet"),
  22571. weight: math.unit(120, "lb"),
  22572. name: "Back",
  22573. image: {
  22574. source: "./media/characters/logan-grey/back.svg",
  22575. extra: 1880/1794,
  22576. bottom: 24/1904
  22577. }
  22578. },
  22579. frontSfw: {
  22580. height: math.unit(5 + 7/12, "feet"),
  22581. weight: math.unit(120, "lb"),
  22582. name: "Front (SFW)",
  22583. image: {
  22584. source: "./media/characters/logan-grey/front-sfw.svg",
  22585. extra: 1836/1738,
  22586. bottom: 108/1944
  22587. }
  22588. },
  22589. backSfw: {
  22590. height: math.unit(5 + 7/12, "feet"),
  22591. weight: math.unit(120, "lb"),
  22592. name: "Back (SFW)",
  22593. image: {
  22594. source: "./media/characters/logan-grey/back-sfw.svg",
  22595. extra: 1880/1794,
  22596. bottom: 24/1904
  22597. }
  22598. },
  22599. hands: {
  22600. height: math.unit(0.84, "feet"),
  22601. name: "Hands",
  22602. image: {
  22603. source: "./media/characters/logan-grey/hands.svg"
  22604. }
  22605. },
  22606. paws: {
  22607. height: math.unit(0.72, "feet"),
  22608. name: "Paws",
  22609. image: {
  22610. source: "./media/characters/logan-grey/paws.svg"
  22611. }
  22612. },
  22613. cock: {
  22614. height: math.unit(1.45, "feet"),
  22615. name: "Cock",
  22616. image: {
  22617. source: "./media/characters/logan-grey/cock.svg"
  22618. }
  22619. },
  22620. cockAlt: {
  22621. height: math.unit(1.437, "feet"),
  22622. name: "Cock (alt)",
  22623. image: {
  22624. source: "./media/characters/logan-grey/cock-alt.svg"
  22625. }
  22626. },
  22627. },
  22628. [
  22629. {
  22630. name: "Normal",
  22631. height: math.unit(5 + 8 / 12, "feet")
  22632. },
  22633. {
  22634. name: "The 500 Foot Femboy",
  22635. height: math.unit(500, "feet"),
  22636. default: true
  22637. },
  22638. {
  22639. name: "Megmacro",
  22640. height: math.unit(20, "miles")
  22641. },
  22642. ]
  22643. ))
  22644. characterMakers.push(() => makeCharacter(
  22645. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22646. {
  22647. front: {
  22648. height: math.unit(8 + 2 / 12, "feet"),
  22649. weight: math.unit(275, "lb"),
  22650. name: "Front",
  22651. image: {
  22652. source: "./media/characters/draganta/front.svg",
  22653. extra: 1177 / 1135,
  22654. bottom: 33.46 / 1212.1
  22655. }
  22656. },
  22657. },
  22658. [
  22659. {
  22660. name: "Normal",
  22661. height: math.unit(8 + 6 / 12, "feet"),
  22662. default: true
  22663. },
  22664. {
  22665. name: "Macro",
  22666. height: math.unit(150, "feet")
  22667. },
  22668. {
  22669. name: "Megamacro",
  22670. height: math.unit(1000, "miles")
  22671. },
  22672. ]
  22673. ))
  22674. characterMakers.push(() => makeCharacter(
  22675. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22676. {
  22677. front: {
  22678. height: math.unit(1.72, "m"),
  22679. weight: math.unit(80, "lb"),
  22680. name: "Front",
  22681. image: {
  22682. source: "./media/characters/voski/front.svg",
  22683. extra: 2076.22 / 2022.4,
  22684. bottom: 102.7 / 2177.3866
  22685. }
  22686. },
  22687. frontNsfw: {
  22688. height: math.unit(1.72, "m"),
  22689. weight: math.unit(80, "lb"),
  22690. name: "Front (NSFW)",
  22691. image: {
  22692. source: "./media/characters/voski/front-nsfw.svg",
  22693. extra: 2076.22 / 2022.4,
  22694. bottom: 102.7 / 2177.3866
  22695. }
  22696. },
  22697. back: {
  22698. height: math.unit(1.72, "m"),
  22699. weight: math.unit(80, "lb"),
  22700. name: "Back",
  22701. image: {
  22702. source: "./media/characters/voski/back.svg",
  22703. extra: 2104 / 2051,
  22704. bottom: 10.45 / 2113.63
  22705. }
  22706. },
  22707. },
  22708. [
  22709. {
  22710. name: "Normal",
  22711. height: math.unit(1.72, "m")
  22712. },
  22713. {
  22714. name: "Macro",
  22715. height: math.unit(55, "m"),
  22716. default: true
  22717. },
  22718. {
  22719. name: "Macro+",
  22720. height: math.unit(300, "m")
  22721. },
  22722. {
  22723. name: "Macro++",
  22724. height: math.unit(700, "m")
  22725. },
  22726. {
  22727. name: "Macro+++",
  22728. height: math.unit(4500, "m")
  22729. },
  22730. {
  22731. name: "Macro++++",
  22732. height: math.unit(45, "km")
  22733. },
  22734. {
  22735. name: "Macro+++++",
  22736. height: math.unit(1220, "km")
  22737. },
  22738. ]
  22739. ))
  22740. characterMakers.push(() => makeCharacter(
  22741. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22742. {
  22743. front: {
  22744. height: math.unit(2.3, "m"),
  22745. weight: math.unit(304, "kg"),
  22746. name: "Front",
  22747. image: {
  22748. source: "./media/characters/icowom-lee/front.svg",
  22749. extra: 985 / 955,
  22750. bottom: 25.4 / 1012
  22751. }
  22752. },
  22753. fronttentacles: {
  22754. height: math.unit(2.3, "m"),
  22755. weight: math.unit(304, "kg"),
  22756. name: "Front-tentacles",
  22757. image: {
  22758. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22759. extra: 985 / 955,
  22760. bottom: 25.4 / 1012
  22761. }
  22762. },
  22763. back: {
  22764. height: math.unit(2.3, "m"),
  22765. weight: math.unit(304, "kg"),
  22766. name: "Back",
  22767. image: {
  22768. source: "./media/characters/icowom-lee/back.svg",
  22769. extra: 975 / 954,
  22770. bottom: 9.5 / 985
  22771. }
  22772. },
  22773. backtentacles: {
  22774. height: math.unit(2.3, "m"),
  22775. weight: math.unit(304, "kg"),
  22776. name: "Back-tentacles",
  22777. image: {
  22778. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22779. extra: 975 / 954,
  22780. bottom: 9.5 / 985
  22781. }
  22782. },
  22783. frontDressed: {
  22784. height: math.unit(2.3, "m"),
  22785. weight: math.unit(304, "kg"),
  22786. name: "Front (Dressed)",
  22787. image: {
  22788. source: "./media/characters/icowom-lee/front-dressed.svg",
  22789. extra: 3076 / 2933,
  22790. bottom: 51.4 / 3125.1889
  22791. }
  22792. },
  22793. rump: {
  22794. height: math.unit(0.776, "meters"),
  22795. name: "Rump",
  22796. image: {
  22797. source: "./media/characters/icowom-lee/rump.svg"
  22798. }
  22799. },
  22800. genitals: {
  22801. height: math.unit(0.78, "meters"),
  22802. name: "Genitals",
  22803. image: {
  22804. source: "./media/characters/icowom-lee/genitals.svg"
  22805. }
  22806. },
  22807. },
  22808. [
  22809. {
  22810. name: "Normal",
  22811. height: math.unit(2.3, "meters"),
  22812. default: true
  22813. },
  22814. {
  22815. name: "Macro",
  22816. height: math.unit(94, "meters"),
  22817. default: true
  22818. },
  22819. ]
  22820. ))
  22821. characterMakers.push(() => makeCharacter(
  22822. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22823. {
  22824. front: {
  22825. height: math.unit(22, "meters"),
  22826. weight: math.unit(21000, "kg"),
  22827. name: "Front",
  22828. image: {
  22829. source: "./media/characters/shock-diamond/front.svg",
  22830. extra: 2204 / 2053,
  22831. bottom: 65 / 2239.47
  22832. }
  22833. },
  22834. frontNude: {
  22835. height: math.unit(22, "meters"),
  22836. weight: math.unit(21000, "kg"),
  22837. name: "Front (Nude)",
  22838. image: {
  22839. source: "./media/characters/shock-diamond/front-nude.svg",
  22840. extra: 2514 / 2285,
  22841. bottom: 13 / 2527.56
  22842. }
  22843. },
  22844. },
  22845. [
  22846. {
  22847. name: "Normal",
  22848. height: math.unit(3, "meters")
  22849. },
  22850. {
  22851. name: "Macro",
  22852. height: math.unit(22, "meters"),
  22853. default: true
  22854. },
  22855. ]
  22856. ))
  22857. characterMakers.push(() => makeCharacter(
  22858. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22859. {
  22860. front: {
  22861. height: math.unit(5 + 4 / 12, "feet"),
  22862. weight: math.unit(120, "lb"),
  22863. name: "Front",
  22864. image: {
  22865. source: "./media/characters/rory/front.svg",
  22866. extra: 1318/1241,
  22867. bottom: 42/1360
  22868. }
  22869. },
  22870. back: {
  22871. height: math.unit(5 + 4 / 12, "feet"),
  22872. weight: math.unit(120, "lb"),
  22873. name: "Back",
  22874. image: {
  22875. source: "./media/characters/rory/back.svg",
  22876. extra: 1318/1241,
  22877. bottom: 42/1360
  22878. }
  22879. },
  22880. butt: {
  22881. height: math.unit(1.74, "feet"),
  22882. name: "Butt",
  22883. image: {
  22884. source: "./media/characters/rory/butt.svg"
  22885. }
  22886. },
  22887. dick: {
  22888. height: math.unit(1.02, "feet"),
  22889. name: "Dick",
  22890. image: {
  22891. source: "./media/characters/rory/dick.svg"
  22892. }
  22893. },
  22894. paws: {
  22895. height: math.unit(1, "feet"),
  22896. name: "Paws",
  22897. image: {
  22898. source: "./media/characters/rory/paws.svg"
  22899. }
  22900. },
  22901. frontAlt: {
  22902. height: math.unit(5 + 4 / 12, "feet"),
  22903. weight: math.unit(120, "lb"),
  22904. name: "Front (Alt)",
  22905. image: {
  22906. source: "./media/characters/rory/front-alt.svg",
  22907. extra: 589 / 556,
  22908. bottom: 45.7 / 635.76
  22909. }
  22910. },
  22911. frontAltNude: {
  22912. height: math.unit(5 + 4 / 12, "feet"),
  22913. weight: math.unit(120, "lb"),
  22914. name: "Front (Alt, Nude)",
  22915. image: {
  22916. source: "./media/characters/rory/front-alt-nude.svg",
  22917. extra: 589 / 556,
  22918. bottom: 45.7 / 635.76
  22919. }
  22920. },
  22921. side: {
  22922. height: math.unit(5 + 4 / 12, "feet"),
  22923. weight: math.unit(120, "lb"),
  22924. name: "Side",
  22925. image: {
  22926. source: "./media/characters/rory/side.svg",
  22927. extra: 597 / 564,
  22928. bottom: 55 / 653
  22929. }
  22930. },
  22931. backAlt: {
  22932. height: math.unit(5 + 4 / 12, "feet"),
  22933. weight: math.unit(120, "lb"),
  22934. name: "Back (Alt)",
  22935. image: {
  22936. source: "./media/characters/rory/back-alt.svg",
  22937. extra: 620 / 585,
  22938. bottom: 8.86 / 630.43
  22939. }
  22940. },
  22941. dickAlt: {
  22942. height: math.unit(0.86, "feet"),
  22943. name: "Dick (Alt)",
  22944. image: {
  22945. source: "./media/characters/rory/dick-alt.svg"
  22946. }
  22947. },
  22948. },
  22949. [
  22950. {
  22951. name: "Normal",
  22952. height: math.unit(5 + 4 / 12, "feet"),
  22953. default: true
  22954. },
  22955. {
  22956. name: "Macro",
  22957. height: math.unit(100, "feet")
  22958. },
  22959. {
  22960. name: "Macro+",
  22961. height: math.unit(140, "feet")
  22962. },
  22963. {
  22964. name: "Macro++",
  22965. height: math.unit(300, "feet")
  22966. },
  22967. ]
  22968. ))
  22969. characterMakers.push(() => makeCharacter(
  22970. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22971. {
  22972. front: {
  22973. height: math.unit(5 + 9 / 12, "feet"),
  22974. weight: math.unit(190, "lb"),
  22975. name: "Front",
  22976. image: {
  22977. source: "./media/characters/sprisk/front.svg",
  22978. extra: 1225 / 1180,
  22979. bottom: 42.7 / 1266.4
  22980. }
  22981. },
  22982. frontNsfw: {
  22983. height: math.unit(5 + 9 / 12, "feet"),
  22984. weight: math.unit(190, "lb"),
  22985. name: "Front (NSFW)",
  22986. image: {
  22987. source: "./media/characters/sprisk/front-nsfw.svg",
  22988. extra: 1225 / 1180,
  22989. bottom: 42.7 / 1266.4
  22990. }
  22991. },
  22992. back: {
  22993. height: math.unit(5 + 9 / 12, "feet"),
  22994. weight: math.unit(190, "lb"),
  22995. name: "Back",
  22996. image: {
  22997. source: "./media/characters/sprisk/back.svg",
  22998. extra: 1247 / 1200,
  22999. bottom: 5.6 / 1253.04
  23000. }
  23001. },
  23002. },
  23003. [
  23004. {
  23005. name: "Tiny",
  23006. height: math.unit(2, "inches")
  23007. },
  23008. {
  23009. name: "Normal",
  23010. height: math.unit(5 + 9 / 12, "feet"),
  23011. default: true
  23012. },
  23013. {
  23014. name: "Mini Macro",
  23015. height: math.unit(18, "feet")
  23016. },
  23017. {
  23018. name: "Macro",
  23019. height: math.unit(100, "feet")
  23020. },
  23021. {
  23022. name: "MACRO",
  23023. height: math.unit(50, "miles")
  23024. },
  23025. {
  23026. name: "M A C R O",
  23027. height: math.unit(300, "miles")
  23028. },
  23029. ]
  23030. ))
  23031. characterMakers.push(() => makeCharacter(
  23032. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23033. {
  23034. side: {
  23035. height: math.unit(15.6, "meters"),
  23036. weight: math.unit(700000, "kg"),
  23037. name: "Side",
  23038. image: {
  23039. source: "./media/characters/bunsen/side.svg",
  23040. extra: 1644 / 358
  23041. }
  23042. },
  23043. foot: {
  23044. height: math.unit(1.611 * 1644 / 358, "meter"),
  23045. name: "Foot",
  23046. image: {
  23047. source: "./media/characters/bunsen/foot.svg"
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "Small",
  23054. height: math.unit(10, "feet")
  23055. },
  23056. {
  23057. name: "Normal",
  23058. height: math.unit(15.6, "meters"),
  23059. default: true
  23060. },
  23061. ]
  23062. ))
  23063. characterMakers.push(() => makeCharacter(
  23064. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23065. {
  23066. front: {
  23067. height: math.unit(4 + 11 / 12, "feet"),
  23068. weight: math.unit(140, "lb"),
  23069. name: "Front",
  23070. image: {
  23071. source: "./media/characters/sesh/front.svg",
  23072. extra: 3420 / 3231,
  23073. bottom: 72 / 3949.5
  23074. }
  23075. },
  23076. },
  23077. [
  23078. {
  23079. name: "Normal",
  23080. height: math.unit(4 + 11 / 12, "feet")
  23081. },
  23082. {
  23083. name: "Grown",
  23084. height: math.unit(15, "feet"),
  23085. default: true
  23086. },
  23087. {
  23088. name: "Macro",
  23089. height: math.unit(1500, "feet")
  23090. },
  23091. {
  23092. name: "Megamacro",
  23093. height: math.unit(30, "miles")
  23094. },
  23095. {
  23096. name: "Continental",
  23097. height: math.unit(3000, "miles")
  23098. },
  23099. {
  23100. name: "Gravity Mass",
  23101. height: math.unit(300000, "miles")
  23102. },
  23103. {
  23104. name: "Planet Buster",
  23105. height: math.unit(30000000, "miles")
  23106. },
  23107. {
  23108. name: "Big",
  23109. height: math.unit(3000000000, "miles")
  23110. },
  23111. ]
  23112. ))
  23113. characterMakers.push(() => makeCharacter(
  23114. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23115. {
  23116. front: {
  23117. height: math.unit(9, "feet"),
  23118. weight: math.unit(350, "lb"),
  23119. name: "Front",
  23120. image: {
  23121. source: "./media/characters/pepper/front.svg",
  23122. extra: 1448 / 1312,
  23123. bottom: 9.4 / 1457.88
  23124. }
  23125. },
  23126. back: {
  23127. height: math.unit(9, "feet"),
  23128. weight: math.unit(350, "lb"),
  23129. name: "Back",
  23130. image: {
  23131. source: "./media/characters/pepper/back.svg",
  23132. extra: 1423 / 1300,
  23133. bottom: 4.6 / 1429
  23134. }
  23135. },
  23136. maw: {
  23137. height: math.unit(0.932, "feet"),
  23138. name: "Maw",
  23139. image: {
  23140. source: "./media/characters/pepper/maw.svg"
  23141. }
  23142. },
  23143. },
  23144. [
  23145. {
  23146. name: "Normal",
  23147. height: math.unit(9, "feet"),
  23148. default: true
  23149. },
  23150. ]
  23151. ))
  23152. characterMakers.push(() => makeCharacter(
  23153. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23154. {
  23155. front: {
  23156. height: math.unit(6, "feet"),
  23157. weight: math.unit(150, "lb"),
  23158. name: "Front",
  23159. image: {
  23160. source: "./media/characters/maelstrom/front.svg",
  23161. extra: 2100 / 1883,
  23162. bottom: 94 / 2196.7
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Less Kaiju",
  23169. height: math.unit(200, "feet")
  23170. },
  23171. {
  23172. name: "Kaiju",
  23173. height: math.unit(400, "feet"),
  23174. default: true
  23175. },
  23176. {
  23177. name: "Kaiju-er",
  23178. height: math.unit(600, "feet")
  23179. },
  23180. ]
  23181. ))
  23182. characterMakers.push(() => makeCharacter(
  23183. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23184. {
  23185. front: {
  23186. height: math.unit(6 + 5 / 12, "feet"),
  23187. weight: math.unit(180, "lb"),
  23188. name: "Front",
  23189. image: {
  23190. source: "./media/characters/lexir/front.svg",
  23191. extra: 180 / 172,
  23192. bottom: 12 / 192
  23193. }
  23194. },
  23195. back: {
  23196. height: math.unit(6 + 5 / 12, "feet"),
  23197. weight: math.unit(180, "lb"),
  23198. name: "Back",
  23199. image: {
  23200. source: "./media/characters/lexir/back.svg",
  23201. extra: 183.84 / 175.5,
  23202. bottom: 3.1 / 187
  23203. }
  23204. },
  23205. },
  23206. [
  23207. {
  23208. name: "Very Smal",
  23209. height: math.unit(1, "nm")
  23210. },
  23211. {
  23212. name: "Normal",
  23213. height: math.unit(6 + 5 / 12, "feet"),
  23214. default: true
  23215. },
  23216. {
  23217. name: "Macro",
  23218. height: math.unit(1, "mile")
  23219. },
  23220. {
  23221. name: "Megamacro",
  23222. height: math.unit(50, "miles")
  23223. },
  23224. ]
  23225. ))
  23226. characterMakers.push(() => makeCharacter(
  23227. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23228. {
  23229. front: {
  23230. height: math.unit(1.5, "meters"),
  23231. weight: math.unit(100, "lb"),
  23232. name: "Front",
  23233. image: {
  23234. source: "./media/characters/maksio/front.svg",
  23235. extra: 1549 / 1531,
  23236. bottom: 123.7 / 1674.5429
  23237. }
  23238. },
  23239. back: {
  23240. height: math.unit(1.5, "meters"),
  23241. weight: math.unit(100, "lb"),
  23242. name: "Back",
  23243. image: {
  23244. source: "./media/characters/maksio/back.svg",
  23245. extra: 1541 / 1509,
  23246. bottom: 97 / 1639
  23247. }
  23248. },
  23249. hand: {
  23250. height: math.unit(0.621, "feet"),
  23251. name: "Hand",
  23252. image: {
  23253. source: "./media/characters/maksio/hand.svg"
  23254. }
  23255. },
  23256. foot: {
  23257. height: math.unit(1.611, "feet"),
  23258. name: "Foot",
  23259. image: {
  23260. source: "./media/characters/maksio/foot.svg"
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Shrunken",
  23267. height: math.unit(10, "cm")
  23268. },
  23269. {
  23270. name: "Normal",
  23271. height: math.unit(150, "cm"),
  23272. default: true
  23273. },
  23274. ]
  23275. ))
  23276. characterMakers.push(() => makeCharacter(
  23277. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23278. {
  23279. front: {
  23280. height: math.unit(100, "feet"),
  23281. name: "Front",
  23282. image: {
  23283. source: "./media/characters/erza-bear/front.svg",
  23284. extra: 2449 / 2390,
  23285. bottom: 46 / 2494
  23286. }
  23287. },
  23288. back: {
  23289. height: math.unit(100, "feet"),
  23290. name: "Back",
  23291. image: {
  23292. source: "./media/characters/erza-bear/back.svg",
  23293. extra: 2489 / 2430,
  23294. bottom: 85.4 / 2480
  23295. }
  23296. },
  23297. tail: {
  23298. height: math.unit(42, "feet"),
  23299. name: "Tail",
  23300. image: {
  23301. source: "./media/characters/erza-bear/tail.svg"
  23302. }
  23303. },
  23304. tongue: {
  23305. height: math.unit(8, "feet"),
  23306. name: "Tongue",
  23307. image: {
  23308. source: "./media/characters/erza-bear/tongue.svg"
  23309. }
  23310. },
  23311. dick: {
  23312. height: math.unit(10.5, "feet"),
  23313. name: "Dick",
  23314. image: {
  23315. source: "./media/characters/erza-bear/dick.svg"
  23316. }
  23317. },
  23318. dickVertical: {
  23319. height: math.unit(16.9, "feet"),
  23320. name: "Dick (Vertical)",
  23321. image: {
  23322. source: "./media/characters/erza-bear/dick-vertical.svg"
  23323. }
  23324. },
  23325. },
  23326. [
  23327. {
  23328. name: "Macro",
  23329. height: math.unit(100, "feet"),
  23330. default: true
  23331. },
  23332. ]
  23333. ))
  23334. characterMakers.push(() => makeCharacter(
  23335. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23336. {
  23337. front: {
  23338. height: math.unit(172, "cm"),
  23339. weight: math.unit(73, "kg"),
  23340. name: "Front",
  23341. image: {
  23342. source: "./media/characters/violet-flor/front.svg",
  23343. extra: 1530 / 1442,
  23344. bottom: 61.9 / 1588.8
  23345. }
  23346. },
  23347. back: {
  23348. height: math.unit(180, "cm"),
  23349. weight: math.unit(73, "kg"),
  23350. name: "Back",
  23351. image: {
  23352. source: "./media/characters/violet-flor/back.svg",
  23353. extra: 1692 / 1630,
  23354. bottom: 20 / 1712
  23355. }
  23356. },
  23357. },
  23358. [
  23359. {
  23360. name: "Normal",
  23361. height: math.unit(172, "cm"),
  23362. default: true
  23363. },
  23364. ]
  23365. ))
  23366. characterMakers.push(() => makeCharacter(
  23367. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23368. {
  23369. front: {
  23370. height: math.unit(6, "feet"),
  23371. weight: math.unit(220, "lb"),
  23372. name: "Front",
  23373. image: {
  23374. source: "./media/characters/lynn-rhea/front.svg",
  23375. extra: 310 / 273
  23376. }
  23377. },
  23378. back: {
  23379. height: math.unit(6, "feet"),
  23380. weight: math.unit(220, "lb"),
  23381. name: "Back",
  23382. image: {
  23383. source: "./media/characters/lynn-rhea/back.svg",
  23384. extra: 310 / 273
  23385. }
  23386. },
  23387. dicks: {
  23388. height: math.unit(0.9, "feet"),
  23389. name: "Dicks",
  23390. image: {
  23391. source: "./media/characters/lynn-rhea/dicks.svg"
  23392. }
  23393. },
  23394. slit: {
  23395. height: math.unit(0.4, "feet"),
  23396. name: "Slit",
  23397. image: {
  23398. source: "./media/characters/lynn-rhea/slit.svg"
  23399. }
  23400. },
  23401. },
  23402. [
  23403. {
  23404. name: "Micro",
  23405. height: math.unit(1, "inch")
  23406. },
  23407. {
  23408. name: "Macro",
  23409. height: math.unit(60, "feet"),
  23410. default: true
  23411. },
  23412. {
  23413. name: "Megamacro",
  23414. height: math.unit(2, "miles")
  23415. },
  23416. {
  23417. name: "Gigamacro",
  23418. height: math.unit(3, "earths")
  23419. },
  23420. {
  23421. name: "Galactic",
  23422. height: math.unit(0.8, "galaxies")
  23423. },
  23424. ]
  23425. ))
  23426. characterMakers.push(() => makeCharacter(
  23427. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23428. {
  23429. front: {
  23430. height: math.unit(1600, "feet"),
  23431. weight: math.unit(85758785169, "kg"),
  23432. name: "Front",
  23433. image: {
  23434. source: "./media/characters/valathos/front.svg",
  23435. extra: 1451 / 1339
  23436. }
  23437. },
  23438. },
  23439. [
  23440. {
  23441. name: "Macro",
  23442. height: math.unit(1600, "feet"),
  23443. default: true
  23444. },
  23445. ]
  23446. ))
  23447. characterMakers.push(() => makeCharacter(
  23448. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23449. {
  23450. front: {
  23451. height: math.unit(7 + 5 / 12, "feet"),
  23452. weight: math.unit(300, "lb"),
  23453. name: "Front",
  23454. image: {
  23455. source: "./media/characters/azula/front.svg",
  23456. extra: 3208 / 2880,
  23457. bottom: 80.2 / 3277
  23458. }
  23459. },
  23460. back: {
  23461. height: math.unit(7 + 5 / 12, "feet"),
  23462. weight: math.unit(300, "lb"),
  23463. name: "Back",
  23464. image: {
  23465. source: "./media/characters/azula/back.svg",
  23466. extra: 3169 / 2822,
  23467. bottom: 150.6 / 3321
  23468. }
  23469. },
  23470. },
  23471. [
  23472. {
  23473. name: "Normal",
  23474. height: math.unit(7 + 5 / 12, "feet"),
  23475. default: true
  23476. },
  23477. {
  23478. name: "Big",
  23479. height: math.unit(20, "feet")
  23480. },
  23481. ]
  23482. ))
  23483. characterMakers.push(() => makeCharacter(
  23484. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23485. {
  23486. front: {
  23487. height: math.unit(5 + 1 / 12, "feet"),
  23488. weight: math.unit(110, "lb"),
  23489. name: "Front",
  23490. image: {
  23491. source: "./media/characters/rupert/front.svg",
  23492. extra: 1549 / 1495,
  23493. bottom: 54.2 / 1604.4
  23494. }
  23495. },
  23496. },
  23497. [
  23498. {
  23499. name: "Normal",
  23500. height: math.unit(5 + 1 / 12, "feet"),
  23501. default: true
  23502. },
  23503. ]
  23504. ))
  23505. characterMakers.push(() => makeCharacter(
  23506. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23507. {
  23508. front: {
  23509. height: math.unit(8 + 4 / 12, "feet"),
  23510. weight: math.unit(350, "lb"),
  23511. name: "Front",
  23512. image: {
  23513. source: "./media/characters/sheera-castellar/front.svg",
  23514. extra: 1957 / 1894,
  23515. bottom: 26.97 / 1975.017
  23516. }
  23517. },
  23518. side: {
  23519. height: math.unit(8 + 4 / 12, "feet"),
  23520. weight: math.unit(350, "lb"),
  23521. name: "Side",
  23522. image: {
  23523. source: "./media/characters/sheera-castellar/side.svg",
  23524. extra: 1957 / 1894
  23525. }
  23526. },
  23527. back: {
  23528. height: math.unit(8 + 4 / 12, "feet"),
  23529. weight: math.unit(350, "lb"),
  23530. name: "Back",
  23531. image: {
  23532. source: "./media/characters/sheera-castellar/back.svg",
  23533. extra: 1957 / 1894
  23534. }
  23535. },
  23536. angled: {
  23537. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23538. weight: math.unit(350, "lb"),
  23539. name: "Angled",
  23540. image: {
  23541. source: "./media/characters/sheera-castellar/angled.svg",
  23542. extra: 1807 / 1707,
  23543. bottom: 68 / 1875
  23544. }
  23545. },
  23546. genitals: {
  23547. height: math.unit(2.2, "feet"),
  23548. name: "Genitals",
  23549. image: {
  23550. source: "./media/characters/sheera-castellar/genitals.svg"
  23551. }
  23552. },
  23553. taur: {
  23554. height: math.unit(10 + 6/12, "feet"),
  23555. name: "Taur",
  23556. image: {
  23557. source: "./media/characters/sheera-castellar/taur.svg",
  23558. extra: 2017/1909,
  23559. bottom: 185/2202
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Normal",
  23566. height: math.unit(8 + 4 / 12, "feet")
  23567. },
  23568. {
  23569. name: "Macro",
  23570. height: math.unit(150, "feet"),
  23571. default: true
  23572. },
  23573. {
  23574. name: "Macro+",
  23575. height: math.unit(800, "feet")
  23576. },
  23577. ]
  23578. ))
  23579. characterMakers.push(() => makeCharacter(
  23580. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23581. {
  23582. front: {
  23583. height: math.unit(6, "feet"),
  23584. weight: math.unit(150, "lb"),
  23585. name: "Front",
  23586. image: {
  23587. source: "./media/characters/jaipur/front.svg",
  23588. extra: 3860 / 3731,
  23589. bottom: 287 / 4140
  23590. }
  23591. },
  23592. back: {
  23593. height: math.unit(6, "feet"),
  23594. weight: math.unit(150, "lb"),
  23595. name: "Back",
  23596. image: {
  23597. source: "./media/characters/jaipur/back.svg",
  23598. extra: 4060 / 3930,
  23599. bottom: 151 / 4200
  23600. }
  23601. },
  23602. },
  23603. [
  23604. {
  23605. name: "Normal",
  23606. height: math.unit(1.85, "meters"),
  23607. default: true
  23608. },
  23609. {
  23610. name: "Macro",
  23611. height: math.unit(150, "meters")
  23612. },
  23613. {
  23614. name: "Macro+",
  23615. height: math.unit(0.5, "miles")
  23616. },
  23617. {
  23618. name: "Macro++",
  23619. height: math.unit(2.5, "miles")
  23620. },
  23621. {
  23622. name: "Macro+++",
  23623. height: math.unit(12, "miles")
  23624. },
  23625. {
  23626. name: "Macro++++",
  23627. height: math.unit(120, "miles")
  23628. },
  23629. {
  23630. name: "Macro+++++",
  23631. height: math.unit(1200, "miles")
  23632. },
  23633. ]
  23634. ))
  23635. characterMakers.push(() => makeCharacter(
  23636. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23637. {
  23638. front: {
  23639. height: math.unit(6, "feet"),
  23640. weight: math.unit(150, "lb"),
  23641. name: "Front",
  23642. image: {
  23643. source: "./media/characters/sheila-wolf/front.svg",
  23644. extra: 1931 / 1808,
  23645. bottom: 29.5 / 1960
  23646. }
  23647. },
  23648. dick: {
  23649. height: math.unit(1.464, "feet"),
  23650. name: "Dick",
  23651. image: {
  23652. source: "./media/characters/sheila-wolf/dick.svg"
  23653. }
  23654. },
  23655. muzzle: {
  23656. height: math.unit(0.513, "feet"),
  23657. name: "Muzzle",
  23658. image: {
  23659. source: "./media/characters/sheila-wolf/muzzle.svg"
  23660. }
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Macro",
  23666. height: math.unit(70, "feet"),
  23667. default: true
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23673. {
  23674. front: {
  23675. height: math.unit(32, "meters"),
  23676. weight: math.unit(300000, "kg"),
  23677. name: "Front",
  23678. image: {
  23679. source: "./media/characters/almor/front.svg",
  23680. extra: 1408 / 1322,
  23681. bottom: 94.6 / 1506.5
  23682. }
  23683. },
  23684. },
  23685. [
  23686. {
  23687. name: "Macro",
  23688. height: math.unit(32, "meters"),
  23689. default: true
  23690. },
  23691. ]
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23695. {
  23696. front: {
  23697. height: math.unit(7, "feet"),
  23698. weight: math.unit(200, "lb"),
  23699. name: "Front",
  23700. image: {
  23701. source: "./media/characters/silver/front.svg",
  23702. extra: 472.1 / 450.5,
  23703. bottom: 26.5 / 499.424
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Normal",
  23710. height: math.unit(7, "feet"),
  23711. default: true
  23712. },
  23713. {
  23714. name: "Macro",
  23715. height: math.unit(800, "feet")
  23716. },
  23717. {
  23718. name: "Megamacro",
  23719. height: math.unit(250, "miles")
  23720. },
  23721. ]
  23722. ))
  23723. characterMakers.push(() => makeCharacter(
  23724. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23725. {
  23726. front: {
  23727. height: math.unit(6, "feet"),
  23728. weight: math.unit(150, "lb"),
  23729. name: "Front",
  23730. image: {
  23731. source: "./media/characters/pliskin/front.svg",
  23732. extra: 1469 / 1359,
  23733. bottom: 70 / 1540
  23734. }
  23735. },
  23736. },
  23737. [
  23738. {
  23739. name: "Micro",
  23740. height: math.unit(3, "inches")
  23741. },
  23742. {
  23743. name: "Normal",
  23744. height: math.unit(5 + 11 / 12, "feet"),
  23745. default: true
  23746. },
  23747. {
  23748. name: "Macro",
  23749. height: math.unit(120, "feet")
  23750. },
  23751. ]
  23752. ))
  23753. characterMakers.push(() => makeCharacter(
  23754. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23755. {
  23756. front: {
  23757. height: math.unit(6, "feet"),
  23758. weight: math.unit(150, "lb"),
  23759. name: "Front",
  23760. image: {
  23761. source: "./media/characters/sammy/front.svg",
  23762. extra: 1193 / 1089,
  23763. bottom: 30.5 / 1226
  23764. }
  23765. },
  23766. },
  23767. [
  23768. {
  23769. name: "Macro",
  23770. height: math.unit(1700, "feet"),
  23771. default: true
  23772. },
  23773. {
  23774. name: "Examacro",
  23775. height: math.unit(2.5e9, "lightyears")
  23776. },
  23777. ]
  23778. ))
  23779. characterMakers.push(() => makeCharacter(
  23780. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23781. {
  23782. front: {
  23783. height: math.unit(21, "meters"),
  23784. weight: math.unit(12, "tonnes"),
  23785. name: "Front",
  23786. image: {
  23787. source: "./media/characters/kuru/front.svg",
  23788. extra: 4301 / 3785,
  23789. bottom: 371.3 / 4691
  23790. }
  23791. },
  23792. },
  23793. [
  23794. {
  23795. name: "Macro",
  23796. height: math.unit(21, "meters"),
  23797. default: true
  23798. },
  23799. ]
  23800. ))
  23801. characterMakers.push(() => makeCharacter(
  23802. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23803. {
  23804. front: {
  23805. height: math.unit(23, "meters"),
  23806. weight: math.unit(12.2, "tonnes"),
  23807. name: "Front",
  23808. image: {
  23809. source: "./media/characters/rakka/front.svg",
  23810. extra: 4670 / 4169,
  23811. bottom: 301 / 4968.7
  23812. }
  23813. },
  23814. },
  23815. [
  23816. {
  23817. name: "Macro",
  23818. height: math.unit(23, "meters"),
  23819. default: true
  23820. },
  23821. ]
  23822. ))
  23823. characterMakers.push(() => makeCharacter(
  23824. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23825. {
  23826. front: {
  23827. height: math.unit(6, "feet"),
  23828. weight: math.unit(150, "lb"),
  23829. name: "Front",
  23830. image: {
  23831. source: "./media/characters/rhys-feline/front.svg",
  23832. extra: 2488 / 2308,
  23833. bottom: 35.67 / 2519.19
  23834. }
  23835. },
  23836. },
  23837. [
  23838. {
  23839. name: "Really Small",
  23840. height: math.unit(1, "nm")
  23841. },
  23842. {
  23843. name: "Micro",
  23844. height: math.unit(4, "inches")
  23845. },
  23846. {
  23847. name: "Normal",
  23848. height: math.unit(4 + 10 / 12, "feet"),
  23849. default: true
  23850. },
  23851. {
  23852. name: "Macro",
  23853. height: math.unit(100, "feet")
  23854. },
  23855. {
  23856. name: "Megamacto",
  23857. height: math.unit(50, "miles")
  23858. },
  23859. ]
  23860. ))
  23861. characterMakers.push(() => makeCharacter(
  23862. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23863. {
  23864. side: {
  23865. height: math.unit(30, "feet"),
  23866. weight: math.unit(35000, "kg"),
  23867. name: "Side",
  23868. image: {
  23869. source: "./media/characters/alydar/side.svg",
  23870. extra: 234 / 222,
  23871. bottom: 6.5 / 241
  23872. }
  23873. },
  23874. front: {
  23875. height: math.unit(30, "feet"),
  23876. weight: math.unit(35000, "kg"),
  23877. name: "Front",
  23878. image: {
  23879. source: "./media/characters/alydar/front.svg",
  23880. extra: 223.37 / 210.2,
  23881. bottom: 22.3 / 246.76
  23882. }
  23883. },
  23884. top: {
  23885. height: math.unit(64.54, "feet"),
  23886. weight: math.unit(35000, "kg"),
  23887. name: "Top",
  23888. image: {
  23889. source: "./media/characters/alydar/top.svg"
  23890. }
  23891. },
  23892. anthro: {
  23893. height: math.unit(30, "feet"),
  23894. weight: math.unit(9000, "kg"),
  23895. name: "Anthro",
  23896. image: {
  23897. source: "./media/characters/alydar/anthro.svg",
  23898. extra: 432 / 421,
  23899. bottom: 7.18 / 440
  23900. }
  23901. },
  23902. maw: {
  23903. height: math.unit(11.693, "feet"),
  23904. name: "Maw",
  23905. image: {
  23906. source: "./media/characters/alydar/maw.svg"
  23907. }
  23908. },
  23909. head: {
  23910. height: math.unit(11.693, "feet"),
  23911. name: "Head",
  23912. image: {
  23913. source: "./media/characters/alydar/head.svg"
  23914. }
  23915. },
  23916. headAlt: {
  23917. height: math.unit(12.861, "feet"),
  23918. name: "Head (Alt)",
  23919. image: {
  23920. source: "./media/characters/alydar/head-alt.svg"
  23921. }
  23922. },
  23923. wing: {
  23924. height: math.unit(20.712, "feet"),
  23925. name: "Wing",
  23926. image: {
  23927. source: "./media/characters/alydar/wing.svg"
  23928. }
  23929. },
  23930. wingFeather: {
  23931. height: math.unit(9.662, "feet"),
  23932. name: "Wing Feather",
  23933. image: {
  23934. source: "./media/characters/alydar/wing-feather.svg"
  23935. }
  23936. },
  23937. countourFeather: {
  23938. height: math.unit(4.154, "feet"),
  23939. name: "Contour Feather",
  23940. image: {
  23941. source: "./media/characters/alydar/contour-feather.svg"
  23942. }
  23943. },
  23944. },
  23945. [
  23946. {
  23947. name: "Diplomatic",
  23948. height: math.unit(13, "feet"),
  23949. default: true
  23950. },
  23951. {
  23952. name: "Small",
  23953. height: math.unit(30, "feet")
  23954. },
  23955. {
  23956. name: "Normal",
  23957. height: math.unit(95, "feet"),
  23958. default: true
  23959. },
  23960. {
  23961. name: "Large",
  23962. height: math.unit(285, "feet")
  23963. },
  23964. {
  23965. name: "Incomprehensible",
  23966. height: math.unit(450, "megameters")
  23967. },
  23968. ]
  23969. ))
  23970. characterMakers.push(() => makeCharacter(
  23971. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23972. {
  23973. side: {
  23974. height: math.unit(11, "feet"),
  23975. weight: math.unit(1750, "kg"),
  23976. name: "Side",
  23977. image: {
  23978. source: "./media/characters/selicia/side.svg",
  23979. extra: 440 / 396,
  23980. bottom: 24.8 / 465.979
  23981. }
  23982. },
  23983. maw: {
  23984. height: math.unit(4.665, "feet"),
  23985. name: "Maw",
  23986. image: {
  23987. source: "./media/characters/selicia/maw.svg"
  23988. }
  23989. },
  23990. },
  23991. [
  23992. {
  23993. name: "Normal",
  23994. height: math.unit(11, "feet"),
  23995. default: true
  23996. },
  23997. ]
  23998. ))
  23999. characterMakers.push(() => makeCharacter(
  24000. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24001. {
  24002. side: {
  24003. height: math.unit(2 + 6 / 12, "feet"),
  24004. weight: math.unit(30, "lb"),
  24005. name: "Side",
  24006. image: {
  24007. source: "./media/characters/layla/side.svg",
  24008. extra: 244 / 188,
  24009. bottom: 18.2 / 262.1
  24010. }
  24011. },
  24012. back: {
  24013. height: math.unit(2 + 6 / 12, "feet"),
  24014. weight: math.unit(30, "lb"),
  24015. name: "Back",
  24016. image: {
  24017. source: "./media/characters/layla/back.svg",
  24018. extra: 308 / 241.5,
  24019. bottom: 8.9 / 316.8
  24020. }
  24021. },
  24022. cumming: {
  24023. height: math.unit(2 + 6 / 12, "feet"),
  24024. weight: math.unit(30, "lb"),
  24025. name: "Cumming",
  24026. image: {
  24027. source: "./media/characters/layla/cumming.svg",
  24028. extra: 342 / 279,
  24029. bottom: 595 / 938
  24030. }
  24031. },
  24032. dickFlaccid: {
  24033. height: math.unit(2.595, "feet"),
  24034. name: "Flaccid Genitals",
  24035. image: {
  24036. source: "./media/characters/layla/dick-flaccid.svg"
  24037. }
  24038. },
  24039. dickErect: {
  24040. height: math.unit(2.359, "feet"),
  24041. name: "Erect Genitals",
  24042. image: {
  24043. source: "./media/characters/layla/dick-erect.svg"
  24044. }
  24045. },
  24046. dragon: {
  24047. height: math.unit(40, "feet"),
  24048. name: "Dragon",
  24049. image: {
  24050. source: "./media/characters/layla/dragon.svg",
  24051. extra: 610/535,
  24052. bottom: 367/977
  24053. }
  24054. },
  24055. taur: {
  24056. height: math.unit(30, "feet"),
  24057. name: "Taur",
  24058. image: {
  24059. source: "./media/characters/layla/taur.svg",
  24060. extra: 1268/1199,
  24061. bottom: 112/1380
  24062. }
  24063. },
  24064. },
  24065. [
  24066. {
  24067. name: "Micro",
  24068. height: math.unit(1, "inch")
  24069. },
  24070. {
  24071. name: "Small",
  24072. height: math.unit(1, "foot")
  24073. },
  24074. {
  24075. name: "Normal",
  24076. height: math.unit(2 + 6 / 12, "feet"),
  24077. default: true
  24078. },
  24079. {
  24080. name: "Macro",
  24081. height: math.unit(200, "feet")
  24082. },
  24083. {
  24084. name: "Megamacro",
  24085. height: math.unit(1000, "miles")
  24086. },
  24087. {
  24088. name: "Planetary",
  24089. height: math.unit(8000, "miles")
  24090. },
  24091. {
  24092. name: "True Layla",
  24093. height: math.unit(200000 * 7, "multiverses")
  24094. },
  24095. ]
  24096. ))
  24097. characterMakers.push(() => makeCharacter(
  24098. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24099. {
  24100. back: {
  24101. height: math.unit(10.5, "feet"),
  24102. weight: math.unit(800, "lb"),
  24103. name: "Back",
  24104. image: {
  24105. source: "./media/characters/knox/back.svg",
  24106. extra: 1486 / 1089,
  24107. bottom: 107 / 1601.4
  24108. }
  24109. },
  24110. side: {
  24111. height: math.unit(10.5, "feet"),
  24112. weight: math.unit(800, "lb"),
  24113. name: "Side",
  24114. image: {
  24115. source: "./media/characters/knox/side.svg",
  24116. extra: 244 / 218,
  24117. bottom: 14 / 260
  24118. }
  24119. },
  24120. },
  24121. [
  24122. {
  24123. name: "Compact",
  24124. height: math.unit(10.5, "feet"),
  24125. default: true
  24126. },
  24127. {
  24128. name: "Dynamax",
  24129. height: math.unit(210, "feet")
  24130. },
  24131. {
  24132. name: "Full Macro",
  24133. height: math.unit(850, "feet")
  24134. },
  24135. ]
  24136. ))
  24137. characterMakers.push(() => makeCharacter(
  24138. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24139. {
  24140. front: {
  24141. height: math.unit(28, "feet"),
  24142. weight: math.unit(10500, "lb"),
  24143. name: "Front",
  24144. image: {
  24145. source: "./media/characters/kayda/front.svg",
  24146. extra: 1536 / 1428,
  24147. bottom: 68.7 / 1603
  24148. }
  24149. },
  24150. back: {
  24151. height: math.unit(28, "feet"),
  24152. weight: math.unit(10500, "lb"),
  24153. name: "Back",
  24154. image: {
  24155. source: "./media/characters/kayda/back.svg",
  24156. extra: 1557 / 1464,
  24157. bottom: 39.5 / 1597.49
  24158. }
  24159. },
  24160. dick: {
  24161. height: math.unit(3.858, "feet"),
  24162. name: "Dick",
  24163. image: {
  24164. source: "./media/characters/kayda/dick.svg"
  24165. }
  24166. },
  24167. },
  24168. [
  24169. {
  24170. name: "Macro",
  24171. height: math.unit(28, "feet"),
  24172. default: true
  24173. },
  24174. ]
  24175. ))
  24176. characterMakers.push(() => makeCharacter(
  24177. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24178. {
  24179. front: {
  24180. height: math.unit(10 + 11 / 12, "feet"),
  24181. weight: math.unit(1400, "lb"),
  24182. name: "Front",
  24183. image: {
  24184. source: "./media/characters/brian/front.svg",
  24185. extra: 737 / 692,
  24186. bottom: 55.4 / 785
  24187. }
  24188. },
  24189. },
  24190. [
  24191. {
  24192. name: "Normal",
  24193. height: math.unit(10 + 11 / 12, "feet"),
  24194. default: true
  24195. },
  24196. ]
  24197. ))
  24198. characterMakers.push(() => makeCharacter(
  24199. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24200. {
  24201. front: {
  24202. height: math.unit(5 + 8 / 12, "feet"),
  24203. weight: math.unit(140, "lb"),
  24204. name: "Front",
  24205. image: {
  24206. source: "./media/characters/khemri/front.svg",
  24207. extra: 4780 / 4059,
  24208. bottom: 80.1 / 4859.25
  24209. }
  24210. },
  24211. },
  24212. [
  24213. {
  24214. name: "Micro",
  24215. height: math.unit(6, "inches")
  24216. },
  24217. {
  24218. name: "Normal",
  24219. height: math.unit(5 + 8 / 12, "feet"),
  24220. default: true
  24221. },
  24222. ]
  24223. ))
  24224. characterMakers.push(() => makeCharacter(
  24225. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24226. {
  24227. front: {
  24228. height: math.unit(13, "feet"),
  24229. weight: math.unit(1700, "lb"),
  24230. name: "Front",
  24231. image: {
  24232. source: "./media/characters/felix-braveheart/front.svg",
  24233. extra: 1222 / 1157,
  24234. bottom: 53.2 / 1280
  24235. }
  24236. },
  24237. back: {
  24238. height: math.unit(13, "feet"),
  24239. weight: math.unit(1700, "lb"),
  24240. name: "Back",
  24241. image: {
  24242. source: "./media/characters/felix-braveheart/back.svg",
  24243. extra: 1277 / 1203,
  24244. bottom: 50.2 / 1327
  24245. }
  24246. },
  24247. feral: {
  24248. height: math.unit(6, "feet"),
  24249. weight: math.unit(400, "lb"),
  24250. name: "Feral",
  24251. image: {
  24252. source: "./media/characters/felix-braveheart/feral.svg",
  24253. extra: 682 / 625,
  24254. bottom: 6.9 / 688
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Normal",
  24261. height: math.unit(13, "feet"),
  24262. default: true
  24263. },
  24264. ]
  24265. ))
  24266. characterMakers.push(() => makeCharacter(
  24267. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24268. {
  24269. side: {
  24270. height: math.unit(5 + 11 / 12, "feet"),
  24271. weight: math.unit(1400, "lb"),
  24272. name: "Side",
  24273. image: {
  24274. source: "./media/characters/shadow-blade/side.svg",
  24275. extra: 1726 / 1267,
  24276. bottom: 58.4 / 1785
  24277. }
  24278. },
  24279. },
  24280. [
  24281. {
  24282. name: "Normal",
  24283. height: math.unit(5 + 11 / 12, "feet"),
  24284. default: true
  24285. },
  24286. ]
  24287. ))
  24288. characterMakers.push(() => makeCharacter(
  24289. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24290. {
  24291. front: {
  24292. height: math.unit(1 + 6 / 12, "feet"),
  24293. weight: math.unit(25, "lb"),
  24294. name: "Front",
  24295. image: {
  24296. source: "./media/characters/karla-halldor/front.svg",
  24297. extra: 1459 / 1383,
  24298. bottom: 12 / 1472
  24299. }
  24300. },
  24301. },
  24302. [
  24303. {
  24304. name: "Normal",
  24305. height: math.unit(1 + 6 / 12, "feet"),
  24306. default: true
  24307. },
  24308. ]
  24309. ))
  24310. characterMakers.push(() => makeCharacter(
  24311. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24312. {
  24313. front: {
  24314. height: math.unit(6 + 2 / 12, "feet"),
  24315. weight: math.unit(160, "lb"),
  24316. name: "Front",
  24317. image: {
  24318. source: "./media/characters/ariam/front.svg",
  24319. extra: 1073/976,
  24320. bottom: 52/1125
  24321. }
  24322. },
  24323. back: {
  24324. height: math.unit(6 + 2/12, "feet"),
  24325. weight: math.unit(160, "lb"),
  24326. name: "Back",
  24327. image: {
  24328. source: "./media/characters/ariam/back.svg",
  24329. extra: 1103/1023,
  24330. bottom: 9/1112
  24331. }
  24332. },
  24333. dressed: {
  24334. height: math.unit(6 + 2/12, "feet"),
  24335. weight: math.unit(160, "lb"),
  24336. name: "Dressed",
  24337. image: {
  24338. source: "./media/characters/ariam/dressed.svg",
  24339. extra: 1099/1009,
  24340. bottom: 25/1124
  24341. }
  24342. },
  24343. squatting: {
  24344. height: math.unit(4.1, "feet"),
  24345. weight: math.unit(160, "lb"),
  24346. name: "Squatting",
  24347. image: {
  24348. source: "./media/characters/ariam/squatting.svg",
  24349. extra: 2617 / 2112,
  24350. bottom: 61.2 / 2681,
  24351. }
  24352. },
  24353. },
  24354. [
  24355. {
  24356. name: "Normal",
  24357. height: math.unit(6 + 2 / 12, "feet"),
  24358. default: true
  24359. },
  24360. {
  24361. name: "Normal+",
  24362. height: math.unit(4, "meters")
  24363. },
  24364. {
  24365. name: "Macro",
  24366. height: math.unit(50, "meters")
  24367. },
  24368. {
  24369. name: "Macro+",
  24370. height: math.unit(100, "meters")
  24371. },
  24372. {
  24373. name: "Megamacro",
  24374. height: math.unit(20, "km")
  24375. },
  24376. {
  24377. name: "Caretaker",
  24378. height: math.unit(444, "megameters")
  24379. },
  24380. ]
  24381. ))
  24382. characterMakers.push(() => makeCharacter(
  24383. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24384. {
  24385. front: {
  24386. height: math.unit(1.67, "meters"),
  24387. weight: math.unit(140, "lb"),
  24388. name: "Front",
  24389. image: {
  24390. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24391. extra: 438 / 410,
  24392. bottom: 0.75 / 439
  24393. }
  24394. },
  24395. },
  24396. [
  24397. {
  24398. name: "Shrunken",
  24399. height: math.unit(7.6, "cm")
  24400. },
  24401. {
  24402. name: "Human Scale",
  24403. height: math.unit(1.67, "meters")
  24404. },
  24405. {
  24406. name: "Wolxi Scale",
  24407. height: math.unit(36.7, "meters"),
  24408. default: true
  24409. },
  24410. ]
  24411. ))
  24412. characterMakers.push(() => makeCharacter(
  24413. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24414. {
  24415. front: {
  24416. height: math.unit(1.73, "meters"),
  24417. weight: math.unit(240, "lb"),
  24418. name: "Front",
  24419. image: {
  24420. source: "./media/characters/izue-two-mothers/front.svg",
  24421. extra: 469 / 437,
  24422. bottom: 1.24 / 470.6
  24423. }
  24424. },
  24425. },
  24426. [
  24427. {
  24428. name: "Shrunken",
  24429. height: math.unit(7.86, "cm")
  24430. },
  24431. {
  24432. name: "Human Scale",
  24433. height: math.unit(1.73, "meters")
  24434. },
  24435. {
  24436. name: "Wolxi Scale",
  24437. height: math.unit(38, "meters"),
  24438. default: true
  24439. },
  24440. ]
  24441. ))
  24442. characterMakers.push(() => makeCharacter(
  24443. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24444. {
  24445. front: {
  24446. height: math.unit(1.55, "meters"),
  24447. weight: math.unit(120, "lb"),
  24448. name: "Front",
  24449. image: {
  24450. source: "./media/characters/teeku-love-shack/front.svg",
  24451. extra: 387 / 362,
  24452. bottom: 1.51 / 388
  24453. }
  24454. },
  24455. },
  24456. [
  24457. {
  24458. name: "Shrunken",
  24459. height: math.unit(7, "cm")
  24460. },
  24461. {
  24462. name: "Human Scale",
  24463. height: math.unit(1.55, "meters")
  24464. },
  24465. {
  24466. name: "Wolxi Scale",
  24467. height: math.unit(34.1, "meters"),
  24468. default: true
  24469. },
  24470. ]
  24471. ))
  24472. characterMakers.push(() => makeCharacter(
  24473. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24474. {
  24475. front: {
  24476. height: math.unit(1.83, "meters"),
  24477. weight: math.unit(135, "lb"),
  24478. name: "Front",
  24479. image: {
  24480. source: "./media/characters/dejma-the-red/front.svg",
  24481. extra: 480 / 458,
  24482. bottom: 1.8 / 482
  24483. }
  24484. },
  24485. },
  24486. [
  24487. {
  24488. name: "Shrunken",
  24489. height: math.unit(8.3, "cm")
  24490. },
  24491. {
  24492. name: "Human Scale",
  24493. height: math.unit(1.83, "meters")
  24494. },
  24495. {
  24496. name: "Wolxi Scale",
  24497. height: math.unit(40, "meters"),
  24498. default: true
  24499. },
  24500. ]
  24501. ))
  24502. characterMakers.push(() => makeCharacter(
  24503. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24504. {
  24505. front: {
  24506. height: math.unit(1.78, "meters"),
  24507. weight: math.unit(65, "kg"),
  24508. name: "Front",
  24509. image: {
  24510. source: "./media/characters/aki/front.svg",
  24511. extra: 452 / 415
  24512. }
  24513. },
  24514. frontNsfw: {
  24515. height: math.unit(1.78, "meters"),
  24516. weight: math.unit(65, "kg"),
  24517. name: "Front (NSFW)",
  24518. image: {
  24519. source: "./media/characters/aki/front-nsfw.svg",
  24520. extra: 452 / 415
  24521. }
  24522. },
  24523. back: {
  24524. height: math.unit(1.78, "meters"),
  24525. weight: math.unit(65, "kg"),
  24526. name: "Back",
  24527. image: {
  24528. source: "./media/characters/aki/back.svg",
  24529. extra: 452 / 415
  24530. }
  24531. },
  24532. rump: {
  24533. height: math.unit(2.05, "feet"),
  24534. name: "Rump",
  24535. image: {
  24536. source: "./media/characters/aki/rump.svg"
  24537. }
  24538. },
  24539. dick: {
  24540. height: math.unit(0.95, "feet"),
  24541. name: "Dick",
  24542. image: {
  24543. source: "./media/characters/aki/dick.svg"
  24544. }
  24545. },
  24546. },
  24547. [
  24548. {
  24549. name: "Micro",
  24550. height: math.unit(15, "cm")
  24551. },
  24552. {
  24553. name: "Normal",
  24554. height: math.unit(178, "cm"),
  24555. default: true
  24556. },
  24557. {
  24558. name: "Macro",
  24559. height: math.unit(214, "m")
  24560. },
  24561. {
  24562. name: "Macro+",
  24563. height: math.unit(534, "m")
  24564. },
  24565. ]
  24566. ))
  24567. characterMakers.push(() => makeCharacter(
  24568. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24569. {
  24570. front: {
  24571. height: math.unit(5 + 5 / 12, "feet"),
  24572. weight: math.unit(120, "lb"),
  24573. name: "Front",
  24574. image: {
  24575. source: "./media/characters/ari/front.svg",
  24576. extra: 714.5 / 682,
  24577. bottom: 8 / 722.5
  24578. }
  24579. },
  24580. },
  24581. [
  24582. {
  24583. name: "Normal",
  24584. height: math.unit(5 + 5 / 12, "feet")
  24585. },
  24586. {
  24587. name: "Macro",
  24588. height: math.unit(100, "feet"),
  24589. default: true
  24590. },
  24591. {
  24592. name: "Megamacro",
  24593. height: math.unit(100, "miles")
  24594. },
  24595. {
  24596. name: "Gigamacro",
  24597. height: math.unit(80000, "miles")
  24598. },
  24599. ]
  24600. ))
  24601. characterMakers.push(() => makeCharacter(
  24602. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24603. {
  24604. side: {
  24605. height: math.unit(9, "feet"),
  24606. weight: math.unit(400, "kg"),
  24607. name: "Side",
  24608. image: {
  24609. source: "./media/characters/bolt/side.svg",
  24610. extra: 1126 / 896,
  24611. bottom: 60 / 1187.3,
  24612. }
  24613. },
  24614. },
  24615. [
  24616. {
  24617. name: "Micro",
  24618. height: math.unit(5, "inches")
  24619. },
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(9, "feet"),
  24623. default: true
  24624. },
  24625. {
  24626. name: "Macro",
  24627. height: math.unit(700, "feet")
  24628. },
  24629. {
  24630. name: "Max Size",
  24631. height: math.unit(1.52e22, "yottameters")
  24632. },
  24633. ]
  24634. ))
  24635. characterMakers.push(() => makeCharacter(
  24636. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24637. {
  24638. front: {
  24639. height: math.unit(4.53, "meters"),
  24640. weight: math.unit(3, "tons"),
  24641. name: "Front",
  24642. image: {
  24643. source: "./media/characters/draekon-sylviar/front.svg",
  24644. extra: 1228 / 1068,
  24645. bottom: 41 / 1270
  24646. }
  24647. },
  24648. tail: {
  24649. height: math.unit(1.772, "meter"),
  24650. name: "Tail",
  24651. image: {
  24652. source: "./media/characters/draekon-sylviar/tail.svg"
  24653. }
  24654. },
  24655. head: {
  24656. height: math.unit(1.331, "meter"),
  24657. name: "Head",
  24658. image: {
  24659. source: "./media/characters/draekon-sylviar/head.svg"
  24660. }
  24661. },
  24662. hand: {
  24663. height: math.unit(0.564, "meter"),
  24664. name: "Hand",
  24665. image: {
  24666. source: "./media/characters/draekon-sylviar/hand.svg"
  24667. }
  24668. },
  24669. foot: {
  24670. height: math.unit(0.621, "meter"),
  24671. name: "Foot",
  24672. image: {
  24673. source: "./media/characters/draekon-sylviar/foot.svg",
  24674. bottom: 32 / 324
  24675. }
  24676. },
  24677. dick: {
  24678. height: math.unit(61, "cm"),
  24679. name: "Dick",
  24680. image: {
  24681. source: "./media/characters/draekon-sylviar/dick.svg"
  24682. }
  24683. },
  24684. dickseparated: {
  24685. height: math.unit(61, "cm"),
  24686. name: "Dick-separated",
  24687. image: {
  24688. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24689. }
  24690. },
  24691. },
  24692. [
  24693. {
  24694. name: "Small",
  24695. height: math.unit(4.53 / 2, "meters"),
  24696. default: true
  24697. },
  24698. {
  24699. name: "Normal",
  24700. height: math.unit(4.53, "meters"),
  24701. default: true
  24702. },
  24703. {
  24704. name: "Large",
  24705. height: math.unit(4.53 * 2, "meters"),
  24706. },
  24707. ]
  24708. ))
  24709. characterMakers.push(() => makeCharacter(
  24710. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24711. {
  24712. front: {
  24713. height: math.unit(6 + 2 / 12, "feet"),
  24714. weight: math.unit(180, "lb"),
  24715. name: "Front",
  24716. image: {
  24717. source: "./media/characters/brawler/front.svg",
  24718. extra: 3301 / 3027,
  24719. bottom: 138 / 3439
  24720. }
  24721. },
  24722. },
  24723. [
  24724. {
  24725. name: "Normal",
  24726. height: math.unit(6 + 2 / 12, "feet"),
  24727. default: true
  24728. },
  24729. ]
  24730. ))
  24731. characterMakers.push(() => makeCharacter(
  24732. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24733. {
  24734. front: {
  24735. height: math.unit(11, "feet"),
  24736. weight: math.unit(1000, "lb"),
  24737. name: "Front",
  24738. image: {
  24739. source: "./media/characters/alex/front.svg",
  24740. bottom: 44.5 / 620
  24741. }
  24742. },
  24743. },
  24744. [
  24745. {
  24746. name: "Micro",
  24747. height: math.unit(5, "inches")
  24748. },
  24749. {
  24750. name: "Normal",
  24751. height: math.unit(11, "feet"),
  24752. default: true
  24753. },
  24754. {
  24755. name: "Macro",
  24756. height: math.unit(9.5e9, "feet")
  24757. },
  24758. {
  24759. name: "Max Size",
  24760. height: math.unit(1.4e283, "yottameters")
  24761. },
  24762. ]
  24763. ))
  24764. characterMakers.push(() => makeCharacter(
  24765. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24766. {
  24767. female: {
  24768. height: math.unit(29.9, "m"),
  24769. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24770. name: "Female",
  24771. image: {
  24772. source: "./media/characters/zenari/female.svg",
  24773. extra: 3281.6 / 3217,
  24774. bottom: 72.2 / 3353
  24775. }
  24776. },
  24777. male: {
  24778. height: math.unit(27.7, "m"),
  24779. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24780. name: "Male",
  24781. image: {
  24782. source: "./media/characters/zenari/male.svg",
  24783. extra: 3008 / 2991,
  24784. bottom: 54.6 / 3069
  24785. }
  24786. },
  24787. },
  24788. [
  24789. {
  24790. name: "Macro",
  24791. height: math.unit(29.7, "meters"),
  24792. default: true
  24793. },
  24794. ]
  24795. ))
  24796. characterMakers.push(() => makeCharacter(
  24797. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24798. {
  24799. female: {
  24800. height: math.unit(23.8, "m"),
  24801. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24802. name: "Female",
  24803. image: {
  24804. source: "./media/characters/mactarian/female.svg",
  24805. extra: 2662 / 2569,
  24806. bottom: 73 / 2736
  24807. }
  24808. },
  24809. male: {
  24810. height: math.unit(23.8, "m"),
  24811. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24812. name: "Male",
  24813. image: {
  24814. source: "./media/characters/mactarian/male.svg",
  24815. extra: 2673 / 2600,
  24816. bottom: 76 / 2750
  24817. }
  24818. },
  24819. },
  24820. [
  24821. {
  24822. name: "Macro",
  24823. height: math.unit(23.8, "meters"),
  24824. default: true
  24825. },
  24826. ]
  24827. ))
  24828. characterMakers.push(() => makeCharacter(
  24829. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24830. {
  24831. female: {
  24832. height: math.unit(19.3, "m"),
  24833. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24834. name: "Female",
  24835. image: {
  24836. source: "./media/characters/umok/female.svg",
  24837. extra: 2186 / 2078,
  24838. bottom: 87 / 2277
  24839. }
  24840. },
  24841. male: {
  24842. height: math.unit(19.5, "m"),
  24843. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24844. name: "Male",
  24845. image: {
  24846. source: "./media/characters/umok/male.svg",
  24847. extra: 2233 / 2140,
  24848. bottom: 24.4 / 2258
  24849. }
  24850. },
  24851. },
  24852. [
  24853. {
  24854. name: "Macro",
  24855. height: math.unit(19.3, "meters"),
  24856. default: true
  24857. },
  24858. ]
  24859. ))
  24860. characterMakers.push(() => makeCharacter(
  24861. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24862. {
  24863. female: {
  24864. height: math.unit(26.15, "m"),
  24865. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24866. name: "Female",
  24867. image: {
  24868. source: "./media/characters/joraxian/female.svg",
  24869. extra: 2912 / 2824,
  24870. bottom: 36 / 2956
  24871. }
  24872. },
  24873. male: {
  24874. height: math.unit(25.4, "m"),
  24875. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24876. name: "Male",
  24877. image: {
  24878. source: "./media/characters/joraxian/male.svg",
  24879. extra: 2877 / 2721,
  24880. bottom: 82 / 2967
  24881. }
  24882. },
  24883. },
  24884. [
  24885. {
  24886. name: "Macro",
  24887. height: math.unit(26.15, "meters"),
  24888. default: true
  24889. },
  24890. ]
  24891. ))
  24892. characterMakers.push(() => makeCharacter(
  24893. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24894. {
  24895. female: {
  24896. height: math.unit(21.6, "m"),
  24897. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24898. name: "Female",
  24899. image: {
  24900. source: "./media/characters/sthara/female.svg",
  24901. extra: 2516 / 2347,
  24902. bottom: 21.5 / 2537
  24903. }
  24904. },
  24905. male: {
  24906. height: math.unit(24, "m"),
  24907. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24908. name: "Male",
  24909. image: {
  24910. source: "./media/characters/sthara/male.svg",
  24911. extra: 2732 / 2607,
  24912. bottom: 23 / 2732
  24913. }
  24914. },
  24915. },
  24916. [
  24917. {
  24918. name: "Macro",
  24919. height: math.unit(21.6, "meters"),
  24920. default: true
  24921. },
  24922. ]
  24923. ))
  24924. characterMakers.push(() => makeCharacter(
  24925. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24926. {
  24927. front: {
  24928. height: math.unit(6 + 4 / 12, "feet"),
  24929. weight: math.unit(175, "lb"),
  24930. name: "Front",
  24931. image: {
  24932. source: "./media/characters/luka-bryzant/front.svg",
  24933. extra: 311 / 289,
  24934. bottom: 4 / 315
  24935. }
  24936. },
  24937. back: {
  24938. height: math.unit(6 + 4 / 12, "feet"),
  24939. weight: math.unit(175, "lb"),
  24940. name: "Back",
  24941. image: {
  24942. source: "./media/characters/luka-bryzant/back.svg",
  24943. extra: 311 / 289,
  24944. bottom: 3.8 / 313.7
  24945. }
  24946. },
  24947. },
  24948. [
  24949. {
  24950. name: "Micro",
  24951. height: math.unit(10, "inches")
  24952. },
  24953. {
  24954. name: "Normal",
  24955. height: math.unit(6 + 4 / 12, "feet"),
  24956. default: true
  24957. },
  24958. {
  24959. name: "Large",
  24960. height: math.unit(12, "feet")
  24961. },
  24962. ]
  24963. ))
  24964. characterMakers.push(() => makeCharacter(
  24965. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24966. {
  24967. front: {
  24968. height: math.unit(5 + 7 / 12, "feet"),
  24969. weight: math.unit(185, "lb"),
  24970. name: "Front",
  24971. image: {
  24972. source: "./media/characters/aman-aquila/front.svg",
  24973. extra: 1013 / 976,
  24974. bottom: 45.6 / 1057
  24975. }
  24976. },
  24977. side: {
  24978. height: math.unit(5 + 7 / 12, "feet"),
  24979. weight: math.unit(185, "lb"),
  24980. name: "Side",
  24981. image: {
  24982. source: "./media/characters/aman-aquila/side.svg",
  24983. extra: 1054 / 1011,
  24984. bottom: 15 / 1070
  24985. }
  24986. },
  24987. back: {
  24988. height: math.unit(5 + 7 / 12, "feet"),
  24989. weight: math.unit(185, "lb"),
  24990. name: "Back",
  24991. image: {
  24992. source: "./media/characters/aman-aquila/back.svg",
  24993. extra: 1026 / 970,
  24994. bottom: 12 / 1039
  24995. }
  24996. },
  24997. head: {
  24998. height: math.unit(1.211, "feet"),
  24999. name: "Head",
  25000. image: {
  25001. source: "./media/characters/aman-aquila/head.svg",
  25002. }
  25003. },
  25004. },
  25005. [
  25006. {
  25007. name: "Minimicro",
  25008. height: math.unit(0.057, "inches")
  25009. },
  25010. {
  25011. name: "Micro",
  25012. height: math.unit(7, "inches")
  25013. },
  25014. {
  25015. name: "Mini",
  25016. height: math.unit(3 + 7 / 12, "feet")
  25017. },
  25018. {
  25019. name: "Normal",
  25020. height: math.unit(5 + 7 / 12, "feet"),
  25021. default: true
  25022. },
  25023. {
  25024. name: "Macro",
  25025. height: math.unit(157 + 7 / 12, "feet")
  25026. },
  25027. {
  25028. name: "Megamacro",
  25029. height: math.unit(1557 + 7 / 12, "feet")
  25030. },
  25031. {
  25032. name: "Gigamacro",
  25033. height: math.unit(15557 + 7 / 12, "feet")
  25034. },
  25035. ]
  25036. ))
  25037. characterMakers.push(() => makeCharacter(
  25038. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25039. {
  25040. front: {
  25041. height: math.unit(3 + 2 / 12, "inches"),
  25042. weight: math.unit(0.3, "ounces"),
  25043. name: "Front",
  25044. image: {
  25045. source: "./media/characters/hiphae/front.svg",
  25046. extra: 1931 / 1683,
  25047. bottom: 24 / 1955
  25048. }
  25049. },
  25050. },
  25051. [
  25052. {
  25053. name: "Normal",
  25054. height: math.unit(3 + 1 / 2, "inches"),
  25055. default: true
  25056. },
  25057. ]
  25058. ))
  25059. characterMakers.push(() => makeCharacter(
  25060. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25061. {
  25062. front: {
  25063. height: math.unit(5 + 10 / 12, "feet"),
  25064. weight: math.unit(165, "lb"),
  25065. name: "Front",
  25066. image: {
  25067. source: "./media/characters/nicky/front.svg",
  25068. extra: 3144 / 2886,
  25069. bottom: 45.6 / 3192
  25070. }
  25071. },
  25072. back: {
  25073. height: math.unit(5 + 10 / 12, "feet"),
  25074. weight: math.unit(165, "lb"),
  25075. name: "Back",
  25076. image: {
  25077. source: "./media/characters/nicky/back.svg",
  25078. extra: 3055 / 2804,
  25079. bottom: 28.4 / 3087
  25080. }
  25081. },
  25082. frontclothed: {
  25083. height: math.unit(5 + 10 / 12, "feet"),
  25084. weight: math.unit(165, "lb"),
  25085. name: "Front-clothed",
  25086. image: {
  25087. source: "./media/characters/nicky/front-clothed.svg",
  25088. extra: 3184.9 / 2926.9,
  25089. bottom: 86.5 / 3239.9
  25090. }
  25091. },
  25092. foot: {
  25093. height: math.unit(1.16, "feet"),
  25094. name: "Foot",
  25095. image: {
  25096. source: "./media/characters/nicky/foot.svg"
  25097. }
  25098. },
  25099. feet: {
  25100. height: math.unit(1.34, "feet"),
  25101. name: "Feet",
  25102. image: {
  25103. source: "./media/characters/nicky/feet.svg"
  25104. }
  25105. },
  25106. maw: {
  25107. height: math.unit(0.9, "feet"),
  25108. name: "Maw",
  25109. image: {
  25110. source: "./media/characters/nicky/maw.svg"
  25111. }
  25112. },
  25113. },
  25114. [
  25115. {
  25116. name: "Normal",
  25117. height: math.unit(5 + 10 / 12, "feet"),
  25118. default: true
  25119. },
  25120. {
  25121. name: "Macro",
  25122. height: math.unit(60, "feet")
  25123. },
  25124. {
  25125. name: "Megamacro",
  25126. height: math.unit(1, "mile")
  25127. },
  25128. ]
  25129. ))
  25130. characterMakers.push(() => makeCharacter(
  25131. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25132. {
  25133. side: {
  25134. height: math.unit(10, "feet"),
  25135. weight: math.unit(600, "lb"),
  25136. name: "Side",
  25137. image: {
  25138. source: "./media/characters/blair/side.svg",
  25139. bottom: 16.6 / 475,
  25140. extra: 458 / 431
  25141. }
  25142. },
  25143. },
  25144. [
  25145. {
  25146. name: "Micro",
  25147. height: math.unit(8, "inches")
  25148. },
  25149. {
  25150. name: "Normal",
  25151. height: math.unit(10, "feet"),
  25152. default: true
  25153. },
  25154. {
  25155. name: "Macro",
  25156. height: math.unit(180, "feet")
  25157. },
  25158. ]
  25159. ))
  25160. characterMakers.push(() => makeCharacter(
  25161. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25162. {
  25163. front: {
  25164. height: math.unit(5 + 4 / 12, "feet"),
  25165. weight: math.unit(125, "lb"),
  25166. name: "Front",
  25167. image: {
  25168. source: "./media/characters/fisher/front.svg",
  25169. extra: 444 / 390,
  25170. bottom: 2 / 444.8
  25171. }
  25172. },
  25173. },
  25174. [
  25175. {
  25176. name: "Micro",
  25177. height: math.unit(4, "inches")
  25178. },
  25179. {
  25180. name: "Normal",
  25181. height: math.unit(5 + 4 / 12, "feet"),
  25182. default: true
  25183. },
  25184. {
  25185. name: "Macro",
  25186. height: math.unit(100, "feet")
  25187. },
  25188. ]
  25189. ))
  25190. characterMakers.push(() => makeCharacter(
  25191. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25192. {
  25193. front: {
  25194. height: math.unit(6.71, "feet"),
  25195. weight: math.unit(200, "lb"),
  25196. capacity: math.unit(1000000, "people"),
  25197. name: "Front",
  25198. image: {
  25199. source: "./media/characters/gliss/front.svg",
  25200. extra: 2347 / 2231,
  25201. bottom: 113 / 2462
  25202. }
  25203. },
  25204. hammerspaceSize: {
  25205. height: math.unit(6.71 * 717, "feet"),
  25206. weight: math.unit(200, "lb"),
  25207. capacity: math.unit(1000000, "people"),
  25208. name: "Hammerspace Size",
  25209. image: {
  25210. source: "./media/characters/gliss/front.svg",
  25211. extra: 2347 / 2231,
  25212. bottom: 113 / 2462
  25213. }
  25214. },
  25215. },
  25216. [
  25217. {
  25218. name: "Normal",
  25219. height: math.unit(6.71, "feet"),
  25220. default: true
  25221. },
  25222. ]
  25223. ))
  25224. characterMakers.push(() => makeCharacter(
  25225. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25226. {
  25227. side: {
  25228. height: math.unit(1.44, "m"),
  25229. weight: math.unit(80, "kg"),
  25230. name: "Side",
  25231. image: {
  25232. source: "./media/characters/dune-anderson/side.svg",
  25233. bottom: 49 / 1426
  25234. }
  25235. },
  25236. },
  25237. [
  25238. {
  25239. name: "Wolf-sized",
  25240. height: math.unit(1.44, "meters")
  25241. },
  25242. {
  25243. name: "Normal",
  25244. height: math.unit(5.05, "meters"),
  25245. default: true
  25246. },
  25247. {
  25248. name: "Big",
  25249. height: math.unit(14.4, "meters")
  25250. },
  25251. {
  25252. name: "Huge",
  25253. height: math.unit(144, "meters")
  25254. },
  25255. ]
  25256. ))
  25257. characterMakers.push(() => makeCharacter(
  25258. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25259. {
  25260. front: {
  25261. height: math.unit(7, "feet"),
  25262. weight: math.unit(425, "lb"),
  25263. name: "Front",
  25264. image: {
  25265. source: "./media/characters/hind/front.svg",
  25266. extra: 2091 / 1860,
  25267. bottom: 129 / 2220
  25268. }
  25269. },
  25270. back: {
  25271. height: math.unit(7, "feet"),
  25272. weight: math.unit(425, "lb"),
  25273. name: "Back",
  25274. image: {
  25275. source: "./media/characters/hind/back.svg",
  25276. extra: 2091 / 1860,
  25277. bottom: 24.6 / 2309
  25278. }
  25279. },
  25280. tail: {
  25281. height: math.unit(2.8, "feet"),
  25282. name: "Tail",
  25283. image: {
  25284. source: "./media/characters/hind/tail.svg"
  25285. }
  25286. },
  25287. head: {
  25288. height: math.unit(2.55, "feet"),
  25289. name: "Head",
  25290. image: {
  25291. source: "./media/characters/hind/head.svg"
  25292. }
  25293. },
  25294. },
  25295. [
  25296. {
  25297. name: "XS",
  25298. height: math.unit(0.7, "feet")
  25299. },
  25300. {
  25301. name: "Normal",
  25302. height: math.unit(7, "feet"),
  25303. default: true
  25304. },
  25305. {
  25306. name: "XL",
  25307. height: math.unit(70, "feet")
  25308. },
  25309. ]
  25310. ))
  25311. characterMakers.push(() => makeCharacter(
  25312. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25313. {
  25314. front: {
  25315. height: math.unit(2.1, "meters"),
  25316. weight: math.unit(150, "lb"),
  25317. name: "Front",
  25318. image: {
  25319. source: "./media/characters/tharquench-sizestealer/front.svg",
  25320. extra: 1605/1470,
  25321. bottom: 36/1641
  25322. }
  25323. },
  25324. frontAlt: {
  25325. height: math.unit(2.1, "meters"),
  25326. weight: math.unit(150, "lb"),
  25327. name: "Front (Alt)",
  25328. image: {
  25329. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25330. extra: 2318 / 2063,
  25331. bottom: 93.4 / 2410
  25332. }
  25333. },
  25334. },
  25335. [
  25336. {
  25337. name: "Nano",
  25338. height: math.unit(1, "mm")
  25339. },
  25340. {
  25341. name: "Micro",
  25342. height: math.unit(1, "cm")
  25343. },
  25344. {
  25345. name: "Normal",
  25346. height: math.unit(2.1, "meters"),
  25347. default: true
  25348. },
  25349. ]
  25350. ))
  25351. characterMakers.push(() => makeCharacter(
  25352. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25353. {
  25354. front: {
  25355. height: math.unit(7 + 5 / 12, "feet"),
  25356. weight: math.unit(357, "lb"),
  25357. name: "Front",
  25358. image: {
  25359. source: "./media/characters/solex-draconov/front.svg",
  25360. extra: 1993 / 1865,
  25361. bottom: 117 / 2111
  25362. }
  25363. },
  25364. },
  25365. [
  25366. {
  25367. name: "Natural Height",
  25368. height: math.unit(7 + 5 / 12, "feet"),
  25369. default: true
  25370. },
  25371. {
  25372. name: "Macro",
  25373. height: math.unit(350, "feet")
  25374. },
  25375. {
  25376. name: "Macro+",
  25377. height: math.unit(1000, "feet")
  25378. },
  25379. {
  25380. name: "Megamacro",
  25381. height: math.unit(20, "km")
  25382. },
  25383. {
  25384. name: "Megamacro+",
  25385. height: math.unit(1000, "km")
  25386. },
  25387. {
  25388. name: "Gigamacro",
  25389. height: math.unit(2.5, "Gm")
  25390. },
  25391. {
  25392. name: "Teramacro",
  25393. height: math.unit(15, "Tm")
  25394. },
  25395. {
  25396. name: "Galactic",
  25397. height: math.unit(30, "Zm")
  25398. },
  25399. {
  25400. name: "Universal",
  25401. height: math.unit(21000, "Ym")
  25402. },
  25403. {
  25404. name: "Omniversal",
  25405. height: math.unit(9.861e50, "Ym")
  25406. },
  25407. {
  25408. name: "Existential",
  25409. height: math.unit(1e300, "meters")
  25410. },
  25411. ]
  25412. ))
  25413. characterMakers.push(() => makeCharacter(
  25414. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25415. {
  25416. side: {
  25417. height: math.unit(25, "feet"),
  25418. weight: math.unit(90000, "lb"),
  25419. name: "Side",
  25420. image: {
  25421. source: "./media/characters/mandarax/side.svg",
  25422. extra: 614 / 332,
  25423. bottom: 55 / 630
  25424. }
  25425. },
  25426. head: {
  25427. height: math.unit(11.4, "feet"),
  25428. name: "Head",
  25429. image: {
  25430. source: "./media/characters/mandarax/head.svg"
  25431. }
  25432. },
  25433. belly: {
  25434. height: math.unit(33, "feet"),
  25435. name: "Belly",
  25436. capacity: math.unit(500, "people"),
  25437. image: {
  25438. source: "./media/characters/mandarax/belly.svg"
  25439. }
  25440. },
  25441. dick: {
  25442. height: math.unit(8.46, "feet"),
  25443. name: "Dick",
  25444. image: {
  25445. source: "./media/characters/mandarax/dick.svg"
  25446. }
  25447. },
  25448. top: {
  25449. height: math.unit(28, "meters"),
  25450. name: "Top",
  25451. image: {
  25452. source: "./media/characters/mandarax/top.svg"
  25453. }
  25454. },
  25455. },
  25456. [
  25457. {
  25458. name: "Normal",
  25459. height: math.unit(25, "feet"),
  25460. default: true
  25461. },
  25462. ]
  25463. ))
  25464. characterMakers.push(() => makeCharacter(
  25465. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25466. {
  25467. front: {
  25468. height: math.unit(5, "feet"),
  25469. weight: math.unit(90, "lb"),
  25470. name: "Front",
  25471. image: {
  25472. source: "./media/characters/pixil/front.svg",
  25473. extra: 2000 / 1618,
  25474. bottom: 12.3 / 2011
  25475. }
  25476. },
  25477. },
  25478. [
  25479. {
  25480. name: "Normal",
  25481. height: math.unit(5, "feet"),
  25482. default: true
  25483. },
  25484. {
  25485. name: "Megamacro",
  25486. height: math.unit(10, "miles"),
  25487. },
  25488. ]
  25489. ))
  25490. characterMakers.push(() => makeCharacter(
  25491. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25492. {
  25493. front: {
  25494. height: math.unit(7 + 2 / 12, "feet"),
  25495. weight: math.unit(200, "lb"),
  25496. name: "Front",
  25497. image: {
  25498. source: "./media/characters/angel/front.svg",
  25499. extra: 1830 / 1737,
  25500. bottom: 22.6 / 1854,
  25501. }
  25502. },
  25503. },
  25504. [
  25505. {
  25506. name: "Normal",
  25507. height: math.unit(7 + 2 / 12, "feet"),
  25508. default: true
  25509. },
  25510. {
  25511. name: "Macro",
  25512. height: math.unit(1000, "feet")
  25513. },
  25514. {
  25515. name: "Megamacro",
  25516. height: math.unit(2, "miles")
  25517. },
  25518. {
  25519. name: "Gigamacro",
  25520. height: math.unit(20, "earths")
  25521. },
  25522. ]
  25523. ))
  25524. characterMakers.push(() => makeCharacter(
  25525. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25526. {
  25527. front: {
  25528. height: math.unit(5, "feet"),
  25529. weight: math.unit(180, "lb"),
  25530. name: "Front",
  25531. image: {
  25532. source: "./media/characters/mekana/front.svg",
  25533. extra: 1671 / 1605,
  25534. bottom: 3.5 / 1691
  25535. }
  25536. },
  25537. side: {
  25538. height: math.unit(5, "feet"),
  25539. weight: math.unit(180, "lb"),
  25540. name: "Side",
  25541. image: {
  25542. source: "./media/characters/mekana/side.svg",
  25543. extra: 1671 / 1605,
  25544. bottom: 3.5 / 1691
  25545. }
  25546. },
  25547. back: {
  25548. height: math.unit(5, "feet"),
  25549. weight: math.unit(180, "lb"),
  25550. name: "Back",
  25551. image: {
  25552. source: "./media/characters/mekana/back.svg",
  25553. extra: 1671 / 1605,
  25554. bottom: 3.5 / 1691
  25555. }
  25556. },
  25557. },
  25558. [
  25559. {
  25560. name: "Normal",
  25561. height: math.unit(5, "feet"),
  25562. default: true
  25563. },
  25564. ]
  25565. ))
  25566. characterMakers.push(() => makeCharacter(
  25567. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25568. {
  25569. front: {
  25570. height: math.unit(4 + 6 / 12, "feet"),
  25571. weight: math.unit(80, "lb"),
  25572. name: "Front",
  25573. image: {
  25574. source: "./media/characters/pixie/front.svg",
  25575. extra: 1924 / 1825,
  25576. bottom: 22.4 / 1946
  25577. }
  25578. },
  25579. },
  25580. [
  25581. {
  25582. name: "Normal",
  25583. height: math.unit(4 + 6 / 12, "feet"),
  25584. default: true
  25585. },
  25586. {
  25587. name: "Macro",
  25588. height: math.unit(40, "feet")
  25589. },
  25590. ]
  25591. ))
  25592. characterMakers.push(() => makeCharacter(
  25593. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25594. {
  25595. front: {
  25596. height: math.unit(2.1, "meters"),
  25597. weight: math.unit(200, "lb"),
  25598. name: "Front",
  25599. image: {
  25600. source: "./media/characters/the-lascivious/front.svg",
  25601. extra: 1 / 0.893,
  25602. bottom: 3.5 / 573.7
  25603. }
  25604. },
  25605. },
  25606. [
  25607. {
  25608. name: "Human Scale",
  25609. height: math.unit(2.1, "meters")
  25610. },
  25611. {
  25612. name: "Wolxi Scale",
  25613. height: math.unit(46.2, "m"),
  25614. default: true
  25615. },
  25616. {
  25617. name: "Boinker of Buildings",
  25618. height: math.unit(10, "km")
  25619. },
  25620. {
  25621. name: "Shagger of Skyscrapers",
  25622. height: math.unit(40, "km")
  25623. },
  25624. {
  25625. name: "Banger of Boroughs",
  25626. height: math.unit(4000, "km")
  25627. },
  25628. {
  25629. name: "Screwer of States",
  25630. height: math.unit(100000, "km")
  25631. },
  25632. {
  25633. name: "Pounder of Planets",
  25634. height: math.unit(2000000, "km")
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25640. {
  25641. front: {
  25642. height: math.unit(6, "feet"),
  25643. weight: math.unit(150, "lb"),
  25644. name: "Front",
  25645. image: {
  25646. source: "./media/characters/aj/front.svg",
  25647. extra: 2039 / 1562,
  25648. bottom: 40 / 2079
  25649. }
  25650. },
  25651. },
  25652. [
  25653. {
  25654. name: "Normal",
  25655. height: math.unit(11 + 6 / 12, "feet"),
  25656. default: true
  25657. },
  25658. {
  25659. name: "Megamacro",
  25660. height: math.unit(60, "megameters")
  25661. },
  25662. ]
  25663. ))
  25664. characterMakers.push(() => makeCharacter(
  25665. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25666. {
  25667. side: {
  25668. height: math.unit(31 + 8 / 12, "feet"),
  25669. weight: math.unit(75000, "kg"),
  25670. name: "Side",
  25671. image: {
  25672. source: "./media/characters/koros/side.svg",
  25673. extra: 1442 / 1297,
  25674. bottom: 122.7 / 1562
  25675. }
  25676. },
  25677. dicksKingsCrown: {
  25678. height: math.unit(6, "feet"),
  25679. name: "Dicks (King's Crown)",
  25680. image: {
  25681. source: "./media/characters/koros/dicks-kings-crown.svg"
  25682. }
  25683. },
  25684. dicksTailSet: {
  25685. height: math.unit(3, "feet"),
  25686. name: "Dicks (Tail Set)",
  25687. image: {
  25688. source: "./media/characters/koros/dicks-tail-set.svg"
  25689. }
  25690. },
  25691. dickCumming: {
  25692. height: math.unit(7.98, "feet"),
  25693. name: "Dick (Cumming)",
  25694. image: {
  25695. source: "./media/characters/koros/dick-cumming.svg"
  25696. }
  25697. },
  25698. dicksBack: {
  25699. height: math.unit(5.9, "feet"),
  25700. name: "Dicks (Back)",
  25701. image: {
  25702. source: "./media/characters/koros/dicks-back.svg"
  25703. }
  25704. },
  25705. dicksFront: {
  25706. height: math.unit(3.72, "feet"),
  25707. name: "Dicks (Front)",
  25708. image: {
  25709. source: "./media/characters/koros/dicks-front.svg"
  25710. }
  25711. },
  25712. dicksPeeking: {
  25713. height: math.unit(3.0, "feet"),
  25714. name: "Dicks (Peeking)",
  25715. image: {
  25716. source: "./media/characters/koros/dicks-peeking.svg"
  25717. }
  25718. },
  25719. eye: {
  25720. height: math.unit(1.7, "feet"),
  25721. name: "Eye",
  25722. image: {
  25723. source: "./media/characters/koros/eye.svg"
  25724. }
  25725. },
  25726. headFront: {
  25727. height: math.unit(11.69, "feet"),
  25728. name: "Head (Front)",
  25729. image: {
  25730. source: "./media/characters/koros/head-front.svg"
  25731. }
  25732. },
  25733. headSide: {
  25734. height: math.unit(14, "feet"),
  25735. name: "Head (Side)",
  25736. image: {
  25737. source: "./media/characters/koros/head-side.svg"
  25738. }
  25739. },
  25740. leg: {
  25741. height: math.unit(17, "feet"),
  25742. name: "Leg",
  25743. image: {
  25744. source: "./media/characters/koros/leg.svg"
  25745. }
  25746. },
  25747. mawSide: {
  25748. height: math.unit(12.8, "feet"),
  25749. name: "Maw (Side)",
  25750. image: {
  25751. source: "./media/characters/koros/maw-side.svg"
  25752. }
  25753. },
  25754. mawSpitting: {
  25755. height: math.unit(17, "feet"),
  25756. name: "Maw (Spitting)",
  25757. image: {
  25758. source: "./media/characters/koros/maw-spitting.svg"
  25759. }
  25760. },
  25761. slit: {
  25762. height: math.unit(2.8, "feet"),
  25763. name: "Slit",
  25764. image: {
  25765. source: "./media/characters/koros/slit.svg"
  25766. }
  25767. },
  25768. stomach: {
  25769. height: math.unit(6.8, "feet"),
  25770. capacity: math.unit(20, "people"),
  25771. name: "Stomach",
  25772. image: {
  25773. source: "./media/characters/koros/stomach.svg"
  25774. }
  25775. },
  25776. wingspanBottom: {
  25777. height: math.unit(114, "feet"),
  25778. name: "Wingspan (Bottom)",
  25779. image: {
  25780. source: "./media/characters/koros/wingspan-bottom.svg"
  25781. }
  25782. },
  25783. wingspanTop: {
  25784. height: math.unit(104, "feet"),
  25785. name: "Wingspan (Top)",
  25786. image: {
  25787. source: "./media/characters/koros/wingspan-top.svg"
  25788. }
  25789. },
  25790. },
  25791. [
  25792. {
  25793. name: "Normal",
  25794. height: math.unit(31 + 8 / 12, "feet"),
  25795. default: true
  25796. },
  25797. ]
  25798. ))
  25799. characterMakers.push(() => makeCharacter(
  25800. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25801. {
  25802. front: {
  25803. height: math.unit(18 + 5 / 12, "feet"),
  25804. weight: math.unit(3750, "kg"),
  25805. name: "Front",
  25806. image: {
  25807. source: "./media/characters/vexx/front.svg",
  25808. extra: 426 / 396,
  25809. bottom: 31.5 / 458
  25810. }
  25811. },
  25812. maw: {
  25813. height: math.unit(6, "feet"),
  25814. name: "Maw",
  25815. image: {
  25816. source: "./media/characters/vexx/maw.svg"
  25817. }
  25818. },
  25819. },
  25820. [
  25821. {
  25822. name: "Normal",
  25823. height: math.unit(18 + 5 / 12, "feet"),
  25824. default: true
  25825. },
  25826. ]
  25827. ))
  25828. characterMakers.push(() => makeCharacter(
  25829. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25830. {
  25831. front: {
  25832. height: math.unit(17 + 6 / 12, "feet"),
  25833. weight: math.unit(150, "lb"),
  25834. name: "Front",
  25835. image: {
  25836. source: "./media/characters/baadra/front.svg",
  25837. extra: 3137 / 2890,
  25838. bottom: 168.4 / 3305
  25839. }
  25840. },
  25841. back: {
  25842. height: math.unit(17 + 6 / 12, "feet"),
  25843. weight: math.unit(150, "lb"),
  25844. name: "Back",
  25845. image: {
  25846. source: "./media/characters/baadra/back.svg",
  25847. extra: 3142 / 2890,
  25848. bottom: 220 / 3371
  25849. }
  25850. },
  25851. head: {
  25852. height: math.unit(5.45, "feet"),
  25853. name: "Head",
  25854. image: {
  25855. source: "./media/characters/baadra/head.svg"
  25856. }
  25857. },
  25858. headAngry: {
  25859. height: math.unit(4.95, "feet"),
  25860. name: "Head (Angry)",
  25861. image: {
  25862. source: "./media/characters/baadra/head-angry.svg"
  25863. }
  25864. },
  25865. headOpen: {
  25866. height: math.unit(6, "feet"),
  25867. name: "Head (Open)",
  25868. image: {
  25869. source: "./media/characters/baadra/head-open.svg"
  25870. }
  25871. },
  25872. },
  25873. [
  25874. {
  25875. name: "Normal",
  25876. height: math.unit(17 + 6 / 12, "feet"),
  25877. default: true
  25878. },
  25879. ]
  25880. ))
  25881. characterMakers.push(() => makeCharacter(
  25882. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25883. {
  25884. front: {
  25885. height: math.unit(7 + 3 / 12, "feet"),
  25886. weight: math.unit(180, "lb"),
  25887. name: "Front",
  25888. image: {
  25889. source: "./media/characters/juri/front.svg",
  25890. extra: 1401 / 1237,
  25891. bottom: 18.5 / 1418
  25892. }
  25893. },
  25894. side: {
  25895. height: math.unit(7 + 3 / 12, "feet"),
  25896. weight: math.unit(180, "lb"),
  25897. name: "Side",
  25898. image: {
  25899. source: "./media/characters/juri/side.svg",
  25900. extra: 1424 / 1242,
  25901. bottom: 18.5 / 1447
  25902. }
  25903. },
  25904. sitting: {
  25905. height: math.unit(6, "feet"),
  25906. weight: math.unit(180, "lb"),
  25907. name: "Sitting",
  25908. image: {
  25909. source: "./media/characters/juri/sitting.svg",
  25910. extra: 1270 / 1143,
  25911. bottom: 100 / 1343
  25912. }
  25913. },
  25914. back: {
  25915. height: math.unit(7 + 3 / 12, "feet"),
  25916. weight: math.unit(180, "lb"),
  25917. name: "Back",
  25918. image: {
  25919. source: "./media/characters/juri/back.svg",
  25920. extra: 1377 / 1240,
  25921. bottom: 23.7 / 1405
  25922. }
  25923. },
  25924. maw: {
  25925. height: math.unit(2.8, "feet"),
  25926. name: "Maw",
  25927. image: {
  25928. source: "./media/characters/juri/maw.svg"
  25929. }
  25930. },
  25931. stomach: {
  25932. height: math.unit(0.89, "feet"),
  25933. capacity: math.unit(4, "liters"),
  25934. name: "Stomach",
  25935. image: {
  25936. source: "./media/characters/juri/stomach.svg"
  25937. }
  25938. },
  25939. },
  25940. [
  25941. {
  25942. name: "Normal",
  25943. height: math.unit(7 + 3 / 12, "feet"),
  25944. default: true
  25945. },
  25946. ]
  25947. ))
  25948. characterMakers.push(() => makeCharacter(
  25949. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25950. {
  25951. fox: {
  25952. height: math.unit(5 + 6 / 12, "feet"),
  25953. weight: math.unit(140, "lb"),
  25954. name: "Fox",
  25955. image: {
  25956. source: "./media/characters/maxene-sita/fox.svg",
  25957. extra: 146 / 138,
  25958. bottom: 2.1 / 148.19
  25959. }
  25960. },
  25961. foxLaying: {
  25962. height: math.unit(1.70, "feet"),
  25963. weight: math.unit(140, "lb"),
  25964. name: "Fox (Laying)",
  25965. image: {
  25966. source: "./media/characters/maxene-sita/fox-laying.svg",
  25967. extra: 910 / 572,
  25968. bottom: 71 / 981
  25969. }
  25970. },
  25971. kitsune: {
  25972. height: math.unit(10, "feet"),
  25973. weight: math.unit(800, "lb"),
  25974. name: "Kitsune",
  25975. image: {
  25976. source: "./media/characters/maxene-sita/kitsune.svg",
  25977. extra: 185 / 176,
  25978. bottom: 4.7 / 189.9
  25979. }
  25980. },
  25981. hellhound: {
  25982. height: math.unit(10, "feet"),
  25983. weight: math.unit(700, "lb"),
  25984. name: "Hellhound",
  25985. image: {
  25986. source: "./media/characters/maxene-sita/hellhound.svg",
  25987. extra: 1600 / 1545,
  25988. bottom: 81 / 1681
  25989. }
  25990. },
  25991. },
  25992. [
  25993. {
  25994. name: "Normal",
  25995. height: math.unit(5 + 6 / 12, "feet"),
  25996. default: true
  25997. },
  25998. ]
  25999. ))
  26000. characterMakers.push(() => makeCharacter(
  26001. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26002. {
  26003. front: {
  26004. height: math.unit(3 + 4 / 12, "feet"),
  26005. weight: math.unit(70, "lb"),
  26006. name: "Front",
  26007. image: {
  26008. source: "./media/characters/maia/front.svg",
  26009. extra: 227 / 219.5,
  26010. bottom: 40 / 267
  26011. }
  26012. },
  26013. back: {
  26014. height: math.unit(3 + 4 / 12, "feet"),
  26015. weight: math.unit(70, "lb"),
  26016. name: "Back",
  26017. image: {
  26018. source: "./media/characters/maia/back.svg",
  26019. extra: 237 / 225
  26020. }
  26021. },
  26022. },
  26023. [
  26024. {
  26025. name: "Normal",
  26026. height: math.unit(3 + 4 / 12, "feet"),
  26027. default: true
  26028. },
  26029. ]
  26030. ))
  26031. characterMakers.push(() => makeCharacter(
  26032. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26033. {
  26034. front: {
  26035. height: math.unit(5 + 10 / 12, "feet"),
  26036. weight: math.unit(197, "lb"),
  26037. name: "Front",
  26038. image: {
  26039. source: "./media/characters/jabaro/front.svg",
  26040. extra: 225 / 216,
  26041. bottom: 5.06 / 230
  26042. }
  26043. },
  26044. back: {
  26045. height: math.unit(5 + 10 / 12, "feet"),
  26046. weight: math.unit(197, "lb"),
  26047. name: "Back",
  26048. image: {
  26049. source: "./media/characters/jabaro/back.svg",
  26050. extra: 225 / 219,
  26051. bottom: 1.9 / 227
  26052. }
  26053. },
  26054. },
  26055. [
  26056. {
  26057. name: "Normal",
  26058. height: math.unit(5 + 10 / 12, "feet"),
  26059. default: true
  26060. },
  26061. ]
  26062. ))
  26063. characterMakers.push(() => makeCharacter(
  26064. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26065. {
  26066. front: {
  26067. height: math.unit(5 + 8 / 12, "feet"),
  26068. weight: math.unit(139, "lb"),
  26069. name: "Front",
  26070. image: {
  26071. source: "./media/characters/risa/front.svg",
  26072. extra: 270 / 260,
  26073. bottom: 11.2 / 282
  26074. }
  26075. },
  26076. back: {
  26077. height: math.unit(5 + 8 / 12, "feet"),
  26078. weight: math.unit(139, "lb"),
  26079. name: "Back",
  26080. image: {
  26081. source: "./media/characters/risa/back.svg",
  26082. extra: 264 / 255,
  26083. bottom: 4 / 268
  26084. }
  26085. },
  26086. },
  26087. [
  26088. {
  26089. name: "Normal",
  26090. height: math.unit(5 + 8 / 12, "feet"),
  26091. default: true
  26092. },
  26093. ]
  26094. ))
  26095. characterMakers.push(() => makeCharacter(
  26096. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26097. {
  26098. front: {
  26099. height: math.unit(2 + 11 / 12, "feet"),
  26100. weight: math.unit(30, "lb"),
  26101. name: "Front",
  26102. image: {
  26103. source: "./media/characters/weatley/front.svg",
  26104. bottom: 10.7 / 414,
  26105. extra: 403.5 / 362
  26106. }
  26107. },
  26108. back: {
  26109. height: math.unit(2 + 11 / 12, "feet"),
  26110. weight: math.unit(30, "lb"),
  26111. name: "Back",
  26112. image: {
  26113. source: "./media/characters/weatley/back.svg",
  26114. bottom: 10.7 / 414,
  26115. extra: 403.5 / 362
  26116. }
  26117. },
  26118. },
  26119. [
  26120. {
  26121. name: "Normal",
  26122. height: math.unit(2 + 11 / 12, "feet"),
  26123. default: true
  26124. },
  26125. ]
  26126. ))
  26127. characterMakers.push(() => makeCharacter(
  26128. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26129. {
  26130. front: {
  26131. height: math.unit(5 + 2 / 12, "feet"),
  26132. weight: math.unit(50, "kg"),
  26133. name: "Front",
  26134. image: {
  26135. source: "./media/characters/mercury-crescent/front.svg",
  26136. extra: 1088 / 1033,
  26137. bottom: 18.9 / 1109
  26138. }
  26139. },
  26140. },
  26141. [
  26142. {
  26143. name: "Normal",
  26144. height: math.unit(5 + 2 / 12, "feet"),
  26145. default: true
  26146. },
  26147. ]
  26148. ))
  26149. characterMakers.push(() => makeCharacter(
  26150. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26151. {
  26152. front: {
  26153. height: math.unit(2, "feet"),
  26154. weight: math.unit(15, "kg"),
  26155. name: "Front",
  26156. image: {
  26157. source: "./media/characters/diamond-jones/front.svg",
  26158. extra: 727/723,
  26159. bottom: 46/773
  26160. }
  26161. },
  26162. },
  26163. [
  26164. {
  26165. name: "Normal",
  26166. height: math.unit(2, "feet"),
  26167. default: true
  26168. },
  26169. ]
  26170. ))
  26171. characterMakers.push(() => makeCharacter(
  26172. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26173. {
  26174. front: {
  26175. height: math.unit(3, "feet"),
  26176. weight: math.unit(30, "kg"),
  26177. name: "Front",
  26178. image: {
  26179. source: "./media/characters/sweet-bit/front.svg",
  26180. extra: 675 / 567,
  26181. bottom: 27.7 / 703
  26182. }
  26183. },
  26184. },
  26185. [
  26186. {
  26187. name: "Normal",
  26188. height: math.unit(3, "feet"),
  26189. default: true
  26190. },
  26191. ]
  26192. ))
  26193. characterMakers.push(() => makeCharacter(
  26194. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26195. {
  26196. side: {
  26197. height: math.unit(9.178, "feet"),
  26198. weight: math.unit(500, "lb"),
  26199. name: "Side",
  26200. image: {
  26201. source: "./media/characters/umbrazen/side.svg",
  26202. extra: 1730 / 1473,
  26203. bottom: 34.6 / 1765
  26204. }
  26205. },
  26206. },
  26207. [
  26208. {
  26209. name: "Normal",
  26210. height: math.unit(9.178, "feet"),
  26211. default: true
  26212. },
  26213. ]
  26214. ))
  26215. characterMakers.push(() => makeCharacter(
  26216. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26217. {
  26218. front: {
  26219. height: math.unit(10, "feet"),
  26220. weight: math.unit(750, "lb"),
  26221. name: "Front",
  26222. image: {
  26223. source: "./media/characters/arlist/front.svg",
  26224. extra: 961 / 778,
  26225. bottom: 6.2 / 986
  26226. }
  26227. },
  26228. },
  26229. [
  26230. {
  26231. name: "Normal",
  26232. height: math.unit(10, "feet"),
  26233. default: true
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26239. {
  26240. front: {
  26241. height: math.unit(5 + 1 / 12, "feet"),
  26242. weight: math.unit(110, "lb"),
  26243. name: "Front",
  26244. image: {
  26245. source: "./media/characters/aradel/front.svg",
  26246. extra: 324 / 303,
  26247. bottom: 3.6 / 329.4
  26248. }
  26249. },
  26250. },
  26251. [
  26252. {
  26253. name: "Normal",
  26254. height: math.unit(5 + 1 / 12, "feet"),
  26255. default: true
  26256. },
  26257. ]
  26258. ))
  26259. characterMakers.push(() => makeCharacter(
  26260. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26261. {
  26262. front: {
  26263. height: math.unit(3 + 8 / 12, "feet"),
  26264. weight: math.unit(50, "lb"),
  26265. name: "Front",
  26266. image: {
  26267. source: "./media/characters/serryn/front.svg",
  26268. extra: 1792 / 1656,
  26269. bottom: 43.5 / 1840
  26270. }
  26271. },
  26272. },
  26273. [
  26274. {
  26275. name: "Normal",
  26276. height: math.unit(3 + 8 / 12, "feet"),
  26277. default: true
  26278. },
  26279. ]
  26280. ))
  26281. characterMakers.push(() => makeCharacter(
  26282. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26283. {
  26284. front: {
  26285. height: math.unit(7 + 10 / 12, "feet"),
  26286. weight: math.unit(255, "lb"),
  26287. name: "Front",
  26288. image: {
  26289. source: "./media/characters/xavier-thyme/front.svg",
  26290. extra: 3733 / 3642,
  26291. bottom: 131 / 3869
  26292. }
  26293. },
  26294. frontRaven: {
  26295. height: math.unit(7 + 10 / 12, "feet"),
  26296. weight: math.unit(255, "lb"),
  26297. name: "Front (Raven)",
  26298. image: {
  26299. source: "./media/characters/xavier-thyme/front-raven.svg",
  26300. extra: 4385 / 3642,
  26301. bottom: 131 / 4517
  26302. }
  26303. },
  26304. },
  26305. [
  26306. {
  26307. name: "Normal",
  26308. height: math.unit(7 + 10 / 12, "feet"),
  26309. default: true
  26310. },
  26311. ]
  26312. ))
  26313. characterMakers.push(() => makeCharacter(
  26314. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26315. {
  26316. front: {
  26317. height: math.unit(1.6, "m"),
  26318. weight: math.unit(50, "kg"),
  26319. name: "Front",
  26320. image: {
  26321. source: "./media/characters/kiki/front.svg",
  26322. extra: 4682 / 3610,
  26323. bottom: 115 / 4777
  26324. }
  26325. },
  26326. },
  26327. [
  26328. {
  26329. name: "Normal",
  26330. height: math.unit(1.6, "meters"),
  26331. default: true
  26332. },
  26333. ]
  26334. ))
  26335. characterMakers.push(() => makeCharacter(
  26336. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26337. {
  26338. front: {
  26339. height: math.unit(50, "m"),
  26340. weight: math.unit(500, "tonnes"),
  26341. name: "Front",
  26342. image: {
  26343. source: "./media/characters/ryoko/front.svg",
  26344. extra: 4632 / 3926,
  26345. bottom: 193 / 4823
  26346. }
  26347. },
  26348. },
  26349. [
  26350. {
  26351. name: "Normal",
  26352. height: math.unit(50, "meters"),
  26353. default: true
  26354. },
  26355. ]
  26356. ))
  26357. characterMakers.push(() => makeCharacter(
  26358. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26359. {
  26360. front: {
  26361. height: math.unit(30, "m"),
  26362. weight: math.unit(22, "tonnes"),
  26363. name: "Front",
  26364. image: {
  26365. source: "./media/characters/elio/front.svg",
  26366. extra: 4582 / 3720,
  26367. bottom: 236 / 4828
  26368. }
  26369. },
  26370. },
  26371. [
  26372. {
  26373. name: "Normal",
  26374. height: math.unit(30, "meters"),
  26375. default: true
  26376. },
  26377. ]
  26378. ))
  26379. characterMakers.push(() => makeCharacter(
  26380. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26381. {
  26382. front: {
  26383. height: math.unit(6 + 3 / 12, "feet"),
  26384. weight: math.unit(120, "lb"),
  26385. name: "Front",
  26386. image: {
  26387. source: "./media/characters/azura/front.svg",
  26388. extra: 1149 / 1135,
  26389. bottom: 45 / 1194
  26390. }
  26391. },
  26392. frontClothed: {
  26393. height: math.unit(6 + 3 / 12, "feet"),
  26394. weight: math.unit(120, "lb"),
  26395. name: "Front (Clothed)",
  26396. image: {
  26397. source: "./media/characters/azura/front-clothed.svg",
  26398. extra: 1149 / 1135,
  26399. bottom: 45 / 1194
  26400. }
  26401. },
  26402. },
  26403. [
  26404. {
  26405. name: "Normal",
  26406. height: math.unit(6 + 3 / 12, "feet"),
  26407. default: true
  26408. },
  26409. {
  26410. name: "Macro",
  26411. height: math.unit(20 + 6 / 12, "feet")
  26412. },
  26413. {
  26414. name: "Megamacro",
  26415. height: math.unit(12, "miles")
  26416. },
  26417. {
  26418. name: "Gigamacro",
  26419. height: math.unit(10000, "miles")
  26420. },
  26421. {
  26422. name: "Teramacro",
  26423. height: math.unit(900000, "miles")
  26424. },
  26425. ]
  26426. ))
  26427. characterMakers.push(() => makeCharacter(
  26428. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26429. {
  26430. front: {
  26431. height: math.unit(12, "feet"),
  26432. weight: math.unit(1, "ton"),
  26433. capacity: math.unit(660000, "gallons"),
  26434. name: "Front",
  26435. image: {
  26436. source: "./media/characters/zeus/front.svg",
  26437. extra: 5005 / 4717,
  26438. bottom: 363 / 5388
  26439. }
  26440. },
  26441. },
  26442. [
  26443. {
  26444. name: "Normal",
  26445. height: math.unit(12, "feet")
  26446. },
  26447. {
  26448. name: "Preferred Size",
  26449. height: math.unit(0.5, "miles"),
  26450. default: true
  26451. },
  26452. {
  26453. name: "Giga Horse",
  26454. height: math.unit(300, "miles")
  26455. },
  26456. {
  26457. name: "Riding Planets",
  26458. height: math.unit(30, "megameters")
  26459. },
  26460. {
  26461. name: "Cosmic Giant",
  26462. height: math.unit(3, "zettameters")
  26463. },
  26464. {
  26465. name: "Breeding God",
  26466. height: math.unit(9.92e22, "yottameters")
  26467. },
  26468. ]
  26469. ))
  26470. characterMakers.push(() => makeCharacter(
  26471. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26472. {
  26473. side: {
  26474. height: math.unit(9, "feet"),
  26475. weight: math.unit(1500, "kg"),
  26476. name: "Side",
  26477. image: {
  26478. source: "./media/characters/fang/side.svg",
  26479. extra: 924 / 866,
  26480. bottom: 47.5 / 972.3
  26481. }
  26482. },
  26483. },
  26484. [
  26485. {
  26486. name: "Normal",
  26487. height: math.unit(9, "feet"),
  26488. default: true
  26489. },
  26490. {
  26491. name: "Macro",
  26492. height: math.unit(75 + 6 / 12, "feet")
  26493. },
  26494. {
  26495. name: "Teramacro",
  26496. height: math.unit(50000, "miles")
  26497. },
  26498. ]
  26499. ))
  26500. characterMakers.push(() => makeCharacter(
  26501. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26502. {
  26503. front: {
  26504. height: math.unit(10, "feet"),
  26505. weight: math.unit(2, "tons"),
  26506. name: "Front",
  26507. image: {
  26508. source: "./media/characters/rekhit/front.svg",
  26509. extra: 2796 / 2590,
  26510. bottom: 225 / 3022
  26511. }
  26512. },
  26513. },
  26514. [
  26515. {
  26516. name: "Normal",
  26517. height: math.unit(10, "feet"),
  26518. default: true
  26519. },
  26520. {
  26521. name: "Macro",
  26522. height: math.unit(500, "feet")
  26523. },
  26524. ]
  26525. ))
  26526. characterMakers.push(() => makeCharacter(
  26527. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26528. {
  26529. front: {
  26530. height: math.unit(7 + 6.451 / 12, "feet"),
  26531. weight: math.unit(310, "lb"),
  26532. name: "Front",
  26533. image: {
  26534. source: "./media/characters/dahlia-verrick/front.svg",
  26535. extra: 1488 / 1365,
  26536. bottom: 6.2 / 1495
  26537. }
  26538. },
  26539. back: {
  26540. height: math.unit(7 + 6.451 / 12, "feet"),
  26541. weight: math.unit(310, "lb"),
  26542. name: "Back",
  26543. image: {
  26544. source: "./media/characters/dahlia-verrick/back.svg",
  26545. extra: 1472 / 1351,
  26546. bottom: 5.28 / 1477
  26547. }
  26548. },
  26549. frontBusiness: {
  26550. height: math.unit(7 + 6.451 / 12, "feet"),
  26551. weight: math.unit(200, "lb"),
  26552. name: "Front (Business)",
  26553. image: {
  26554. source: "./media/characters/dahlia-verrick/front-business.svg",
  26555. extra: 1478 / 1381,
  26556. bottom: 5.5 / 1484
  26557. }
  26558. },
  26559. frontCasual: {
  26560. height: math.unit(7 + 6.451 / 12, "feet"),
  26561. weight: math.unit(200, "lb"),
  26562. name: "Front (Casual)",
  26563. image: {
  26564. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26565. extra: 1478 / 1381,
  26566. bottom: 5.5 / 1484
  26567. }
  26568. },
  26569. },
  26570. [
  26571. {
  26572. name: "Travel-Sized",
  26573. height: math.unit(7.45, "inches")
  26574. },
  26575. {
  26576. name: "Normal",
  26577. height: math.unit(7 + 6.451 / 12, "feet"),
  26578. default: true
  26579. },
  26580. {
  26581. name: "Hitting the Town",
  26582. height: math.unit(37 + 8 / 12, "feet")
  26583. },
  26584. {
  26585. name: "Stomp in the Suburbs",
  26586. height: math.unit(964 + 9.728 / 12, "feet")
  26587. },
  26588. {
  26589. name: "Sit on the City",
  26590. height: math.unit(61747 + 10.592 / 12, "feet")
  26591. },
  26592. {
  26593. name: "Glomp the Globe",
  26594. height: math.unit(252919327 + 4.832 / 12, "feet")
  26595. },
  26596. ]
  26597. ))
  26598. characterMakers.push(() => makeCharacter(
  26599. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26600. {
  26601. front: {
  26602. height: math.unit(6 + 4 / 12, "feet"),
  26603. weight: math.unit(320, "lb"),
  26604. name: "Front",
  26605. image: {
  26606. source: "./media/characters/balina-mahigan/front.svg",
  26607. extra: 447 / 428,
  26608. bottom: 18 / 466
  26609. }
  26610. },
  26611. back: {
  26612. height: math.unit(6 + 4 / 12, "feet"),
  26613. weight: math.unit(320, "lb"),
  26614. name: "Back",
  26615. image: {
  26616. source: "./media/characters/balina-mahigan/back.svg",
  26617. extra: 445 / 428,
  26618. bottom: 4.07 / 448
  26619. }
  26620. },
  26621. arm: {
  26622. height: math.unit(1.88, "feet"),
  26623. name: "Arm",
  26624. image: {
  26625. source: "./media/characters/balina-mahigan/arm.svg"
  26626. }
  26627. },
  26628. backPort: {
  26629. height: math.unit(0.685, "feet"),
  26630. name: "Back Port",
  26631. image: {
  26632. source: "./media/characters/balina-mahigan/back-port.svg"
  26633. }
  26634. },
  26635. hoofpaw: {
  26636. height: math.unit(1.41, "feet"),
  26637. name: "Hoofpaw",
  26638. image: {
  26639. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26640. }
  26641. },
  26642. leftHandBack: {
  26643. height: math.unit(0.938, "feet"),
  26644. name: "Left Hand (Back)",
  26645. image: {
  26646. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26647. }
  26648. },
  26649. leftHandFront: {
  26650. height: math.unit(0.938, "feet"),
  26651. name: "Left Hand (Front)",
  26652. image: {
  26653. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26654. }
  26655. },
  26656. rightHandBack: {
  26657. height: math.unit(0.95, "feet"),
  26658. name: "Right Hand (Back)",
  26659. image: {
  26660. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26661. }
  26662. },
  26663. rightHandFront: {
  26664. height: math.unit(0.95, "feet"),
  26665. name: "Right Hand (Front)",
  26666. image: {
  26667. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26668. }
  26669. },
  26670. },
  26671. [
  26672. {
  26673. name: "Normal",
  26674. height: math.unit(6 + 4 / 12, "feet"),
  26675. default: true
  26676. },
  26677. ]
  26678. ))
  26679. characterMakers.push(() => makeCharacter(
  26680. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26681. {
  26682. front: {
  26683. height: math.unit(6, "feet"),
  26684. weight: math.unit(320, "lb"),
  26685. name: "Front",
  26686. image: {
  26687. source: "./media/characters/balina-mejeri/front.svg",
  26688. extra: 517 / 488,
  26689. bottom: 44.2 / 561
  26690. }
  26691. },
  26692. },
  26693. [
  26694. {
  26695. name: "Normal",
  26696. height: math.unit(6 + 4 / 12, "feet")
  26697. },
  26698. {
  26699. name: "Business",
  26700. height: math.unit(155, "feet"),
  26701. default: true
  26702. },
  26703. ]
  26704. ))
  26705. characterMakers.push(() => makeCharacter(
  26706. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26707. {
  26708. kneeling: {
  26709. height: math.unit(6 + 4 / 12, "feet"),
  26710. weight: math.unit(300 * 20, "lb"),
  26711. name: "Kneeling",
  26712. image: {
  26713. source: "./media/characters/balbarian/kneeling.svg",
  26714. extra: 922 / 862,
  26715. bottom: 42.4 / 965
  26716. }
  26717. },
  26718. },
  26719. [
  26720. {
  26721. name: "Normal",
  26722. height: math.unit(6 + 4 / 12, "feet")
  26723. },
  26724. {
  26725. name: "Treasured",
  26726. height: math.unit(18 + 9 / 12, "feet"),
  26727. default: true
  26728. },
  26729. {
  26730. name: "Macro",
  26731. height: math.unit(900, "feet")
  26732. },
  26733. ]
  26734. ))
  26735. characterMakers.push(() => makeCharacter(
  26736. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26737. {
  26738. front: {
  26739. height: math.unit(6 + 4 / 12, "feet"),
  26740. weight: math.unit(325, "lb"),
  26741. name: "Front",
  26742. image: {
  26743. source: "./media/characters/balina-amarini/front.svg",
  26744. extra: 415 / 403,
  26745. bottom: 19 / 433.4
  26746. }
  26747. },
  26748. back: {
  26749. height: math.unit(6 + 4 / 12, "feet"),
  26750. weight: math.unit(325, "lb"),
  26751. name: "Back",
  26752. image: {
  26753. source: "./media/characters/balina-amarini/back.svg",
  26754. extra: 415 / 403,
  26755. bottom: 13.5 / 432
  26756. }
  26757. },
  26758. overdrive: {
  26759. height: math.unit(6 + 4 / 12, "feet"),
  26760. weight: math.unit(400, "lb"),
  26761. name: "Overdrive",
  26762. image: {
  26763. source: "./media/characters/balina-amarini/overdrive.svg",
  26764. extra: 269 / 259,
  26765. bottom: 12 / 282
  26766. }
  26767. },
  26768. },
  26769. [
  26770. {
  26771. name: "Boom",
  26772. height: math.unit(9 + 10 / 12, "feet"),
  26773. default: true
  26774. },
  26775. {
  26776. name: "Macro",
  26777. height: math.unit(280, "feet")
  26778. },
  26779. ]
  26780. ))
  26781. characterMakers.push(() => makeCharacter(
  26782. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26783. {
  26784. goddess: {
  26785. height: math.unit(600, "feet"),
  26786. weight: math.unit(2000000, "tons"),
  26787. name: "Goddess",
  26788. image: {
  26789. source: "./media/characters/lady-kubwa/goddess.svg",
  26790. extra: 1240.5 / 1223,
  26791. bottom: 22 / 1263
  26792. }
  26793. },
  26794. goddesser: {
  26795. height: math.unit(900, "feet"),
  26796. weight: math.unit(20000000, "lb"),
  26797. name: "Goddess-er",
  26798. image: {
  26799. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26800. extra: 899 / 888,
  26801. bottom: 12.6 / 912
  26802. }
  26803. },
  26804. },
  26805. [
  26806. {
  26807. name: "Macro",
  26808. height: math.unit(600, "feet"),
  26809. default: true
  26810. },
  26811. {
  26812. name: "Megamacro",
  26813. height: math.unit(250, "miles")
  26814. },
  26815. ]
  26816. ))
  26817. characterMakers.push(() => makeCharacter(
  26818. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26819. {
  26820. front: {
  26821. height: math.unit(7 + 7 / 12, "feet"),
  26822. weight: math.unit(250, "lb"),
  26823. name: "Front",
  26824. image: {
  26825. source: "./media/characters/tala-grovehorn/front.svg",
  26826. extra: 2636 / 2525,
  26827. bottom: 147 / 2781
  26828. }
  26829. },
  26830. back: {
  26831. height: math.unit(7 + 7 / 12, "feet"),
  26832. weight: math.unit(250, "lb"),
  26833. name: "Back",
  26834. image: {
  26835. source: "./media/characters/tala-grovehorn/back.svg",
  26836. extra: 2635 / 2539,
  26837. bottom: 100 / 2732.8
  26838. }
  26839. },
  26840. mouth: {
  26841. height: math.unit(1.15, "feet"),
  26842. name: "Mouth",
  26843. image: {
  26844. source: "./media/characters/tala-grovehorn/mouth.svg"
  26845. }
  26846. },
  26847. dick: {
  26848. height: math.unit(2.36, "feet"),
  26849. name: "Dick",
  26850. image: {
  26851. source: "./media/characters/tala-grovehorn/dick.svg"
  26852. }
  26853. },
  26854. slit: {
  26855. height: math.unit(0.61, "feet"),
  26856. name: "Slit",
  26857. image: {
  26858. source: "./media/characters/tala-grovehorn/slit.svg"
  26859. }
  26860. },
  26861. },
  26862. [
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26867. {
  26868. front: {
  26869. height: math.unit(7 + 7 / 12, "feet"),
  26870. weight: math.unit(225, "lb"),
  26871. name: "Front",
  26872. image: {
  26873. source: "./media/characters/epona/front.svg",
  26874. extra: 2445 / 2290,
  26875. bottom: 251 / 2696
  26876. }
  26877. },
  26878. back: {
  26879. height: math.unit(7 + 7 / 12, "feet"),
  26880. weight: math.unit(225, "lb"),
  26881. name: "Back",
  26882. image: {
  26883. source: "./media/characters/epona/back.svg",
  26884. extra: 2546 / 2408,
  26885. bottom: 44 / 2589
  26886. }
  26887. },
  26888. genitals: {
  26889. height: math.unit(1.5, "feet"),
  26890. name: "Genitals",
  26891. image: {
  26892. source: "./media/characters/epona/genitals.svg"
  26893. }
  26894. },
  26895. },
  26896. [
  26897. {
  26898. name: "Normal",
  26899. height: math.unit(7 + 7 / 12, "feet"),
  26900. default: true
  26901. },
  26902. ]
  26903. ))
  26904. characterMakers.push(() => makeCharacter(
  26905. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26906. {
  26907. front: {
  26908. height: math.unit(7, "feet"),
  26909. weight: math.unit(518, "lb"),
  26910. name: "Front",
  26911. image: {
  26912. source: "./media/characters/avia-bloodbourn/front.svg",
  26913. extra: 1466 / 1350,
  26914. bottom: 65 / 1527
  26915. }
  26916. },
  26917. },
  26918. [
  26919. ]
  26920. ))
  26921. characterMakers.push(() => makeCharacter(
  26922. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26923. {
  26924. front: {
  26925. height: math.unit(9.35, "feet"),
  26926. weight: math.unit(600, "lb"),
  26927. name: "Front",
  26928. image: {
  26929. source: "./media/characters/amera/front.svg",
  26930. extra: 891 / 818,
  26931. bottom: 30 / 922.7
  26932. }
  26933. },
  26934. back: {
  26935. height: math.unit(9.35, "feet"),
  26936. weight: math.unit(600, "lb"),
  26937. name: "Back",
  26938. image: {
  26939. source: "./media/characters/amera/back.svg",
  26940. extra: 876 / 824,
  26941. bottom: 6.8 / 884
  26942. }
  26943. },
  26944. dick: {
  26945. height: math.unit(2.14, "feet"),
  26946. name: "Dick",
  26947. image: {
  26948. source: "./media/characters/amera/dick.svg"
  26949. }
  26950. },
  26951. },
  26952. [
  26953. {
  26954. name: "Normal",
  26955. height: math.unit(9.35, "feet"),
  26956. default: true
  26957. },
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26962. {
  26963. kneeling: {
  26964. height: math.unit(3 + 4 / 12, "feet"),
  26965. weight: math.unit(90, "lb"),
  26966. name: "Kneeling",
  26967. image: {
  26968. source: "./media/characters/rosewen/kneeling.svg",
  26969. extra: 1835 / 1571,
  26970. bottom: 27.7 / 1862
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "Normal",
  26977. height: math.unit(3 + 4 / 12, "feet"),
  26978. default: true
  26979. },
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(5 + 10 / 12, "feet"),
  26987. weight: math.unit(200, "lb"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/sabah/front.svg",
  26991. extra: 849 / 763,
  26992. bottom: 33.9 / 881
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Normal",
  26999. height: math.unit(5 + 10 / 12, "feet"),
  27000. default: true
  27001. },
  27002. ]
  27003. ))
  27004. characterMakers.push(() => makeCharacter(
  27005. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27006. {
  27007. front: {
  27008. height: math.unit(3 + 5 / 12, "feet"),
  27009. weight: math.unit(40, "kg"),
  27010. name: "Front",
  27011. image: {
  27012. source: "./media/characters/purple-flame/front.svg",
  27013. extra: 1577 / 1412,
  27014. bottom: 97 / 1694
  27015. }
  27016. },
  27017. frontDressed: {
  27018. height: math.unit(3 + 5 / 12, "feet"),
  27019. weight: math.unit(40, "kg"),
  27020. name: "Front (Dressed)",
  27021. image: {
  27022. source: "./media/characters/purple-flame/front-dressed.svg",
  27023. extra: 1577 / 1412,
  27024. bottom: 97 / 1694
  27025. }
  27026. },
  27027. headphones: {
  27028. height: math.unit(0.85, "feet"),
  27029. name: "Headphones",
  27030. image: {
  27031. source: "./media/characters/purple-flame/headphones.svg"
  27032. }
  27033. },
  27034. },
  27035. [
  27036. {
  27037. name: "Really Small",
  27038. height: math.unit(5, "cm")
  27039. },
  27040. {
  27041. name: "Micro",
  27042. height: math.unit(1 + 5 / 12, "feet")
  27043. },
  27044. {
  27045. name: "Normal",
  27046. height: math.unit(3 + 5 / 12, "feet"),
  27047. default: true
  27048. },
  27049. {
  27050. name: "Minimacro",
  27051. height: math.unit(125, "feet")
  27052. },
  27053. {
  27054. name: "Macro",
  27055. height: math.unit(0.5, "miles")
  27056. },
  27057. {
  27058. name: "Megamacro",
  27059. height: math.unit(50, "miles")
  27060. },
  27061. {
  27062. name: "Gigantic",
  27063. height: math.unit(750, "miles")
  27064. },
  27065. {
  27066. name: "Planetary",
  27067. height: math.unit(15000, "miles")
  27068. },
  27069. ]
  27070. ))
  27071. characterMakers.push(() => makeCharacter(
  27072. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27073. {
  27074. front: {
  27075. height: math.unit(14, "feet"),
  27076. weight: math.unit(959, "lb"),
  27077. name: "Front",
  27078. image: {
  27079. source: "./media/characters/arsenal/front.svg",
  27080. extra: 2357 / 2157,
  27081. bottom: 93 / 2458
  27082. }
  27083. },
  27084. },
  27085. [
  27086. {
  27087. name: "Normal",
  27088. height: math.unit(14, "feet"),
  27089. default: true
  27090. },
  27091. ]
  27092. ))
  27093. characterMakers.push(() => makeCharacter(
  27094. { name: "Adira", species: ["mouse"], 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/adira/front.svg",
  27102. extra: 1078 / 1029,
  27103. bottom: 87 / 1166
  27104. }
  27105. },
  27106. },
  27107. [
  27108. {
  27109. name: "Micro",
  27110. height: math.unit(4, "inches"),
  27111. default: true
  27112. },
  27113. {
  27114. name: "Macro",
  27115. height: math.unit(50, "feet")
  27116. },
  27117. ]
  27118. ))
  27119. characterMakers.push(() => makeCharacter(
  27120. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27121. {
  27122. front: {
  27123. height: math.unit(16, "feet"),
  27124. weight: math.unit(1000, "lb"),
  27125. name: "Front",
  27126. image: {
  27127. source: "./media/characters/grim/front.svg",
  27128. extra: 622 / 614,
  27129. bottom: 18.1 / 642
  27130. }
  27131. },
  27132. back: {
  27133. height: math.unit(16, "feet"),
  27134. weight: math.unit(1000, "lb"),
  27135. name: "Back",
  27136. image: {
  27137. source: "./media/characters/grim/back.svg",
  27138. extra: 610.6 / 602,
  27139. bottom: 40.8 / 652
  27140. }
  27141. },
  27142. hunched: {
  27143. height: math.unit(9.75, "feet"),
  27144. weight: math.unit(1000, "lb"),
  27145. name: "Hunched",
  27146. image: {
  27147. source: "./media/characters/grim/hunched.svg",
  27148. extra: 304 / 297,
  27149. bottom: 35.4 / 394
  27150. }
  27151. },
  27152. },
  27153. [
  27154. {
  27155. name: "Normal",
  27156. height: math.unit(16, "feet"),
  27157. default: true
  27158. },
  27159. ]
  27160. ))
  27161. characterMakers.push(() => makeCharacter(
  27162. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27163. {
  27164. front: {
  27165. height: math.unit(2.3, "meters"),
  27166. weight: math.unit(300, "lb"),
  27167. name: "Front",
  27168. image: {
  27169. source: "./media/characters/sinja/front-sfw.svg",
  27170. extra: 1393 / 1294,
  27171. bottom: 70 / 1463
  27172. }
  27173. },
  27174. frontNsfw: {
  27175. height: math.unit(2.3, "meters"),
  27176. weight: math.unit(300, "lb"),
  27177. name: "Front (NSFW)",
  27178. image: {
  27179. source: "./media/characters/sinja/front-nsfw.svg",
  27180. extra: 1393 / 1294,
  27181. bottom: 70 / 1463
  27182. }
  27183. },
  27184. back: {
  27185. height: math.unit(2.3, "meters"),
  27186. weight: math.unit(300, "lb"),
  27187. name: "Back",
  27188. image: {
  27189. source: "./media/characters/sinja/back.svg",
  27190. extra: 1393 / 1294,
  27191. bottom: 70 / 1463
  27192. }
  27193. },
  27194. head: {
  27195. height: math.unit(1.771, "feet"),
  27196. name: "Head",
  27197. image: {
  27198. source: "./media/characters/sinja/head.svg"
  27199. }
  27200. },
  27201. slit: {
  27202. height: math.unit(0.8, "feet"),
  27203. name: "Slit",
  27204. image: {
  27205. source: "./media/characters/sinja/slit.svg"
  27206. }
  27207. },
  27208. },
  27209. [
  27210. {
  27211. name: "Normal",
  27212. height: math.unit(2.3, "meters")
  27213. },
  27214. {
  27215. name: "Macro",
  27216. height: math.unit(91, "meters"),
  27217. default: true
  27218. },
  27219. {
  27220. name: "Megamacro",
  27221. height: math.unit(91440, "meters")
  27222. },
  27223. {
  27224. name: "Gigamacro",
  27225. height: math.unit(60960000, "meters")
  27226. },
  27227. {
  27228. name: "Teramacro",
  27229. height: math.unit(9144000000, "meters")
  27230. },
  27231. ]
  27232. ))
  27233. characterMakers.push(() => makeCharacter(
  27234. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27235. {
  27236. front: {
  27237. height: math.unit(1.7, "meters"),
  27238. weight: math.unit(130, "lb"),
  27239. name: "Front",
  27240. image: {
  27241. source: "./media/characters/kyu/front.svg",
  27242. extra: 415 / 395,
  27243. bottom: 5 / 420
  27244. }
  27245. },
  27246. head: {
  27247. height: math.unit(1.75, "feet"),
  27248. name: "Head",
  27249. image: {
  27250. source: "./media/characters/kyu/head.svg"
  27251. }
  27252. },
  27253. foot: {
  27254. height: math.unit(0.81, "feet"),
  27255. name: "Foot",
  27256. image: {
  27257. source: "./media/characters/kyu/foot.svg"
  27258. }
  27259. },
  27260. },
  27261. [
  27262. {
  27263. name: "Normal",
  27264. height: math.unit(1.7, "meters")
  27265. },
  27266. {
  27267. name: "Macro",
  27268. height: math.unit(131, "feet"),
  27269. default: true
  27270. },
  27271. {
  27272. name: "Megamacro",
  27273. height: math.unit(91440, "meters")
  27274. },
  27275. {
  27276. name: "Gigamacro",
  27277. height: math.unit(60960000, "meters")
  27278. },
  27279. {
  27280. name: "Teramacro",
  27281. height: math.unit(9144000000, "meters")
  27282. },
  27283. ]
  27284. ))
  27285. characterMakers.push(() => makeCharacter(
  27286. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27287. {
  27288. front: {
  27289. height: math.unit(7 + 1 / 12, "feet"),
  27290. weight: math.unit(250, "lb"),
  27291. name: "Front",
  27292. image: {
  27293. source: "./media/characters/joey/front.svg",
  27294. extra: 1791 / 1537,
  27295. bottom: 28 / 1816
  27296. }
  27297. },
  27298. },
  27299. [
  27300. {
  27301. name: "Micro",
  27302. height: math.unit(3, "inches")
  27303. },
  27304. {
  27305. name: "Normal",
  27306. height: math.unit(7 + 1 / 12, "feet"),
  27307. default: true
  27308. },
  27309. ]
  27310. ))
  27311. characterMakers.push(() => makeCharacter(
  27312. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27313. {
  27314. front: {
  27315. height: math.unit(165, "cm"),
  27316. weight: math.unit(140, "lb"),
  27317. name: "Front",
  27318. image: {
  27319. source: "./media/characters/sam-evans/front.svg",
  27320. extra: 3417 / 3230,
  27321. bottom: 41.3 / 3417
  27322. }
  27323. },
  27324. frontSixTails: {
  27325. height: math.unit(165, "cm"),
  27326. weight: math.unit(140, "lb"),
  27327. name: "Front-six-tails",
  27328. image: {
  27329. source: "./media/characters/sam-evans/front-six-tails.svg",
  27330. extra: 3417 / 3230,
  27331. bottom: 41.3 / 3417
  27332. }
  27333. },
  27334. back: {
  27335. height: math.unit(165, "cm"),
  27336. weight: math.unit(140, "lb"),
  27337. name: "Back",
  27338. image: {
  27339. source: "./media/characters/sam-evans/back.svg",
  27340. extra: 3227 / 3032,
  27341. bottom: 6.8 / 3234
  27342. }
  27343. },
  27344. face: {
  27345. height: math.unit(0.68, "feet"),
  27346. name: "Face",
  27347. image: {
  27348. source: "./media/characters/sam-evans/face.svg"
  27349. }
  27350. },
  27351. },
  27352. [
  27353. {
  27354. name: "Normal",
  27355. height: math.unit(165, "cm"),
  27356. default: true
  27357. },
  27358. {
  27359. name: "Macro",
  27360. height: math.unit(100, "meters")
  27361. },
  27362. {
  27363. name: "Macro+",
  27364. height: math.unit(800, "meters")
  27365. },
  27366. {
  27367. name: "Macro++",
  27368. height: math.unit(3, "km")
  27369. },
  27370. {
  27371. name: "Macro+++",
  27372. height: math.unit(30, "km")
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27378. {
  27379. front: {
  27380. height: math.unit(10, "feet"),
  27381. weight: math.unit(750, "lb"),
  27382. name: "Front",
  27383. image: {
  27384. source: "./media/characters/juliet-a/front.svg",
  27385. extra: 1766 / 1720,
  27386. bottom: 43 / 1809
  27387. }
  27388. },
  27389. back: {
  27390. height: math.unit(10, "feet"),
  27391. weight: math.unit(750, "lb"),
  27392. name: "Back",
  27393. image: {
  27394. source: "./media/characters/juliet-a/back.svg",
  27395. extra: 1781 / 1734,
  27396. bottom: 35 / 1810,
  27397. }
  27398. },
  27399. },
  27400. [
  27401. {
  27402. name: "Normal",
  27403. height: math.unit(10, "feet"),
  27404. default: true
  27405. },
  27406. {
  27407. name: "Dragon Form",
  27408. height: math.unit(250, "feet")
  27409. },
  27410. {
  27411. name: "Macro",
  27412. height: math.unit(1000, "feet")
  27413. },
  27414. {
  27415. name: "Megamacro",
  27416. height: math.unit(10000, "feet")
  27417. }
  27418. ]
  27419. ))
  27420. characterMakers.push(() => makeCharacter(
  27421. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27422. {
  27423. regular: {
  27424. height: math.unit(7 + 3 / 12, "feet"),
  27425. weight: math.unit(260, "lb"),
  27426. name: "Regular",
  27427. image: {
  27428. source: "./media/characters/wild/regular.svg",
  27429. extra: 97.45 / 92,
  27430. bottom: 6.8 / 104.3
  27431. }
  27432. },
  27433. biggums: {
  27434. height: math.unit(8 + 6 / 12, "feet"),
  27435. weight: math.unit(425, "lb"),
  27436. name: "Biggums",
  27437. image: {
  27438. source: "./media/characters/wild/biggums.svg",
  27439. extra: 97.45 / 92,
  27440. bottom: 7.5 / 132.34
  27441. }
  27442. },
  27443. mawRegular: {
  27444. height: math.unit(1.24, "feet"),
  27445. name: "Maw (Regular)",
  27446. image: {
  27447. source: "./media/characters/wild/maw.svg"
  27448. }
  27449. },
  27450. mawBiggums: {
  27451. height: math.unit(1.47, "feet"),
  27452. name: "Maw (Biggums)",
  27453. image: {
  27454. source: "./media/characters/wild/maw.svg"
  27455. }
  27456. },
  27457. },
  27458. [
  27459. {
  27460. name: "Normal",
  27461. height: math.unit(7 + 3 / 12, "feet"),
  27462. default: true
  27463. },
  27464. ]
  27465. ))
  27466. characterMakers.push(() => makeCharacter(
  27467. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27468. {
  27469. front: {
  27470. height: math.unit(2.5, "meters"),
  27471. weight: math.unit(200, "kg"),
  27472. name: "Front",
  27473. image: {
  27474. source: "./media/characters/vidar/front.svg",
  27475. extra: 2994 / 2795,
  27476. bottom: 56 / 3061
  27477. }
  27478. },
  27479. back: {
  27480. height: math.unit(2.5, "meters"),
  27481. weight: math.unit(200, "kg"),
  27482. name: "Back",
  27483. image: {
  27484. source: "./media/characters/vidar/back.svg",
  27485. extra: 3131 / 2928,
  27486. bottom: 13.5 / 3141.5
  27487. }
  27488. },
  27489. feral: {
  27490. height: math.unit(2.5, "meters"),
  27491. weight: math.unit(2000, "kg"),
  27492. name: "Feral",
  27493. image: {
  27494. source: "./media/characters/vidar/feral.svg",
  27495. extra: 2790 / 1765,
  27496. bottom: 6 / 2796
  27497. }
  27498. },
  27499. },
  27500. [
  27501. {
  27502. name: "Normal",
  27503. height: math.unit(2.5, "meters"),
  27504. default: true
  27505. },
  27506. {
  27507. name: "Macro",
  27508. height: math.unit(100, "meters")
  27509. },
  27510. ]
  27511. ))
  27512. characterMakers.push(() => makeCharacter(
  27513. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27514. {
  27515. front: {
  27516. height: math.unit(5 + 9 / 12, "feet"),
  27517. weight: math.unit(120, "lb"),
  27518. name: "Front",
  27519. image: {
  27520. source: "./media/characters/ash/front.svg",
  27521. extra: 2189 / 1961,
  27522. bottom: 5.2 / 2194
  27523. }
  27524. },
  27525. },
  27526. [
  27527. {
  27528. name: "Normal",
  27529. height: math.unit(5 + 9 / 12, "feet"),
  27530. default: true
  27531. },
  27532. ]
  27533. ))
  27534. characterMakers.push(() => makeCharacter(
  27535. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27536. {
  27537. front: {
  27538. height: math.unit(9, "feet"),
  27539. weight: math.unit(10000, "lb"),
  27540. name: "Front",
  27541. image: {
  27542. source: "./media/characters/gygabite/front.svg",
  27543. bottom: 31.7 / 537.8,
  27544. extra: 505 / 370
  27545. }
  27546. },
  27547. },
  27548. [
  27549. {
  27550. name: "Normal",
  27551. height: math.unit(9, "feet"),
  27552. default: true
  27553. },
  27554. ]
  27555. ))
  27556. characterMakers.push(() => makeCharacter(
  27557. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27558. {
  27559. front: {
  27560. height: math.unit(12, "feet"),
  27561. weight: math.unit(35000, "lb"),
  27562. name: "Front",
  27563. image: {
  27564. source: "./media/characters/p0tat0/front.svg",
  27565. extra: 1065 / 921,
  27566. bottom: 55.7 / 1121.25
  27567. }
  27568. },
  27569. },
  27570. [
  27571. {
  27572. name: "Normal",
  27573. height: math.unit(12, "feet"),
  27574. default: true
  27575. },
  27576. ]
  27577. ))
  27578. characterMakers.push(() => makeCharacter(
  27579. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27580. {
  27581. side: {
  27582. height: math.unit(6.5, "feet"),
  27583. weight: math.unit(800, "lb"),
  27584. name: "Side",
  27585. image: {
  27586. source: "./media/characters/dusk/side.svg",
  27587. extra: 615 / 373,
  27588. bottom: 53 / 664
  27589. }
  27590. },
  27591. sitting: {
  27592. height: math.unit(7, "feet"),
  27593. weight: math.unit(800, "lb"),
  27594. name: "Sitting",
  27595. image: {
  27596. source: "./media/characters/dusk/sitting.svg",
  27597. extra: 753 / 425,
  27598. bottom: 33 / 774
  27599. }
  27600. },
  27601. head: {
  27602. height: math.unit(6.1, "feet"),
  27603. name: "Head",
  27604. image: {
  27605. source: "./media/characters/dusk/head.svg"
  27606. }
  27607. },
  27608. },
  27609. [
  27610. {
  27611. name: "Normal",
  27612. height: math.unit(7, "feet"),
  27613. default: true
  27614. },
  27615. ]
  27616. ))
  27617. characterMakers.push(() => makeCharacter(
  27618. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27619. {
  27620. front: {
  27621. height: math.unit(15, "feet"),
  27622. weight: math.unit(7000, "lb"),
  27623. name: "Front",
  27624. image: {
  27625. source: "./media/characters/jay-direwolf/front.svg",
  27626. extra: 1810 / 1732,
  27627. bottom: 66 / 1892
  27628. }
  27629. },
  27630. },
  27631. [
  27632. {
  27633. name: "Normal",
  27634. height: math.unit(15, "feet"),
  27635. default: true
  27636. },
  27637. ]
  27638. ))
  27639. characterMakers.push(() => makeCharacter(
  27640. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27641. {
  27642. front: {
  27643. height: math.unit(4 + 9 / 12, "feet"),
  27644. weight: math.unit(130, "lb"),
  27645. name: "Front",
  27646. image: {
  27647. source: "./media/characters/anchovie/front.svg",
  27648. extra: 382 / 350,
  27649. bottom: 25 / 409
  27650. }
  27651. },
  27652. back: {
  27653. height: math.unit(4 + 9 / 12, "feet"),
  27654. weight: math.unit(130, "lb"),
  27655. name: "Back",
  27656. image: {
  27657. source: "./media/characters/anchovie/back.svg",
  27658. extra: 385 / 352,
  27659. bottom: 16.6 / 402
  27660. }
  27661. },
  27662. frontDressed: {
  27663. height: math.unit(4 + 9 / 12, "feet"),
  27664. weight: math.unit(130, "lb"),
  27665. name: "Front (Dressed)",
  27666. image: {
  27667. source: "./media/characters/anchovie/front-dressed.svg",
  27668. extra: 382 / 350,
  27669. bottom: 25 / 409
  27670. }
  27671. },
  27672. backDressed: {
  27673. height: math.unit(4 + 9 / 12, "feet"),
  27674. weight: math.unit(130, "lb"),
  27675. name: "Back (Dressed)",
  27676. image: {
  27677. source: "./media/characters/anchovie/back-dressed.svg",
  27678. extra: 385 / 352,
  27679. bottom: 16.6 / 402
  27680. }
  27681. },
  27682. },
  27683. [
  27684. {
  27685. name: "Micro",
  27686. height: math.unit(6.4, "inches")
  27687. },
  27688. {
  27689. name: "Normal",
  27690. height: math.unit(4 + 9 / 12, "feet"),
  27691. default: true
  27692. },
  27693. ]
  27694. ))
  27695. characterMakers.push(() => makeCharacter(
  27696. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27697. {
  27698. front: {
  27699. height: math.unit(2, "meters"),
  27700. weight: math.unit(180, "lb"),
  27701. name: "Front",
  27702. image: {
  27703. source: "./media/characters/acidrenamon/front.svg",
  27704. extra: 987 / 890,
  27705. bottom: 22.8 / 1009
  27706. }
  27707. },
  27708. back: {
  27709. height: math.unit(2, "meters"),
  27710. weight: math.unit(180, "lb"),
  27711. name: "Back",
  27712. image: {
  27713. source: "./media/characters/acidrenamon/back.svg",
  27714. extra: 983 / 891,
  27715. bottom: 8.4 / 992
  27716. }
  27717. },
  27718. head: {
  27719. height: math.unit(1.92, "feet"),
  27720. name: "Head",
  27721. image: {
  27722. source: "./media/characters/acidrenamon/head.svg"
  27723. }
  27724. },
  27725. rump: {
  27726. height: math.unit(1.72, "feet"),
  27727. name: "Rump",
  27728. image: {
  27729. source: "./media/characters/acidrenamon/rump.svg"
  27730. }
  27731. },
  27732. tail: {
  27733. height: math.unit(4.2, "feet"),
  27734. name: "Tail",
  27735. image: {
  27736. source: "./media/characters/acidrenamon/tail.svg"
  27737. }
  27738. },
  27739. },
  27740. [
  27741. {
  27742. name: "Normal",
  27743. height: math.unit(2, "meters"),
  27744. default: true
  27745. },
  27746. {
  27747. name: "Minimacro",
  27748. height: math.unit(7, "meters")
  27749. },
  27750. {
  27751. name: "Macro",
  27752. height: math.unit(200, "meters")
  27753. },
  27754. {
  27755. name: "Gigamacro",
  27756. height: math.unit(0.2, "earths")
  27757. },
  27758. ]
  27759. ))
  27760. characterMakers.push(() => makeCharacter(
  27761. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27762. {
  27763. front: {
  27764. height: math.unit(152, "feet"),
  27765. name: "Front",
  27766. image: {
  27767. source: "./media/characters/kenzie-lee/front.svg",
  27768. extra: 1869/1774,
  27769. bottom: 128/1997
  27770. }
  27771. },
  27772. side: {
  27773. height: math.unit(86, "feet"),
  27774. name: "Side",
  27775. image: {
  27776. source: "./media/characters/kenzie-lee/side.svg",
  27777. extra: 930/815,
  27778. bottom: 177/1107
  27779. }
  27780. },
  27781. paw: {
  27782. height: math.unit(15, "feet"),
  27783. name: "Paw",
  27784. image: {
  27785. source: "./media/characters/kenzie-lee/paw.svg"
  27786. }
  27787. },
  27788. },
  27789. [
  27790. {
  27791. name: "Micro",
  27792. height: math.unit(1.5, "inches")
  27793. },
  27794. {
  27795. name: "Normal",
  27796. height: math.unit(152, "feet"),
  27797. default: true
  27798. },
  27799. {
  27800. name: "Megamacro",
  27801. height: math.unit(7, "miles")
  27802. },
  27803. {
  27804. name: "Gigamacro",
  27805. height: math.unit(8000, "miles")
  27806. },
  27807. ]
  27808. ))
  27809. characterMakers.push(() => makeCharacter(
  27810. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27811. {
  27812. side: {
  27813. height: math.unit(6, "feet"),
  27814. weight: math.unit(150, "lb"),
  27815. name: "Side",
  27816. image: {
  27817. source: "./media/characters/withers/side.svg",
  27818. extra: 1830 / 1728,
  27819. bottom: 96 / 1927
  27820. }
  27821. },
  27822. front: {
  27823. height: math.unit(6, "feet"),
  27824. weight: math.unit(150, "lb"),
  27825. name: "Front",
  27826. image: {
  27827. source: "./media/characters/withers/front.svg",
  27828. extra: 1514 / 1438,
  27829. bottom: 118 / 1632
  27830. }
  27831. },
  27832. },
  27833. [
  27834. {
  27835. name: "Macro",
  27836. height: math.unit(168, "feet"),
  27837. default: true
  27838. },
  27839. {
  27840. name: "Megamacro",
  27841. height: math.unit(15, "miles")
  27842. }
  27843. ]
  27844. ))
  27845. characterMakers.push(() => makeCharacter(
  27846. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27847. {
  27848. front: {
  27849. height: math.unit(6 + 7 / 12, "feet"),
  27850. weight: math.unit(250, "lb"),
  27851. name: "Front",
  27852. image: {
  27853. source: "./media/characters/nemoskii/front.svg",
  27854. extra: 2270 / 1734,
  27855. bottom: 86 / 2354
  27856. }
  27857. },
  27858. back: {
  27859. height: math.unit(6 + 7 / 12, "feet"),
  27860. weight: math.unit(250, "lb"),
  27861. name: "Back",
  27862. image: {
  27863. source: "./media/characters/nemoskii/back.svg",
  27864. extra: 1845 / 1788,
  27865. bottom: 10.5 / 1852
  27866. }
  27867. },
  27868. head: {
  27869. height: math.unit(1.31, "feet"),
  27870. name: "Head",
  27871. image: {
  27872. source: "./media/characters/nemoskii/head.svg"
  27873. }
  27874. },
  27875. },
  27876. [
  27877. {
  27878. name: "Micro",
  27879. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27880. },
  27881. {
  27882. name: "Normal",
  27883. height: math.unit(6 + 7 / 12, "feet"),
  27884. default: true
  27885. },
  27886. {
  27887. name: "Macro",
  27888. height: math.unit((6 + 7 / 12) * 150, "feet")
  27889. },
  27890. {
  27891. name: "Macro+",
  27892. height: math.unit((6 + 7 / 12) * 500, "feet")
  27893. },
  27894. {
  27895. name: "Megamacro",
  27896. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27897. },
  27898. ]
  27899. ))
  27900. characterMakers.push(() => makeCharacter(
  27901. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27902. {
  27903. front: {
  27904. height: math.unit(1, "mile"),
  27905. weight: math.unit(265261.9, "lb"),
  27906. name: "Front",
  27907. image: {
  27908. source: "./media/characters/shui/front.svg",
  27909. extra: 1633 / 1564,
  27910. bottom: 91.5 / 1726
  27911. }
  27912. },
  27913. },
  27914. [
  27915. {
  27916. name: "Macro",
  27917. height: math.unit(1, "mile"),
  27918. default: true
  27919. },
  27920. ]
  27921. ))
  27922. characterMakers.push(() => makeCharacter(
  27923. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27924. {
  27925. front: {
  27926. height: math.unit(12 + 6 / 12, "feet"),
  27927. weight: math.unit(1342, "lb"),
  27928. name: "Front",
  27929. image: {
  27930. source: "./media/characters/arokh-takakura/front.svg",
  27931. extra: 1089 / 1043,
  27932. bottom: 77.4 / 1176.7
  27933. }
  27934. },
  27935. back: {
  27936. height: math.unit(12 + 6 / 12, "feet"),
  27937. weight: math.unit(1342, "lb"),
  27938. name: "Back",
  27939. image: {
  27940. source: "./media/characters/arokh-takakura/back.svg",
  27941. extra: 1046 / 1019,
  27942. bottom: 102 / 1150
  27943. }
  27944. },
  27945. },
  27946. [
  27947. {
  27948. name: "Big",
  27949. height: math.unit(12 + 6 / 12, "feet"),
  27950. default: true
  27951. },
  27952. ]
  27953. ))
  27954. characterMakers.push(() => makeCharacter(
  27955. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27956. {
  27957. front: {
  27958. height: math.unit(5 + 6 / 12, "feet"),
  27959. weight: math.unit(150, "lb"),
  27960. name: "Front",
  27961. image: {
  27962. source: "./media/characters/theo/front.svg",
  27963. extra: 1184 / 1131,
  27964. bottom: 7.4 / 1191
  27965. }
  27966. },
  27967. },
  27968. [
  27969. {
  27970. name: "Micro",
  27971. height: math.unit(5, "inches")
  27972. },
  27973. {
  27974. name: "Normal",
  27975. height: math.unit(5 + 6 / 12, "feet"),
  27976. default: true
  27977. },
  27978. ]
  27979. ))
  27980. characterMakers.push(() => makeCharacter(
  27981. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27982. {
  27983. front: {
  27984. height: math.unit(5 + 9 / 12, "feet"),
  27985. weight: math.unit(130, "lb"),
  27986. name: "Front",
  27987. image: {
  27988. source: "./media/characters/cecelia-swift/front.svg",
  27989. extra: 502 / 484,
  27990. bottom: 23 / 523
  27991. }
  27992. },
  27993. back: {
  27994. height: math.unit(5 + 9 / 12, "feet"),
  27995. weight: math.unit(130, "lb"),
  27996. name: "Back",
  27997. image: {
  27998. source: "./media/characters/cecelia-swift/back.svg",
  27999. extra: 499 / 485,
  28000. bottom: 12 / 511
  28001. }
  28002. },
  28003. head: {
  28004. height: math.unit(0.90, "feet"),
  28005. name: "Head",
  28006. image: {
  28007. source: "./media/characters/cecelia-swift/head.svg"
  28008. }
  28009. },
  28010. rump: {
  28011. height: math.unit(1.75, "feet"),
  28012. name: "Rump",
  28013. image: {
  28014. source: "./media/characters/cecelia-swift/rump.svg"
  28015. }
  28016. },
  28017. },
  28018. [
  28019. {
  28020. name: "Normal",
  28021. height: math.unit(5 + 9 / 12, "feet"),
  28022. default: true
  28023. },
  28024. {
  28025. name: "Big",
  28026. height: math.unit(50, "feet")
  28027. },
  28028. {
  28029. name: "Macro",
  28030. height: math.unit(100, "feet")
  28031. },
  28032. {
  28033. name: "Macro+",
  28034. height: math.unit(500, "feet")
  28035. },
  28036. {
  28037. name: "Macro++",
  28038. height: math.unit(1000, "feet")
  28039. },
  28040. ]
  28041. ))
  28042. characterMakers.push(() => makeCharacter(
  28043. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28044. {
  28045. front: {
  28046. height: math.unit(6, "feet"),
  28047. weight: math.unit(150, "lb"),
  28048. name: "Front",
  28049. image: {
  28050. source: "./media/characters/kaunan/front.svg",
  28051. extra: 2890 / 2523,
  28052. bottom: 49 / 2939
  28053. }
  28054. },
  28055. },
  28056. [
  28057. {
  28058. name: "Macro",
  28059. height: math.unit(150, "feet"),
  28060. default: true
  28061. },
  28062. ]
  28063. ))
  28064. characterMakers.push(() => makeCharacter(
  28065. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28066. {
  28067. front: {
  28068. height: math.unit(175, "cm"),
  28069. weight: math.unit(60, "kg"),
  28070. name: "Front",
  28071. image: {
  28072. source: "./media/characters/fei/front.svg",
  28073. extra: 1873/1723,
  28074. bottom: 53/1926
  28075. }
  28076. },
  28077. },
  28078. [
  28079. {
  28080. name: "Mortal",
  28081. height: math.unit(175, "cm")
  28082. },
  28083. {
  28084. name: "Normal",
  28085. height: math.unit(3500, "m"),
  28086. default: true
  28087. },
  28088. {
  28089. name: "Stroll",
  28090. height: math.unit(17.5, "km")
  28091. },
  28092. {
  28093. name: "Showoff",
  28094. height: math.unit(175, "km")
  28095. },
  28096. ]
  28097. ))
  28098. characterMakers.push(() => makeCharacter(
  28099. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28100. {
  28101. front: {
  28102. height: math.unit(7, "feet"),
  28103. weight: math.unit(1000, "kg"),
  28104. name: "Front",
  28105. image: {
  28106. source: "./media/characters/edrax/front.svg",
  28107. extra: 2838 / 2550,
  28108. bottom: 130 / 2968
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Small",
  28115. height: math.unit(7, "feet")
  28116. },
  28117. {
  28118. name: "Normal",
  28119. height: math.unit(1500, "meters")
  28120. },
  28121. {
  28122. name: "Mega",
  28123. height: math.unit(12000000, "km"),
  28124. default: true
  28125. },
  28126. {
  28127. name: "Megamacro",
  28128. height: math.unit(10600000, "lightyears")
  28129. },
  28130. {
  28131. name: "Hypermacro",
  28132. height: math.unit(256, "yottameters")
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28138. {
  28139. front: {
  28140. height: math.unit(10, "feet"),
  28141. weight: math.unit(750, "lb"),
  28142. name: "Front",
  28143. image: {
  28144. source: "./media/characters/clove/front.svg",
  28145. extra: 1918/1751,
  28146. bottom: 52/1970
  28147. }
  28148. },
  28149. back: {
  28150. height: math.unit(10, "feet"),
  28151. weight: math.unit(750, "lb"),
  28152. name: "Back",
  28153. image: {
  28154. source: "./media/characters/clove/back.svg",
  28155. extra: 1912/1747,
  28156. bottom: 50/1962
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(10, "feet"),
  28164. default: true
  28165. },
  28166. ]
  28167. ))
  28168. characterMakers.push(() => makeCharacter(
  28169. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28170. {
  28171. front: {
  28172. height: math.unit(4, "feet"),
  28173. weight: math.unit(50, "lb"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/alex-rabbit/front.svg",
  28177. extra: 507 / 458,
  28178. bottom: 18.5 / 527
  28179. }
  28180. },
  28181. back: {
  28182. height: math.unit(4, "feet"),
  28183. weight: math.unit(50, "lb"),
  28184. name: "Back",
  28185. image: {
  28186. source: "./media/characters/alex-rabbit/back.svg",
  28187. extra: 502 / 460,
  28188. bottom: 18.9 / 521
  28189. }
  28190. },
  28191. },
  28192. [
  28193. {
  28194. name: "Normal",
  28195. height: math.unit(4, "feet"),
  28196. default: true
  28197. },
  28198. ]
  28199. ))
  28200. characterMakers.push(() => makeCharacter(
  28201. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28202. {
  28203. front: {
  28204. height: math.unit(1 + 3 / 12, "feet"),
  28205. weight: math.unit(80, "lb"),
  28206. name: "Front",
  28207. image: {
  28208. source: "./media/characters/zander-rose/front.svg",
  28209. extra: 916 / 797,
  28210. bottom: 17 / 933
  28211. }
  28212. },
  28213. back: {
  28214. height: math.unit(1 + 3 / 12, "feet"),
  28215. weight: math.unit(80, "lb"),
  28216. name: "Back",
  28217. image: {
  28218. source: "./media/characters/zander-rose/back.svg",
  28219. extra: 903 / 779,
  28220. bottom: 31 / 934
  28221. }
  28222. },
  28223. },
  28224. [
  28225. {
  28226. name: "Normal",
  28227. height: math.unit(1 + 3 / 12, "feet"),
  28228. default: true
  28229. },
  28230. ]
  28231. ))
  28232. characterMakers.push(() => makeCharacter(
  28233. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28234. {
  28235. anthro: {
  28236. height: math.unit(6, "feet"),
  28237. weight: math.unit(150, "lb"),
  28238. name: "Anthro",
  28239. image: {
  28240. source: "./media/characters/razz/anthro.svg",
  28241. extra: 1437 / 1343,
  28242. bottom: 48 / 1485
  28243. }
  28244. },
  28245. feral: {
  28246. height: math.unit(6, "feet"),
  28247. weight: math.unit(150, "lb"),
  28248. name: "Feral",
  28249. image: {
  28250. source: "./media/characters/razz/feral.svg",
  28251. extra: 2569 / 1385,
  28252. bottom: 95 / 2664
  28253. }
  28254. },
  28255. },
  28256. [
  28257. {
  28258. name: "Normal",
  28259. height: math.unit(6, "feet"),
  28260. default: true
  28261. },
  28262. ]
  28263. ))
  28264. characterMakers.push(() => makeCharacter(
  28265. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28266. {
  28267. front: {
  28268. height: math.unit(9 + 4 / 12, "feet"),
  28269. weight: math.unit(500, "lb"),
  28270. name: "Front",
  28271. image: {
  28272. source: "./media/characters/morrigan/front.svg",
  28273. extra: 2707 / 2579,
  28274. bottom: 156 / 2863
  28275. }
  28276. },
  28277. },
  28278. [
  28279. {
  28280. name: "Normal",
  28281. height: math.unit(9 + 4 / 12, "feet"),
  28282. default: true
  28283. },
  28284. ]
  28285. ))
  28286. characterMakers.push(() => makeCharacter(
  28287. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28288. {
  28289. front: {
  28290. height: math.unit(5, "stories"),
  28291. weight: math.unit(4000, "lb"),
  28292. name: "Front",
  28293. image: {
  28294. source: "./media/characters/jenene/front.svg",
  28295. extra: 1780 / 1710,
  28296. bottom: 57 / 1837
  28297. }
  28298. },
  28299. },
  28300. [
  28301. {
  28302. name: "Normal",
  28303. height: math.unit(5, "stories"),
  28304. default: true
  28305. },
  28306. ]
  28307. ))
  28308. characterMakers.push(() => makeCharacter(
  28309. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28310. {
  28311. taurSfw: {
  28312. height: math.unit(10, "meters"),
  28313. weight: math.unit(17500, "kg"),
  28314. name: "Taur",
  28315. image: {
  28316. source: "./media/characters/faey/taur-sfw.svg",
  28317. extra: 1200 / 968,
  28318. bottom: 41 / 1241
  28319. }
  28320. },
  28321. chestmaw: {
  28322. height: math.unit(2.01, "meters"),
  28323. name: "Chestmaw",
  28324. image: {
  28325. source: "./media/characters/faey/chestmaw.svg"
  28326. }
  28327. },
  28328. foot: {
  28329. height: math.unit(2.43, "meters"),
  28330. name: "Foot",
  28331. image: {
  28332. source: "./media/characters/faey/foot.svg"
  28333. }
  28334. },
  28335. jaws: {
  28336. height: math.unit(1.66, "meters"),
  28337. name: "Jaws",
  28338. image: {
  28339. source: "./media/characters/faey/jaws.svg"
  28340. }
  28341. },
  28342. tongues: {
  28343. height: math.unit(2.01, "meters"),
  28344. name: "Tongues",
  28345. image: {
  28346. source: "./media/characters/faey/tongues.svg"
  28347. }
  28348. },
  28349. },
  28350. [
  28351. {
  28352. name: "Small",
  28353. height: math.unit(10, "meters"),
  28354. default: true
  28355. },
  28356. {
  28357. name: "Big",
  28358. height: math.unit(500000, "km")
  28359. },
  28360. ]
  28361. ))
  28362. characterMakers.push(() => makeCharacter(
  28363. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28364. {
  28365. front: {
  28366. height: math.unit(7, "feet"),
  28367. weight: math.unit(275, "lb"),
  28368. name: "Front",
  28369. image: {
  28370. source: "./media/characters/roku/front.svg",
  28371. extra: 903 / 878,
  28372. bottom: 37 / 940
  28373. }
  28374. },
  28375. },
  28376. [
  28377. {
  28378. name: "Normal",
  28379. height: math.unit(7, "feet"),
  28380. default: true
  28381. },
  28382. {
  28383. name: "Macro",
  28384. height: math.unit(500, "feet")
  28385. },
  28386. {
  28387. name: "Megamacro",
  28388. height: math.unit(200, "miles")
  28389. },
  28390. ]
  28391. ))
  28392. characterMakers.push(() => makeCharacter(
  28393. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28394. {
  28395. front: {
  28396. height: math.unit(6 + 2 / 12, "feet"),
  28397. weight: math.unit(150, "lb"),
  28398. name: "Front",
  28399. image: {
  28400. source: "./media/characters/lira/front.svg",
  28401. extra: 1727 / 1605,
  28402. bottom: 26 / 1753
  28403. }
  28404. },
  28405. back: {
  28406. height: math.unit(6 + 2 / 12, "feet"),
  28407. weight: math.unit(150, "lb"),
  28408. name: "Back",
  28409. image: {
  28410. source: "./media/characters/lira/back.svg",
  28411. extra: 1713/1621,
  28412. bottom: 20/1733
  28413. }
  28414. },
  28415. hand: {
  28416. height: math.unit(0.75, "feet"),
  28417. name: "Hand",
  28418. image: {
  28419. source: "./media/characters/lira/hand.svg"
  28420. }
  28421. },
  28422. maw: {
  28423. height: math.unit(0.65, "feet"),
  28424. name: "Maw",
  28425. image: {
  28426. source: "./media/characters/lira/maw.svg"
  28427. }
  28428. },
  28429. pawDigi: {
  28430. height: math.unit(1.6, "feet"),
  28431. name: "Paw Digi",
  28432. image: {
  28433. source: "./media/characters/lira/paw-digi.svg"
  28434. }
  28435. },
  28436. pawPlanti: {
  28437. height: math.unit(1.4, "feet"),
  28438. name: "Paw Planti",
  28439. image: {
  28440. source: "./media/characters/lira/paw-planti.svg"
  28441. }
  28442. },
  28443. },
  28444. [
  28445. {
  28446. name: "Normal",
  28447. height: math.unit(6 + 2 / 12, "feet"),
  28448. default: true
  28449. },
  28450. {
  28451. name: "Macro",
  28452. height: math.unit(100, "feet")
  28453. },
  28454. {
  28455. name: "Macro²",
  28456. height: math.unit(1600, "feet")
  28457. },
  28458. {
  28459. name: "Planetary",
  28460. height: math.unit(20, "earths")
  28461. },
  28462. ]
  28463. ))
  28464. characterMakers.push(() => makeCharacter(
  28465. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28466. {
  28467. front: {
  28468. height: math.unit(6, "feet"),
  28469. weight: math.unit(150, "lb"),
  28470. name: "Front",
  28471. image: {
  28472. source: "./media/characters/hadjet/front.svg",
  28473. extra: 1480 / 1346,
  28474. bottom: 26 / 1506
  28475. }
  28476. },
  28477. frontNsfw: {
  28478. height: math.unit(6, "feet"),
  28479. weight: math.unit(150, "lb"),
  28480. name: "Front (NSFW)",
  28481. image: {
  28482. source: "./media/characters/hadjet/front-nsfw.svg",
  28483. extra: 1440 / 1358,
  28484. bottom: 52 / 1492
  28485. }
  28486. },
  28487. },
  28488. [
  28489. {
  28490. name: "Macro",
  28491. height: math.unit(10, "stories"),
  28492. default: true
  28493. },
  28494. {
  28495. name: "Megamacro",
  28496. height: math.unit(1.5, "miles")
  28497. },
  28498. {
  28499. name: "Megamacro+",
  28500. height: math.unit(5, "miles")
  28501. },
  28502. ]
  28503. ))
  28504. characterMakers.push(() => makeCharacter(
  28505. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28506. {
  28507. side: {
  28508. height: math.unit(106, "feet"),
  28509. weight: math.unit(500, "tonnes"),
  28510. name: "Side",
  28511. image: {
  28512. source: "./media/characters/kodran/side.svg",
  28513. extra: 553 / 480,
  28514. bottom: 33 / 586
  28515. }
  28516. },
  28517. front: {
  28518. height: math.unit(132, "feet"),
  28519. weight: math.unit(500, "tonnes"),
  28520. name: "Front",
  28521. image: {
  28522. source: "./media/characters/kodran/front.svg",
  28523. extra: 667 / 643,
  28524. bottom: 42 / 709
  28525. }
  28526. },
  28527. flying: {
  28528. height: math.unit(350, "feet"),
  28529. weight: math.unit(500, "tonnes"),
  28530. name: "Flying",
  28531. image: {
  28532. source: "./media/characters/kodran/flying.svg"
  28533. }
  28534. },
  28535. foot: {
  28536. height: math.unit(33, "feet"),
  28537. name: "Foot",
  28538. image: {
  28539. source: "./media/characters/kodran/foot.svg"
  28540. }
  28541. },
  28542. footFront: {
  28543. height: math.unit(19, "feet"),
  28544. name: "Foot (Front)",
  28545. image: {
  28546. source: "./media/characters/kodran/foot-front.svg",
  28547. extra: 261 / 261,
  28548. bottom: 91 / 352
  28549. }
  28550. },
  28551. headFront: {
  28552. height: math.unit(53, "feet"),
  28553. name: "Head (Front)",
  28554. image: {
  28555. source: "./media/characters/kodran/head-front.svg"
  28556. }
  28557. },
  28558. headSide: {
  28559. height: math.unit(65, "feet"),
  28560. name: "Head (Side)",
  28561. image: {
  28562. source: "./media/characters/kodran/head-side.svg"
  28563. }
  28564. },
  28565. throat: {
  28566. height: math.unit(79, "feet"),
  28567. name: "Throat",
  28568. image: {
  28569. source: "./media/characters/kodran/throat.svg"
  28570. }
  28571. },
  28572. },
  28573. [
  28574. {
  28575. name: "Large",
  28576. height: math.unit(106, "feet"),
  28577. default: true
  28578. },
  28579. ]
  28580. ))
  28581. characterMakers.push(() => makeCharacter(
  28582. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28583. {
  28584. side: {
  28585. height: math.unit(11, "feet"),
  28586. weight: math.unit(150, "lb"),
  28587. name: "Side",
  28588. image: {
  28589. source: "./media/characters/pyxaron/side.svg",
  28590. extra: 305 / 195,
  28591. bottom: 17 / 322
  28592. }
  28593. },
  28594. },
  28595. [
  28596. {
  28597. name: "Normal",
  28598. height: math.unit(11, "feet"),
  28599. default: true
  28600. },
  28601. ]
  28602. ))
  28603. characterMakers.push(() => makeCharacter(
  28604. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28605. {
  28606. front: {
  28607. height: math.unit(6, "feet"),
  28608. weight: math.unit(150, "lb"),
  28609. name: "Front",
  28610. image: {
  28611. source: "./media/characters/meep/front.svg",
  28612. extra: 88 / 80,
  28613. bottom: 6 / 94
  28614. }
  28615. },
  28616. },
  28617. [
  28618. {
  28619. name: "Fun Sized",
  28620. height: math.unit(2, "inches"),
  28621. default: true
  28622. },
  28623. {
  28624. name: "Friend Sized",
  28625. height: math.unit(8, "inches")
  28626. },
  28627. ]
  28628. ))
  28629. characterMakers.push(() => makeCharacter(
  28630. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28631. {
  28632. front: {
  28633. height: math.unit(15, "feet"),
  28634. weight: math.unit(2500, "lb"),
  28635. name: "Front",
  28636. image: {
  28637. source: "./media/characters/holly-rabbit/front.svg",
  28638. extra: 1433 / 1233,
  28639. bottom: 125 / 1558
  28640. }
  28641. },
  28642. dick: {
  28643. height: math.unit(4.6, "feet"),
  28644. name: "Dick",
  28645. image: {
  28646. source: "./media/characters/holly-rabbit/dick.svg"
  28647. }
  28648. },
  28649. },
  28650. [
  28651. {
  28652. name: "Normal",
  28653. height: math.unit(15, "feet"),
  28654. default: true
  28655. },
  28656. {
  28657. name: "Macro",
  28658. height: math.unit(250, "feet")
  28659. },
  28660. {
  28661. name: "Macro+",
  28662. height: math.unit(2500, "feet")
  28663. },
  28664. ]
  28665. ))
  28666. characterMakers.push(() => makeCharacter(
  28667. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28668. {
  28669. front: {
  28670. height: math.unit(3.02, "meters"),
  28671. weight: math.unit(500, "kg"),
  28672. name: "Front",
  28673. image: {
  28674. source: "./media/characters/drena/front.svg",
  28675. extra: 282 / 243,
  28676. bottom: 8 / 290
  28677. }
  28678. },
  28679. side: {
  28680. height: math.unit(3.02, "meters"),
  28681. weight: math.unit(500, "kg"),
  28682. name: "Side",
  28683. image: {
  28684. source: "./media/characters/drena/side.svg",
  28685. extra: 280 / 245,
  28686. bottom: 10 / 290
  28687. }
  28688. },
  28689. back: {
  28690. height: math.unit(3.02, "meters"),
  28691. weight: math.unit(500, "kg"),
  28692. name: "Back",
  28693. image: {
  28694. source: "./media/characters/drena/back.svg",
  28695. extra: 278 / 243,
  28696. bottom: 2 / 280
  28697. }
  28698. },
  28699. foot: {
  28700. height: math.unit(0.75, "meters"),
  28701. name: "Foot",
  28702. image: {
  28703. source: "./media/characters/drena/foot.svg"
  28704. }
  28705. },
  28706. maw: {
  28707. height: math.unit(0.82, "meters"),
  28708. name: "Maw",
  28709. image: {
  28710. source: "./media/characters/drena/maw.svg"
  28711. }
  28712. },
  28713. rump: {
  28714. height: math.unit(0.93, "meters"),
  28715. name: "Rump",
  28716. image: {
  28717. source: "./media/characters/drena/rump.svg"
  28718. }
  28719. },
  28720. },
  28721. [
  28722. {
  28723. name: "Normal",
  28724. height: math.unit(3.02, "meters"),
  28725. default: true
  28726. },
  28727. ]
  28728. ))
  28729. characterMakers.push(() => makeCharacter(
  28730. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28731. {
  28732. front: {
  28733. height: math.unit(6 + 4 / 12, "feet"),
  28734. weight: math.unit(250, "lb"),
  28735. name: "Front",
  28736. image: {
  28737. source: "./media/characters/remmyzilla/front.svg",
  28738. extra: 4033 / 3588,
  28739. bottom: 123 / 4156
  28740. }
  28741. },
  28742. back: {
  28743. height: math.unit(6 + 4 / 12, "feet"),
  28744. weight: math.unit(250, "lb"),
  28745. name: "Back",
  28746. image: {
  28747. source: "./media/characters/remmyzilla/back.svg",
  28748. extra: 2687 / 2555,
  28749. bottom: 48 / 2735
  28750. }
  28751. },
  28752. paw: {
  28753. height: math.unit(1.73, "feet"),
  28754. name: "Paw",
  28755. image: {
  28756. source: "./media/characters/remmyzilla/paw.svg"
  28757. }
  28758. },
  28759. maw: {
  28760. height: math.unit(1.73, "feet"),
  28761. name: "Maw",
  28762. image: {
  28763. source: "./media/characters/remmyzilla/maw.svg"
  28764. }
  28765. },
  28766. },
  28767. [
  28768. {
  28769. name: "Normal",
  28770. height: math.unit(6 + 4 / 12, "feet")
  28771. },
  28772. {
  28773. name: "Minimacro",
  28774. height: math.unit(12 + 8 / 12, "feet")
  28775. },
  28776. {
  28777. name: "Normal",
  28778. height: math.unit(640, "feet"),
  28779. default: true
  28780. },
  28781. {
  28782. name: "Megamacro",
  28783. height: math.unit(6400, "feet")
  28784. },
  28785. {
  28786. name: "Gigamacro",
  28787. height: math.unit(64000, "miles")
  28788. },
  28789. ]
  28790. ))
  28791. characterMakers.push(() => makeCharacter(
  28792. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28793. {
  28794. front: {
  28795. height: math.unit(2.5, "meters"),
  28796. weight: math.unit(300, "lb"),
  28797. name: "Front",
  28798. image: {
  28799. source: "./media/characters/lawrence/front.svg",
  28800. extra: 357 / 335,
  28801. bottom: 30 / 387
  28802. }
  28803. },
  28804. back: {
  28805. height: math.unit(2.5, "meters"),
  28806. weight: math.unit(300, "lb"),
  28807. name: "Back",
  28808. image: {
  28809. source: "./media/characters/lawrence/back.svg",
  28810. extra: 357 / 338,
  28811. bottom: 16 / 373
  28812. }
  28813. },
  28814. head: {
  28815. height: math.unit(0.9, "meter"),
  28816. name: "Head",
  28817. image: {
  28818. source: "./media/characters/lawrence/head.svg"
  28819. }
  28820. },
  28821. maw: {
  28822. height: math.unit(0.7, "meter"),
  28823. name: "Maw",
  28824. image: {
  28825. source: "./media/characters/lawrence/maw.svg"
  28826. }
  28827. },
  28828. footBottom: {
  28829. height: math.unit(0.5, "meter"),
  28830. name: "Foot (Bottom)",
  28831. image: {
  28832. source: "./media/characters/lawrence/foot-bottom.svg"
  28833. }
  28834. },
  28835. footTop: {
  28836. height: math.unit(0.5, "meter"),
  28837. name: "Foot (Top)",
  28838. image: {
  28839. source: "./media/characters/lawrence/foot-top.svg"
  28840. }
  28841. },
  28842. },
  28843. [
  28844. {
  28845. name: "Normal",
  28846. height: math.unit(2.5, "meters"),
  28847. default: true
  28848. },
  28849. {
  28850. name: "Macro",
  28851. height: math.unit(95, "meters")
  28852. },
  28853. {
  28854. name: "Megamacro",
  28855. height: math.unit(150, "km")
  28856. },
  28857. ]
  28858. ))
  28859. characterMakers.push(() => makeCharacter(
  28860. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28861. {
  28862. front: {
  28863. height: math.unit(4.2, "meters"),
  28864. name: "Front",
  28865. image: {
  28866. source: "./media/characters/sydney/front.svg",
  28867. extra: 1323 / 1277,
  28868. bottom: 111 / 1434
  28869. }
  28870. },
  28871. },
  28872. [
  28873. {
  28874. name: "Normal",
  28875. height: math.unit(4.2, "meters"),
  28876. default: true
  28877. },
  28878. ]
  28879. ))
  28880. characterMakers.push(() => makeCharacter(
  28881. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28882. {
  28883. back: {
  28884. height: math.unit(201, "feet"),
  28885. name: "Back",
  28886. image: {
  28887. source: "./media/characters/jessica/back.svg",
  28888. extra: 273 / 259,
  28889. bottom: 7 / 280
  28890. }
  28891. },
  28892. },
  28893. [
  28894. {
  28895. name: "Normal",
  28896. height: math.unit(201, "feet"),
  28897. default: true
  28898. },
  28899. {
  28900. name: "Megamacro",
  28901. height: math.unit(8, "miles")
  28902. },
  28903. ]
  28904. ))
  28905. characterMakers.push(() => makeCharacter(
  28906. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28907. {
  28908. side: {
  28909. height: math.unit(320, "cm"),
  28910. name: "Side",
  28911. image: {
  28912. source: "./media/characters/victoria/side.svg",
  28913. extra: 778 / 346,
  28914. bottom: 56 / 834
  28915. }
  28916. },
  28917. maw: {
  28918. height: math.unit(5.9, "feet"),
  28919. name: "Maw",
  28920. image: {
  28921. source: "./media/characters/victoria/maw.svg"
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Normal",
  28928. height: math.unit(320, "cm"),
  28929. default: true
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28935. {
  28936. front: {
  28937. height: math.unit(5 + 6 / 12, "feet"),
  28938. name: "Front",
  28939. image: {
  28940. source: "./media/characters/cat/front.svg",
  28941. extra: 1449/1295,
  28942. bottom: 34/1483
  28943. }
  28944. },
  28945. back: {
  28946. height: math.unit(5 + 6 / 12, "feet"),
  28947. name: "Back",
  28948. image: {
  28949. source: "./media/characters/cat/back.svg",
  28950. extra: 1466/1301,
  28951. bottom: 19/1485
  28952. }
  28953. },
  28954. taur: {
  28955. height: math.unit(7, "feet"),
  28956. name: "Taur",
  28957. image: {
  28958. source: "./media/characters/cat/taur.svg",
  28959. extra: 1389/1233,
  28960. bottom: 83/1472
  28961. }
  28962. },
  28963. lucarioFront: {
  28964. height: math.unit(4, "feet"),
  28965. name: "Lucario (Front)",
  28966. image: {
  28967. source: "./media/characters/cat/lucario-front.svg",
  28968. extra: 1149/1019,
  28969. bottom: 84/1233
  28970. }
  28971. },
  28972. lucarioBack: {
  28973. height: math.unit(4, "feet"),
  28974. name: "Lucario (Back)",
  28975. image: {
  28976. source: "./media/characters/cat/lucario-back.svg",
  28977. extra: 1190/1059,
  28978. bottom: 33/1223
  28979. }
  28980. },
  28981. megaLucario: {
  28982. height: math.unit(4, "feet"),
  28983. name: "Mega Lucario",
  28984. image: {
  28985. source: "./media/characters/cat/mega-lucario.svg",
  28986. extra: 1515 / 1319,
  28987. bottom: 63 / 1578
  28988. }
  28989. },
  28990. nickit: {
  28991. height: math.unit(2, "feet"),
  28992. name: "Nickit",
  28993. image: {
  28994. source: "./media/characters/cat/nickit.svg",
  28995. extra: 1980 / 1585,
  28996. bottom: 102 / 2082
  28997. }
  28998. },
  28999. lopunnyFront: {
  29000. height: math.unit(5, "feet"),
  29001. name: "Lopunny (Front)",
  29002. image: {
  29003. source: "./media/characters/cat/lopunny-front.svg",
  29004. extra: 1782 / 1469,
  29005. bottom: 38 / 1820
  29006. }
  29007. },
  29008. lopunnyBack: {
  29009. height: math.unit(5, "feet"),
  29010. name: "Lopunny (Back)",
  29011. image: {
  29012. source: "./media/characters/cat/lopunny-back.svg",
  29013. extra: 1660 / 1490,
  29014. bottom: 25 / 1685
  29015. }
  29016. },
  29017. },
  29018. [
  29019. {
  29020. name: "Really small",
  29021. height: math.unit(1, "nm")
  29022. },
  29023. {
  29024. name: "Micro",
  29025. height: math.unit(5, "inches")
  29026. },
  29027. {
  29028. name: "Normal",
  29029. height: math.unit(5 + 6 / 12, "feet"),
  29030. default: true
  29031. },
  29032. {
  29033. name: "Macro",
  29034. height: math.unit(50, "feet")
  29035. },
  29036. {
  29037. name: "Macro+",
  29038. height: math.unit(150, "feet")
  29039. },
  29040. {
  29041. name: "Megamacro",
  29042. height: math.unit(100, "miles")
  29043. },
  29044. ]
  29045. ))
  29046. characterMakers.push(() => makeCharacter(
  29047. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29048. {
  29049. front: {
  29050. height: math.unit(63.4, "meters"),
  29051. weight: math.unit(3.28349e+6, "kilograms"),
  29052. name: "Front",
  29053. image: {
  29054. source: "./media/characters/kirina-violet/front.svg",
  29055. extra: 2812 / 2725,
  29056. bottom: 0 / 2812
  29057. }
  29058. },
  29059. back: {
  29060. height: math.unit(63.4, "meters"),
  29061. weight: math.unit(3.28349e+6, "kilograms"),
  29062. name: "Back",
  29063. image: {
  29064. source: "./media/characters/kirina-violet/back.svg",
  29065. extra: 2812 / 2725,
  29066. bottom: 0 / 2812
  29067. }
  29068. },
  29069. mouth: {
  29070. height: math.unit(4.35, "meters"),
  29071. name: "Mouth",
  29072. image: {
  29073. source: "./media/characters/kirina-violet/mouth.svg"
  29074. }
  29075. },
  29076. paw: {
  29077. height: math.unit(5.6, "meters"),
  29078. name: "Paw",
  29079. image: {
  29080. source: "./media/characters/kirina-violet/paw.svg"
  29081. }
  29082. },
  29083. tail: {
  29084. height: math.unit(18, "meters"),
  29085. name: "Tail",
  29086. image: {
  29087. source: "./media/characters/kirina-violet/tail.svg"
  29088. }
  29089. },
  29090. },
  29091. [
  29092. {
  29093. name: "Macro",
  29094. height: math.unit(63.4, "meters"),
  29095. default: true
  29096. },
  29097. ]
  29098. ))
  29099. characterMakers.push(() => makeCharacter(
  29100. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29101. {
  29102. front: {
  29103. height: math.unit(75, "feet"),
  29104. name: "Front",
  29105. image: {
  29106. source: "./media/characters/cat-gigachu/front.svg",
  29107. extra: 1239/1027,
  29108. bottom: 32/1271
  29109. }
  29110. },
  29111. back: {
  29112. height: math.unit(75, "feet"),
  29113. name: "Back",
  29114. image: {
  29115. source: "./media/characters/cat-gigachu/back.svg",
  29116. extra: 1229/1030,
  29117. bottom: 9/1238
  29118. }
  29119. },
  29120. },
  29121. [
  29122. {
  29123. name: "Dynamax",
  29124. height: math.unit(75, "feet"),
  29125. default: true
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(6, "feet"),
  29134. weight: math.unit(150, "lb"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/sfaiyan/front.svg",
  29138. extra: 999 / 978,
  29139. bottom: 5 / 1004
  29140. }
  29141. },
  29142. },
  29143. [
  29144. {
  29145. name: "Normal",
  29146. height: math.unit(1.82, "meters")
  29147. },
  29148. {
  29149. name: "Giant",
  29150. height: math.unit(2.27, "km"),
  29151. default: true
  29152. },
  29153. ]
  29154. ))
  29155. characterMakers.push(() => makeCharacter(
  29156. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29157. {
  29158. front: {
  29159. height: math.unit(179, "cm"),
  29160. weight: math.unit(100, "kg"),
  29161. name: "Front",
  29162. image: {
  29163. source: "./media/characters/raunehkeli/front.svg",
  29164. extra: 1934 / 1926,
  29165. bottom: 0 / 1934
  29166. }
  29167. },
  29168. },
  29169. [
  29170. {
  29171. name: "Normal",
  29172. height: math.unit(179, "cm")
  29173. },
  29174. {
  29175. name: "Maximum",
  29176. height: math.unit(575, "meters"),
  29177. default: true
  29178. },
  29179. ]
  29180. ))
  29181. characterMakers.push(() => makeCharacter(
  29182. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29183. {
  29184. front: {
  29185. height: math.unit(6, "feet"),
  29186. weight: math.unit(150, "lb"),
  29187. name: "Front",
  29188. image: {
  29189. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29190. extra: 2625 / 2518,
  29191. bottom: 60 / 2685
  29192. }
  29193. },
  29194. },
  29195. [
  29196. {
  29197. name: "Normal",
  29198. height: math.unit(6 + 2 / 12, "feet")
  29199. },
  29200. {
  29201. name: "Macro",
  29202. height: math.unit(1180, "feet"),
  29203. default: true
  29204. },
  29205. ]
  29206. ))
  29207. characterMakers.push(() => makeCharacter(
  29208. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29209. {
  29210. front: {
  29211. height: math.unit(5 + 6 / 12, "feet"),
  29212. weight: math.unit(108, "lb"),
  29213. name: "Front",
  29214. image: {
  29215. source: "./media/characters/lilith-zott/front.svg",
  29216. extra: 2510 / 2238,
  29217. bottom: 100 / 2610
  29218. }
  29219. },
  29220. frontDressed: {
  29221. height: math.unit(5 + 6 / 12, "feet"),
  29222. weight: math.unit(108, "lb"),
  29223. name: "Front (Dressed)",
  29224. image: {
  29225. source: "./media/characters/lilith-zott/front-dressed.svg",
  29226. extra: 2510 / 2238,
  29227. bottom: 100 / 2610
  29228. }
  29229. },
  29230. },
  29231. [
  29232. {
  29233. name: "Normal",
  29234. height: math.unit(5 + 6 / 12, "feet")
  29235. },
  29236. {
  29237. name: "Macro",
  29238. height: math.unit(1030, "feet"),
  29239. default: true
  29240. },
  29241. ]
  29242. ))
  29243. characterMakers.push(() => makeCharacter(
  29244. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29245. {
  29246. front: {
  29247. height: math.unit(6, "feet"),
  29248. weight: math.unit(150, "lb"),
  29249. name: "Front",
  29250. image: {
  29251. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29252. extra: 2567 / 2435,
  29253. bottom: 39 / 2606
  29254. }
  29255. },
  29256. frontSuper: {
  29257. height: math.unit(6, "feet"),
  29258. name: "Front (Super)",
  29259. image: {
  29260. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29261. extra: 2567 / 2435,
  29262. bottom: 39 / 2606
  29263. }
  29264. },
  29265. },
  29266. [
  29267. {
  29268. name: "Normal",
  29269. height: math.unit(5 + 10 / 12, "feet")
  29270. },
  29271. {
  29272. name: "Macro",
  29273. height: math.unit(1100, "feet"),
  29274. default: true
  29275. },
  29276. ]
  29277. ))
  29278. characterMakers.push(() => makeCharacter(
  29279. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29280. {
  29281. front: {
  29282. height: math.unit(100, "miles"),
  29283. name: "Front",
  29284. image: {
  29285. source: "./media/characters/sona/front.svg",
  29286. extra: 2433 / 2201,
  29287. bottom: 53 / 2486
  29288. }
  29289. },
  29290. foot: {
  29291. height: math.unit(16.1, "miles"),
  29292. name: "Foot",
  29293. image: {
  29294. source: "./media/characters/sona/foot.svg"
  29295. }
  29296. },
  29297. },
  29298. [
  29299. {
  29300. name: "Macro",
  29301. height: math.unit(100, "miles"),
  29302. default: true
  29303. },
  29304. ]
  29305. ))
  29306. characterMakers.push(() => makeCharacter(
  29307. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29308. {
  29309. front: {
  29310. height: math.unit(6, "feet"),
  29311. weight: math.unit(150, "lb"),
  29312. name: "Front",
  29313. image: {
  29314. source: "./media/characters/bailey/front.svg",
  29315. extra: 1778 / 1724,
  29316. bottom: 30 / 1808
  29317. }
  29318. },
  29319. },
  29320. [
  29321. {
  29322. name: "Micro",
  29323. height: math.unit(4, "inches")
  29324. },
  29325. {
  29326. name: "Normal",
  29327. height: math.unit(5 + 5 / 12, "feet"),
  29328. default: true
  29329. },
  29330. {
  29331. name: "Macro",
  29332. height: math.unit(250, "feet")
  29333. },
  29334. {
  29335. name: "Megamacro",
  29336. height: math.unit(100, "miles")
  29337. },
  29338. ]
  29339. ))
  29340. characterMakers.push(() => makeCharacter(
  29341. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29342. {
  29343. front: {
  29344. height: math.unit(5 + 2 / 12, "feet"),
  29345. weight: math.unit(120, "lb"),
  29346. name: "Front",
  29347. image: {
  29348. source: "./media/characters/snaps/front.svg",
  29349. extra: 2370 / 2177,
  29350. bottom: 48 / 2418
  29351. }
  29352. },
  29353. back: {
  29354. height: math.unit(5 + 2 / 12, "feet"),
  29355. weight: math.unit(120, "lb"),
  29356. name: "Back",
  29357. image: {
  29358. source: "./media/characters/snaps/back.svg",
  29359. extra: 2408 / 2258,
  29360. bottom: 15 / 2423
  29361. }
  29362. },
  29363. },
  29364. [
  29365. {
  29366. name: "Micro",
  29367. height: math.unit(9, "inches")
  29368. },
  29369. {
  29370. name: "Normal",
  29371. height: math.unit(5 + 2 / 12, "feet"),
  29372. default: true
  29373. },
  29374. {
  29375. name: "Mini Macro",
  29376. height: math.unit(10, "feet")
  29377. },
  29378. ]
  29379. ))
  29380. characterMakers.push(() => makeCharacter(
  29381. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29382. {
  29383. front: {
  29384. height: math.unit(1.8, "meters"),
  29385. weight: math.unit(85, "kg"),
  29386. name: "Front",
  29387. image: {
  29388. source: "./media/characters/azteck/front.svg",
  29389. extra: 2815 / 2625,
  29390. bottom: 89 / 2904
  29391. }
  29392. },
  29393. back: {
  29394. height: math.unit(1.8, "meters"),
  29395. weight: math.unit(85, "kg"),
  29396. name: "Back",
  29397. image: {
  29398. source: "./media/characters/azteck/back.svg",
  29399. extra: 2856 / 2648,
  29400. bottom: 85 / 2941
  29401. }
  29402. },
  29403. frontDressed: {
  29404. height: math.unit(1.8, "meters"),
  29405. weight: math.unit(85, "kg"),
  29406. name: "Front (Dressed)",
  29407. image: {
  29408. source: "./media/characters/azteck/front-dressed.svg",
  29409. extra: 2147 / 2003,
  29410. bottom: 68 / 2215
  29411. }
  29412. },
  29413. head: {
  29414. height: math.unit(0.47, "meters"),
  29415. weight: math.unit(85, "kg"),
  29416. name: "Head",
  29417. image: {
  29418. source: "./media/characters/azteck/head.svg"
  29419. }
  29420. },
  29421. },
  29422. [
  29423. {
  29424. name: "Bite sized",
  29425. height: math.unit(16, "cm")
  29426. },
  29427. {
  29428. name: "Normal",
  29429. height: math.unit(1.8, "meters"),
  29430. default: true
  29431. },
  29432. ]
  29433. ))
  29434. characterMakers.push(() => makeCharacter(
  29435. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29436. {
  29437. front: {
  29438. height: math.unit(6, "feet"),
  29439. weight: math.unit(150, "lb"),
  29440. name: "Front",
  29441. image: {
  29442. source: "./media/characters/pidge/front.svg",
  29443. extra: 620 / 588,
  29444. bottom: 9 / 629
  29445. }
  29446. },
  29447. back: {
  29448. height: math.unit(6, "feet"),
  29449. weight: math.unit(150, "lb"),
  29450. name: "Back",
  29451. image: {
  29452. source: "./media/characters/pidge/back.svg",
  29453. extra: 620 / 588,
  29454. bottom: 9 / 629
  29455. }
  29456. },
  29457. },
  29458. [
  29459. {
  29460. name: "Macro",
  29461. height: math.unit(1, "mile"),
  29462. default: true
  29463. },
  29464. ]
  29465. ))
  29466. characterMakers.push(() => makeCharacter(
  29467. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29468. {
  29469. front: {
  29470. height: math.unit(6, "feet"),
  29471. weight: math.unit(150, "lb"),
  29472. name: "Front",
  29473. image: {
  29474. source: "./media/characters/en/front.svg",
  29475. extra: 1697 / 1563,
  29476. bottom: 103 / 1800
  29477. }
  29478. },
  29479. back: {
  29480. height: math.unit(6, "feet"),
  29481. weight: math.unit(150, "lb"),
  29482. name: "Back",
  29483. image: {
  29484. source: "./media/characters/en/back.svg",
  29485. extra: 1700 / 1570,
  29486. bottom: 51 / 1751
  29487. }
  29488. },
  29489. frontDressed: {
  29490. height: math.unit(6, "feet"),
  29491. weight: math.unit(150, "lb"),
  29492. name: "Front (Dressed)",
  29493. image: {
  29494. source: "./media/characters/en/front-dressed.svg",
  29495. extra: 1697 / 1563,
  29496. bottom: 103 / 1800
  29497. }
  29498. },
  29499. backDressed: {
  29500. height: math.unit(6, "feet"),
  29501. weight: math.unit(150, "lb"),
  29502. name: "Back (Dressed)",
  29503. image: {
  29504. source: "./media/characters/en/back-dressed.svg",
  29505. extra: 1700 / 1570,
  29506. bottom: 51 / 1751
  29507. }
  29508. },
  29509. },
  29510. [
  29511. {
  29512. name: "Macro",
  29513. height: math.unit(210, "feet"),
  29514. default: true
  29515. },
  29516. ]
  29517. ))
  29518. characterMakers.push(() => makeCharacter(
  29519. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29520. {
  29521. front: {
  29522. height: math.unit(6, "feet"),
  29523. weight: math.unit(150, "lb"),
  29524. name: "Front",
  29525. image: {
  29526. source: "./media/characters/haze-orris/front.svg",
  29527. extra: 3975 / 3525,
  29528. bottom: 137 / 4112
  29529. }
  29530. },
  29531. },
  29532. [
  29533. {
  29534. name: "Micro",
  29535. height: math.unit(150, "mm"),
  29536. default: true
  29537. },
  29538. ]
  29539. ))
  29540. characterMakers.push(() => makeCharacter(
  29541. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29542. {
  29543. front: {
  29544. height: math.unit(6, "feet"),
  29545. weight: math.unit(150, "lb"),
  29546. name: "Front",
  29547. image: {
  29548. source: "./media/characters/casselene-yaro/front.svg",
  29549. extra: 4721 / 4541,
  29550. bottom: 82 / 4803
  29551. }
  29552. },
  29553. back: {
  29554. height: math.unit(6, "feet"),
  29555. weight: math.unit(150, "lb"),
  29556. name: "Back",
  29557. image: {
  29558. source: "./media/characters/casselene-yaro/back.svg",
  29559. extra: 4569 / 4377,
  29560. bottom: 69 / 4638
  29561. }
  29562. },
  29563. frontDressed: {
  29564. height: math.unit(6, "feet"),
  29565. weight: math.unit(150, "lb"),
  29566. name: "Front-dressed",
  29567. image: {
  29568. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29569. extra: 4721 / 4541,
  29570. bottom: 82 / 4803
  29571. }
  29572. },
  29573. },
  29574. [
  29575. {
  29576. name: "Macro",
  29577. height: math.unit(190, "feet"),
  29578. default: true
  29579. },
  29580. ]
  29581. ))
  29582. characterMakers.push(() => makeCharacter(
  29583. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29584. {
  29585. front: {
  29586. height: math.unit(6, "feet"),
  29587. weight: math.unit(150, "lb"),
  29588. name: "Front",
  29589. image: {
  29590. source: "./media/characters/myra-rue-delore/front.svg",
  29591. extra: 1340 / 1308,
  29592. bottom: 67 / 1407
  29593. }
  29594. },
  29595. back: {
  29596. height: math.unit(6, "feet"),
  29597. weight: math.unit(150, "lb"),
  29598. name: "Back",
  29599. image: {
  29600. source: "./media/characters/myra-rue-delore/back.svg",
  29601. extra: 1341 / 1310,
  29602. bottom: 40 / 1381
  29603. }
  29604. },
  29605. frontDressed: {
  29606. height: math.unit(6, "feet"),
  29607. weight: math.unit(150, "lb"),
  29608. name: "Front (Dressed)",
  29609. image: {
  29610. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29611. extra: 1340 / 1308,
  29612. bottom: 67 / 1407
  29613. }
  29614. },
  29615. },
  29616. [
  29617. {
  29618. name: "Macro",
  29619. height: math.unit(150, "feet"),
  29620. default: true
  29621. },
  29622. ]
  29623. ))
  29624. characterMakers.push(() => makeCharacter(
  29625. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29626. {
  29627. front: {
  29628. height: math.unit(10, "feet"),
  29629. weight: math.unit(15015, "lb"),
  29630. name: "Front",
  29631. image: {
  29632. source: "./media/characters/fem!plat/front.svg",
  29633. extra: 2799 / 2604,
  29634. bottom: 149 / 2948
  29635. }
  29636. },
  29637. },
  29638. [
  29639. {
  29640. name: "Normal",
  29641. height: math.unit(10, "feet"),
  29642. default: true
  29643. },
  29644. {
  29645. name: "Macro",
  29646. height: math.unit(100, "feet")
  29647. },
  29648. {
  29649. name: "Megamacro",
  29650. height: math.unit(1000, "feet")
  29651. },
  29652. ]
  29653. ))
  29654. characterMakers.push(() => makeCharacter(
  29655. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29656. {
  29657. front: {
  29658. height: math.unit(15 + 5 / 12, "feet"),
  29659. weight: math.unit(4600, "lb"),
  29660. name: "Front",
  29661. image: {
  29662. source: "./media/characters/neapolitan-ananassa/front.svg",
  29663. extra: 2903 / 2736,
  29664. bottom: 0 / 2903
  29665. }
  29666. },
  29667. side: {
  29668. height: math.unit(15 + 5 / 12, "feet"),
  29669. weight: math.unit(4600, "lb"),
  29670. name: "Side",
  29671. image: {
  29672. source: "./media/characters/neapolitan-ananassa/side.svg",
  29673. extra: 2925 / 2719,
  29674. bottom: 0 / 2925
  29675. }
  29676. },
  29677. back: {
  29678. height: math.unit(15 + 5 / 12, "feet"),
  29679. weight: math.unit(4600, "lb"),
  29680. name: "Back",
  29681. image: {
  29682. source: "./media/characters/neapolitan-ananassa/back.svg",
  29683. extra: 2903 / 2736,
  29684. bottom: 0 / 2903
  29685. }
  29686. },
  29687. },
  29688. [
  29689. {
  29690. name: "Normal",
  29691. height: math.unit(15 + 5 / 12, "feet"),
  29692. default: true
  29693. },
  29694. {
  29695. name: "Post-Millenium",
  29696. height: math.unit(35 + 5 / 12, "feet")
  29697. },
  29698. {
  29699. name: "Post-Era",
  29700. height: math.unit(450 + 5 / 12, "feet")
  29701. },
  29702. ]
  29703. ))
  29704. characterMakers.push(() => makeCharacter(
  29705. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29706. {
  29707. front: {
  29708. height: math.unit(300, "meters"),
  29709. weight: math.unit(125000, "tonnes"),
  29710. name: "Front",
  29711. image: {
  29712. source: "./media/characters/pazuzu/front.svg",
  29713. extra: 877 / 794,
  29714. bottom: 47 / 924
  29715. }
  29716. },
  29717. },
  29718. [
  29719. {
  29720. name: "Macro",
  29721. height: math.unit(300, "meters"),
  29722. default: true
  29723. },
  29724. ]
  29725. ))
  29726. characterMakers.push(() => makeCharacter(
  29727. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29728. {
  29729. side: {
  29730. height: math.unit(10 + 7 / 12, "feet"),
  29731. weight: math.unit(2.5, "tons"),
  29732. name: "Side",
  29733. image: {
  29734. source: "./media/characters/aasha/side.svg",
  29735. extra: 1345 / 1245,
  29736. bottom: 111 / 1456
  29737. }
  29738. },
  29739. back: {
  29740. height: math.unit(10 + 7 / 12, "feet"),
  29741. weight: math.unit(2.5, "tons"),
  29742. name: "Back",
  29743. image: {
  29744. source: "./media/characters/aasha/back.svg",
  29745. extra: 1133 / 1057,
  29746. bottom: 257 / 1390
  29747. }
  29748. },
  29749. },
  29750. [
  29751. {
  29752. name: "Normal",
  29753. height: math.unit(10 + 7 / 12, "feet"),
  29754. default: true
  29755. },
  29756. ]
  29757. ))
  29758. characterMakers.push(() => makeCharacter(
  29759. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29760. {
  29761. front: {
  29762. height: math.unit(6 + 3 / 12, "feet"),
  29763. name: "Front",
  29764. image: {
  29765. source: "./media/characters/nevan/front.svg",
  29766. extra: 704 / 704,
  29767. bottom: 28 / 732
  29768. }
  29769. },
  29770. back: {
  29771. height: math.unit(6 + 3 / 12, "feet"),
  29772. name: "Back",
  29773. image: {
  29774. source: "./media/characters/nevan/back.svg",
  29775. extra: 714 / 714,
  29776. bottom: 21 / 735
  29777. }
  29778. },
  29779. frontFlaccid: {
  29780. height: math.unit(6 + 3 / 12, "feet"),
  29781. name: "Front (Flaccid)",
  29782. image: {
  29783. source: "./media/characters/nevan/front-flaccid.svg",
  29784. extra: 704 / 704,
  29785. bottom: 28 / 732
  29786. }
  29787. },
  29788. frontErect: {
  29789. height: math.unit(6 + 3 / 12, "feet"),
  29790. name: "Front (Erect)",
  29791. image: {
  29792. source: "./media/characters/nevan/front-erect.svg",
  29793. extra: 704 / 704,
  29794. bottom: 28 / 732
  29795. }
  29796. },
  29797. backFlaccid: {
  29798. height: math.unit(6 + 3 / 12, "feet"),
  29799. name: "Back (Flaccid)",
  29800. image: {
  29801. source: "./media/characters/nevan/back-flaccid.svg",
  29802. extra: 714 / 714,
  29803. bottom: 21 / 735
  29804. }
  29805. },
  29806. },
  29807. [
  29808. {
  29809. name: "Normal",
  29810. height: math.unit(6 + 3 / 12, "feet"),
  29811. default: true
  29812. },
  29813. ]
  29814. ))
  29815. characterMakers.push(() => makeCharacter(
  29816. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29817. {
  29818. front: {
  29819. height: math.unit(4, "feet"),
  29820. name: "Front",
  29821. image: {
  29822. source: "./media/characters/arhan/front.svg",
  29823. extra: 3368 / 3133,
  29824. bottom: 0 / 3368
  29825. }
  29826. },
  29827. side: {
  29828. height: math.unit(4, "feet"),
  29829. name: "Side",
  29830. image: {
  29831. source: "./media/characters/arhan/side.svg",
  29832. extra: 3347 / 3105,
  29833. bottom: 0 / 3347
  29834. }
  29835. },
  29836. tongue: {
  29837. height: math.unit(1.42, "feet"),
  29838. name: "Tongue",
  29839. image: {
  29840. source: "./media/characters/arhan/tongue.svg"
  29841. }
  29842. },
  29843. head: {
  29844. height: math.unit(0.85, "feet"),
  29845. name: "Head",
  29846. image: {
  29847. source: "./media/characters/arhan/head.svg"
  29848. }
  29849. },
  29850. },
  29851. [
  29852. {
  29853. name: "Normal",
  29854. height: math.unit(4, "feet"),
  29855. default: true
  29856. },
  29857. ]
  29858. ))
  29859. characterMakers.push(() => makeCharacter(
  29860. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29861. {
  29862. front: {
  29863. height: math.unit(5 + 7.5 / 12, "feet"),
  29864. weight: math.unit(120, "lb"),
  29865. name: "Front",
  29866. image: {
  29867. source: "./media/characters/digi-duncan/front.svg",
  29868. extra: 330 / 326,
  29869. bottom: 16 / 346
  29870. }
  29871. },
  29872. side: {
  29873. height: math.unit(5 + 7.5 / 12, "feet"),
  29874. weight: math.unit(120, "lb"),
  29875. name: "Side",
  29876. image: {
  29877. source: "./media/characters/digi-duncan/side.svg",
  29878. extra: 341 / 337,
  29879. bottom: 1 / 342
  29880. }
  29881. },
  29882. back: {
  29883. height: math.unit(5 + 7.5 / 12, "feet"),
  29884. weight: math.unit(120, "lb"),
  29885. name: "Back",
  29886. image: {
  29887. source: "./media/characters/digi-duncan/back.svg",
  29888. extra: 330 / 326,
  29889. bottom: 12 / 342
  29890. }
  29891. },
  29892. },
  29893. [
  29894. {
  29895. name: "Speck",
  29896. height: math.unit(0.25, "mm")
  29897. },
  29898. {
  29899. name: "Micro",
  29900. height: math.unit(5, "mm")
  29901. },
  29902. {
  29903. name: "Tiny",
  29904. height: math.unit(0.5, "inches"),
  29905. default: true
  29906. },
  29907. {
  29908. name: "Human",
  29909. height: math.unit(5 + 7.5 / 12, "feet")
  29910. },
  29911. {
  29912. name: "Minigiant",
  29913. height: math.unit(8 + 5.25, "feet")
  29914. },
  29915. {
  29916. name: "Giant",
  29917. height: math.unit(2000, "feet")
  29918. },
  29919. {
  29920. name: "Mega",
  29921. height: math.unit(371.1, "miles")
  29922. },
  29923. ]
  29924. ))
  29925. characterMakers.push(() => makeCharacter(
  29926. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29927. {
  29928. front: {
  29929. height: math.unit(2, "meters"),
  29930. weight: math.unit(350, "kg"),
  29931. name: "Front",
  29932. image: {
  29933. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29934. extra: 898 / 838,
  29935. bottom: 9 / 907
  29936. }
  29937. },
  29938. },
  29939. [
  29940. {
  29941. name: "Micro",
  29942. height: math.unit(8, "meters")
  29943. },
  29944. {
  29945. name: "Normal",
  29946. height: math.unit(50, "meters"),
  29947. default: true
  29948. },
  29949. {
  29950. name: "Macro",
  29951. height: math.unit(500, "meters")
  29952. },
  29953. ]
  29954. ))
  29955. characterMakers.push(() => makeCharacter(
  29956. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29957. {
  29958. front: {
  29959. height: math.unit(6 + 6 / 12, "feet"),
  29960. name: "Front",
  29961. image: {
  29962. source: "./media/characters/khardesh/front.svg",
  29963. extra: 888 / 797,
  29964. bottom: 25 / 913
  29965. }
  29966. },
  29967. },
  29968. [
  29969. {
  29970. name: "Normal",
  29971. height: math.unit(6 + 6 / 12, "feet"),
  29972. default: true
  29973. },
  29974. {
  29975. name: "Normal+",
  29976. height: math.unit(4, "meters")
  29977. },
  29978. {
  29979. name: "Macro",
  29980. height: math.unit(50, "meters")
  29981. },
  29982. {
  29983. name: "Macro+",
  29984. height: math.unit(100, "meters")
  29985. },
  29986. {
  29987. name: "Megamacro",
  29988. height: math.unit(20, "km")
  29989. },
  29990. ]
  29991. ))
  29992. characterMakers.push(() => makeCharacter(
  29993. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29994. {
  29995. front: {
  29996. height: math.unit(6, "feet"),
  29997. weight: math.unit(150, "lb"),
  29998. name: "Front",
  29999. image: {
  30000. source: "./media/characters/kosho/front.svg",
  30001. extra: 1847 / 1847,
  30002. bottom: 86 / 1933
  30003. }
  30004. },
  30005. },
  30006. [
  30007. {
  30008. name: "Second-stage micro",
  30009. height: math.unit(0.5, "inches")
  30010. },
  30011. {
  30012. name: "First-stage micro",
  30013. height: math.unit(6, "inches")
  30014. },
  30015. {
  30016. name: "Normal",
  30017. height: math.unit(6, "feet"),
  30018. default: true
  30019. },
  30020. {
  30021. name: "First-stage macro",
  30022. height: math.unit(72, "feet")
  30023. },
  30024. {
  30025. name: "Second-stage macro",
  30026. height: math.unit(864, "feet")
  30027. },
  30028. ]
  30029. ))
  30030. characterMakers.push(() => makeCharacter(
  30031. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30032. {
  30033. normal: {
  30034. height: math.unit(4 + 6 / 12, "feet"),
  30035. name: "Normal",
  30036. image: {
  30037. source: "./media/characters/hydra/normal.svg",
  30038. extra: 2833 / 2634,
  30039. bottom: 68 / 2901
  30040. }
  30041. },
  30042. smol: {
  30043. height: math.unit(0.705, "inches"),
  30044. name: "Smol",
  30045. image: {
  30046. source: "./media/characters/hydra/smol.svg",
  30047. extra: 2715 / 2540,
  30048. bottom: 0 / 2715
  30049. }
  30050. },
  30051. },
  30052. [
  30053. {
  30054. name: "Normal",
  30055. height: math.unit(4 + 6 / 12, "feet"),
  30056. default: true
  30057. }
  30058. ]
  30059. ))
  30060. characterMakers.push(() => makeCharacter(
  30061. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30062. {
  30063. front: {
  30064. height: math.unit(0.6, "cm"),
  30065. name: "Front",
  30066. image: {
  30067. source: "./media/characters/daz/front.svg",
  30068. extra: 1682 / 1164,
  30069. bottom: 42 / 1724
  30070. }
  30071. },
  30072. },
  30073. [
  30074. {
  30075. name: "Normal",
  30076. height: math.unit(0.6, "cm"),
  30077. default: true
  30078. },
  30079. ]
  30080. ))
  30081. characterMakers.push(() => makeCharacter(
  30082. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30083. {
  30084. front: {
  30085. height: math.unit(6, "feet"),
  30086. weight: math.unit(235, "lb"),
  30087. name: "Front",
  30088. image: {
  30089. source: "./media/characters/theo-pangolin/front.svg",
  30090. extra: 1996 / 1969,
  30091. bottom: 115 / 2111
  30092. }
  30093. },
  30094. back: {
  30095. height: math.unit(6, "feet"),
  30096. weight: math.unit(235, "lb"),
  30097. name: "Back",
  30098. image: {
  30099. source: "./media/characters/theo-pangolin/back.svg",
  30100. extra: 1979 / 1979,
  30101. bottom: 40 / 2019
  30102. }
  30103. },
  30104. feral: {
  30105. height: math.unit(2, "feet"),
  30106. weight: math.unit(30, "lb"),
  30107. name: "Feral",
  30108. image: {
  30109. source: "./media/characters/theo-pangolin/feral.svg",
  30110. extra: 803 / 791,
  30111. bottom: 181 / 984
  30112. }
  30113. },
  30114. footFive: {
  30115. height: math.unit(1.43, "feet"),
  30116. name: "Foot (Five Toes)",
  30117. image: {
  30118. source: "./media/characters/theo-pangolin/foot-five.svg"
  30119. }
  30120. },
  30121. footFour: {
  30122. height: math.unit(1.43, "feet"),
  30123. name: "Foot (Four Toes)",
  30124. image: {
  30125. source: "./media/characters/theo-pangolin/foot-four.svg"
  30126. }
  30127. },
  30128. handFour: {
  30129. height: math.unit(0.81, "feet"),
  30130. name: "Hand (Four Fingers)",
  30131. image: {
  30132. source: "./media/characters/theo-pangolin/hand-four.svg"
  30133. }
  30134. },
  30135. handThree: {
  30136. height: math.unit(0.81, "feet"),
  30137. name: "Hand (Three Fingers)",
  30138. image: {
  30139. source: "./media/characters/theo-pangolin/hand-three.svg"
  30140. }
  30141. },
  30142. headFront: {
  30143. height: math.unit(1.37, "feet"),
  30144. name: "Head (Front)",
  30145. image: {
  30146. source: "./media/characters/theo-pangolin/head-front.svg"
  30147. }
  30148. },
  30149. headSide: {
  30150. height: math.unit(1.43, "feet"),
  30151. name: "Head (Side)",
  30152. image: {
  30153. source: "./media/characters/theo-pangolin/head-side.svg"
  30154. }
  30155. },
  30156. tongue: {
  30157. height: math.unit(2.29, "feet"),
  30158. name: "Tongue",
  30159. image: {
  30160. source: "./media/characters/theo-pangolin/tongue.svg"
  30161. }
  30162. },
  30163. },
  30164. [
  30165. {
  30166. name: "Normal",
  30167. height: math.unit(6, "feet")
  30168. },
  30169. {
  30170. name: "Macro",
  30171. height: math.unit(400, "feet"),
  30172. default: true
  30173. },
  30174. ]
  30175. ))
  30176. characterMakers.push(() => makeCharacter(
  30177. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30178. {
  30179. front: {
  30180. height: math.unit(6, "inches"),
  30181. weight: math.unit(0.036, "kg"),
  30182. name: "Front",
  30183. image: {
  30184. source: "./media/characters/renée/front.svg",
  30185. extra: 900 / 886,
  30186. bottom: 8 / 908
  30187. }
  30188. },
  30189. },
  30190. [
  30191. {
  30192. name: "Nano",
  30193. height: math.unit(1, "nm")
  30194. },
  30195. {
  30196. name: "Micro",
  30197. height: math.unit(1, "mm")
  30198. },
  30199. {
  30200. name: "Normal",
  30201. height: math.unit(6, "inches")
  30202. },
  30203. {
  30204. name: "Macro",
  30205. height: math.unit(2000, "feet"),
  30206. default: true
  30207. },
  30208. {
  30209. name: "Megamacro",
  30210. height: math.unit(2, "km")
  30211. },
  30212. {
  30213. name: "Gigamacro",
  30214. height: math.unit(2000, "km")
  30215. },
  30216. {
  30217. name: "Teramacro",
  30218. height: math.unit(250000, "km")
  30219. },
  30220. ]
  30221. ))
  30222. characterMakers.push(() => makeCharacter(
  30223. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30224. {
  30225. front: {
  30226. height: math.unit(4, "meters"),
  30227. weight: math.unit(150, "kg"),
  30228. name: "Front",
  30229. image: {
  30230. source: "./media/characters/caledvwlch/front.svg",
  30231. extra: 1760 / 1551,
  30232. bottom: 28 / 1788
  30233. }
  30234. },
  30235. side: {
  30236. height: math.unit(4, "meters"),
  30237. weight: math.unit(150, "kg"),
  30238. name: "Side",
  30239. image: {
  30240. source: "./media/characters/caledvwlch/side.svg",
  30241. extra: 1605 / 1536,
  30242. bottom: 31 / 1636
  30243. }
  30244. },
  30245. back: {
  30246. height: math.unit(4, "meters"),
  30247. weight: math.unit(150, "kg"),
  30248. name: "Back",
  30249. image: {
  30250. source: "./media/characters/caledvwlch/back.svg",
  30251. extra: 1635 / 1565,
  30252. bottom: 27 / 1662
  30253. }
  30254. },
  30255. },
  30256. [
  30257. {
  30258. name: "\"Incognito\"",
  30259. height: math.unit(4, "meters")
  30260. },
  30261. {
  30262. name: "Small rampage",
  30263. height: math.unit(600, "meters")
  30264. },
  30265. {
  30266. name: "Mega",
  30267. height: math.unit(30, "km")
  30268. },
  30269. {
  30270. name: "Home-size",
  30271. height: math.unit(50, "km"),
  30272. default: true
  30273. },
  30274. {
  30275. name: "Giga",
  30276. height: math.unit(300, "km")
  30277. },
  30278. {
  30279. name: "Lounging",
  30280. height: math.unit(11000, "km")
  30281. },
  30282. {
  30283. name: "Planet snacking",
  30284. height: math.unit(2000000, "km")
  30285. },
  30286. ]
  30287. ))
  30288. characterMakers.push(() => makeCharacter(
  30289. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30290. {
  30291. front: {
  30292. height: math.unit(6, "feet"),
  30293. weight: math.unit(215, "lb"),
  30294. name: "Front",
  30295. image: {
  30296. source: "./media/characters/sapphire-svell/front.svg",
  30297. extra: 495 / 455,
  30298. bottom: 20 / 515
  30299. }
  30300. },
  30301. back: {
  30302. height: math.unit(6, "feet"),
  30303. weight: math.unit(216, "lb"),
  30304. name: "Back",
  30305. image: {
  30306. source: "./media/characters/sapphire-svell/back.svg",
  30307. extra: 497 / 477,
  30308. bottom: 7 / 504
  30309. }
  30310. },
  30311. maw: {
  30312. height: math.unit(1.57, "feet"),
  30313. name: "Maw",
  30314. image: {
  30315. source: "./media/characters/sapphire-svell/maw.svg"
  30316. }
  30317. },
  30318. foot: {
  30319. height: math.unit(1.07, "feet"),
  30320. name: "Foot",
  30321. image: {
  30322. source: "./media/characters/sapphire-svell/foot.svg"
  30323. }
  30324. },
  30325. toering: {
  30326. height: math.unit(1.7, "inch"),
  30327. name: "Toering",
  30328. image: {
  30329. source: "./media/characters/sapphire-svell/toering.svg"
  30330. }
  30331. },
  30332. },
  30333. [
  30334. {
  30335. name: "Normal",
  30336. height: math.unit(300, "feet"),
  30337. default: true
  30338. },
  30339. {
  30340. name: "Augmented",
  30341. height: math.unit(1250, "feet")
  30342. },
  30343. {
  30344. name: "Unleashed",
  30345. height: math.unit(3000, "feet")
  30346. },
  30347. ]
  30348. ))
  30349. characterMakers.push(() => makeCharacter(
  30350. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30351. {
  30352. side: {
  30353. height: math.unit(2 + 3 / 12, "feet"),
  30354. weight: math.unit(110, "lb"),
  30355. name: "Side",
  30356. image: {
  30357. source: "./media/characters/glitch-flux/side.svg",
  30358. extra: 997 / 805,
  30359. bottom: 20 / 1017
  30360. }
  30361. },
  30362. },
  30363. [
  30364. {
  30365. name: "Normal",
  30366. height: math.unit(2 + 3 / 12, "feet"),
  30367. default: true
  30368. },
  30369. ]
  30370. ))
  30371. characterMakers.push(() => makeCharacter(
  30372. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30373. {
  30374. front: {
  30375. height: math.unit(4, "meters"),
  30376. name: "Front",
  30377. image: {
  30378. source: "./media/characters/mid/front.svg",
  30379. extra: 507 / 476,
  30380. bottom: 17 / 524
  30381. }
  30382. },
  30383. back: {
  30384. height: math.unit(4, "meters"),
  30385. name: "Back",
  30386. image: {
  30387. source: "./media/characters/mid/back.svg",
  30388. extra: 519 / 487,
  30389. bottom: 7 / 526
  30390. }
  30391. },
  30392. stuck: {
  30393. height: math.unit(2.2, "meters"),
  30394. name: "Stuck",
  30395. image: {
  30396. source: "./media/characters/mid/stuck.svg",
  30397. extra: 1951 / 1869,
  30398. bottom: 88 / 2039
  30399. }
  30400. }
  30401. },
  30402. [
  30403. {
  30404. name: "Normal",
  30405. height: math.unit(4, "meters"),
  30406. default: true
  30407. },
  30408. {
  30409. name: "Big",
  30410. height: math.unit(10, "meters")
  30411. },
  30412. {
  30413. name: "Macro",
  30414. height: math.unit(800, "meters")
  30415. },
  30416. {
  30417. name: "Megamacro",
  30418. height: math.unit(100, "km")
  30419. },
  30420. {
  30421. name: "Overgrown",
  30422. height: math.unit(1, "parsec")
  30423. },
  30424. ]
  30425. ))
  30426. characterMakers.push(() => makeCharacter(
  30427. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30428. {
  30429. front: {
  30430. height: math.unit(2.5, "meters"),
  30431. weight: math.unit(225, "kg"),
  30432. name: "Front",
  30433. image: {
  30434. source: "./media/characters/iris/front.svg",
  30435. extra: 3348 / 3251,
  30436. bottom: 205 / 3553
  30437. }
  30438. },
  30439. maw: {
  30440. height: math.unit(0.56, "meter"),
  30441. name: "Maw",
  30442. image: {
  30443. source: "./media/characters/iris/maw.svg"
  30444. }
  30445. },
  30446. },
  30447. [
  30448. {
  30449. name: "Mewter cat",
  30450. height: math.unit(1.2, "meters")
  30451. },
  30452. {
  30453. name: "Minimacro",
  30454. height: math.unit(2.5, "meters"),
  30455. default: true
  30456. },
  30457. {
  30458. name: "Macro",
  30459. height: math.unit(180, "meters")
  30460. },
  30461. {
  30462. name: "Megamacro",
  30463. height: math.unit(2746, "meters")
  30464. },
  30465. ]
  30466. ))
  30467. characterMakers.push(() => makeCharacter(
  30468. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30469. {
  30470. front: {
  30471. height: math.unit(6, "feet"),
  30472. weight: math.unit(135, "lb"),
  30473. name: "Front",
  30474. image: {
  30475. source: "./media/characters/axel/front.svg",
  30476. extra: 908 / 908,
  30477. bottom: 58 / 966
  30478. }
  30479. },
  30480. side: {
  30481. height: math.unit(6, "feet"),
  30482. weight: math.unit(135, "lb"),
  30483. name: "Side",
  30484. image: {
  30485. source: "./media/characters/axel/side.svg",
  30486. extra: 958 / 958,
  30487. bottom: 11 / 969
  30488. }
  30489. },
  30490. back: {
  30491. height: math.unit(6, "feet"),
  30492. weight: math.unit(135, "lb"),
  30493. name: "Back",
  30494. image: {
  30495. source: "./media/characters/axel/back.svg",
  30496. extra: 887 / 887,
  30497. bottom: 34 / 921
  30498. }
  30499. },
  30500. head: {
  30501. height: math.unit(1.07, "feet"),
  30502. name: "Head",
  30503. image: {
  30504. source: "./media/characters/axel/head.svg"
  30505. }
  30506. },
  30507. beak: {
  30508. height: math.unit(1.4, "feet"),
  30509. name: "Beak",
  30510. image: {
  30511. source: "./media/characters/axel/beak.svg"
  30512. }
  30513. },
  30514. beakSide: {
  30515. height: math.unit(1.4, "feet"),
  30516. name: "Beak Side",
  30517. image: {
  30518. source: "./media/characters/axel/beak-side.svg"
  30519. }
  30520. },
  30521. sheath: {
  30522. height: math.unit(0.5, "feet"),
  30523. name: "Sheath",
  30524. image: {
  30525. source: "./media/characters/axel/sheath.svg"
  30526. }
  30527. },
  30528. dick: {
  30529. height: math.unit(0.98, "feet"),
  30530. name: "Dick",
  30531. image: {
  30532. source: "./media/characters/axel/dick.svg"
  30533. }
  30534. },
  30535. },
  30536. [
  30537. {
  30538. name: "Macro",
  30539. height: math.unit(68, "meters"),
  30540. default: true
  30541. },
  30542. ]
  30543. ))
  30544. characterMakers.push(() => makeCharacter(
  30545. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30546. {
  30547. front: {
  30548. height: math.unit(3.5, "meters"),
  30549. weight: math.unit(1200, "kg"),
  30550. name: "Front",
  30551. image: {
  30552. source: "./media/characters/joanna/front.svg",
  30553. extra: 1596 / 1488,
  30554. bottom: 29 / 1625
  30555. }
  30556. },
  30557. back: {
  30558. height: math.unit(3.5, "meters"),
  30559. weight: math.unit(1200, "kg"),
  30560. name: "Back",
  30561. image: {
  30562. source: "./media/characters/joanna/back.svg",
  30563. extra: 1594 / 1495,
  30564. bottom: 26 / 1620
  30565. }
  30566. },
  30567. frontShorts: {
  30568. height: math.unit(3.5, "meters"),
  30569. weight: math.unit(1200, "kg"),
  30570. name: "Front (Shorts)",
  30571. image: {
  30572. source: "./media/characters/joanna/front-shorts.svg",
  30573. extra: 1596 / 1488,
  30574. bottom: 29 / 1625
  30575. }
  30576. },
  30577. frontBiker: {
  30578. height: math.unit(3.5, "meters"),
  30579. weight: math.unit(1200, "kg"),
  30580. name: "Front (Biker)",
  30581. image: {
  30582. source: "./media/characters/joanna/front-biker.svg",
  30583. extra: 1596 / 1488,
  30584. bottom: 29 / 1625
  30585. }
  30586. },
  30587. backBiker: {
  30588. height: math.unit(3.5, "meters"),
  30589. weight: math.unit(1200, "kg"),
  30590. name: "Back (Biker)",
  30591. image: {
  30592. source: "./media/characters/joanna/back-biker.svg",
  30593. extra: 1594 / 1495,
  30594. bottom: 88 / 1682
  30595. }
  30596. },
  30597. bikeLeft: {
  30598. height: math.unit(2.4, "meters"),
  30599. weight: math.unit(1600, "kg"),
  30600. name: "Bike (Left)",
  30601. image: {
  30602. source: "./media/characters/joanna/bike-left.svg",
  30603. extra: 720 / 720,
  30604. bottom: 8 / 728
  30605. }
  30606. },
  30607. bikeRight: {
  30608. height: math.unit(2.4, "meters"),
  30609. weight: math.unit(1600, "kg"),
  30610. name: "Bike (Right)",
  30611. image: {
  30612. source: "./media/characters/joanna/bike-right.svg",
  30613. extra: 720 / 720,
  30614. bottom: 8 / 728
  30615. }
  30616. },
  30617. },
  30618. [
  30619. {
  30620. name: "Incognito",
  30621. height: math.unit(3.5, "meters")
  30622. },
  30623. {
  30624. name: "Casual Big",
  30625. height: math.unit(200, "meters")
  30626. },
  30627. {
  30628. name: "Macro",
  30629. height: math.unit(600, "meters")
  30630. },
  30631. {
  30632. name: "Original",
  30633. height: math.unit(20, "km"),
  30634. default: true
  30635. },
  30636. {
  30637. name: "Giga",
  30638. height: math.unit(400, "km")
  30639. },
  30640. {
  30641. name: "Lounging",
  30642. height: math.unit(1500, "km")
  30643. },
  30644. {
  30645. name: "Planetary",
  30646. height: math.unit(200000, "km")
  30647. },
  30648. ]
  30649. ))
  30650. characterMakers.push(() => makeCharacter(
  30651. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30652. {
  30653. front: {
  30654. height: math.unit(6, "feet"),
  30655. weight: math.unit(150, "lb"),
  30656. name: "Front",
  30657. image: {
  30658. source: "./media/characters/hugo-sigil/front.svg",
  30659. extra: 522 / 500,
  30660. bottom: 2 / 524
  30661. }
  30662. },
  30663. back: {
  30664. height: math.unit(6, "feet"),
  30665. weight: math.unit(150, "lb"),
  30666. name: "Back",
  30667. image: {
  30668. source: "./media/characters/hugo-sigil/back.svg",
  30669. extra: 519 / 495,
  30670. bottom: 5 / 524
  30671. }
  30672. },
  30673. maw: {
  30674. height: math.unit(1.4, "feet"),
  30675. weight: math.unit(150, "lb"),
  30676. name: "Maw",
  30677. image: {
  30678. source: "./media/characters/hugo-sigil/maw.svg"
  30679. }
  30680. },
  30681. feet: {
  30682. height: math.unit(1.56, "feet"),
  30683. weight: math.unit(150, "lb"),
  30684. name: "Feet",
  30685. image: {
  30686. source: "./media/characters/hugo-sigil/feet.svg",
  30687. extra: 177 / 177,
  30688. bottom: 12 / 189
  30689. }
  30690. },
  30691. },
  30692. [
  30693. {
  30694. name: "Normal",
  30695. height: math.unit(6, "feet")
  30696. },
  30697. {
  30698. name: "Macro",
  30699. height: math.unit(200, "feet"),
  30700. default: true
  30701. },
  30702. ]
  30703. ))
  30704. characterMakers.push(() => makeCharacter(
  30705. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30706. {
  30707. front: {
  30708. height: math.unit(6, "feet"),
  30709. weight: math.unit(150, "lb"),
  30710. name: "Front",
  30711. image: {
  30712. source: "./media/characters/peri/front.svg",
  30713. extra: 2354 / 2233,
  30714. bottom: 49 / 2403
  30715. }
  30716. },
  30717. },
  30718. [
  30719. {
  30720. name: "Really Small",
  30721. height: math.unit(1, "nm")
  30722. },
  30723. {
  30724. name: "Micro",
  30725. height: math.unit(4, "inches")
  30726. },
  30727. {
  30728. name: "Normal",
  30729. height: math.unit(7, "inches"),
  30730. default: true
  30731. },
  30732. {
  30733. name: "Macro",
  30734. height: math.unit(400, "feet")
  30735. },
  30736. {
  30737. name: "Megamacro",
  30738. height: math.unit(100, "miles")
  30739. },
  30740. ]
  30741. ))
  30742. characterMakers.push(() => makeCharacter(
  30743. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30744. {
  30745. frontSlim: {
  30746. height: math.unit(7, "feet"),
  30747. name: "Front (Slim)",
  30748. image: {
  30749. source: "./media/characters/issilora/front-slim.svg",
  30750. extra: 529 / 449,
  30751. bottom: 53 / 582
  30752. }
  30753. },
  30754. sideSlim: {
  30755. height: math.unit(7, "feet"),
  30756. name: "Side (Slim)",
  30757. image: {
  30758. source: "./media/characters/issilora/side-slim.svg",
  30759. extra: 570 / 480,
  30760. bottom: 30 / 600
  30761. }
  30762. },
  30763. backSlim: {
  30764. height: math.unit(7, "feet"),
  30765. name: "Back (Slim)",
  30766. image: {
  30767. source: "./media/characters/issilora/back-slim.svg",
  30768. extra: 537 / 455,
  30769. bottom: 46 / 583
  30770. }
  30771. },
  30772. frontBuff: {
  30773. height: math.unit(7, "feet"),
  30774. name: "Front (Buff)",
  30775. image: {
  30776. source: "./media/characters/issilora/front-buff.svg",
  30777. extra: 2310 / 2035,
  30778. bottom: 335 / 2645
  30779. }
  30780. },
  30781. head: {
  30782. height: math.unit(1.94, "feet"),
  30783. name: "Head",
  30784. image: {
  30785. source: "./media/characters/issilora/head.svg"
  30786. }
  30787. },
  30788. },
  30789. [
  30790. {
  30791. name: "Minimum",
  30792. height: math.unit(7, "feet")
  30793. },
  30794. {
  30795. name: "Comfortable",
  30796. height: math.unit(17, "feet")
  30797. },
  30798. {
  30799. name: "Fun Size",
  30800. height: math.unit(47, "feet")
  30801. },
  30802. {
  30803. name: "Natural Macro",
  30804. height: math.unit(137, "feet"),
  30805. default: true
  30806. },
  30807. {
  30808. name: "Maximum Kaiju",
  30809. height: math.unit(397, "feet")
  30810. },
  30811. ]
  30812. ))
  30813. characterMakers.push(() => makeCharacter(
  30814. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30815. {
  30816. front: {
  30817. height: math.unit(50 + 9/12, "feet"),
  30818. weight: math.unit(32.8, "tons"),
  30819. name: "Front",
  30820. image: {
  30821. source: "./media/characters/irb'iiritaahn/front.svg",
  30822. extra: 1878/1826,
  30823. bottom: 326/2204
  30824. }
  30825. },
  30826. back: {
  30827. height: math.unit(50 + 9/12, "feet"),
  30828. weight: math.unit(32.8, "tons"),
  30829. name: "Back",
  30830. image: {
  30831. source: "./media/characters/irb'iiritaahn/back.svg",
  30832. extra: 2052/2018,
  30833. bottom: 152/2204
  30834. }
  30835. },
  30836. head: {
  30837. height: math.unit(12.86, "feet"),
  30838. name: "Head",
  30839. image: {
  30840. source: "./media/characters/irb'iiritaahn/head.svg"
  30841. }
  30842. },
  30843. maw: {
  30844. height: math.unit(9.66, "feet"),
  30845. name: "Maw",
  30846. image: {
  30847. source: "./media/characters/irb'iiritaahn/maw.svg"
  30848. }
  30849. },
  30850. frontDick: {
  30851. height: math.unit(8.78461, "feet"),
  30852. name: "Front Dick",
  30853. image: {
  30854. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30855. }
  30856. },
  30857. rearDick: {
  30858. height: math.unit(8.78461, "feet"),
  30859. name: "Rear Dick",
  30860. image: {
  30861. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30862. }
  30863. },
  30864. rearDickUnfolded: {
  30865. height: math.unit(8.78, "feet"),
  30866. name: "Rear Dick (Unfolded)",
  30867. image: {
  30868. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30869. }
  30870. },
  30871. wings: {
  30872. height: math.unit(43, "feet"),
  30873. name: "Wings",
  30874. image: {
  30875. source: "./media/characters/irb'iiritaahn/wings.svg"
  30876. }
  30877. },
  30878. },
  30879. [
  30880. {
  30881. name: "Macro",
  30882. height: math.unit(50 + 9/12, "feet"),
  30883. default: true
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30889. {
  30890. front: {
  30891. height: math.unit(205, "cm"),
  30892. weight: math.unit(102, "kg"),
  30893. name: "Front",
  30894. image: {
  30895. source: "./media/characters/irbisgreif/front.svg",
  30896. extra: 785/706,
  30897. bottom: 13/798
  30898. }
  30899. },
  30900. back: {
  30901. height: math.unit(205, "cm"),
  30902. weight: math.unit(102, "kg"),
  30903. name: "Back",
  30904. image: {
  30905. source: "./media/characters/irbisgreif/back.svg",
  30906. extra: 713/701,
  30907. bottom: 26/739
  30908. }
  30909. },
  30910. frontDressed: {
  30911. height: math.unit(216, "cm"),
  30912. weight: math.unit(102, "kg"),
  30913. name: "Front-dressed",
  30914. image: {
  30915. source: "./media/characters/irbisgreif/front-dressed.svg",
  30916. extra: 902/776,
  30917. bottom: 14/916
  30918. }
  30919. },
  30920. sideDressed: {
  30921. height: math.unit(195, "cm"),
  30922. weight: math.unit(102, "kg"),
  30923. name: "Side-dressed",
  30924. image: {
  30925. source: "./media/characters/irbisgreif/side-dressed.svg",
  30926. extra: 788/688,
  30927. bottom: 21/809
  30928. }
  30929. },
  30930. backDressed: {
  30931. height: math.unit(216, "cm"),
  30932. weight: math.unit(102, "kg"),
  30933. name: "Back-dressed",
  30934. image: {
  30935. source: "./media/characters/irbisgreif/back-dressed.svg",
  30936. extra: 901/783,
  30937. bottom: 10/911
  30938. }
  30939. },
  30940. dick: {
  30941. height: math.unit(0.49, "feet"),
  30942. name: "Dick",
  30943. image: {
  30944. source: "./media/characters/irbisgreif/dick.svg"
  30945. }
  30946. },
  30947. wingTop: {
  30948. height: math.unit(1.93 , "feet"),
  30949. name: "Wing-top",
  30950. image: {
  30951. source: "./media/characters/irbisgreif/wing-top.svg"
  30952. }
  30953. },
  30954. wingBottom: {
  30955. height: math.unit(1.93 , "feet"),
  30956. name: "Wing-bottom",
  30957. image: {
  30958. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30959. }
  30960. },
  30961. },
  30962. [
  30963. {
  30964. name: "Normal",
  30965. height: math.unit(216, "cm"),
  30966. default: true
  30967. },
  30968. ]
  30969. ))
  30970. characterMakers.push(() => makeCharacter(
  30971. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30972. {
  30973. front: {
  30974. height: math.unit(6, "feet"),
  30975. weight: math.unit(150, "lb"),
  30976. name: "Front",
  30977. image: {
  30978. source: "./media/characters/pride/front.svg",
  30979. extra: 1299/1230,
  30980. bottom: 18/1317
  30981. }
  30982. },
  30983. },
  30984. [
  30985. {
  30986. name: "Normal",
  30987. height: math.unit(7, "feet")
  30988. },
  30989. {
  30990. name: "Mini-macro",
  30991. height: math.unit(11, "feet")
  30992. },
  30993. {
  30994. name: "Macro",
  30995. height: math.unit(15, "meters"),
  30996. default: true
  30997. },
  30998. {
  30999. name: "Macro+",
  31000. height: math.unit(40, "meters")
  31001. },
  31002. ]
  31003. ))
  31004. characterMakers.push(() => makeCharacter(
  31005. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31006. {
  31007. front: {
  31008. height: math.unit(4 + 2 / 12, "feet"),
  31009. weight: math.unit(95, "lb"),
  31010. name: "Front",
  31011. image: {
  31012. source: "./media/characters/vaelophis-nyx/front.svg",
  31013. extra: 2532/2330,
  31014. bottom: 0/2532
  31015. }
  31016. },
  31017. back: {
  31018. height: math.unit(4 + 2 / 12, "feet"),
  31019. weight: math.unit(95, "lb"),
  31020. name: "Back",
  31021. image: {
  31022. source: "./media/characters/vaelophis-nyx/back.svg",
  31023. extra: 2484/2361,
  31024. bottom: 0/2484
  31025. }
  31026. },
  31027. feralSide: {
  31028. height: math.unit(2 + 1/12, "feet"),
  31029. weight: math.unit(20, "lb"),
  31030. name: "Feral (Side)",
  31031. image: {
  31032. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31033. extra: 1721/1581,
  31034. bottom: 70/1791
  31035. }
  31036. },
  31037. feralLazing: {
  31038. height: math.unit(1.08, "feet"),
  31039. weight: math.unit(20, "lb"),
  31040. name: "Feral (Lazing)",
  31041. image: {
  31042. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31043. extra: 822/822,
  31044. bottom: 248/1070
  31045. }
  31046. },
  31047. ear: {
  31048. height: math.unit(0.416, "feet"),
  31049. name: "Ear",
  31050. image: {
  31051. source: "./media/characters/vaelophis-nyx/ear.svg"
  31052. }
  31053. },
  31054. eye: {
  31055. height: math.unit(0.0748, "feet"),
  31056. name: "Eye",
  31057. image: {
  31058. source: "./media/characters/vaelophis-nyx/eye.svg"
  31059. }
  31060. },
  31061. mouth: {
  31062. height: math.unit(0.378, "feet"),
  31063. name: "Mouth",
  31064. image: {
  31065. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31066. }
  31067. },
  31068. spade: {
  31069. height: math.unit(0.55, "feet"),
  31070. name: "Spade",
  31071. image: {
  31072. source: "./media/characters/vaelophis-nyx/spade.svg"
  31073. }
  31074. },
  31075. },
  31076. [
  31077. {
  31078. name: "Normal",
  31079. height: math.unit(4 + 2/12, "feet"),
  31080. default: true
  31081. },
  31082. ]
  31083. ))
  31084. characterMakers.push(() => makeCharacter(
  31085. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31086. {
  31087. front: {
  31088. height: math.unit(7, "feet"),
  31089. weight: math.unit(231, "lb"),
  31090. name: "Front",
  31091. image: {
  31092. source: "./media/characters/flux/front.svg",
  31093. extra: 919/871,
  31094. bottom: 0/919
  31095. }
  31096. },
  31097. back: {
  31098. height: math.unit(7, "feet"),
  31099. weight: math.unit(231, "lb"),
  31100. name: "Back",
  31101. image: {
  31102. source: "./media/characters/flux/back.svg",
  31103. extra: 1040/992,
  31104. bottom: 0/1040
  31105. }
  31106. },
  31107. frontDressed: {
  31108. height: math.unit(7, "feet"),
  31109. weight: math.unit(231, "lb"),
  31110. name: "Front (Dressed)",
  31111. image: {
  31112. source: "./media/characters/flux/front-dressed.svg",
  31113. extra: 919/871,
  31114. bottom: 0/919
  31115. }
  31116. },
  31117. feralSide: {
  31118. height: math.unit(5, "feet"),
  31119. weight: math.unit(150, "lb"),
  31120. name: "Feral (Side)",
  31121. image: {
  31122. source: "./media/characters/flux/feral-side.svg",
  31123. extra: 598/528,
  31124. bottom: 28/626
  31125. }
  31126. },
  31127. head: {
  31128. height: math.unit(1.585, "feet"),
  31129. name: "Head",
  31130. image: {
  31131. source: "./media/characters/flux/head.svg"
  31132. }
  31133. },
  31134. headSide: {
  31135. height: math.unit(1.74, "feet"),
  31136. name: "Head (Side)",
  31137. image: {
  31138. source: "./media/characters/flux/head-side.svg"
  31139. }
  31140. },
  31141. headSideFire: {
  31142. height: math.unit(1.76, "feet"),
  31143. name: "Head (Side, Fire)",
  31144. image: {
  31145. source: "./media/characters/flux/head-side-fire.svg"
  31146. }
  31147. },
  31148. },
  31149. [
  31150. {
  31151. name: "Normal",
  31152. height: math.unit(7, "feet"),
  31153. default: true
  31154. },
  31155. ]
  31156. ))
  31157. characterMakers.push(() => makeCharacter(
  31158. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31159. {
  31160. front: {
  31161. height: math.unit(9, "feet"),
  31162. weight: math.unit(1012, "lb"),
  31163. name: "Front",
  31164. image: {
  31165. source: "./media/characters/ulfra-lupae/front.svg",
  31166. extra: 1083/1011,
  31167. bottom: 67/1150
  31168. }
  31169. },
  31170. },
  31171. [
  31172. {
  31173. name: "Micro",
  31174. height: math.unit(6, "inches")
  31175. },
  31176. {
  31177. name: "Socializing",
  31178. height: math.unit(6 + 5/12, "feet")
  31179. },
  31180. {
  31181. name: "Normal",
  31182. height: math.unit(9, "feet"),
  31183. default: true
  31184. },
  31185. {
  31186. name: "Macro",
  31187. height: math.unit(150, "feet")
  31188. },
  31189. ]
  31190. ))
  31191. characterMakers.push(() => makeCharacter(
  31192. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31193. {
  31194. front: {
  31195. height: math.unit(5 + 2/12, "feet"),
  31196. weight: math.unit(120, "lb"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/timber/front.svg",
  31200. extra: 2814/2705,
  31201. bottom: 181/2995
  31202. }
  31203. },
  31204. },
  31205. [
  31206. {
  31207. name: "Normal",
  31208. height: math.unit(5 + 2/12, "feet"),
  31209. default: true
  31210. },
  31211. ]
  31212. ))
  31213. characterMakers.push(() => makeCharacter(
  31214. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31215. {
  31216. front: {
  31217. height: math.unit(5 + 7/12, "feet"),
  31218. weight: math.unit(220, "lb"),
  31219. name: "Front",
  31220. image: {
  31221. source: "./media/characters/nicki/front.svg",
  31222. extra: 453/419,
  31223. bottom: 7/460
  31224. }
  31225. },
  31226. frontAlt: {
  31227. height: math.unit(5 + 7/12, "feet"),
  31228. weight: math.unit(220, "lb"),
  31229. name: "Front-alt",
  31230. image: {
  31231. source: "./media/characters/nicki/front-alt.svg",
  31232. extra: 435/411,
  31233. bottom: 12/447
  31234. }
  31235. },
  31236. back: {
  31237. height: math.unit(5 + 7/12, "feet"),
  31238. weight: math.unit(220, "lb"),
  31239. name: "Back",
  31240. image: {
  31241. source: "./media/characters/nicki/back.svg",
  31242. extra: 440/413,
  31243. bottom: 19/459
  31244. }
  31245. },
  31246. taur: {
  31247. height: math.unit(7 + 6/12, "feet"),
  31248. weight: math.unit(700, "lb"),
  31249. name: "Taur",
  31250. image: {
  31251. source: "./media/characters/nicki/taur.svg",
  31252. extra: 975/773,
  31253. bottom: 0/975
  31254. }
  31255. },
  31256. frontNsfw: {
  31257. height: math.unit(5 + 7/12, "feet"),
  31258. weight: math.unit(220, "lb"),
  31259. name: "Front (NSFW)",
  31260. image: {
  31261. source: "./media/characters/nicki/front-nsfw.svg",
  31262. extra: 453/419,
  31263. bottom: 7/460
  31264. }
  31265. },
  31266. frontNsfwAlt: {
  31267. height: math.unit(5 + 7/12, "feet"),
  31268. weight: math.unit(220, "lb"),
  31269. name: "Front (Alt, NSFW)",
  31270. image: {
  31271. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31272. extra: 435/411,
  31273. bottom: 12/447
  31274. }
  31275. },
  31276. backNsfw: {
  31277. height: math.unit(5 + 7/12, "feet"),
  31278. weight: math.unit(220, "lb"),
  31279. name: "Back (NSFW)",
  31280. image: {
  31281. source: "./media/characters/nicki/back-nsfw.svg",
  31282. extra: 440/413,
  31283. bottom: 19/459
  31284. }
  31285. },
  31286. head: {
  31287. height: math.unit(2.1, "feet"),
  31288. name: "Head",
  31289. image: {
  31290. source: "./media/characters/nicki/head.svg"
  31291. }
  31292. },
  31293. paw: {
  31294. height: math.unit(1.88, "feet"),
  31295. name: "Paw",
  31296. image: {
  31297. source: "./media/characters/nicki/paw.svg"
  31298. }
  31299. },
  31300. },
  31301. [
  31302. {
  31303. name: "Normal",
  31304. height: math.unit(5 + 7/12, "feet"),
  31305. default: true
  31306. },
  31307. ]
  31308. ))
  31309. characterMakers.push(() => makeCharacter(
  31310. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31311. {
  31312. front: {
  31313. height: math.unit(7 + 10/12, "feet"),
  31314. weight: math.unit(3.5, "tons"),
  31315. name: "Front",
  31316. image: {
  31317. source: "./media/characters/lee/front.svg",
  31318. extra: 1773/1615,
  31319. bottom: 86/1859
  31320. }
  31321. },
  31322. hand: {
  31323. height: math.unit(1.78, "feet"),
  31324. name: "Hand",
  31325. image: {
  31326. source: "./media/characters/lee/hand.svg"
  31327. }
  31328. },
  31329. maw: {
  31330. height: math.unit(1.18, "feet"),
  31331. name: "Maw",
  31332. image: {
  31333. source: "./media/characters/lee/maw.svg"
  31334. }
  31335. },
  31336. },
  31337. [
  31338. {
  31339. name: "Normal",
  31340. height: math.unit(7 + 10/12, "feet"),
  31341. default: true
  31342. },
  31343. ]
  31344. ))
  31345. characterMakers.push(() => makeCharacter(
  31346. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31347. {
  31348. front: {
  31349. height: math.unit(9, "feet"),
  31350. name: "Front",
  31351. image: {
  31352. source: "./media/characters/guti/front.svg",
  31353. extra: 4551/4355,
  31354. bottom: 123/4674
  31355. }
  31356. },
  31357. tongue: {
  31358. height: math.unit(1, "feet"),
  31359. name: "Tongue",
  31360. image: {
  31361. source: "./media/characters/guti/tongue.svg"
  31362. }
  31363. },
  31364. paw: {
  31365. height: math.unit(1.18, "feet"),
  31366. name: "Paw",
  31367. image: {
  31368. source: "./media/characters/guti/paw.svg"
  31369. }
  31370. },
  31371. },
  31372. [
  31373. {
  31374. name: "Normal",
  31375. height: math.unit(9, "feet"),
  31376. default: true
  31377. },
  31378. ]
  31379. ))
  31380. characterMakers.push(() => makeCharacter(
  31381. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31382. {
  31383. side: {
  31384. height: math.unit(5, "meters"),
  31385. name: "Side",
  31386. image: {
  31387. source: "./media/characters/vesper/side.svg",
  31388. extra: 1605/1518,
  31389. bottom: 0/1605
  31390. }
  31391. },
  31392. },
  31393. [
  31394. {
  31395. name: "Small",
  31396. height: math.unit(5, "meters")
  31397. },
  31398. {
  31399. name: "Sage",
  31400. height: math.unit(100, "meters"),
  31401. default: true
  31402. },
  31403. {
  31404. name: "Fun Size",
  31405. height: math.unit(600, "meters")
  31406. },
  31407. {
  31408. name: "Goddess",
  31409. height: math.unit(20000, "km")
  31410. },
  31411. {
  31412. name: "Maximum",
  31413. height: math.unit(5, "galaxies")
  31414. },
  31415. ]
  31416. ))
  31417. characterMakers.push(() => makeCharacter(
  31418. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31419. {
  31420. front: {
  31421. height: math.unit(6 + 3/12, "feet"),
  31422. weight: math.unit(190, "lb"),
  31423. name: "Front",
  31424. image: {
  31425. source: "./media/characters/gawain/front.svg",
  31426. extra: 2222/2139,
  31427. bottom: 90/2312
  31428. }
  31429. },
  31430. back: {
  31431. height: math.unit(6 + 3/12, "feet"),
  31432. weight: math.unit(190, "lb"),
  31433. name: "Back",
  31434. image: {
  31435. source: "./media/characters/gawain/back.svg",
  31436. extra: 2199/2111,
  31437. bottom: 73/2272
  31438. }
  31439. },
  31440. },
  31441. [
  31442. {
  31443. name: "Normal",
  31444. height: math.unit(6 + 3/12, "feet"),
  31445. default: true
  31446. },
  31447. ]
  31448. ))
  31449. characterMakers.push(() => makeCharacter(
  31450. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31451. {
  31452. side: {
  31453. height: math.unit(3.5, "meters"),
  31454. weight: math.unit(16000, "lb"),
  31455. name: "Side",
  31456. image: {
  31457. source: "./media/characters/dascalti/side.svg",
  31458. extra: 392/273,
  31459. bottom: 47/439
  31460. }
  31461. },
  31462. breath: {
  31463. height: math.unit(7.4, "feet"),
  31464. name: "Breath",
  31465. image: {
  31466. source: "./media/characters/dascalti/breath.svg"
  31467. }
  31468. },
  31469. fed: {
  31470. height: math.unit(3.6, "meters"),
  31471. weight: math.unit(16000, "lb"),
  31472. name: "Fed",
  31473. image: {
  31474. source: "./media/characters/dascalti/fed.svg",
  31475. extra: 1419/820,
  31476. bottom: 95/1514
  31477. }
  31478. },
  31479. },
  31480. [
  31481. {
  31482. name: "Normal",
  31483. height: math.unit(3.5, "meters"),
  31484. default: true
  31485. },
  31486. ]
  31487. ))
  31488. characterMakers.push(() => makeCharacter(
  31489. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31490. {
  31491. front: {
  31492. height: math.unit(3 + 5/12, "feet"),
  31493. name: "Front",
  31494. image: {
  31495. source: "./media/characters/mauve/front.svg",
  31496. extra: 1126/1033,
  31497. bottom: 65/1191
  31498. }
  31499. },
  31500. side: {
  31501. height: math.unit(3 + 5/12, "feet"),
  31502. name: "Side",
  31503. image: {
  31504. source: "./media/characters/mauve/side.svg",
  31505. extra: 1089/1001,
  31506. bottom: 29/1118
  31507. }
  31508. },
  31509. back: {
  31510. height: math.unit(3 + 5/12, "feet"),
  31511. name: "Back",
  31512. image: {
  31513. source: "./media/characters/mauve/back.svg",
  31514. extra: 1173/1053,
  31515. bottom: 109/1282
  31516. }
  31517. },
  31518. },
  31519. [
  31520. {
  31521. name: "Normal",
  31522. height: math.unit(3 + 5/12, "feet"),
  31523. default: true
  31524. },
  31525. ]
  31526. ))
  31527. characterMakers.push(() => makeCharacter(
  31528. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31529. {
  31530. front: {
  31531. height: math.unit(6 + 3/12, "feet"),
  31532. weight: math.unit(430, "lb"),
  31533. name: "Front",
  31534. image: {
  31535. source: "./media/characters/carlos/front.svg",
  31536. extra: 1964/1913,
  31537. bottom: 70/2034
  31538. }
  31539. },
  31540. },
  31541. [
  31542. {
  31543. name: "Normal",
  31544. height: math.unit(6 + 3/12, "feet"),
  31545. default: true
  31546. },
  31547. ]
  31548. ))
  31549. characterMakers.push(() => makeCharacter(
  31550. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31551. {
  31552. back: {
  31553. height: math.unit(5 + 10/12, "feet"),
  31554. weight: math.unit(200, "lb"),
  31555. name: "Back",
  31556. image: {
  31557. source: "./media/characters/jax/back.svg",
  31558. extra: 764/739,
  31559. bottom: 25/789
  31560. }
  31561. },
  31562. },
  31563. [
  31564. {
  31565. name: "Normal",
  31566. height: math.unit(5 + 10/12, "feet"),
  31567. default: true
  31568. },
  31569. ]
  31570. ))
  31571. characterMakers.push(() => makeCharacter(
  31572. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31573. {
  31574. front: {
  31575. height: math.unit(8, "feet"),
  31576. weight: math.unit(250, "lb"),
  31577. name: "Front",
  31578. image: {
  31579. source: "./media/characters/eikthynir/front.svg",
  31580. extra: 1332/1166,
  31581. bottom: 82/1414
  31582. }
  31583. },
  31584. back: {
  31585. height: math.unit(8, "feet"),
  31586. weight: math.unit(250, "lb"),
  31587. name: "Back",
  31588. image: {
  31589. source: "./media/characters/eikthynir/back.svg",
  31590. extra: 1342/1190,
  31591. bottom: 19/1361
  31592. }
  31593. },
  31594. dick: {
  31595. height: math.unit(2.35, "feet"),
  31596. name: "Dick",
  31597. image: {
  31598. source: "./media/characters/eikthynir/dick.svg"
  31599. }
  31600. },
  31601. },
  31602. [
  31603. {
  31604. name: "Normal",
  31605. height: math.unit(8, "feet"),
  31606. default: true
  31607. },
  31608. ]
  31609. ))
  31610. characterMakers.push(() => makeCharacter(
  31611. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31612. {
  31613. front: {
  31614. height: math.unit(99, "meters"),
  31615. weight: math.unit(13000, "tons"),
  31616. name: "Front",
  31617. image: {
  31618. source: "./media/characters/zlmos/front.svg",
  31619. extra: 2202/1992,
  31620. bottom: 315/2517
  31621. }
  31622. },
  31623. },
  31624. [
  31625. {
  31626. name: "Macro",
  31627. height: math.unit(99, "meters"),
  31628. default: true
  31629. },
  31630. ]
  31631. ))
  31632. characterMakers.push(() => makeCharacter(
  31633. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31634. {
  31635. front: {
  31636. height: math.unit(6 + 5/12, "feet"),
  31637. name: "Front",
  31638. image: {
  31639. source: "./media/characters/purri/front.svg",
  31640. extra: 1698/1610,
  31641. bottom: 32/1730
  31642. }
  31643. },
  31644. frontAlt: {
  31645. height: math.unit(6 + 5/12, "feet"),
  31646. name: "Front (Alt)",
  31647. image: {
  31648. source: "./media/characters/purri/front-alt.svg",
  31649. extra: 450/420,
  31650. bottom: 26/476
  31651. }
  31652. },
  31653. boots: {
  31654. height: math.unit(5.5, "feet"),
  31655. name: "Boots",
  31656. image: {
  31657. source: "./media/characters/purri/boots.svg",
  31658. extra: 905/853,
  31659. bottom: 18/923
  31660. }
  31661. },
  31662. lying: {
  31663. height: math.unit(2, "feet"),
  31664. name: "Lying",
  31665. image: {
  31666. source: "./media/characters/purri/lying.svg",
  31667. extra: 940/843,
  31668. bottom: 146/1086
  31669. }
  31670. },
  31671. devious: {
  31672. height: math.unit(1.77, "feet"),
  31673. name: "Devious",
  31674. image: {
  31675. source: "./media/characters/purri/devious.svg",
  31676. extra: 1440/1155,
  31677. bottom: 147/1587
  31678. }
  31679. },
  31680. bean: {
  31681. height: math.unit(1.94, "feet"),
  31682. name: "Bean",
  31683. image: {
  31684. source: "./media/characters/purri/bean.svg"
  31685. }
  31686. },
  31687. },
  31688. [
  31689. {
  31690. name: "Micro",
  31691. height: math.unit(1, "mm")
  31692. },
  31693. {
  31694. name: "Normal",
  31695. height: math.unit(6 + 5/12, "feet"),
  31696. default: true
  31697. },
  31698. {
  31699. name: "Macro :3c",
  31700. height: math.unit(2, "miles")
  31701. },
  31702. ]
  31703. ))
  31704. characterMakers.push(() => makeCharacter(
  31705. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31706. {
  31707. front: {
  31708. height: math.unit(6 + 2/12, "feet"),
  31709. weight: math.unit(250, "lb"),
  31710. name: "Front",
  31711. image: {
  31712. source: "./media/characters/moonlight/front.svg",
  31713. extra: 1044/908,
  31714. bottom: 56/1100
  31715. }
  31716. },
  31717. feral: {
  31718. height: math.unit(3 + 1/12, "feet"),
  31719. weight: math.unit(50, "kg"),
  31720. name: "Feral",
  31721. image: {
  31722. source: "./media/characters/moonlight/feral.svg",
  31723. extra: 3705/2791,
  31724. bottom: 145/3850
  31725. }
  31726. },
  31727. paw: {
  31728. height: math.unit(1, "feet"),
  31729. name: "Paw",
  31730. image: {
  31731. source: "./media/characters/moonlight/paw.svg"
  31732. }
  31733. },
  31734. paws: {
  31735. height: math.unit(0.98, "feet"),
  31736. name: "Paws",
  31737. image: {
  31738. source: "./media/characters/moonlight/paws.svg",
  31739. extra: 939/939,
  31740. bottom: 50/989
  31741. }
  31742. },
  31743. mouth: {
  31744. height: math.unit(0.48, "feet"),
  31745. name: "Mouth",
  31746. image: {
  31747. source: "./media/characters/moonlight/mouth.svg"
  31748. }
  31749. },
  31750. dick: {
  31751. height: math.unit(1.46, "feet"),
  31752. name: "Dick",
  31753. image: {
  31754. source: "./media/characters/moonlight/dick.svg"
  31755. }
  31756. },
  31757. },
  31758. [
  31759. {
  31760. name: "Normal",
  31761. height: math.unit(6 + 2/12, "feet"),
  31762. default: true
  31763. },
  31764. {
  31765. name: "Macro",
  31766. height: math.unit(300, "feet")
  31767. },
  31768. {
  31769. name: "Macro+",
  31770. height: math.unit(1, "mile")
  31771. },
  31772. {
  31773. name: "Mt. Moon",
  31774. height: math.unit(5, "miles")
  31775. },
  31776. {
  31777. name: "Megamacro",
  31778. height: math.unit(15, "miles")
  31779. },
  31780. ]
  31781. ))
  31782. characterMakers.push(() => makeCharacter(
  31783. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31784. {
  31785. back: {
  31786. height: math.unit(6, "feet"),
  31787. weight: math.unit(150, "lb"),
  31788. name: "Back",
  31789. image: {
  31790. source: "./media/characters/sylen/back.svg",
  31791. extra: 1335/1273,
  31792. bottom: 107/1442
  31793. }
  31794. },
  31795. },
  31796. [
  31797. {
  31798. name: "Normal",
  31799. height: math.unit(5 + 5/12, "feet")
  31800. },
  31801. {
  31802. name: "Megamacro",
  31803. height: math.unit(3, "miles"),
  31804. default: true
  31805. },
  31806. ]
  31807. ))
  31808. characterMakers.push(() => makeCharacter(
  31809. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31810. {
  31811. front: {
  31812. height: math.unit(6, "feet"),
  31813. weight: math.unit(190, "lb"),
  31814. name: "Front",
  31815. image: {
  31816. source: "./media/characters/huttser/front.svg",
  31817. extra: 1152/1058,
  31818. bottom: 23/1175
  31819. }
  31820. },
  31821. side: {
  31822. height: math.unit(6, "feet"),
  31823. weight: math.unit(190, "lb"),
  31824. name: "Side",
  31825. image: {
  31826. source: "./media/characters/huttser/side.svg",
  31827. extra: 1174/1065,
  31828. bottom: 18/1192
  31829. }
  31830. },
  31831. back: {
  31832. height: math.unit(6, "feet"),
  31833. weight: math.unit(190, "lb"),
  31834. name: "Back",
  31835. image: {
  31836. source: "./media/characters/huttser/back.svg",
  31837. extra: 1158/1056,
  31838. bottom: 12/1170
  31839. }
  31840. },
  31841. },
  31842. [
  31843. ]
  31844. ))
  31845. characterMakers.push(() => makeCharacter(
  31846. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31847. {
  31848. side: {
  31849. height: math.unit(12 + 9/12, "feet"),
  31850. weight: math.unit(15000, "lb"),
  31851. name: "Side",
  31852. image: {
  31853. source: "./media/characters/faan/side.svg",
  31854. extra: 2747/2697,
  31855. bottom: 0/2747
  31856. }
  31857. },
  31858. front: {
  31859. height: math.unit(12 + 9/12, "feet"),
  31860. weight: math.unit(15000, "lb"),
  31861. name: "Front",
  31862. image: {
  31863. source: "./media/characters/faan/front.svg",
  31864. extra: 607/571,
  31865. bottom: 24/631
  31866. }
  31867. },
  31868. head: {
  31869. height: math.unit(2.85, "feet"),
  31870. name: "Head",
  31871. image: {
  31872. source: "./media/characters/faan/head.svg"
  31873. }
  31874. },
  31875. headAlt: {
  31876. height: math.unit(3.13, "feet"),
  31877. name: "Head-alt",
  31878. image: {
  31879. source: "./media/characters/faan/head-alt.svg"
  31880. }
  31881. },
  31882. },
  31883. [
  31884. {
  31885. name: "Normal",
  31886. height: math.unit(12 + 9/12, "feet"),
  31887. default: true
  31888. },
  31889. ]
  31890. ))
  31891. characterMakers.push(() => makeCharacter(
  31892. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31893. {
  31894. front: {
  31895. height: math.unit(6, "feet"),
  31896. weight: math.unit(300, "lb"),
  31897. name: "Front",
  31898. image: {
  31899. source: "./media/characters/tanio/front.svg",
  31900. extra: 711/673,
  31901. bottom: 25/736
  31902. }
  31903. },
  31904. },
  31905. [
  31906. {
  31907. name: "Normal",
  31908. height: math.unit(6, "feet"),
  31909. default: true
  31910. },
  31911. ]
  31912. ))
  31913. characterMakers.push(() => makeCharacter(
  31914. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31915. {
  31916. front: {
  31917. height: math.unit(3, "inches"),
  31918. name: "Front",
  31919. image: {
  31920. source: "./media/characters/noboru/front.svg",
  31921. extra: 1039/932,
  31922. bottom: 18/1057
  31923. }
  31924. },
  31925. },
  31926. [
  31927. {
  31928. name: "Micro",
  31929. height: math.unit(3, "inches"),
  31930. default: true
  31931. },
  31932. ]
  31933. ))
  31934. characterMakers.push(() => makeCharacter(
  31935. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31936. {
  31937. front: {
  31938. height: math.unit(1.85, "meters"),
  31939. weight: math.unit(80, "kg"),
  31940. name: "Front",
  31941. image: {
  31942. source: "./media/characters/daniel-barrett/front.svg",
  31943. extra: 355/337,
  31944. bottom: 9/364
  31945. }
  31946. },
  31947. },
  31948. [
  31949. {
  31950. name: "Pico",
  31951. height: math.unit(0.0433, "mm")
  31952. },
  31953. {
  31954. name: "Nano",
  31955. height: math.unit(1.5, "mm")
  31956. },
  31957. {
  31958. name: "Micro",
  31959. height: math.unit(5.3, "cm"),
  31960. default: true
  31961. },
  31962. {
  31963. name: "Normal",
  31964. height: math.unit(1.85, "meters")
  31965. },
  31966. {
  31967. name: "Macro",
  31968. height: math.unit(64.7, "meters")
  31969. },
  31970. {
  31971. name: "Megamacro",
  31972. height: math.unit(2.26, "km")
  31973. },
  31974. {
  31975. name: "Gigamacro",
  31976. height: math.unit(79, "km")
  31977. },
  31978. {
  31979. name: "Teramacro",
  31980. height: math.unit(2765, "km")
  31981. },
  31982. {
  31983. name: "Petamacro",
  31984. height: math.unit(96678, "km")
  31985. },
  31986. ]
  31987. ))
  31988. characterMakers.push(() => makeCharacter(
  31989. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31990. {
  31991. front: {
  31992. height: math.unit(30, "meters"),
  31993. weight: math.unit(400, "tons"),
  31994. name: "Front",
  31995. image: {
  31996. source: "./media/characters/zeel/front.svg",
  31997. extra: 2599/2599,
  31998. bottom: 226/2825
  31999. }
  32000. },
  32001. },
  32002. [
  32003. {
  32004. name: "Macro",
  32005. height: math.unit(30, "meters"),
  32006. default: true
  32007. },
  32008. ]
  32009. ))
  32010. characterMakers.push(() => makeCharacter(
  32011. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32012. {
  32013. front: {
  32014. height: math.unit(6 + 7/12, "feet"),
  32015. weight: math.unit(210, "lb"),
  32016. name: "Front",
  32017. image: {
  32018. source: "./media/characters/tarn/front.svg",
  32019. extra: 3517/3220,
  32020. bottom: 91/3608
  32021. }
  32022. },
  32023. back: {
  32024. height: math.unit(6 + 7/12, "feet"),
  32025. weight: math.unit(210, "lb"),
  32026. name: "Back",
  32027. image: {
  32028. source: "./media/characters/tarn/back.svg",
  32029. extra: 3566/3241,
  32030. bottom: 34/3600
  32031. }
  32032. },
  32033. dick: {
  32034. height: math.unit(1.65, "feet"),
  32035. name: "Dick",
  32036. image: {
  32037. source: "./media/characters/tarn/dick.svg"
  32038. }
  32039. },
  32040. paw: {
  32041. height: math.unit(1.80, "feet"),
  32042. name: "Paw",
  32043. image: {
  32044. source: "./media/characters/tarn/paw.svg"
  32045. }
  32046. },
  32047. tongue: {
  32048. height: math.unit(0.97, "feet"),
  32049. name: "Tongue",
  32050. image: {
  32051. source: "./media/characters/tarn/tongue.svg"
  32052. }
  32053. },
  32054. },
  32055. [
  32056. {
  32057. name: "Micro",
  32058. height: math.unit(4, "inches")
  32059. },
  32060. {
  32061. name: "Normal",
  32062. height: math.unit(6 + 7/12, "feet"),
  32063. default: true
  32064. },
  32065. {
  32066. name: "Macro",
  32067. height: math.unit(300, "feet")
  32068. },
  32069. ]
  32070. ))
  32071. characterMakers.push(() => makeCharacter(
  32072. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32073. {
  32074. front: {
  32075. height: math.unit(5 + 7/12, "feet"),
  32076. weight: math.unit(80, "kg"),
  32077. name: "Front",
  32078. image: {
  32079. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32080. extra: 3023/2865,
  32081. bottom: 33/3056
  32082. }
  32083. },
  32084. back: {
  32085. height: math.unit(5 + 7/12, "feet"),
  32086. weight: math.unit(80, "kg"),
  32087. name: "Back",
  32088. image: {
  32089. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32090. extra: 3020/2886,
  32091. bottom: 30/3050
  32092. }
  32093. },
  32094. dick: {
  32095. height: math.unit(0.98, "feet"),
  32096. name: "Dick",
  32097. image: {
  32098. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32099. }
  32100. },
  32101. anatomy: {
  32102. height: math.unit(2.86, "feet"),
  32103. name: "Anatomy",
  32104. image: {
  32105. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32106. }
  32107. },
  32108. },
  32109. [
  32110. {
  32111. name: "Really Small",
  32112. height: math.unit(2, "inches")
  32113. },
  32114. {
  32115. name: "Micro",
  32116. height: math.unit(5.583, "inches")
  32117. },
  32118. {
  32119. name: "Normal",
  32120. height: math.unit(5 + 7/12, "feet"),
  32121. default: true
  32122. },
  32123. {
  32124. name: "Macro",
  32125. height: math.unit(67, "feet")
  32126. },
  32127. {
  32128. name: "Megamacro",
  32129. height: math.unit(134, "feet")
  32130. },
  32131. ]
  32132. ))
  32133. characterMakers.push(() => makeCharacter(
  32134. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32135. {
  32136. front: {
  32137. height: math.unit(9, "feet"),
  32138. weight: math.unit(120, "lb"),
  32139. name: "Front",
  32140. image: {
  32141. source: "./media/characters/sally/front.svg",
  32142. extra: 1506/1349,
  32143. bottom: 66/1572
  32144. }
  32145. },
  32146. },
  32147. [
  32148. {
  32149. name: "Normal",
  32150. height: math.unit(9, "feet"),
  32151. default: true
  32152. },
  32153. ]
  32154. ))
  32155. characterMakers.push(() => makeCharacter(
  32156. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32157. {
  32158. front: {
  32159. height: math.unit(8, "feet"),
  32160. weight: math.unit(900, "lb"),
  32161. name: "Front",
  32162. image: {
  32163. source: "./media/characters/owen/front.svg",
  32164. extra: 1761/1657,
  32165. bottom: 74/1835
  32166. }
  32167. },
  32168. side: {
  32169. height: math.unit(8, "feet"),
  32170. weight: math.unit(900, "lb"),
  32171. name: "Side",
  32172. image: {
  32173. source: "./media/characters/owen/side.svg",
  32174. extra: 1797/1734,
  32175. bottom: 30/1827
  32176. }
  32177. },
  32178. back: {
  32179. height: math.unit(8, "feet"),
  32180. weight: math.unit(900, "lb"),
  32181. name: "Back",
  32182. image: {
  32183. source: "./media/characters/owen/back.svg",
  32184. extra: 1796/1706,
  32185. bottom: 59/1855
  32186. }
  32187. },
  32188. maw: {
  32189. height: math.unit(1.76, "feet"),
  32190. name: "Maw",
  32191. image: {
  32192. source: "./media/characters/owen/maw.svg"
  32193. }
  32194. },
  32195. },
  32196. [
  32197. {
  32198. name: "Normal",
  32199. height: math.unit(8, "feet"),
  32200. default: true
  32201. },
  32202. ]
  32203. ))
  32204. characterMakers.push(() => makeCharacter(
  32205. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32206. {
  32207. front: {
  32208. height: math.unit(4, "feet"),
  32209. weight: math.unit(400, "lb"),
  32210. name: "Front",
  32211. image: {
  32212. source: "./media/characters/ryth/front.svg",
  32213. extra: 1920/1748,
  32214. bottom: 42/1962
  32215. }
  32216. },
  32217. back: {
  32218. height: math.unit(4, "feet"),
  32219. weight: math.unit(400, "lb"),
  32220. name: "Back",
  32221. image: {
  32222. source: "./media/characters/ryth/back.svg",
  32223. extra: 1897/1690,
  32224. bottom: 89/1986
  32225. }
  32226. },
  32227. mouth: {
  32228. height: math.unit(1.39, "feet"),
  32229. name: "Mouth",
  32230. image: {
  32231. source: "./media/characters/ryth/mouth.svg"
  32232. }
  32233. },
  32234. tailmaw: {
  32235. height: math.unit(1.23, "feet"),
  32236. name: "Tailmaw",
  32237. image: {
  32238. source: "./media/characters/ryth/tailmaw.svg"
  32239. }
  32240. },
  32241. goia: {
  32242. height: math.unit(4, "meters"),
  32243. weight: math.unit(10800, "lb"),
  32244. name: "Goia",
  32245. image: {
  32246. source: "./media/characters/ryth/goia.svg",
  32247. extra: 745/640,
  32248. bottom: 107/852
  32249. }
  32250. },
  32251. goiaFront: {
  32252. height: math.unit(4, "meters"),
  32253. weight: math.unit(10800, "lb"),
  32254. name: "Goia (Front)",
  32255. image: {
  32256. source: "./media/characters/ryth/goia-front.svg",
  32257. extra: 750/586,
  32258. bottom: 114/864
  32259. }
  32260. },
  32261. goiaMaw: {
  32262. height: math.unit(5.55, "feet"),
  32263. name: "Goia Maw",
  32264. image: {
  32265. source: "./media/characters/ryth/goia-maw.svg"
  32266. }
  32267. },
  32268. goiaForepaw: {
  32269. height: math.unit(3.5, "feet"),
  32270. name: "Goia Forepaw",
  32271. image: {
  32272. source: "./media/characters/ryth/goia-forepaw.svg"
  32273. }
  32274. },
  32275. goiaHindpaw: {
  32276. height: math.unit(5.55, "feet"),
  32277. name: "Goia Hindpaw",
  32278. image: {
  32279. source: "./media/characters/ryth/goia-hindpaw.svg"
  32280. }
  32281. },
  32282. },
  32283. [
  32284. {
  32285. name: "Normal",
  32286. height: math.unit(4, "feet"),
  32287. default: true
  32288. },
  32289. ]
  32290. ))
  32291. characterMakers.push(() => makeCharacter(
  32292. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32293. {
  32294. front: {
  32295. height: math.unit(7, "feet"),
  32296. weight: math.unit(180, "lb"),
  32297. name: "Front",
  32298. image: {
  32299. source: "./media/characters/necrolance/front.svg",
  32300. extra: 1062/947,
  32301. bottom: 41/1103
  32302. }
  32303. },
  32304. back: {
  32305. height: math.unit(7, "feet"),
  32306. weight: math.unit(180, "lb"),
  32307. name: "Back",
  32308. image: {
  32309. source: "./media/characters/necrolance/back.svg",
  32310. extra: 1045/984,
  32311. bottom: 14/1059
  32312. }
  32313. },
  32314. wing: {
  32315. height: math.unit(2.67, "feet"),
  32316. name: "Wing",
  32317. image: {
  32318. source: "./media/characters/necrolance/wing.svg"
  32319. }
  32320. },
  32321. },
  32322. [
  32323. {
  32324. name: "Normal",
  32325. height: math.unit(7, "feet"),
  32326. default: true
  32327. },
  32328. ]
  32329. ))
  32330. characterMakers.push(() => makeCharacter(
  32331. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32332. {
  32333. front: {
  32334. height: math.unit(76, "meters"),
  32335. weight: math.unit(30000, "tons"),
  32336. name: "Front",
  32337. image: {
  32338. source: "./media/characters/tyler/front.svg",
  32339. extra: 1640/1640,
  32340. bottom: 114/1754
  32341. }
  32342. },
  32343. },
  32344. [
  32345. {
  32346. name: "Macro",
  32347. height: math.unit(76, "meters"),
  32348. default: true
  32349. },
  32350. ]
  32351. ))
  32352. characterMakers.push(() => makeCharacter(
  32353. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32354. {
  32355. front: {
  32356. height: math.unit(4 + 11/12, "feet"),
  32357. weight: math.unit(132, "lb"),
  32358. name: "Front",
  32359. image: {
  32360. source: "./media/characters/icey/front.svg",
  32361. extra: 2750/2550,
  32362. bottom: 33/2783
  32363. }
  32364. },
  32365. back: {
  32366. height: math.unit(4 + 11/12, "feet"),
  32367. weight: math.unit(132, "lb"),
  32368. name: "Back",
  32369. image: {
  32370. source: "./media/characters/icey/back.svg",
  32371. extra: 2624/2481,
  32372. bottom: 35/2659
  32373. }
  32374. },
  32375. },
  32376. [
  32377. {
  32378. name: "Normal",
  32379. height: math.unit(4 + 11/12, "feet"),
  32380. default: true
  32381. },
  32382. ]
  32383. ))
  32384. characterMakers.push(() => makeCharacter(
  32385. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32386. {
  32387. front: {
  32388. height: math.unit(100, "feet"),
  32389. weight: math.unit(0, "lb"),
  32390. name: "Front",
  32391. image: {
  32392. source: "./media/characters/smile/front.svg",
  32393. extra: 2983/2912,
  32394. bottom: 162/3145
  32395. }
  32396. },
  32397. back: {
  32398. height: math.unit(100, "feet"),
  32399. weight: math.unit(0, "lb"),
  32400. name: "Back",
  32401. image: {
  32402. source: "./media/characters/smile/back.svg",
  32403. extra: 3143/3031,
  32404. bottom: 91/3234
  32405. }
  32406. },
  32407. head: {
  32408. height: math.unit(26.3, "feet"),
  32409. weight: math.unit(0, "lb"),
  32410. name: "Head",
  32411. image: {
  32412. source: "./media/characters/smile/head.svg"
  32413. }
  32414. },
  32415. collar: {
  32416. height: math.unit(5.3, "feet"),
  32417. weight: math.unit(0, "lb"),
  32418. name: "Collar",
  32419. image: {
  32420. source: "./media/characters/smile/collar.svg"
  32421. }
  32422. },
  32423. },
  32424. [
  32425. {
  32426. name: "Macro",
  32427. height: math.unit(100, "feet"),
  32428. default: true
  32429. },
  32430. ]
  32431. ))
  32432. characterMakers.push(() => makeCharacter(
  32433. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32434. {
  32435. dragon: {
  32436. height: math.unit(26, "feet"),
  32437. weight: math.unit(36, "tons"),
  32438. name: "Dragon",
  32439. image: {
  32440. source: "./media/characters/arimphae/dragon.svg",
  32441. extra: 1574/983,
  32442. bottom: 357/1931
  32443. }
  32444. },
  32445. drake: {
  32446. height: math.unit(9, "feet"),
  32447. weight: math.unit(1.5, "tons"),
  32448. name: "Drake",
  32449. image: {
  32450. source: "./media/characters/arimphae/drake.svg",
  32451. extra: 1120/925,
  32452. bottom: 435/1555
  32453. }
  32454. },
  32455. },
  32456. [
  32457. {
  32458. name: "Small",
  32459. height: math.unit(26*5/9, "feet")
  32460. },
  32461. {
  32462. name: "Normal",
  32463. height: math.unit(26, "feet"),
  32464. default: true
  32465. },
  32466. ]
  32467. ))
  32468. characterMakers.push(() => makeCharacter(
  32469. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32470. {
  32471. front: {
  32472. height: math.unit(8 + 9/12, "feet"),
  32473. name: "Front",
  32474. image: {
  32475. source: "./media/characters/xander/front.svg",
  32476. extra: 1237/974,
  32477. bottom: 94/1331
  32478. }
  32479. },
  32480. },
  32481. [
  32482. {
  32483. name: "Normal",
  32484. height: math.unit(8 + 9/12, "feet"),
  32485. default: true
  32486. },
  32487. {
  32488. name: "Gaze Grabber",
  32489. height: math.unit(13 + 8/12, "feet")
  32490. },
  32491. {
  32492. name: "Jaw Dropper",
  32493. height: math.unit(27, "feet")
  32494. },
  32495. {
  32496. name: "Show Stopper",
  32497. height: math.unit(136, "feet")
  32498. },
  32499. {
  32500. name: "Superstar",
  32501. height: math.unit(1.9e6, "miles")
  32502. },
  32503. ]
  32504. ))
  32505. characterMakers.push(() => makeCharacter(
  32506. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32507. {
  32508. side: {
  32509. height: math.unit(2100, "feet"),
  32510. name: "Side",
  32511. image: {
  32512. source: "./media/characters/osiris/side.svg",
  32513. extra: 1105/939,
  32514. bottom: 167/1272
  32515. }
  32516. },
  32517. },
  32518. [
  32519. {
  32520. name: "Macro",
  32521. height: math.unit(2100, "feet"),
  32522. default: true
  32523. },
  32524. ]
  32525. ))
  32526. characterMakers.push(() => makeCharacter(
  32527. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32528. {
  32529. front: {
  32530. height: math.unit(6 + 8/12, "feet"),
  32531. weight: math.unit(225, "lb"),
  32532. name: "Front",
  32533. image: {
  32534. source: "./media/characters/rhys-londe/front.svg",
  32535. extra: 2258/2141,
  32536. bottom: 188/2446
  32537. }
  32538. },
  32539. back: {
  32540. height: math.unit(6 + 8/12, "feet"),
  32541. weight: math.unit(225, "lb"),
  32542. name: "Back",
  32543. image: {
  32544. source: "./media/characters/rhys-londe/back.svg",
  32545. extra: 2237/2137,
  32546. bottom: 63/2300
  32547. }
  32548. },
  32549. frontNsfw: {
  32550. height: math.unit(6 + 8/12, "feet"),
  32551. weight: math.unit(225, "lb"),
  32552. name: "Front (NSFW)",
  32553. image: {
  32554. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32555. extra: 2258/2141,
  32556. bottom: 188/2446
  32557. }
  32558. },
  32559. backNsfw: {
  32560. height: math.unit(6 + 8/12, "feet"),
  32561. weight: math.unit(225, "lb"),
  32562. name: "Back (NSFW)",
  32563. image: {
  32564. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32565. extra: 2237/2137,
  32566. bottom: 63/2300
  32567. }
  32568. },
  32569. dick: {
  32570. height: math.unit(30, "inches"),
  32571. name: "Dick",
  32572. image: {
  32573. source: "./media/characters/rhys-londe/dick.svg"
  32574. }
  32575. },
  32576. maw: {
  32577. height: math.unit(1.6, "feet"),
  32578. name: "Maw",
  32579. image: {
  32580. source: "./media/characters/rhys-londe/maw.svg"
  32581. }
  32582. },
  32583. },
  32584. [
  32585. {
  32586. name: "Normal",
  32587. height: math.unit(6 + 8/12, "feet"),
  32588. default: true
  32589. },
  32590. ]
  32591. ))
  32592. characterMakers.push(() => makeCharacter(
  32593. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32594. {
  32595. front: {
  32596. height: math.unit(3 + 10/12, "feet"),
  32597. weight: math.unit(90, "lb"),
  32598. name: "Front",
  32599. image: {
  32600. source: "./media/characters/taivas-ensim/front.svg",
  32601. extra: 1327/1216,
  32602. bottom: 96/1423
  32603. }
  32604. },
  32605. back: {
  32606. height: math.unit(3 + 10/12, "feet"),
  32607. weight: math.unit(90, "lb"),
  32608. name: "Back",
  32609. image: {
  32610. source: "./media/characters/taivas-ensim/back.svg",
  32611. extra: 1355/1247,
  32612. bottom: 11/1366
  32613. }
  32614. },
  32615. frontNsfw: {
  32616. height: math.unit(3 + 10/12, "feet"),
  32617. weight: math.unit(90, "lb"),
  32618. name: "Front (NSFW)",
  32619. image: {
  32620. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32621. extra: 1327/1216,
  32622. bottom: 96/1423
  32623. }
  32624. },
  32625. backNsfw: {
  32626. height: math.unit(3 + 10/12, "feet"),
  32627. weight: math.unit(90, "lb"),
  32628. name: "Back (NSFW)",
  32629. image: {
  32630. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32631. extra: 1355/1247,
  32632. bottom: 11/1366
  32633. }
  32634. },
  32635. },
  32636. [
  32637. {
  32638. name: "Normal",
  32639. height: math.unit(3 + 10/12, "feet"),
  32640. default: true
  32641. },
  32642. ]
  32643. ))
  32644. characterMakers.push(() => makeCharacter(
  32645. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32646. {
  32647. front: {
  32648. height: math.unit(9 + 6/12, "feet"),
  32649. weight: math.unit(940, "lb"),
  32650. name: "Front",
  32651. image: {
  32652. source: "./media/characters/byliss/front.svg",
  32653. extra: 1327/1290,
  32654. bottom: 82/1409
  32655. }
  32656. },
  32657. back: {
  32658. height: math.unit(9 + 6/12, "feet"),
  32659. weight: math.unit(940, "lb"),
  32660. name: "Back",
  32661. image: {
  32662. source: "./media/characters/byliss/back.svg",
  32663. extra: 1376/1349,
  32664. bottom: 9/1385
  32665. }
  32666. },
  32667. frontNsfw: {
  32668. height: math.unit(9 + 6/12, "feet"),
  32669. weight: math.unit(940, "lb"),
  32670. name: "Front (NSFW)",
  32671. image: {
  32672. source: "./media/characters/byliss/front-nsfw.svg",
  32673. extra: 1327/1290,
  32674. bottom: 82/1409
  32675. }
  32676. },
  32677. backNsfw: {
  32678. height: math.unit(9 + 6/12, "feet"),
  32679. weight: math.unit(940, "lb"),
  32680. name: "Back (NSFW)",
  32681. image: {
  32682. source: "./media/characters/byliss/back-nsfw.svg",
  32683. extra: 1376/1349,
  32684. bottom: 9/1385
  32685. }
  32686. },
  32687. },
  32688. [
  32689. {
  32690. name: "Normal",
  32691. height: math.unit(9 + 6/12, "feet"),
  32692. default: true
  32693. },
  32694. ]
  32695. ))
  32696. characterMakers.push(() => makeCharacter(
  32697. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32698. {
  32699. front: {
  32700. height: math.unit(5 + 2/12, "feet"),
  32701. weight: math.unit(200, "lb"),
  32702. name: "Front",
  32703. image: {
  32704. source: "./media/characters/noraly/front.svg",
  32705. extra: 4985/4773,
  32706. bottom: 150/5135
  32707. }
  32708. },
  32709. full: {
  32710. height: math.unit(5 + 2/12, "feet"),
  32711. weight: math.unit(164, "lb"),
  32712. name: "Full",
  32713. image: {
  32714. source: "./media/characters/noraly/full.svg",
  32715. extra: 1114/1059,
  32716. bottom: 35/1149
  32717. }
  32718. },
  32719. fuller: {
  32720. height: math.unit(5 + 2/12, "feet"),
  32721. weight: math.unit(230, "lb"),
  32722. name: "Fuller",
  32723. image: {
  32724. source: "./media/characters/noraly/fuller.svg",
  32725. extra: 1114/1059,
  32726. bottom: 35/1149
  32727. }
  32728. },
  32729. fullest: {
  32730. height: math.unit(5 + 2/12, "feet"),
  32731. weight: math.unit(300, "lb"),
  32732. name: "Fullest",
  32733. image: {
  32734. source: "./media/characters/noraly/fullest.svg",
  32735. extra: 1114/1059,
  32736. bottom: 35/1149
  32737. }
  32738. },
  32739. },
  32740. [
  32741. {
  32742. name: "Normal",
  32743. height: math.unit(5 + 2/12, "feet"),
  32744. default: true
  32745. },
  32746. ]
  32747. ))
  32748. characterMakers.push(() => makeCharacter(
  32749. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32750. {
  32751. front: {
  32752. height: math.unit(5 + 2/12, "feet"),
  32753. weight: math.unit(210, "lb"),
  32754. name: "Front",
  32755. image: {
  32756. source: "./media/characters/pera/front.svg",
  32757. extra: 1560/1531,
  32758. bottom: 165/1725
  32759. }
  32760. },
  32761. back: {
  32762. height: math.unit(5 + 2/12, "feet"),
  32763. weight: math.unit(210, "lb"),
  32764. name: "Back",
  32765. image: {
  32766. source: "./media/characters/pera/back.svg",
  32767. extra: 1523/1493,
  32768. bottom: 152/1675
  32769. }
  32770. },
  32771. dick: {
  32772. height: math.unit(2.4, "feet"),
  32773. name: "Dick",
  32774. image: {
  32775. source: "./media/characters/pera/dick.svg"
  32776. }
  32777. },
  32778. },
  32779. [
  32780. {
  32781. name: "Normal",
  32782. height: math.unit(5 + 2/12, "feet"),
  32783. default: true
  32784. },
  32785. ]
  32786. ))
  32787. characterMakers.push(() => makeCharacter(
  32788. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32789. {
  32790. front: {
  32791. height: math.unit(12, "feet"),
  32792. weight: math.unit(3200, "lb"),
  32793. name: "Front",
  32794. image: {
  32795. source: "./media/characters/julian/front.svg",
  32796. extra: 2962/2701,
  32797. bottom: 184/3146
  32798. }
  32799. },
  32800. maw: {
  32801. height: math.unit(5.35, "feet"),
  32802. name: "Maw",
  32803. image: {
  32804. source: "./media/characters/julian/maw.svg"
  32805. }
  32806. },
  32807. paw: {
  32808. height: math.unit(3.07, "feet"),
  32809. name: "Paw",
  32810. image: {
  32811. source: "./media/characters/julian/paw.svg"
  32812. }
  32813. },
  32814. },
  32815. [
  32816. {
  32817. name: "Default",
  32818. height: math.unit(12, "feet"),
  32819. default: true
  32820. },
  32821. {
  32822. name: "Big",
  32823. height: math.unit(50, "feet")
  32824. },
  32825. {
  32826. name: "Really Big",
  32827. height: math.unit(1, "mile")
  32828. },
  32829. {
  32830. name: "Extremely Big",
  32831. height: math.unit(100, "miles")
  32832. },
  32833. {
  32834. name: "Planet Hugger",
  32835. height: math.unit(200, "megameters")
  32836. },
  32837. {
  32838. name: "Unreasonably Big",
  32839. height: math.unit(1e300, "meters")
  32840. },
  32841. ]
  32842. ))
  32843. characterMakers.push(() => makeCharacter(
  32844. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32845. {
  32846. solgooleo: {
  32847. height: math.unit(4, "meters"),
  32848. weight: math.unit(6000*1.5, "kg"),
  32849. volume: math.unit(6000, "liters"),
  32850. name: "Solgooleo",
  32851. image: {
  32852. source: "./media/characters/pi/solgooleo.svg",
  32853. extra: 388/331,
  32854. bottom: 29/417
  32855. }
  32856. },
  32857. },
  32858. [
  32859. {
  32860. name: "Normal",
  32861. height: math.unit(4, "meters"),
  32862. default: true
  32863. },
  32864. ]
  32865. ))
  32866. characterMakers.push(() => makeCharacter(
  32867. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32868. {
  32869. front: {
  32870. height: math.unit(8, "feet"),
  32871. weight: math.unit(4, "tons"),
  32872. name: "Front",
  32873. image: {
  32874. source: "./media/characters/shaun/front.svg",
  32875. extra: 503/495,
  32876. bottom: 20/523
  32877. }
  32878. },
  32879. back: {
  32880. height: math.unit(8, "feet"),
  32881. weight: math.unit(4, "tons"),
  32882. name: "Back",
  32883. image: {
  32884. source: "./media/characters/shaun/back.svg",
  32885. extra: 487/480,
  32886. bottom: 20/507
  32887. }
  32888. },
  32889. },
  32890. [
  32891. {
  32892. name: "Lorg",
  32893. height: math.unit(8, "feet"),
  32894. default: true
  32895. },
  32896. ]
  32897. ))
  32898. characterMakers.push(() => makeCharacter(
  32899. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32900. {
  32901. front: {
  32902. height: math.unit(7, "feet"),
  32903. name: "Front",
  32904. image: {
  32905. source: "./media/characters/sini/front.svg",
  32906. extra: 726/678,
  32907. bottom: 35/761
  32908. }
  32909. },
  32910. back: {
  32911. height: math.unit(7, "feet"),
  32912. name: "Back",
  32913. image: {
  32914. source: "./media/characters/sini/back.svg",
  32915. extra: 743/701,
  32916. bottom: 12/755
  32917. }
  32918. },
  32919. mawAnthro: {
  32920. height: math.unit(2.14, "feet"),
  32921. name: "Maw (Anthro)",
  32922. image: {
  32923. source: "./media/characters/sini/maw-anthro.svg"
  32924. }
  32925. },
  32926. dick: {
  32927. height: math.unit(1.45, "feet"),
  32928. name: "Dick (Anthro)",
  32929. image: {
  32930. source: "./media/characters/sini/dick-anthro.svg"
  32931. }
  32932. },
  32933. feral: {
  32934. height: math.unit(16, "feet"),
  32935. name: "Feral",
  32936. image: {
  32937. source: "./media/characters/sini/feral.svg",
  32938. extra: 814/605,
  32939. bottom: 11/825
  32940. }
  32941. },
  32942. mawFeral: {
  32943. height: math.unit(5.66, "feet"),
  32944. name: "Maw-feral",
  32945. image: {
  32946. source: "./media/characters/sini/maw-feral.svg"
  32947. }
  32948. },
  32949. footFeral: {
  32950. height: math.unit(5.17, "feet"),
  32951. name: "Foot-feral",
  32952. image: {
  32953. source: "./media/characters/sini/foot-feral.svg"
  32954. }
  32955. },
  32956. },
  32957. [
  32958. {
  32959. name: "Normal",
  32960. height: math.unit(7, "feet"),
  32961. default: true
  32962. },
  32963. ]
  32964. ))
  32965. characterMakers.push(() => makeCharacter(
  32966. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32967. {
  32968. side: {
  32969. height: math.unit(13, "meters"),
  32970. weight: math.unit(9072, "kg"),
  32971. name: "Side",
  32972. image: {
  32973. source: "./media/characters/raylldo/side.svg",
  32974. extra: 403/344,
  32975. bottom: 42/445
  32976. }
  32977. },
  32978. leaping: {
  32979. height: math.unit(12.3, "meters"),
  32980. weight: math.unit(9072, "kg"),
  32981. name: "Leaping",
  32982. image: {
  32983. source: "./media/characters/raylldo/leaping.svg",
  32984. extra: 470/249,
  32985. bottom: 13/483
  32986. }
  32987. },
  32988. flying: {
  32989. height: math.unit(18, "meters"),
  32990. weight: math.unit(9072, "kg"),
  32991. name: "Flying",
  32992. image: {
  32993. source: "./media/characters/raylldo/flying.svg"
  32994. }
  32995. },
  32996. head: {
  32997. height: math.unit(5.85, "meters"),
  32998. name: "Head",
  32999. image: {
  33000. source: "./media/characters/raylldo/head.svg"
  33001. }
  33002. },
  33003. maw: {
  33004. height: math.unit(5.32, "meters"),
  33005. name: "Maw",
  33006. image: {
  33007. source: "./media/characters/raylldo/maw.svg"
  33008. }
  33009. },
  33010. eye: {
  33011. height: math.unit(0.54, "meters"),
  33012. name: "Eye",
  33013. image: {
  33014. source: "./media/characters/raylldo/eye.svg"
  33015. }
  33016. },
  33017. },
  33018. [
  33019. {
  33020. name: "Normal",
  33021. height: math.unit(13, "meters"),
  33022. default: true
  33023. },
  33024. ]
  33025. ))
  33026. characterMakers.push(() => makeCharacter(
  33027. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33028. {
  33029. anthroFront: {
  33030. height: math.unit(9, "feet"),
  33031. weight: math.unit(600, "lb"),
  33032. name: "Anthro (Front)",
  33033. image: {
  33034. source: "./media/characters/glint/anthro-front.svg",
  33035. extra: 1097/1018,
  33036. bottom: 28/1125
  33037. }
  33038. },
  33039. anthroBack: {
  33040. height: math.unit(9, "feet"),
  33041. weight: math.unit(600, "lb"),
  33042. name: "Anthro (Back)",
  33043. image: {
  33044. source: "./media/characters/glint/anthro-back.svg",
  33045. extra: 1154/997,
  33046. bottom: 36/1190
  33047. }
  33048. },
  33049. feral: {
  33050. height: math.unit(11, "feet"),
  33051. weight: math.unit(50000, "lb"),
  33052. name: "Feral",
  33053. image: {
  33054. source: "./media/characters/glint/feral.svg",
  33055. extra: 3035/1585,
  33056. bottom: 1169/4204
  33057. }
  33058. },
  33059. dickAnthro: {
  33060. height: math.unit(0.7, "meters"),
  33061. name: "Dick (Anthro)",
  33062. image: {
  33063. source: "./media/characters/glint/dick-anthro.svg"
  33064. }
  33065. },
  33066. dickFeral: {
  33067. height: math.unit(2.65, "meters"),
  33068. name: "Dick (Feral)",
  33069. image: {
  33070. source: "./media/characters/glint/dick-feral.svg"
  33071. }
  33072. },
  33073. slitHidden: {
  33074. height: math.unit(5.85, "meters"),
  33075. name: "Slit (Hidden)",
  33076. image: {
  33077. source: "./media/characters/glint/slit-hidden.svg"
  33078. }
  33079. },
  33080. slitErect: {
  33081. height: math.unit(5.85, "meters"),
  33082. name: "Slit (Erect)",
  33083. image: {
  33084. source: "./media/characters/glint/slit-erect.svg"
  33085. }
  33086. },
  33087. mawAnthro: {
  33088. height: math.unit(0.63, "meters"),
  33089. name: "Maw (Anthro)",
  33090. image: {
  33091. source: "./media/characters/glint/maw.svg"
  33092. }
  33093. },
  33094. mawFeral: {
  33095. height: math.unit(2.89, "meters"),
  33096. name: "Maw (Feral)",
  33097. image: {
  33098. source: "./media/characters/glint/maw.svg"
  33099. }
  33100. },
  33101. },
  33102. [
  33103. {
  33104. name: "Normal",
  33105. height: math.unit(9, "feet"),
  33106. default: true
  33107. },
  33108. ]
  33109. ))
  33110. characterMakers.push(() => makeCharacter(
  33111. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33112. {
  33113. side: {
  33114. height: math.unit(15, "feet"),
  33115. weight: math.unit(5000, "kg"),
  33116. name: "Side",
  33117. image: {
  33118. source: "./media/characters/kairne/side.svg",
  33119. extra: 979/811,
  33120. bottom: 13/992
  33121. }
  33122. },
  33123. front: {
  33124. height: math.unit(15, "feet"),
  33125. weight: math.unit(5000, "kg"),
  33126. name: "Front",
  33127. image: {
  33128. source: "./media/characters/kairne/front.svg",
  33129. extra: 908/814,
  33130. bottom: 26/934
  33131. }
  33132. },
  33133. sideNsfw: {
  33134. height: math.unit(15, "feet"),
  33135. weight: math.unit(5000, "kg"),
  33136. name: "Side (NSFW)",
  33137. image: {
  33138. source: "./media/characters/kairne/side-nsfw.svg",
  33139. extra: 979/811,
  33140. bottom: 13/992
  33141. }
  33142. },
  33143. frontNsfw: {
  33144. height: math.unit(15, "feet"),
  33145. weight: math.unit(5000, "kg"),
  33146. name: "Front (NSFW)",
  33147. image: {
  33148. source: "./media/characters/kairne/front-nsfw.svg",
  33149. extra: 908/814,
  33150. bottom: 26/934
  33151. }
  33152. },
  33153. dickCaged: {
  33154. height: math.unit(0.65, "meters"),
  33155. name: "Dick-caged",
  33156. image: {
  33157. source: "./media/characters/kairne/dick-caged.svg"
  33158. }
  33159. },
  33160. dick: {
  33161. height: math.unit(0.79, "meters"),
  33162. name: "Dick",
  33163. image: {
  33164. source: "./media/characters/kairne/dick.svg"
  33165. }
  33166. },
  33167. genitals: {
  33168. height: math.unit(1.29, "meters"),
  33169. name: "Genitals",
  33170. image: {
  33171. source: "./media/characters/kairne/genitals.svg"
  33172. }
  33173. },
  33174. maw: {
  33175. height: math.unit(1.73, "meters"),
  33176. name: "Maw",
  33177. image: {
  33178. source: "./media/characters/kairne/maw.svg"
  33179. }
  33180. },
  33181. },
  33182. [
  33183. {
  33184. name: "Normal",
  33185. height: math.unit(15, "feet"),
  33186. default: true
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33192. {
  33193. front: {
  33194. height: math.unit(5 + 8/12, "feet"),
  33195. weight: math.unit(139, "lb"),
  33196. name: "Front",
  33197. image: {
  33198. source: "./media/characters/biscuit-jackal/front.svg",
  33199. extra: 2106/1961,
  33200. bottom: 58/2164
  33201. }
  33202. },
  33203. back: {
  33204. height: math.unit(5 + 8/12, "feet"),
  33205. weight: math.unit(139, "lb"),
  33206. name: "Back",
  33207. image: {
  33208. source: "./media/characters/biscuit-jackal/back.svg",
  33209. extra: 2132/1976,
  33210. bottom: 57/2189
  33211. }
  33212. },
  33213. werejackal: {
  33214. height: math.unit(6 + 3/12, "feet"),
  33215. weight: math.unit(188, "lb"),
  33216. name: "Werejackal",
  33217. image: {
  33218. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33219. extra: 2373/2178,
  33220. bottom: 53/2426
  33221. }
  33222. },
  33223. },
  33224. [
  33225. {
  33226. name: "Normal",
  33227. height: math.unit(5 + 8/12, "feet"),
  33228. default: true
  33229. },
  33230. ]
  33231. ))
  33232. characterMakers.push(() => makeCharacter(
  33233. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33234. {
  33235. front: {
  33236. height: math.unit(140, "cm"),
  33237. weight: math.unit(45, "kg"),
  33238. name: "Front",
  33239. image: {
  33240. source: "./media/characters/tayra-white/front.svg",
  33241. extra: 2229/2192,
  33242. bottom: 75/2304
  33243. }
  33244. },
  33245. },
  33246. [
  33247. {
  33248. name: "Normal",
  33249. height: math.unit(140, "cm"),
  33250. default: true
  33251. },
  33252. ]
  33253. ))
  33254. characterMakers.push(() => makeCharacter(
  33255. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33256. {
  33257. front: {
  33258. height: math.unit(4 + 5/12, "feet"),
  33259. name: "Front",
  33260. image: {
  33261. source: "./media/characters/scoop/front.svg",
  33262. extra: 1257/1136,
  33263. bottom: 69/1326
  33264. }
  33265. },
  33266. back: {
  33267. height: math.unit(4 + 5/12, "feet"),
  33268. name: "Back",
  33269. image: {
  33270. source: "./media/characters/scoop/back.svg",
  33271. extra: 1321/1152,
  33272. bottom: 32/1353
  33273. }
  33274. },
  33275. maw: {
  33276. height: math.unit(0.68, "feet"),
  33277. name: "Maw",
  33278. image: {
  33279. source: "./media/characters/scoop/maw.svg"
  33280. }
  33281. },
  33282. },
  33283. [
  33284. {
  33285. name: "Really Small",
  33286. height: math.unit(1, "mm")
  33287. },
  33288. {
  33289. name: "Micro",
  33290. height: math.unit(1, "inch")
  33291. },
  33292. {
  33293. name: "Normal",
  33294. height: math.unit(4 + 5/12, "feet"),
  33295. default: true
  33296. },
  33297. {
  33298. name: "Macro",
  33299. height: math.unit(200, "feet")
  33300. },
  33301. {
  33302. name: "Megamacro",
  33303. height: math.unit(3240, "feet")
  33304. },
  33305. {
  33306. name: "Teramacro",
  33307. height: math.unit(2500, "miles")
  33308. },
  33309. ]
  33310. ))
  33311. characterMakers.push(() => makeCharacter(
  33312. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33313. {
  33314. front: {
  33315. height: math.unit(15 + 7/12, "feet"),
  33316. name: "Front",
  33317. image: {
  33318. source: "./media/characters/saphinara/front.svg",
  33319. extra: 604/546,
  33320. bottom: 19/623
  33321. }
  33322. },
  33323. side: {
  33324. height: math.unit(15 + 7/12, "feet"),
  33325. name: "Side",
  33326. image: {
  33327. source: "./media/characters/saphinara/side.svg",
  33328. extra: 605/547,
  33329. bottom: 6/611
  33330. }
  33331. },
  33332. back: {
  33333. height: math.unit(15 + 7/12, "feet"),
  33334. name: "Back",
  33335. image: {
  33336. source: "./media/characters/saphinara/back.svg",
  33337. extra: 591/531,
  33338. bottom: 13/604
  33339. }
  33340. },
  33341. frontTail: {
  33342. height: math.unit(15 + 7/12, "feet"),
  33343. name: "Front (Full Tail)",
  33344. image: {
  33345. source: "./media/characters/saphinara/front-tail.svg",
  33346. extra: 748/547,
  33347. bottom: 66/814
  33348. }
  33349. },
  33350. },
  33351. [
  33352. {
  33353. name: "Normal",
  33354. height: math.unit(15 + 7/12, "feet"),
  33355. default: true
  33356. },
  33357. {
  33358. name: "Angry",
  33359. height: math.unit(30 + 6/12, "feet")
  33360. },
  33361. {
  33362. name: "Enraged",
  33363. height: math.unit(102 + 1/12, "feet")
  33364. },
  33365. ]
  33366. ))
  33367. characterMakers.push(() => makeCharacter(
  33368. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33369. {
  33370. front: {
  33371. height: math.unit(6 + 8/12, "feet"),
  33372. weight: math.unit(300, "lb"),
  33373. name: "Front",
  33374. image: {
  33375. source: "./media/characters/jrain/front.svg",
  33376. extra: 3039/2865,
  33377. bottom: 399/3438
  33378. }
  33379. },
  33380. back: {
  33381. height: math.unit(6 + 8/12, "feet"),
  33382. weight: math.unit(300, "lb"),
  33383. name: "Back",
  33384. image: {
  33385. source: "./media/characters/jrain/back.svg",
  33386. extra: 3089/2938,
  33387. bottom: 172/3261
  33388. }
  33389. },
  33390. head: {
  33391. height: math.unit(2.14, "feet"),
  33392. name: "Head",
  33393. image: {
  33394. source: "./media/characters/jrain/head.svg"
  33395. }
  33396. },
  33397. maw: {
  33398. height: math.unit(1.77, "feet"),
  33399. name: "Maw",
  33400. image: {
  33401. source: "./media/characters/jrain/maw.svg"
  33402. }
  33403. },
  33404. leftHand: {
  33405. height: math.unit(1.1, "feet"),
  33406. name: "Left Hand",
  33407. image: {
  33408. source: "./media/characters/jrain/left-hand.svg"
  33409. }
  33410. },
  33411. rightHand: {
  33412. height: math.unit(1.1, "feet"),
  33413. name: "Right Hand",
  33414. image: {
  33415. source: "./media/characters/jrain/right-hand.svg"
  33416. }
  33417. },
  33418. eye: {
  33419. height: math.unit(0.35, "feet"),
  33420. name: "Eye",
  33421. image: {
  33422. source: "./media/characters/jrain/eye.svg"
  33423. }
  33424. },
  33425. },
  33426. [
  33427. {
  33428. name: "Normal",
  33429. height: math.unit(6 + 8/12, "feet"),
  33430. default: true
  33431. },
  33432. {
  33433. name: "Casually Large",
  33434. height: math.unit(25, "feet")
  33435. },
  33436. {
  33437. name: "Giant",
  33438. height: math.unit(100, "feet")
  33439. },
  33440. {
  33441. name: "Kaiju",
  33442. height: math.unit(300, "feet")
  33443. },
  33444. ]
  33445. ))
  33446. characterMakers.push(() => makeCharacter(
  33447. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33448. {
  33449. dragon: {
  33450. height: math.unit(5, "meters"),
  33451. name: "Dragon",
  33452. image: {
  33453. source: "./media/characters/sabrina/dragon.svg",
  33454. extra: 3670 / 2365,
  33455. bottom: 333 / 4003
  33456. }
  33457. },
  33458. gryphon: {
  33459. height: math.unit(3, "meters"),
  33460. name: "Gryphon",
  33461. image: {
  33462. source: "./media/characters/sabrina/gryphon.svg",
  33463. extra: 1576 / 945,
  33464. bottom: 71 / 1647
  33465. }
  33466. },
  33467. snake: {
  33468. height: math.unit(12, "meters"),
  33469. name: "Snake",
  33470. image: {
  33471. source: "./media/characters/sabrina/snake.svg",
  33472. extra: 1758 / 1320,
  33473. bottom: 186 / 1944
  33474. }
  33475. },
  33476. collar: {
  33477. height: math.unit(1.86, "meters"),
  33478. name: "Collar",
  33479. image: {
  33480. source: "./media/characters/sabrina/collar.svg"
  33481. }
  33482. },
  33483. eye: {
  33484. height: math.unit(0.53, "meters"),
  33485. name: "Eye",
  33486. image: {
  33487. source: "./media/characters/sabrina/eye.svg"
  33488. }
  33489. },
  33490. foot: {
  33491. height: math.unit(1.86, "meters"),
  33492. name: "Foot",
  33493. image: {
  33494. source: "./media/characters/sabrina/foot.svg"
  33495. }
  33496. },
  33497. hand: {
  33498. height: math.unit(1.32, "meters"),
  33499. name: "Hand",
  33500. image: {
  33501. source: "./media/characters/sabrina/hand.svg"
  33502. }
  33503. },
  33504. head: {
  33505. height: math.unit(2.44, "meters"),
  33506. name: "Head",
  33507. image: {
  33508. source: "./media/characters/sabrina/head.svg"
  33509. }
  33510. },
  33511. headAngry: {
  33512. height: math.unit(2.44, "meters"),
  33513. name: "Head (Angry))",
  33514. image: {
  33515. source: "./media/characters/sabrina/head-angry.svg"
  33516. }
  33517. },
  33518. maw: {
  33519. height: math.unit(1.65, "meters"),
  33520. name: "Maw",
  33521. image: {
  33522. source: "./media/characters/sabrina/maw.svg"
  33523. }
  33524. },
  33525. spikes: {
  33526. height: math.unit(1.69, "meters"),
  33527. name: "Spikes",
  33528. image: {
  33529. source: "./media/characters/sabrina/spikes.svg"
  33530. }
  33531. },
  33532. stomach: {
  33533. height: math.unit(1.15, "meters"),
  33534. name: "Stomach",
  33535. image: {
  33536. source: "./media/characters/sabrina/stomach.svg"
  33537. }
  33538. },
  33539. tongue: {
  33540. height: math.unit(1.27, "meters"),
  33541. name: "Tongue",
  33542. image: {
  33543. source: "./media/characters/sabrina/tongue.svg"
  33544. }
  33545. },
  33546. wingDorsal: {
  33547. height: math.unit(4.85, "meters"),
  33548. name: "Wing (Dorsal)",
  33549. image: {
  33550. source: "./media/characters/sabrina/wing-dorsal.svg"
  33551. }
  33552. },
  33553. wingVentral: {
  33554. height: math.unit(4.85, "meters"),
  33555. name: "Wing (Ventral)",
  33556. image: {
  33557. source: "./media/characters/sabrina/wing-ventral.svg"
  33558. }
  33559. },
  33560. },
  33561. [
  33562. {
  33563. name: "Normal",
  33564. height: math.unit(5, "meters"),
  33565. default: true
  33566. },
  33567. ]
  33568. ))
  33569. characterMakers.push(() => makeCharacter(
  33570. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33571. {
  33572. frontMaid: {
  33573. height: math.unit(5 + 5/12, "feet"),
  33574. weight: math.unit(130, "lb"),
  33575. name: "Front (Maid)",
  33576. image: {
  33577. source: "./media/characters/midnight-tales/front-maid.svg",
  33578. extra: 489/454,
  33579. bottom: 61/550
  33580. }
  33581. },
  33582. frontFormal: {
  33583. height: math.unit(5 + 5/12, "feet"),
  33584. weight: math.unit(130, "lb"),
  33585. name: "Front (Formal)",
  33586. image: {
  33587. source: "./media/characters/midnight-tales/front-formal.svg",
  33588. extra: 489/454,
  33589. bottom: 61/550
  33590. }
  33591. },
  33592. back: {
  33593. height: math.unit(5 + 5/12, "feet"),
  33594. weight: math.unit(130, "lb"),
  33595. name: "Back",
  33596. image: {
  33597. source: "./media/characters/midnight-tales/back.svg",
  33598. extra: 498/456,
  33599. bottom: 33/531
  33600. }
  33601. },
  33602. frontBeast: {
  33603. height: math.unit(40, "feet"),
  33604. weight: math.unit(64000, "lb"),
  33605. name: "Front (Beast)",
  33606. image: {
  33607. source: "./media/characters/midnight-tales/front-beast.svg",
  33608. extra: 927/860,
  33609. bottom: 53/980
  33610. }
  33611. },
  33612. backBeast: {
  33613. height: math.unit(40, "feet"),
  33614. weight: math.unit(64000, "lb"),
  33615. name: "Back (Beast)",
  33616. image: {
  33617. source: "./media/characters/midnight-tales/back-beast.svg",
  33618. extra: 929/855,
  33619. bottom: 16/945
  33620. }
  33621. },
  33622. footBeast: {
  33623. height: math.unit(6.7, "feet"),
  33624. name: "Foot (Beast)",
  33625. image: {
  33626. source: "./media/characters/midnight-tales/foot-beast.svg"
  33627. }
  33628. },
  33629. headBeast: {
  33630. height: math.unit(8, "feet"),
  33631. name: "Head (Beast)",
  33632. image: {
  33633. source: "./media/characters/midnight-tales/head-beast.svg"
  33634. }
  33635. },
  33636. },
  33637. [
  33638. {
  33639. name: "Normal",
  33640. height: math.unit(5 + 5 / 12, "feet"),
  33641. default: true
  33642. },
  33643. {
  33644. name: "Macro",
  33645. height: math.unit(25, "feet")
  33646. },
  33647. ]
  33648. ))
  33649. characterMakers.push(() => makeCharacter(
  33650. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33651. {
  33652. front: {
  33653. height: math.unit(5 + 10/12, "feet"),
  33654. name: "Front",
  33655. image: {
  33656. source: "./media/characters/argon/front.svg",
  33657. extra: 2009/1935,
  33658. bottom: 118/2127
  33659. }
  33660. },
  33661. back: {
  33662. height: math.unit(5 + 10/12, "feet"),
  33663. name: "Back",
  33664. image: {
  33665. source: "./media/characters/argon/back.svg",
  33666. extra: 2047/1992,
  33667. bottom: 20/2067
  33668. }
  33669. },
  33670. frontDressed: {
  33671. height: math.unit(5 + 10/12, "feet"),
  33672. name: "Front (Dressed)",
  33673. image: {
  33674. source: "./media/characters/argon/front-dressed.svg",
  33675. extra: 2009/1935,
  33676. bottom: 118/2127
  33677. }
  33678. },
  33679. },
  33680. [
  33681. {
  33682. name: "Normal",
  33683. height: math.unit(5 + 10/12, "feet"),
  33684. default: true
  33685. },
  33686. ]
  33687. ))
  33688. characterMakers.push(() => makeCharacter(
  33689. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33690. {
  33691. front: {
  33692. height: math.unit(8 + 6/12, "feet"),
  33693. weight: math.unit(1150, "lb"),
  33694. name: "Front",
  33695. image: {
  33696. source: "./media/characters/kichi/front.svg",
  33697. extra: 1267/1164,
  33698. bottom: 61/1328
  33699. }
  33700. },
  33701. back: {
  33702. height: math.unit(8 + 6/12, "feet"),
  33703. weight: math.unit(1150, "lb"),
  33704. name: "Back",
  33705. image: {
  33706. source: "./media/characters/kichi/back.svg",
  33707. extra: 1273/1166,
  33708. bottom: 33/1306
  33709. }
  33710. },
  33711. },
  33712. [
  33713. {
  33714. name: "Normal",
  33715. height: math.unit(8 + 6/12, "feet"),
  33716. default: true
  33717. },
  33718. ]
  33719. ))
  33720. characterMakers.push(() => makeCharacter(
  33721. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33722. {
  33723. front: {
  33724. height: math.unit(6, "feet"),
  33725. weight: math.unit(210, "lb"),
  33726. name: "Front",
  33727. image: {
  33728. source: "./media/characters/manetel-greyscale/front.svg",
  33729. extra: 350/312,
  33730. bottom: 8/358
  33731. }
  33732. },
  33733. },
  33734. [
  33735. {
  33736. name: "Micro",
  33737. height: math.unit(2, "inches")
  33738. },
  33739. {
  33740. name: "Normal",
  33741. height: math.unit(6, "feet"),
  33742. default: true
  33743. },
  33744. {
  33745. name: "Minimacro",
  33746. height: math.unit(17, "feet")
  33747. },
  33748. {
  33749. name: "Macro",
  33750. height: math.unit(117, "feet")
  33751. },
  33752. ]
  33753. ))
  33754. characterMakers.push(() => makeCharacter(
  33755. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33756. {
  33757. side: {
  33758. height: math.unit(5 + 1/12, "feet"),
  33759. weight: math.unit(418, "lb"),
  33760. name: "Side",
  33761. image: {
  33762. source: "./media/characters/softpurr/side.svg",
  33763. extra: 1993/1945,
  33764. bottom: 134/2127
  33765. }
  33766. },
  33767. front: {
  33768. height: math.unit(5 + 1/12, "feet"),
  33769. weight: math.unit(418, "lb"),
  33770. name: "Front",
  33771. image: {
  33772. source: "./media/characters/softpurr/front.svg",
  33773. extra: 1950/1856,
  33774. bottom: 174/2124
  33775. }
  33776. },
  33777. paw: {
  33778. height: math.unit(1, "feet"),
  33779. name: "Paw",
  33780. image: {
  33781. source: "./media/characters/softpurr/paw.svg"
  33782. }
  33783. },
  33784. },
  33785. [
  33786. {
  33787. name: "Normal",
  33788. height: math.unit(5 + 1/12, "feet"),
  33789. default: true
  33790. },
  33791. ]
  33792. ))
  33793. characterMakers.push(() => makeCharacter(
  33794. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33795. {
  33796. front: {
  33797. height: math.unit(260, "meters"),
  33798. name: "Front",
  33799. image: {
  33800. source: "./media/characters/anahita/front.svg",
  33801. extra: 665/635,
  33802. bottom: 89/754
  33803. }
  33804. },
  33805. },
  33806. [
  33807. {
  33808. name: "Macro",
  33809. height: math.unit(260, "meters"),
  33810. default: true
  33811. },
  33812. ]
  33813. ))
  33814. characterMakers.push(() => makeCharacter(
  33815. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33816. {
  33817. front: {
  33818. height: math.unit(4 + 10/12, "feet"),
  33819. weight: math.unit(160, "lb"),
  33820. name: "Front",
  33821. image: {
  33822. source: "./media/characters/chip-mouse/front.svg",
  33823. extra: 3528/3408,
  33824. bottom: 0/3528
  33825. }
  33826. },
  33827. frontNsfw: {
  33828. height: math.unit(4 + 10/12, "feet"),
  33829. weight: math.unit(160, "lb"),
  33830. name: "Front (NSFW)",
  33831. image: {
  33832. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33833. extra: 3528/3408,
  33834. bottom: 0/3528
  33835. }
  33836. },
  33837. },
  33838. [
  33839. {
  33840. name: "Normal",
  33841. height: math.unit(4 + 10/12, "feet"),
  33842. default: true
  33843. },
  33844. ]
  33845. ))
  33846. characterMakers.push(() => makeCharacter(
  33847. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33848. {
  33849. side: {
  33850. height: math.unit(10, "feet"),
  33851. weight: math.unit(14000, "lb"),
  33852. name: "Side",
  33853. image: {
  33854. source: "./media/characters/kremm/side.svg",
  33855. extra: 1390/1053,
  33856. bottom: 90/1480
  33857. }
  33858. },
  33859. gut: {
  33860. height: math.unit(5.8, "feet"),
  33861. name: "Gut",
  33862. image: {
  33863. source: "./media/characters/kremm/gut.svg"
  33864. }
  33865. },
  33866. ass: {
  33867. height: math.unit(6.1, "feet"),
  33868. name: "Ass",
  33869. image: {
  33870. source: "./media/characters/kremm/ass.svg"
  33871. }
  33872. },
  33873. jaws: {
  33874. height: math.unit(2.2, "feet"),
  33875. name: "Jaws",
  33876. image: {
  33877. source: "./media/characters/kremm/jaws.svg"
  33878. }
  33879. },
  33880. dick: {
  33881. height: math.unit(4.26, "feet"),
  33882. name: "Dick",
  33883. image: {
  33884. source: "./media/characters/kremm/dick.svg"
  33885. }
  33886. },
  33887. },
  33888. [
  33889. {
  33890. name: "Normal",
  33891. height: math.unit(10, "feet"),
  33892. default: true
  33893. },
  33894. ]
  33895. ))
  33896. characterMakers.push(() => makeCharacter(
  33897. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33898. {
  33899. front: {
  33900. height: math.unit(30, "stories"),
  33901. name: "Front",
  33902. image: {
  33903. source: "./media/characters/kai/front.svg",
  33904. extra: 1892/1718,
  33905. bottom: 162/2054
  33906. }
  33907. },
  33908. },
  33909. [
  33910. {
  33911. name: "Macro",
  33912. height: math.unit(30, "stories"),
  33913. default: true
  33914. },
  33915. ]
  33916. ))
  33917. characterMakers.push(() => makeCharacter(
  33918. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33919. {
  33920. front: {
  33921. height: math.unit(6 + 4/12, "feet"),
  33922. weight: math.unit(145, "lb"),
  33923. name: "Front",
  33924. image: {
  33925. source: "./media/characters/sykes/front.svg",
  33926. extra: 1321 / 1187,
  33927. bottom: 66 / 1387
  33928. }
  33929. },
  33930. back: {
  33931. height: math.unit(6 + 4/12, "feet"),
  33932. weight: math.unit(145, "lb"),
  33933. name: "Back",
  33934. image: {
  33935. source: "./media/characters/sykes/back.svg",
  33936. extra: 1326/1181,
  33937. bottom: 31/1357
  33938. }
  33939. },
  33940. handBack: {
  33941. height: math.unit(0.9, "feet"),
  33942. name: "Hand (Back)",
  33943. image: {
  33944. source: "./media/characters/sykes/hand-back.svg"
  33945. }
  33946. },
  33947. handFront: {
  33948. height: math.unit(0.839, "feet"),
  33949. name: "Hand (Front)",
  33950. image: {
  33951. source: "./media/characters/sykes/hand-front.svg"
  33952. }
  33953. },
  33954. leftFoot: {
  33955. height: math.unit(1.2, "feet"),
  33956. name: "Foot (Left)",
  33957. image: {
  33958. source: "./media/characters/sykes/foot-left.svg"
  33959. }
  33960. },
  33961. rightFoot: {
  33962. height: math.unit(1.2, "feet"),
  33963. name: "Foot (Right)",
  33964. image: {
  33965. source: "./media/characters/sykes/foot-right.svg"
  33966. }
  33967. },
  33968. maw: {
  33969. height: math.unit(1.93, "feet"),
  33970. name: "Maw",
  33971. image: {
  33972. source: "./media/characters/sykes/maw.svg"
  33973. }
  33974. },
  33975. teeth: {
  33976. height: math.unit(0.51, "feet"),
  33977. name: "Teeth",
  33978. image: {
  33979. source: "./media/characters/sykes/teeth.svg"
  33980. }
  33981. },
  33982. tongue: {
  33983. height: math.unit(2.13, "feet"),
  33984. name: "Tongue",
  33985. image: {
  33986. source: "./media/characters/sykes/tongue.svg"
  33987. }
  33988. },
  33989. uvula: {
  33990. height: math.unit(0.16, "feet"),
  33991. name: "Uvula",
  33992. image: {
  33993. source: "./media/characters/sykes/uvula.svg"
  33994. }
  33995. },
  33996. collar: {
  33997. height: math.unit(0.287, "feet"),
  33998. name: "Collar",
  33999. image: {
  34000. source: "./media/characters/sykes/collar.svg"
  34001. }
  34002. },
  34003. },
  34004. [
  34005. {
  34006. name: "Shrunken",
  34007. height: math.unit(5, "inches")
  34008. },
  34009. {
  34010. name: "Normal",
  34011. height: math.unit(6 + 4 / 12, "feet"),
  34012. default: true
  34013. },
  34014. {
  34015. name: "Big",
  34016. height: math.unit(15, "feet")
  34017. },
  34018. ]
  34019. ))
  34020. characterMakers.push(() => makeCharacter(
  34021. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34022. {
  34023. front: {
  34024. height: math.unit(5 + 8/12, "feet"),
  34025. weight: math.unit(190, "lb"),
  34026. name: "Front",
  34027. image: {
  34028. source: "./media/characters/oven-otter/front.svg",
  34029. extra: 1809/1740,
  34030. bottom: 181/1990
  34031. }
  34032. },
  34033. back: {
  34034. height: math.unit(5 + 8/12, "feet"),
  34035. weight: math.unit(190, "lb"),
  34036. name: "Back",
  34037. image: {
  34038. source: "./media/characters/oven-otter/back.svg",
  34039. extra: 1709/1635,
  34040. bottom: 118/1827
  34041. }
  34042. },
  34043. hand: {
  34044. height: math.unit(1.07, "feet"),
  34045. name: "Hand",
  34046. image: {
  34047. source: "./media/characters/oven-otter/hand.svg"
  34048. }
  34049. },
  34050. beans: {
  34051. height: math.unit(1.74, "feet"),
  34052. name: "Beans",
  34053. image: {
  34054. source: "./media/characters/oven-otter/beans.svg"
  34055. }
  34056. },
  34057. },
  34058. [
  34059. {
  34060. name: "Micro",
  34061. height: math.unit(0.5, "inches")
  34062. },
  34063. {
  34064. name: "Normal",
  34065. height: math.unit(5 + 8/12, "feet"),
  34066. default: true
  34067. },
  34068. {
  34069. name: "Macro",
  34070. height: math.unit(250, "feet")
  34071. },
  34072. {
  34073. name: "Really High",
  34074. height: math.unit(420, "feet")
  34075. },
  34076. ]
  34077. ))
  34078. characterMakers.push(() => makeCharacter(
  34079. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34080. {
  34081. front: {
  34082. height: math.unit(5, "meters"),
  34083. weight: math.unit(292000000000000, "kg"),
  34084. name: "Front",
  34085. image: {
  34086. source: "./media/characters/devourer/front.svg",
  34087. extra: 1800/1733,
  34088. bottom: 211/2011
  34089. }
  34090. },
  34091. maw: {
  34092. height: math.unit(1.1, "meter"),
  34093. name: "Maw",
  34094. image: {
  34095. source: "./media/characters/devourer/maw.svg"
  34096. }
  34097. },
  34098. },
  34099. [
  34100. {
  34101. name: "Small",
  34102. height: math.unit(3, "meters")
  34103. },
  34104. {
  34105. name: "Large",
  34106. height: math.unit(5, "meters"),
  34107. default: true
  34108. },
  34109. ]
  34110. ))
  34111. characterMakers.push(() => makeCharacter(
  34112. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34113. {
  34114. front: {
  34115. height: math.unit(6, "feet"),
  34116. weight: math.unit(400, "lb"),
  34117. name: "Front",
  34118. image: {
  34119. source: "./media/characters/ellarby/front.svg",
  34120. extra: 1909/1763,
  34121. bottom: 80/1989
  34122. }
  34123. },
  34124. back: {
  34125. height: math.unit(6, "feet"),
  34126. weight: math.unit(400, "lb"),
  34127. name: "Back",
  34128. image: {
  34129. source: "./media/characters/ellarby/back.svg",
  34130. extra: 1914/1784,
  34131. bottom: 172/2086
  34132. }
  34133. },
  34134. },
  34135. [
  34136. {
  34137. name: "Mischief",
  34138. height: math.unit(18, "inches")
  34139. },
  34140. {
  34141. name: "Trouble",
  34142. height: math.unit(12, "feet")
  34143. },
  34144. {
  34145. name: "Havoc",
  34146. height: math.unit(200, "feet"),
  34147. default: true
  34148. },
  34149. {
  34150. name: "Pandemonium",
  34151. height: math.unit(1, "mile")
  34152. },
  34153. {
  34154. name: "Catastrophe",
  34155. height: math.unit(100, "miles")
  34156. },
  34157. ]
  34158. ))
  34159. characterMakers.push(() => makeCharacter(
  34160. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34161. {
  34162. front: {
  34163. height: math.unit(4.7, "meters"),
  34164. weight: math.unit(6500, "kg"),
  34165. name: "Front",
  34166. image: {
  34167. source: "./media/characters/vex/front.svg",
  34168. extra: 1288/1140,
  34169. bottom: 100/1388
  34170. }
  34171. },
  34172. },
  34173. [
  34174. {
  34175. name: "Normal",
  34176. height: math.unit(4.7, "meters"),
  34177. default: true
  34178. },
  34179. ]
  34180. ))
  34181. characterMakers.push(() => makeCharacter(
  34182. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34183. {
  34184. normal: {
  34185. height: math.unit(6, "feet"),
  34186. weight: math.unit(350, "lb"),
  34187. name: "Normal",
  34188. image: {
  34189. source: "./media/characters/teshy/normal.svg",
  34190. extra: 1795/1735,
  34191. bottom: 16/1811
  34192. }
  34193. },
  34194. monsterFront: {
  34195. height: math.unit(12, "feet"),
  34196. weight: math.unit(4700, "lb"),
  34197. name: "Monster (Front)",
  34198. image: {
  34199. source: "./media/characters/teshy/monster-front.svg",
  34200. extra: 2042/2034,
  34201. bottom: 128/2170
  34202. }
  34203. },
  34204. monsterSide: {
  34205. height: math.unit(12, "feet"),
  34206. weight: math.unit(4700, "lb"),
  34207. name: "Monster (Side)",
  34208. image: {
  34209. source: "./media/characters/teshy/monster-side.svg",
  34210. extra: 2067/2056,
  34211. bottom: 70/2137
  34212. }
  34213. },
  34214. monsterBack: {
  34215. height: math.unit(12, "feet"),
  34216. weight: math.unit(4700, "lb"),
  34217. name: "Monster (Back)",
  34218. image: {
  34219. source: "./media/characters/teshy/monster-back.svg",
  34220. extra: 1921/1914,
  34221. bottom: 171/2092
  34222. }
  34223. },
  34224. },
  34225. [
  34226. {
  34227. name: "Normal",
  34228. height: math.unit(6, "feet"),
  34229. default: true
  34230. },
  34231. ]
  34232. ))
  34233. characterMakers.push(() => makeCharacter(
  34234. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34235. {
  34236. front: {
  34237. height: math.unit(6, "feet"),
  34238. name: "Front",
  34239. image: {
  34240. source: "./media/characters/ramey/front.svg",
  34241. extra: 790/787,
  34242. bottom: 27/817
  34243. }
  34244. },
  34245. },
  34246. [
  34247. {
  34248. name: "Normal",
  34249. height: math.unit(6, "feet"),
  34250. default: true
  34251. },
  34252. ]
  34253. ))
  34254. characterMakers.push(() => makeCharacter(
  34255. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34256. {
  34257. front: {
  34258. height: math.unit(5 + 5/12, "feet"),
  34259. weight: math.unit(120, "lb"),
  34260. name: "Front",
  34261. image: {
  34262. source: "./media/characters/phirae/front.svg",
  34263. extra: 2491/2436,
  34264. bottom: 38/2529
  34265. }
  34266. },
  34267. },
  34268. [
  34269. {
  34270. name: "Normal",
  34271. height: math.unit(5 + 5/12, "feet"),
  34272. default: true
  34273. },
  34274. ]
  34275. ))
  34276. characterMakers.push(() => makeCharacter(
  34277. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34278. {
  34279. front: {
  34280. height: math.unit(5 + 3/12, "feet"),
  34281. name: "Front",
  34282. image: {
  34283. source: "./media/characters/stagglas/front.svg",
  34284. extra: 962/882,
  34285. bottom: 53/1015
  34286. }
  34287. },
  34288. feral: {
  34289. height: math.unit(335, "cm"),
  34290. name: "Feral",
  34291. image: {
  34292. source: "./media/characters/stagglas/feral.svg",
  34293. extra: 1732/1090,
  34294. bottom: 48/1780
  34295. }
  34296. },
  34297. },
  34298. [
  34299. {
  34300. name: "Normal",
  34301. height: math.unit(5 + 3/12, "feet"),
  34302. default: true
  34303. },
  34304. ]
  34305. ))
  34306. characterMakers.push(() => makeCharacter(
  34307. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34308. {
  34309. front: {
  34310. height: math.unit(5 + 4/12, "feet"),
  34311. weight: math.unit(145, "lb"),
  34312. name: "Front",
  34313. image: {
  34314. source: "./media/characters/starra/front.svg",
  34315. extra: 1790/1691,
  34316. bottom: 91/1881
  34317. }
  34318. },
  34319. },
  34320. [
  34321. {
  34322. name: "Normal",
  34323. height: math.unit(5 + 4/12, "feet"),
  34324. default: true
  34325. },
  34326. ]
  34327. ))
  34328. characterMakers.push(() => makeCharacter(
  34329. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34330. {
  34331. front: {
  34332. height: math.unit(2.2, "meters"),
  34333. name: "Front",
  34334. image: {
  34335. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34336. extra: 1194/1005,
  34337. bottom: 25/1219
  34338. }
  34339. },
  34340. },
  34341. [
  34342. {
  34343. name: "Normal",
  34344. height: math.unit(2.2, "meters"),
  34345. default: true
  34346. },
  34347. ]
  34348. ))
  34349. characterMakers.push(() => makeCharacter(
  34350. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34351. {
  34352. side: {
  34353. height: math.unit(8 + 2/12, "feet"),
  34354. weight: math.unit(1240, "lb"),
  34355. name: "Side",
  34356. image: {
  34357. source: "./media/characters/mika-valentine/side.svg",
  34358. extra: 2670/2501,
  34359. bottom: 250/2920
  34360. }
  34361. },
  34362. },
  34363. [
  34364. {
  34365. name: "Normal",
  34366. height: math.unit(8 + 2/12, "feet"),
  34367. default: true
  34368. },
  34369. ]
  34370. ))
  34371. characterMakers.push(() => makeCharacter(
  34372. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34373. {
  34374. front: {
  34375. height: math.unit(7 + 2/12, "feet"),
  34376. name: "Front",
  34377. image: {
  34378. source: "./media/characters/xoltol/front.svg",
  34379. extra: 2212/2124,
  34380. bottom: 84/2296
  34381. }
  34382. },
  34383. side: {
  34384. height: math.unit(7 + 2/12, "feet"),
  34385. name: "Side",
  34386. image: {
  34387. source: "./media/characters/xoltol/side.svg",
  34388. extra: 2273/2197,
  34389. bottom: 26/2299
  34390. }
  34391. },
  34392. hand: {
  34393. height: math.unit(2.5, "feet"),
  34394. name: "Hand",
  34395. image: {
  34396. source: "./media/characters/xoltol/hand.svg"
  34397. }
  34398. },
  34399. },
  34400. [
  34401. {
  34402. name: "Small-ish",
  34403. height: math.unit(5 + 11/12, "feet")
  34404. },
  34405. {
  34406. name: "Normal",
  34407. height: math.unit(7 + 2/12, "feet")
  34408. },
  34409. {
  34410. name: "\"Macro\"",
  34411. height: math.unit(14 + 9/12, "feet"),
  34412. default: true
  34413. },
  34414. {
  34415. name: "Alternate Height",
  34416. height: math.unit(20, "feet")
  34417. },
  34418. {
  34419. name: "Actually Macro",
  34420. height: math.unit(100, "feet")
  34421. },
  34422. ]
  34423. ))
  34424. characterMakers.push(() => makeCharacter(
  34425. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34426. {
  34427. front: {
  34428. height: math.unit(5 + 2/12, "feet"),
  34429. name: "Front",
  34430. image: {
  34431. source: "./media/characters/kotetsu-redwood/front.svg",
  34432. extra: 1053/942,
  34433. bottom: 60/1113
  34434. }
  34435. },
  34436. },
  34437. [
  34438. {
  34439. name: "Normal",
  34440. height: math.unit(5 + 2/12, "feet"),
  34441. default: true
  34442. },
  34443. ]
  34444. ))
  34445. characterMakers.push(() => makeCharacter(
  34446. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34447. {
  34448. front: {
  34449. height: math.unit(2.4, "meters"),
  34450. weight: math.unit(125, "kg"),
  34451. name: "Front",
  34452. image: {
  34453. source: "./media/characters/lilith/front.svg",
  34454. extra: 1590/1513,
  34455. bottom: 203/1793
  34456. }
  34457. },
  34458. },
  34459. [
  34460. {
  34461. name: "Humanoid",
  34462. height: math.unit(2.4, "meters")
  34463. },
  34464. {
  34465. name: "Normal",
  34466. height: math.unit(6, "meters"),
  34467. default: true
  34468. },
  34469. {
  34470. name: "Largest",
  34471. height: math.unit(55, "meters")
  34472. },
  34473. ]
  34474. ))
  34475. characterMakers.push(() => makeCharacter(
  34476. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34477. {
  34478. front: {
  34479. height: math.unit(8 + 4/12, "feet"),
  34480. weight: math.unit(535, "lb"),
  34481. name: "Front",
  34482. image: {
  34483. source: "./media/characters/beh'kah-bolger/front.svg",
  34484. extra: 1660/1603,
  34485. bottom: 37/1697
  34486. }
  34487. },
  34488. },
  34489. [
  34490. {
  34491. name: "Normal",
  34492. height: math.unit(8 + 4/12, "feet"),
  34493. default: true
  34494. },
  34495. {
  34496. name: "Kaiju",
  34497. height: math.unit(250, "feet")
  34498. },
  34499. {
  34500. name: "Still Growing",
  34501. height: math.unit(10, "miles")
  34502. },
  34503. {
  34504. name: "Continental",
  34505. height: math.unit(5000, "miles")
  34506. },
  34507. {
  34508. name: "Final Form",
  34509. height: math.unit(2500000, "miles")
  34510. },
  34511. ]
  34512. ))
  34513. characterMakers.push(() => makeCharacter(
  34514. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34515. {
  34516. front: {
  34517. height: math.unit(7 + 2/12, "feet"),
  34518. weight: math.unit(230, "kg"),
  34519. name: "Front",
  34520. image: {
  34521. source: "./media/characters/tatyana-milewska/front.svg",
  34522. extra: 1199/1150,
  34523. bottom: 86/1285
  34524. }
  34525. },
  34526. },
  34527. [
  34528. {
  34529. name: "Normal",
  34530. height: math.unit(7 + 2/12, "feet"),
  34531. default: true
  34532. },
  34533. {
  34534. name: "Big",
  34535. height: math.unit(12, "feet")
  34536. },
  34537. {
  34538. name: "Minimacro",
  34539. height: math.unit(20, "feet")
  34540. },
  34541. {
  34542. name: "Macro",
  34543. height: math.unit(120, "feet")
  34544. },
  34545. ]
  34546. ))
  34547. characterMakers.push(() => makeCharacter(
  34548. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34549. {
  34550. front: {
  34551. height: math.unit(7 + 8/12, "feet"),
  34552. weight: math.unit(152, "kg"),
  34553. name: "Front",
  34554. image: {
  34555. source: "./media/characters/helen-arri/front.svg",
  34556. extra: 440/423,
  34557. bottom: 14/454
  34558. }
  34559. },
  34560. back: {
  34561. height: math.unit(7 + 8/12, "feet"),
  34562. weight: math.unit(152, "kg"),
  34563. name: "Back",
  34564. image: {
  34565. source: "./media/characters/helen-arri/back.svg",
  34566. extra: 443/426,
  34567. bottom: 8/451
  34568. }
  34569. },
  34570. },
  34571. [
  34572. {
  34573. name: "Normal",
  34574. height: math.unit(7 + 8/12, "feet"),
  34575. default: true
  34576. },
  34577. {
  34578. name: "Big",
  34579. height: math.unit(14, "feet")
  34580. },
  34581. {
  34582. name: "Minimacro",
  34583. height: math.unit(24, "feet")
  34584. },
  34585. {
  34586. name: "Macro",
  34587. height: math.unit(140, "feet")
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34593. {
  34594. front: {
  34595. height: math.unit(6, "meters"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/ehanu-rehu/front.svg",
  34599. extra: 1800/1800,
  34600. bottom: 59/1859
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Normal",
  34607. height: math.unit(6, "meters"),
  34608. default: true
  34609. },
  34610. ]
  34611. ))
  34612. characterMakers.push(() => makeCharacter(
  34613. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34614. {
  34615. front: {
  34616. height: math.unit(7 + 3/12, "feet"),
  34617. name: "Front",
  34618. image: {
  34619. source: "./media/characters/renholder/front.svg",
  34620. extra: 3096/2960,
  34621. bottom: 250/3346
  34622. }
  34623. },
  34624. },
  34625. [
  34626. {
  34627. name: "Normal Bat",
  34628. height: math.unit(7 + 3/12, "feet"),
  34629. default: true
  34630. },
  34631. {
  34632. name: "Slightly Tall Bat",
  34633. height: math.unit(100, "feet")
  34634. },
  34635. {
  34636. name: "Big Bat",
  34637. height: math.unit(1000, "feet")
  34638. },
  34639. {
  34640. name: "City-Sized Bat",
  34641. height: math.unit(200000, "feet")
  34642. },
  34643. {
  34644. name: "Bigger Bat",
  34645. height: math.unit(10000, "miles")
  34646. },
  34647. {
  34648. name: "Solar Sized Bat",
  34649. height: math.unit(100, "AU")
  34650. },
  34651. {
  34652. name: "Galactic Bat",
  34653. height: math.unit(200000, "lightyears")
  34654. },
  34655. {
  34656. name: "Universally Known Bat",
  34657. height: math.unit(1, "universe")
  34658. },
  34659. ]
  34660. ))
  34661. characterMakers.push(() => makeCharacter(
  34662. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34663. {
  34664. front: {
  34665. height: math.unit(6 + 11/12, "feet"),
  34666. weight: math.unit(250, "lb"),
  34667. name: "Front",
  34668. image: {
  34669. source: "./media/characters/cookiecat/front.svg",
  34670. extra: 893/827,
  34671. bottom: 14/907
  34672. }
  34673. },
  34674. },
  34675. [
  34676. {
  34677. name: "Micro",
  34678. height: math.unit(3, "inches")
  34679. },
  34680. {
  34681. name: "Normal",
  34682. height: math.unit(6 + 11/12, "feet"),
  34683. default: true
  34684. },
  34685. {
  34686. name: "Macro",
  34687. height: math.unit(100, "feet")
  34688. },
  34689. {
  34690. name: "Macro+",
  34691. height: math.unit(404, "feet")
  34692. },
  34693. {
  34694. name: "Megamacro",
  34695. height: math.unit(165, "miles")
  34696. },
  34697. {
  34698. name: "Planetary",
  34699. height: math.unit(4600, "miles")
  34700. },
  34701. ]
  34702. ))
  34703. characterMakers.push(() => makeCharacter(
  34704. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34705. {
  34706. front: {
  34707. height: math.unit(10 + 3/12, "feet"),
  34708. weight: math.unit(1500, "lb"),
  34709. name: "Front",
  34710. image: {
  34711. source: "./media/characters/tux-kusanagi/front.svg",
  34712. extra: 944/840,
  34713. bottom: 39/983
  34714. }
  34715. },
  34716. back: {
  34717. height: math.unit(10 + 3/12, "feet"),
  34718. weight: math.unit(1500, "lb"),
  34719. name: "Back",
  34720. image: {
  34721. source: "./media/characters/tux-kusanagi/back.svg",
  34722. extra: 941/842,
  34723. bottom: 28/969
  34724. }
  34725. },
  34726. rump: {
  34727. height: math.unit(5.25, "feet"),
  34728. name: "Rump",
  34729. image: {
  34730. source: "./media/characters/tux-kusanagi/rump.svg"
  34731. }
  34732. },
  34733. beak: {
  34734. height: math.unit(1.54, "feet"),
  34735. name: "Beak",
  34736. image: {
  34737. source: "./media/characters/tux-kusanagi/beak.svg"
  34738. }
  34739. },
  34740. },
  34741. [
  34742. {
  34743. name: "Normal",
  34744. height: math.unit(10 + 3/12, "feet"),
  34745. default: true
  34746. },
  34747. ]
  34748. ))
  34749. characterMakers.push(() => makeCharacter(
  34750. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34751. {
  34752. front: {
  34753. height: math.unit(58, "feet"),
  34754. weight: math.unit(200, "tons"),
  34755. name: "Front",
  34756. image: {
  34757. source: "./media/characters/uzarmazari/front.svg",
  34758. extra: 1575/1455,
  34759. bottom: 152/1727
  34760. }
  34761. },
  34762. back: {
  34763. height: math.unit(58, "feet"),
  34764. weight: math.unit(200, "tons"),
  34765. name: "Back",
  34766. image: {
  34767. source: "./media/characters/uzarmazari/back.svg",
  34768. extra: 1585/1510,
  34769. bottom: 157/1742
  34770. }
  34771. },
  34772. head: {
  34773. height: math.unit(26, "feet"),
  34774. name: "Head",
  34775. image: {
  34776. source: "./media/characters/uzarmazari/head.svg"
  34777. }
  34778. },
  34779. },
  34780. [
  34781. {
  34782. name: "Normal",
  34783. height: math.unit(58, "feet"),
  34784. default: true
  34785. },
  34786. ]
  34787. ))
  34788. characterMakers.push(() => makeCharacter(
  34789. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34790. {
  34791. side: {
  34792. height: math.unit(15, "feet"),
  34793. name: "Side",
  34794. image: {
  34795. source: "./media/characters/akitu/side.svg",
  34796. extra: 1421/1321,
  34797. bottom: 157/1578
  34798. }
  34799. },
  34800. front: {
  34801. height: math.unit(15, "feet"),
  34802. name: "Front",
  34803. image: {
  34804. source: "./media/characters/akitu/front.svg",
  34805. extra: 1435/1326,
  34806. bottom: 232/1667
  34807. }
  34808. },
  34809. },
  34810. [
  34811. {
  34812. name: "Normal",
  34813. height: math.unit(15, "feet"),
  34814. default: true
  34815. },
  34816. ]
  34817. ))
  34818. characterMakers.push(() => makeCharacter(
  34819. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34820. {
  34821. front: {
  34822. height: math.unit(10 + 8/12, "feet"),
  34823. name: "Front",
  34824. image: {
  34825. source: "./media/characters/azalie-croixland/front.svg",
  34826. extra: 1972/1856,
  34827. bottom: 31/2003
  34828. }
  34829. },
  34830. },
  34831. [
  34832. {
  34833. name: "Original Height",
  34834. height: math.unit(5 + 4/12, "feet")
  34835. },
  34836. {
  34837. name: "Normal Height",
  34838. height: math.unit(10 + 8/12, "feet"),
  34839. default: true
  34840. },
  34841. ]
  34842. ))
  34843. characterMakers.push(() => makeCharacter(
  34844. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34845. {
  34846. side: {
  34847. height: math.unit(7 + 1/12, "feet"),
  34848. weight: math.unit(245, "lb"),
  34849. name: "Side",
  34850. image: {
  34851. source: "./media/characters/kavus-kazian/side.svg",
  34852. extra: 349/342,
  34853. bottom: 15/364
  34854. }
  34855. },
  34856. },
  34857. [
  34858. {
  34859. name: "Normal",
  34860. height: math.unit(7 + 1/12, "feet"),
  34861. default: true
  34862. },
  34863. ]
  34864. ))
  34865. characterMakers.push(() => makeCharacter(
  34866. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34867. {
  34868. normal: {
  34869. height: math.unit(5 + 11/12, "feet"),
  34870. name: "Normal",
  34871. image: {
  34872. source: "./media/characters/moonlight-rose/normal.svg",
  34873. extra: 1979/1835,
  34874. bottom: 14/1993
  34875. }
  34876. },
  34877. demon: {
  34878. height: math.unit(5, "km"),
  34879. name: "Demon",
  34880. image: {
  34881. source: "./media/characters/moonlight-rose/demon.svg",
  34882. extra: 986/916,
  34883. bottom: 28/1014
  34884. }
  34885. },
  34886. },
  34887. [
  34888. {
  34889. name: "\"Natural\" height",
  34890. height: math.unit(5 + 11/12, "feet")
  34891. },
  34892. {
  34893. name: "Comfortable Size",
  34894. height: math.unit(40, "meters")
  34895. },
  34896. {
  34897. name: "Common Size",
  34898. height: math.unit(50, "km"),
  34899. default: true
  34900. },
  34901. {
  34902. name: "Demonic",
  34903. height: math.unit(1.24415e+21, "meters")
  34904. },
  34905. ]
  34906. ))
  34907. characterMakers.push(() => makeCharacter(
  34908. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34909. {
  34910. front: {
  34911. height: math.unit(16, "feet"),
  34912. weight: math.unit(610, "kg"),
  34913. name: "Front",
  34914. image: {
  34915. source: "./media/characters/huckle/front.svg",
  34916. extra: 1731/1625,
  34917. bottom: 33/1764
  34918. }
  34919. },
  34920. back: {
  34921. height: math.unit(16, "feet"),
  34922. weight: math.unit(610, "kg"),
  34923. name: "Back",
  34924. image: {
  34925. source: "./media/characters/huckle/back.svg",
  34926. extra: 1738/1651,
  34927. bottom: 37/1775
  34928. }
  34929. },
  34930. laughing: {
  34931. height: math.unit(3.75, "feet"),
  34932. name: "Laughing",
  34933. image: {
  34934. source: "./media/characters/huckle/laughing.svg"
  34935. }
  34936. },
  34937. angry: {
  34938. height: math.unit(4.15, "feet"),
  34939. name: "Angry",
  34940. image: {
  34941. source: "./media/characters/huckle/angry.svg"
  34942. }
  34943. },
  34944. },
  34945. [
  34946. {
  34947. name: "Normal",
  34948. height: math.unit(16, "feet"),
  34949. default: true
  34950. },
  34951. {
  34952. name: "Mini Macro",
  34953. height: math.unit(463, "feet")
  34954. },
  34955. {
  34956. name: "Macro",
  34957. height: math.unit(1680, "meters")
  34958. },
  34959. {
  34960. name: "Mega Macro",
  34961. height: math.unit(175, "km")
  34962. },
  34963. {
  34964. name: "Terra Macro",
  34965. height: math.unit(32, "gigameters")
  34966. },
  34967. {
  34968. name: "Multiverse+",
  34969. height: math.unit(2.56e23, "yottameters")
  34970. },
  34971. ]
  34972. ))
  34973. characterMakers.push(() => makeCharacter(
  34974. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34975. {
  34976. front: {
  34977. height: math.unit(6 + 9/12, "feet"),
  34978. weight: math.unit(280, "lb"),
  34979. name: "Front",
  34980. image: {
  34981. source: "./media/characters/candy/front.svg",
  34982. extra: 234/217,
  34983. bottom: 11/245
  34984. }
  34985. },
  34986. },
  34987. [
  34988. {
  34989. name: "Really Small",
  34990. height: math.unit(0.1, "nm")
  34991. },
  34992. {
  34993. name: "Micro",
  34994. height: math.unit(2, "inches")
  34995. },
  34996. {
  34997. name: "Normal",
  34998. height: math.unit(6 + 9/12, "feet"),
  34999. default: true
  35000. },
  35001. {
  35002. name: "Small Macro",
  35003. height: math.unit(69, "feet")
  35004. },
  35005. {
  35006. name: "Macro",
  35007. height: math.unit(160, "feet")
  35008. },
  35009. {
  35010. name: "Megamacro",
  35011. height: math.unit(22000, "miles")
  35012. },
  35013. {
  35014. name: "Gigamacro",
  35015. height: math.unit(50000, "miles")
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35021. {
  35022. front: {
  35023. height: math.unit(4, "feet"),
  35024. weight: math.unit(90, "lb"),
  35025. name: "Front",
  35026. image: {
  35027. source: "./media/characters/joey-mcdonald/front.svg",
  35028. extra: 1059/852,
  35029. bottom: 33/1092
  35030. }
  35031. },
  35032. back: {
  35033. height: math.unit(4, "feet"),
  35034. weight: math.unit(90, "lb"),
  35035. name: "Back",
  35036. image: {
  35037. source: "./media/characters/joey-mcdonald/back.svg",
  35038. extra: 1077/879,
  35039. bottom: 5/1082
  35040. }
  35041. },
  35042. frontKobold: {
  35043. height: math.unit(4, "feet"),
  35044. weight: math.unit(100, "lb"),
  35045. name: "Front-kobold",
  35046. image: {
  35047. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35048. extra: 1480/1367,
  35049. bottom: 0/1480
  35050. }
  35051. },
  35052. backKobold: {
  35053. height: math.unit(4, "feet"),
  35054. weight: math.unit(100, "lb"),
  35055. name: "Back-kobold",
  35056. image: {
  35057. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35058. extra: 1449/1361,
  35059. bottom: 0/1449
  35060. }
  35061. },
  35062. },
  35063. [
  35064. {
  35065. name: "Normal",
  35066. height: math.unit(4, "feet"),
  35067. default: true
  35068. },
  35069. ]
  35070. ))
  35071. characterMakers.push(() => makeCharacter(
  35072. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35073. {
  35074. front: {
  35075. height: math.unit(12 + 6/12, "feet"),
  35076. name: "Front",
  35077. image: {
  35078. source: "./media/characters/kass-lockheed/front.svg",
  35079. extra: 354/343,
  35080. bottom: 9/363
  35081. }
  35082. },
  35083. back: {
  35084. height: math.unit(12 + 6/12, "feet"),
  35085. name: "Back",
  35086. image: {
  35087. source: "./media/characters/kass-lockheed/back.svg",
  35088. extra: 364/352,
  35089. bottom: 3/367
  35090. }
  35091. },
  35092. dick: {
  35093. height: math.unit(3.12, "feet"),
  35094. name: "Dick",
  35095. image: {
  35096. source: "./media/characters/kass-lockheed/dick.svg"
  35097. }
  35098. },
  35099. head: {
  35100. height: math.unit(2.6, "feet"),
  35101. name: "Head",
  35102. image: {
  35103. source: "./media/characters/kass-lockheed/head.svg"
  35104. }
  35105. },
  35106. bleh: {
  35107. height: math.unit(2.85, "feet"),
  35108. name: "Bleh",
  35109. image: {
  35110. source: "./media/characters/kass-lockheed/bleh.svg"
  35111. }
  35112. },
  35113. smug: {
  35114. height: math.unit(2.85, "feet"),
  35115. name: "Smug",
  35116. image: {
  35117. source: "./media/characters/kass-lockheed/smug.svg"
  35118. }
  35119. },
  35120. },
  35121. [
  35122. {
  35123. name: "Normal",
  35124. height: math.unit(12 + 6/12, "feet"),
  35125. default: true
  35126. },
  35127. ]
  35128. ))
  35129. characterMakers.push(() => makeCharacter(
  35130. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35131. {
  35132. front: {
  35133. height: math.unit(6 + 2/12, "feet"),
  35134. name: "Front",
  35135. image: {
  35136. source: "./media/characters/taylor/front.svg",
  35137. extra: 639/495,
  35138. bottom: 12/651
  35139. }
  35140. },
  35141. },
  35142. [
  35143. {
  35144. name: "Normal",
  35145. height: math.unit(6 + 2/12, "feet"),
  35146. default: true
  35147. },
  35148. {
  35149. name: "Big",
  35150. height: math.unit(15, "feet")
  35151. },
  35152. {
  35153. name: "Lorg",
  35154. height: math.unit(80, "feet")
  35155. },
  35156. {
  35157. name: "Too Lorg",
  35158. height: math.unit(120, "feet")
  35159. },
  35160. ]
  35161. ))
  35162. characterMakers.push(() => makeCharacter(
  35163. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35164. {
  35165. front: {
  35166. height: math.unit(15, "feet"),
  35167. name: "Front",
  35168. image: {
  35169. source: "./media/characters/kaizer/front.svg",
  35170. extra: 1612/1436,
  35171. bottom: 43/1655
  35172. }
  35173. },
  35174. },
  35175. [
  35176. {
  35177. name: "Normal",
  35178. height: math.unit(15, "feet"),
  35179. default: true
  35180. },
  35181. ]
  35182. ))
  35183. characterMakers.push(() => makeCharacter(
  35184. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35185. {
  35186. front: {
  35187. height: math.unit(2, "feet"),
  35188. weight: math.unit(30, "lb"),
  35189. name: "Front",
  35190. image: {
  35191. source: "./media/characters/sandy/front.svg",
  35192. extra: 1439/1307,
  35193. bottom: 194/1633
  35194. }
  35195. },
  35196. },
  35197. [
  35198. {
  35199. name: "Normal",
  35200. height: math.unit(2, "feet"),
  35201. default: true
  35202. },
  35203. ]
  35204. ))
  35205. characterMakers.push(() => makeCharacter(
  35206. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35207. {
  35208. front: {
  35209. height: math.unit(3, "feet"),
  35210. name: "Front",
  35211. image: {
  35212. source: "./media/characters/mellvi/front.svg",
  35213. extra: 1831/1630,
  35214. bottom: 58/1889
  35215. }
  35216. },
  35217. },
  35218. [
  35219. {
  35220. name: "Normal",
  35221. height: math.unit(3, "feet"),
  35222. default: true
  35223. },
  35224. ]
  35225. ))
  35226. characterMakers.push(() => makeCharacter(
  35227. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35228. {
  35229. front: {
  35230. height: math.unit(5 + 11/12, "feet"),
  35231. weight: math.unit(200, "lb"),
  35232. name: "Front",
  35233. image: {
  35234. source: "./media/characters/shirou/front.svg",
  35235. extra: 2491/2383,
  35236. bottom: 189/2680
  35237. }
  35238. },
  35239. back: {
  35240. height: math.unit(5 + 11/12, "feet"),
  35241. weight: math.unit(200, "lb"),
  35242. name: "Back",
  35243. image: {
  35244. source: "./media/characters/shirou/back.svg",
  35245. extra: 2554/2450,
  35246. bottom: 76/2630
  35247. }
  35248. },
  35249. },
  35250. [
  35251. {
  35252. name: "Normal",
  35253. height: math.unit(5 + 11/12, "feet"),
  35254. default: true
  35255. },
  35256. ]
  35257. ))
  35258. characterMakers.push(() => makeCharacter(
  35259. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35260. {
  35261. front: {
  35262. height: math.unit(6 + 3/12, "feet"),
  35263. weight: math.unit(177, "lb"),
  35264. name: "Front",
  35265. image: {
  35266. source: "./media/characters/noryu/front.svg",
  35267. extra: 973/885,
  35268. bottom: 10/983
  35269. }
  35270. },
  35271. },
  35272. [
  35273. {
  35274. name: "Normal",
  35275. height: math.unit(6 + 3/12, "feet"),
  35276. default: true
  35277. },
  35278. ]
  35279. ))
  35280. characterMakers.push(() => makeCharacter(
  35281. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35282. {
  35283. front: {
  35284. height: math.unit(5 + 6/12, "feet"),
  35285. weight: math.unit(170, "lb"),
  35286. name: "Front",
  35287. image: {
  35288. source: "./media/characters/mevolas-rubenido/front.svg",
  35289. extra: 2109/1901,
  35290. bottom: 96/2205
  35291. }
  35292. },
  35293. },
  35294. [
  35295. {
  35296. name: "Normal",
  35297. height: math.unit(5 + 6/12, "feet"),
  35298. default: true
  35299. },
  35300. ]
  35301. ))
  35302. characterMakers.push(() => makeCharacter(
  35303. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35304. {
  35305. front: {
  35306. height: math.unit(100, "feet"),
  35307. name: "Front",
  35308. image: {
  35309. source: "./media/characters/dee/front.svg",
  35310. extra: 2153/2036,
  35311. bottom: 59/2212
  35312. }
  35313. },
  35314. back: {
  35315. height: math.unit(100, "feet"),
  35316. name: "Back",
  35317. image: {
  35318. source: "./media/characters/dee/back.svg",
  35319. extra: 2183/2058,
  35320. bottom: 75/2258
  35321. }
  35322. },
  35323. foot: {
  35324. height: math.unit(19.43, "feet"),
  35325. name: "Foot",
  35326. image: {
  35327. source: "./media/characters/dee/foot.svg"
  35328. }
  35329. },
  35330. hoof: {
  35331. height: math.unit(20.6, "feet"),
  35332. name: "Hoof",
  35333. image: {
  35334. source: "./media/characters/dee/hoof.svg"
  35335. }
  35336. },
  35337. },
  35338. [
  35339. {
  35340. name: "Macro",
  35341. height: math.unit(100, "feet"),
  35342. default: true
  35343. },
  35344. ]
  35345. ))
  35346. characterMakers.push(() => makeCharacter(
  35347. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35348. {
  35349. front: {
  35350. height: math.unit(5 + 6/12, "feet"),
  35351. name: "Front",
  35352. image: {
  35353. source: "./media/characters/teh/front.svg",
  35354. extra: 1002/847,
  35355. bottom: 62/1064
  35356. }
  35357. },
  35358. },
  35359. [
  35360. {
  35361. name: "Normal",
  35362. height: math.unit(5 + 6/12, "feet"),
  35363. default: true
  35364. },
  35365. ]
  35366. ))
  35367. characterMakers.push(() => makeCharacter(
  35368. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35369. {
  35370. side: {
  35371. height: math.unit(6 + 1/12, "feet"),
  35372. weight: math.unit(204, "lb"),
  35373. name: "Side",
  35374. image: {
  35375. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35376. extra: 974/775,
  35377. bottom: 169/1143
  35378. }
  35379. },
  35380. sitting: {
  35381. height: math.unit(6 + 2/12, "feet"),
  35382. weight: math.unit(204, "lb"),
  35383. name: "Sitting",
  35384. image: {
  35385. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35386. extra: 1175/964,
  35387. bottom: 378/1553
  35388. }
  35389. },
  35390. },
  35391. [
  35392. {
  35393. name: "Normal",
  35394. height: math.unit(6 + 1/12, "feet"),
  35395. default: true
  35396. },
  35397. ]
  35398. ))
  35399. characterMakers.push(() => makeCharacter(
  35400. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35401. {
  35402. front: {
  35403. height: math.unit(6, "inches"),
  35404. name: "Front",
  35405. image: {
  35406. source: "./media/characters/tululi/front.svg",
  35407. extra: 1997/1876,
  35408. bottom: 20/2017
  35409. }
  35410. },
  35411. },
  35412. [
  35413. {
  35414. name: "Normal",
  35415. height: math.unit(6, "inches"),
  35416. default: true
  35417. },
  35418. ]
  35419. ))
  35420. characterMakers.push(() => makeCharacter(
  35421. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35422. {
  35423. front: {
  35424. height: math.unit(4 + 1/12, "feet"),
  35425. name: "Front",
  35426. image: {
  35427. source: "./media/characters/star/front.svg",
  35428. extra: 1493/1189,
  35429. bottom: 48/1541
  35430. }
  35431. },
  35432. },
  35433. [
  35434. {
  35435. name: "Normal",
  35436. height: math.unit(4 + 1/12, "feet"),
  35437. default: true
  35438. },
  35439. ]
  35440. ))
  35441. characterMakers.push(() => makeCharacter(
  35442. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35443. {
  35444. front: {
  35445. height: math.unit(6 + 3/12, "feet"),
  35446. name: "Front",
  35447. image: {
  35448. source: "./media/characters/comet/front.svg",
  35449. extra: 1681/1462,
  35450. bottom: 26/1707
  35451. }
  35452. },
  35453. },
  35454. [
  35455. {
  35456. name: "Normal",
  35457. height: math.unit(6 + 3/12, "feet"),
  35458. default: true
  35459. },
  35460. ]
  35461. ))
  35462. characterMakers.push(() => makeCharacter(
  35463. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35464. {
  35465. front: {
  35466. height: math.unit(950, "feet"),
  35467. name: "Front",
  35468. image: {
  35469. source: "./media/characters/vortex/front.svg",
  35470. extra: 1497/1434,
  35471. bottom: 56/1553
  35472. }
  35473. },
  35474. maw: {
  35475. height: math.unit(285, "feet"),
  35476. name: "Maw",
  35477. image: {
  35478. source: "./media/characters/vortex/maw.svg"
  35479. }
  35480. },
  35481. },
  35482. [
  35483. {
  35484. name: "Macro",
  35485. height: math.unit(950, "feet"),
  35486. default: true
  35487. },
  35488. ]
  35489. ))
  35490. characterMakers.push(() => makeCharacter(
  35491. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35492. {
  35493. front: {
  35494. height: math.unit(600, "feet"),
  35495. weight: math.unit(0.02, "grams"),
  35496. name: "Front",
  35497. image: {
  35498. source: "./media/characters/doodle/front.svg",
  35499. extra: 1578/1413,
  35500. bottom: 37/1615
  35501. }
  35502. },
  35503. },
  35504. [
  35505. {
  35506. name: "Macro",
  35507. height: math.unit(600, "feet"),
  35508. default: true
  35509. },
  35510. ]
  35511. ))
  35512. characterMakers.push(() => makeCharacter(
  35513. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35514. {
  35515. front: {
  35516. height: math.unit(6 + 6/12, "feet"),
  35517. name: "Front",
  35518. image: {
  35519. source: "./media/characters/jai/front.svg",
  35520. extra: 1645/1534,
  35521. bottom: 115/1760
  35522. }
  35523. },
  35524. },
  35525. [
  35526. {
  35527. name: "Normal",
  35528. height: math.unit(6 + 6/12, "feet"),
  35529. default: true
  35530. },
  35531. ]
  35532. ))
  35533. characterMakers.push(() => makeCharacter(
  35534. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35535. {
  35536. front: {
  35537. height: math.unit(6 + 8/12, "feet"),
  35538. name: "Front",
  35539. image: {
  35540. source: "./media/characters/pixel/front.svg",
  35541. extra: 1900/1735,
  35542. bottom: 63/1963
  35543. }
  35544. },
  35545. },
  35546. [
  35547. {
  35548. name: "Normal",
  35549. height: math.unit(6 + 8/12, "feet"),
  35550. default: true
  35551. },
  35552. ]
  35553. ))
  35554. characterMakers.push(() => makeCharacter(
  35555. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35556. {
  35557. back: {
  35558. height: math.unit(4 + 1/12, "feet"),
  35559. weight: math.unit(75, "lb"),
  35560. name: "Back",
  35561. image: {
  35562. source: "./media/characters/rhett/back.svg",
  35563. extra: 930/878,
  35564. bottom: 25/955
  35565. }
  35566. },
  35567. front: {
  35568. height: math.unit(4 + 1/12, "feet"),
  35569. weight: math.unit(75, "lb"),
  35570. name: "Front",
  35571. image: {
  35572. source: "./media/characters/rhett/front.svg",
  35573. extra: 1682/1586,
  35574. bottom: 92/1774
  35575. }
  35576. },
  35577. },
  35578. [
  35579. {
  35580. name: "Micro",
  35581. height: math.unit(8, "inches")
  35582. },
  35583. {
  35584. name: "Tiny",
  35585. height: math.unit(2, "feet")
  35586. },
  35587. {
  35588. name: "Normal",
  35589. height: math.unit(4 + 1/12, "feet"),
  35590. default: true
  35591. },
  35592. ]
  35593. ))
  35594. characterMakers.push(() => makeCharacter(
  35595. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35596. {
  35597. front: {
  35598. height: math.unit(3 + 3/12, "feet"),
  35599. name: "Front",
  35600. image: {
  35601. source: "./media/characters/penny/front.svg",
  35602. extra: 1406/1311,
  35603. bottom: 26/1432
  35604. }
  35605. },
  35606. },
  35607. [
  35608. {
  35609. name: "Normal",
  35610. height: math.unit(3 + 3/12, "feet"),
  35611. default: true
  35612. },
  35613. ]
  35614. ))
  35615. characterMakers.push(() => makeCharacter(
  35616. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35617. {
  35618. front: {
  35619. height: math.unit(4 + 11/12, "feet"),
  35620. name: "Front",
  35621. image: {
  35622. source: "./media/characters/monty/front.svg",
  35623. extra: 1479/1209,
  35624. bottom: 0/1479
  35625. }
  35626. },
  35627. },
  35628. [
  35629. {
  35630. name: "Normal",
  35631. height: math.unit(4 + 11/12, "feet"),
  35632. default: true
  35633. },
  35634. ]
  35635. ))
  35636. characterMakers.push(() => makeCharacter(
  35637. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35638. {
  35639. front: {
  35640. height: math.unit(8 + 4/12, "feet"),
  35641. name: "Front",
  35642. image: {
  35643. source: "./media/characters/sterling/front.svg",
  35644. extra: 1420/1236,
  35645. bottom: 27/1447
  35646. }
  35647. },
  35648. },
  35649. [
  35650. {
  35651. name: "Normal",
  35652. height: math.unit(8 + 4/12, "feet"),
  35653. default: true
  35654. },
  35655. ]
  35656. ))
  35657. characterMakers.push(() => makeCharacter(
  35658. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35659. {
  35660. front: {
  35661. height: math.unit(15, "feet"),
  35662. name: "Front",
  35663. image: {
  35664. source: "./media/characters/marble/front.svg",
  35665. extra: 973/937,
  35666. bottom: 32/1005
  35667. }
  35668. },
  35669. },
  35670. [
  35671. {
  35672. name: "Normal",
  35673. height: math.unit(15, "feet"),
  35674. default: true
  35675. },
  35676. ]
  35677. ))
  35678. characterMakers.push(() => makeCharacter(
  35679. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35680. {
  35681. front: {
  35682. height: math.unit(3, "inches"),
  35683. name: "Front",
  35684. image: {
  35685. source: "./media/characters/powder/front.svg",
  35686. extra: 1504/1334,
  35687. bottom: 518/2022
  35688. }
  35689. },
  35690. },
  35691. [
  35692. {
  35693. name: "Normal",
  35694. height: math.unit(3, "inches"),
  35695. default: true
  35696. },
  35697. ]
  35698. ))
  35699. characterMakers.push(() => makeCharacter(
  35700. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35701. {
  35702. front: {
  35703. height: math.unit(4 + 5/12, "feet"),
  35704. name: "Front",
  35705. image: {
  35706. source: "./media/characters/joey-raccoon/front.svg",
  35707. extra: 1273/1197,
  35708. bottom: 0/1273
  35709. }
  35710. },
  35711. },
  35712. [
  35713. {
  35714. name: "Normal",
  35715. height: math.unit(4 + 5/12, "feet"),
  35716. default: true
  35717. },
  35718. ]
  35719. ))
  35720. characterMakers.push(() => makeCharacter(
  35721. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35722. {
  35723. front: {
  35724. height: math.unit(8 + 4/12, "feet"),
  35725. name: "Front",
  35726. image: {
  35727. source: "./media/characters/vick/front.svg",
  35728. extra: 2187/2118,
  35729. bottom: 47/2234
  35730. }
  35731. },
  35732. },
  35733. [
  35734. {
  35735. name: "Normal",
  35736. height: math.unit(8 + 4/12, "feet"),
  35737. default: true
  35738. },
  35739. ]
  35740. ))
  35741. characterMakers.push(() => makeCharacter(
  35742. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35743. {
  35744. front: {
  35745. height: math.unit(5 + 5/12, "feet"),
  35746. name: "Front",
  35747. image: {
  35748. source: "./media/characters/mitsy/front.svg",
  35749. extra: 1842/1695,
  35750. bottom: 0/1842
  35751. }
  35752. },
  35753. },
  35754. [
  35755. {
  35756. name: "Normal",
  35757. height: math.unit(5 + 5/12, "feet"),
  35758. default: true
  35759. },
  35760. ]
  35761. ))
  35762. characterMakers.push(() => makeCharacter(
  35763. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35764. {
  35765. front: {
  35766. height: math.unit(6 + 3/12, "feet"),
  35767. name: "Front",
  35768. image: {
  35769. source: "./media/characters/silvy/front.svg",
  35770. extra: 1995/1836,
  35771. bottom: 225/2220
  35772. }
  35773. },
  35774. },
  35775. [
  35776. {
  35777. name: "Normal",
  35778. height: math.unit(6 + 3/12, "feet"),
  35779. default: true
  35780. },
  35781. ]
  35782. ))
  35783. characterMakers.push(() => makeCharacter(
  35784. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35785. {
  35786. front: {
  35787. height: math.unit(3 + 8/12, "feet"),
  35788. name: "Front",
  35789. image: {
  35790. source: "./media/characters/rodney/front.svg",
  35791. extra: 1956/1747,
  35792. bottom: 31/1987
  35793. }
  35794. },
  35795. frontDressed: {
  35796. height: math.unit(2.9, "feet"),
  35797. name: "Front (Dressed)",
  35798. image: {
  35799. source: "./media/characters/rodney/front-dressed.svg",
  35800. extra: 1382/1241,
  35801. bottom: 385/1767
  35802. }
  35803. },
  35804. },
  35805. [
  35806. {
  35807. name: "Normal",
  35808. height: math.unit(3 + 8/12, "feet"),
  35809. default: true
  35810. },
  35811. ]
  35812. ))
  35813. characterMakers.push(() => makeCharacter(
  35814. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35815. {
  35816. front: {
  35817. height: math.unit(5 + 9/12, "feet"),
  35818. weight: math.unit(194, "lbs"),
  35819. name: "Front",
  35820. image: {
  35821. source: "./media/characters/zakail-sudekai/front.svg",
  35822. extra: 2696/2533,
  35823. bottom: 248/2944
  35824. }
  35825. },
  35826. maw: {
  35827. height: math.unit(1.35, "feet"),
  35828. name: "Maw",
  35829. image: {
  35830. source: "./media/characters/zakail-sudekai/maw.svg"
  35831. }
  35832. },
  35833. },
  35834. [
  35835. {
  35836. name: "Normal",
  35837. height: math.unit(5 + 9/12, "feet"),
  35838. default: true
  35839. },
  35840. ]
  35841. ))
  35842. characterMakers.push(() => makeCharacter(
  35843. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35844. {
  35845. front: {
  35846. height: math.unit(8 + 4/12, "feet"),
  35847. weight: math.unit(1200, "lb"),
  35848. name: "Front",
  35849. image: {
  35850. source: "./media/characters/eleanor/front.svg",
  35851. extra: 1226/1192,
  35852. bottom: 52/1278
  35853. }
  35854. },
  35855. back: {
  35856. height: math.unit(8 + 4/12, "feet"),
  35857. weight: math.unit(1200, "lb"),
  35858. name: "Back",
  35859. image: {
  35860. source: "./media/characters/eleanor/back.svg",
  35861. extra: 1242/1184,
  35862. bottom: 60/1302
  35863. }
  35864. },
  35865. head: {
  35866. height: math.unit(2.62, "feet"),
  35867. name: "Head",
  35868. image: {
  35869. source: "./media/characters/eleanor/head.svg"
  35870. }
  35871. },
  35872. },
  35873. [
  35874. {
  35875. name: "Normal",
  35876. height: math.unit(8 + 4/12, "feet"),
  35877. default: true
  35878. },
  35879. ]
  35880. ))
  35881. characterMakers.push(() => makeCharacter(
  35882. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35883. {
  35884. front: {
  35885. height: math.unit(8 + 4/12, "feet"),
  35886. weight: math.unit(750, "lb"),
  35887. name: "Front",
  35888. image: {
  35889. source: "./media/characters/tanya/front.svg",
  35890. extra: 1749/1615,
  35891. bottom: 33/1782
  35892. }
  35893. },
  35894. },
  35895. [
  35896. {
  35897. name: "Normal",
  35898. height: math.unit(8 + 4/12, "feet"),
  35899. default: true
  35900. },
  35901. ]
  35902. ))
  35903. characterMakers.push(() => makeCharacter(
  35904. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35905. {
  35906. front: {
  35907. height: math.unit(5, "feet"),
  35908. weight: math.unit(225, "lb"),
  35909. name: "Front",
  35910. image: {
  35911. source: "./media/characters/cindy/front.svg",
  35912. extra: 1320/1250,
  35913. bottom: 42/1362
  35914. }
  35915. },
  35916. frontDressed: {
  35917. height: math.unit(5, "feet"),
  35918. weight: math.unit(225, "lb"),
  35919. name: "Front (Dressed)",
  35920. image: {
  35921. source: "./media/characters/cindy/front-dressed.svg",
  35922. extra: 1320/1250,
  35923. bottom: 42/1362
  35924. }
  35925. },
  35926. back: {
  35927. height: math.unit(5, "feet"),
  35928. weight: math.unit(225, "lb"),
  35929. name: "Back",
  35930. image: {
  35931. source: "./media/characters/cindy/back.svg",
  35932. extra: 1384/1346,
  35933. bottom: 14/1398
  35934. }
  35935. },
  35936. },
  35937. [
  35938. {
  35939. name: "Normal",
  35940. height: math.unit(5, "feet"),
  35941. default: true
  35942. },
  35943. ]
  35944. ))
  35945. characterMakers.push(() => makeCharacter(
  35946. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35947. {
  35948. front: {
  35949. height: math.unit(6 + 9/12, "feet"),
  35950. weight: math.unit(440, "lb"),
  35951. name: "Front",
  35952. image: {
  35953. source: "./media/characters/wilbur-owen/front.svg",
  35954. extra: 1575/1448,
  35955. bottom: 72/1647
  35956. }
  35957. },
  35958. back: {
  35959. height: math.unit(6 + 9/12, "feet"),
  35960. weight: math.unit(440, "lb"),
  35961. name: "Back",
  35962. image: {
  35963. source: "./media/characters/wilbur-owen/back.svg",
  35964. extra: 1578/1445,
  35965. bottom: 36/1614
  35966. }
  35967. },
  35968. },
  35969. [
  35970. {
  35971. name: "Normal",
  35972. height: math.unit(6 + 9/12, "feet"),
  35973. default: true
  35974. },
  35975. ]
  35976. ))
  35977. characterMakers.push(() => makeCharacter(
  35978. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35979. {
  35980. front: {
  35981. height: math.unit(6 + 5/12, "feet"),
  35982. weight: math.unit(650, "lb"),
  35983. name: "Front",
  35984. image: {
  35985. source: "./media/characters/keegan/front.svg",
  35986. extra: 2387/2198,
  35987. bottom: 33/2420
  35988. }
  35989. },
  35990. side: {
  35991. height: math.unit(6 + 5/12, "feet"),
  35992. weight: math.unit(650, "lb"),
  35993. name: "Side",
  35994. image: {
  35995. source: "./media/characters/keegan/side.svg",
  35996. extra: 2390/2202,
  35997. bottom: 47/2437
  35998. }
  35999. },
  36000. back: {
  36001. height: math.unit(6 + 5/12, "feet"),
  36002. weight: math.unit(650, "lb"),
  36003. name: "Back",
  36004. image: {
  36005. source: "./media/characters/keegan/back.svg",
  36006. extra: 2418/2268,
  36007. bottom: 15/2433
  36008. }
  36009. },
  36010. frontSfw: {
  36011. height: math.unit(6 + 5/12, "feet"),
  36012. weight: math.unit(650, "lb"),
  36013. name: "Front (SFW)",
  36014. image: {
  36015. source: "./media/characters/keegan/front-sfw.svg",
  36016. extra: 2387/2198,
  36017. bottom: 33/2420
  36018. }
  36019. },
  36020. beans: {
  36021. height: math.unit(1.85, "feet"),
  36022. name: "Beans",
  36023. image: {
  36024. source: "./media/characters/keegan/beans.svg"
  36025. }
  36026. },
  36027. },
  36028. [
  36029. {
  36030. name: "Normal",
  36031. height: math.unit(6 + 5/12, "feet"),
  36032. default: true
  36033. },
  36034. ]
  36035. ))
  36036. characterMakers.push(() => makeCharacter(
  36037. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36038. {
  36039. front: {
  36040. height: math.unit(9, "feet"),
  36041. name: "Front",
  36042. image: {
  36043. source: "./media/characters/colton/front.svg",
  36044. extra: 1589/1326,
  36045. bottom: 139/1728
  36046. }
  36047. },
  36048. },
  36049. [
  36050. {
  36051. name: "Normal",
  36052. height: math.unit(9, "feet"),
  36053. default: true
  36054. },
  36055. ]
  36056. ))
  36057. characterMakers.push(() => makeCharacter(
  36058. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36059. {
  36060. front: {
  36061. height: math.unit(2 + 9/12, "feet"),
  36062. name: "Front",
  36063. image: {
  36064. source: "./media/characters/bora/front.svg",
  36065. extra: 1265/1250,
  36066. bottom: 24/1289
  36067. }
  36068. },
  36069. },
  36070. [
  36071. {
  36072. name: "Normal",
  36073. height: math.unit(2 + 9/12, "feet"),
  36074. default: true
  36075. },
  36076. ]
  36077. ))
  36078. characterMakers.push(() => makeCharacter(
  36079. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36080. {
  36081. front: {
  36082. height: math.unit(8, "feet"),
  36083. name: "Front",
  36084. image: {
  36085. source: "./media/characters/myu-myu/front.svg",
  36086. extra: 1949/1857,
  36087. bottom: 90/2039
  36088. }
  36089. },
  36090. },
  36091. [
  36092. {
  36093. name: "Normal",
  36094. height: math.unit(8, "feet"),
  36095. default: true
  36096. },
  36097. {
  36098. name: "Big",
  36099. height: math.unit(15, "feet")
  36100. },
  36101. {
  36102. name: "BIG",
  36103. height: math.unit(25, "feet")
  36104. },
  36105. ]
  36106. ))
  36107. characterMakers.push(() => makeCharacter(
  36108. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36109. {
  36110. side: {
  36111. height: math.unit(7 + 5/12, "feet"),
  36112. weight: math.unit(2800, "lb"),
  36113. name: "Side",
  36114. image: {
  36115. source: "./media/characters/haloren/side.svg",
  36116. extra: 1793/409,
  36117. bottom: 59/1852
  36118. }
  36119. },
  36120. frontPaw: {
  36121. height: math.unit(2.36, "feet"),
  36122. name: "Front paw",
  36123. image: {
  36124. source: "./media/characters/haloren/front-paw.svg"
  36125. }
  36126. },
  36127. hindPaw: {
  36128. height: math.unit(3.18, "feet"),
  36129. name: "Hind paw",
  36130. image: {
  36131. source: "./media/characters/haloren/hind-paw.svg"
  36132. }
  36133. },
  36134. maw: {
  36135. height: math.unit(5.05, "feet"),
  36136. name: "Maw",
  36137. image: {
  36138. source: "./media/characters/haloren/maw.svg"
  36139. }
  36140. },
  36141. dick: {
  36142. height: math.unit(2.90, "feet"),
  36143. name: "Dick",
  36144. image: {
  36145. source: "./media/characters/haloren/dick.svg"
  36146. }
  36147. },
  36148. },
  36149. [
  36150. {
  36151. name: "Normal",
  36152. height: math.unit(7 + 5/12, "feet"),
  36153. default: true
  36154. },
  36155. {
  36156. name: "Enhanced",
  36157. height: math.unit(14 + 3/12, "feet")
  36158. },
  36159. ]
  36160. ))
  36161. characterMakers.push(() => makeCharacter(
  36162. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36163. {
  36164. front: {
  36165. height: math.unit(171, "cm"),
  36166. name: "Front",
  36167. image: {
  36168. source: "./media/characters/kimmy/front.svg",
  36169. extra: 1491/1435,
  36170. bottom: 53/1544
  36171. }
  36172. },
  36173. },
  36174. [
  36175. {
  36176. name: "Small",
  36177. height: math.unit(9, "cm")
  36178. },
  36179. {
  36180. name: "Normal",
  36181. height: math.unit(171, "cm"),
  36182. default: true
  36183. },
  36184. ]
  36185. ))
  36186. characterMakers.push(() => makeCharacter(
  36187. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36188. {
  36189. front: {
  36190. height: math.unit(8, "feet"),
  36191. weight: math.unit(300, "lb"),
  36192. name: "Front",
  36193. image: {
  36194. source: "./media/characters/galeboomer/front.svg",
  36195. extra: 4651/4415,
  36196. bottom: 162/4813
  36197. }
  36198. },
  36199. back: {
  36200. height: math.unit(8, "feet"),
  36201. weight: math.unit(300, "lb"),
  36202. name: "Back",
  36203. image: {
  36204. source: "./media/characters/galeboomer/back.svg",
  36205. extra: 4544/4314,
  36206. bottom: 16/4560
  36207. }
  36208. },
  36209. frontAlt: {
  36210. height: math.unit(8, "feet"),
  36211. weight: math.unit(300, "lb"),
  36212. name: "Front (Alt)",
  36213. image: {
  36214. source: "./media/characters/galeboomer/front-alt.svg",
  36215. extra: 4458/4228,
  36216. bottom: 68/4526
  36217. }
  36218. },
  36219. maw: {
  36220. height: math.unit(1.2, "feet"),
  36221. name: "Maw",
  36222. image: {
  36223. source: "./media/characters/galeboomer/maw.svg"
  36224. }
  36225. },
  36226. },
  36227. [
  36228. {
  36229. name: "Normal",
  36230. height: math.unit(8, "feet"),
  36231. default: true
  36232. },
  36233. ]
  36234. ))
  36235. characterMakers.push(() => makeCharacter(
  36236. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36237. {
  36238. front: {
  36239. height: math.unit(5 + 9/12, "feet"),
  36240. weight: math.unit(120, "lb"),
  36241. name: "Front",
  36242. image: {
  36243. source: "./media/characters/chyr/front.svg",
  36244. extra: 1323/1254,
  36245. bottom: 63/1386
  36246. }
  36247. },
  36248. back: {
  36249. height: math.unit(5 + 9/12, "feet"),
  36250. weight: math.unit(120, "lb"),
  36251. name: "Back",
  36252. image: {
  36253. source: "./media/characters/chyr/back.svg",
  36254. extra: 1323/1252,
  36255. bottom: 48/1371
  36256. }
  36257. },
  36258. },
  36259. [
  36260. {
  36261. name: "Normal",
  36262. height: math.unit(5 + 9/12, "feet"),
  36263. default: true
  36264. },
  36265. ]
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36269. {
  36270. front: {
  36271. height: math.unit(7, "feet"),
  36272. weight: math.unit(310, "lb"),
  36273. name: "Front",
  36274. image: {
  36275. source: "./media/characters/solarus/front.svg",
  36276. extra: 2415/2021,
  36277. bottom: 103/2518
  36278. }
  36279. },
  36280. back: {
  36281. height: math.unit(7, "feet"),
  36282. weight: math.unit(310, "lb"),
  36283. name: "Back",
  36284. image: {
  36285. source: "./media/characters/solarus/back.svg",
  36286. extra: 2463/2089,
  36287. bottom: 79/2542
  36288. }
  36289. },
  36290. },
  36291. [
  36292. {
  36293. name: "Normal",
  36294. height: math.unit(7, "feet"),
  36295. default: true
  36296. },
  36297. ]
  36298. ))
  36299. characterMakers.push(() => makeCharacter(
  36300. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36301. {
  36302. front: {
  36303. height: math.unit(16, "feet"),
  36304. name: "Front",
  36305. image: {
  36306. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36307. extra: 1844/1780,
  36308. bottom: 58/1902
  36309. }
  36310. },
  36311. winterCoat: {
  36312. height: math.unit(16, "feet"),
  36313. name: "Winter Coat",
  36314. image: {
  36315. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36316. extra: 1807/1775,
  36317. bottom: 69/1876
  36318. }
  36319. },
  36320. },
  36321. [
  36322. {
  36323. name: "Normal",
  36324. height: math.unit(16, "feet"),
  36325. default: true
  36326. },
  36327. {
  36328. name: "Chicago Size",
  36329. height: math.unit(560, "feet")
  36330. },
  36331. ]
  36332. ))
  36333. characterMakers.push(() => makeCharacter(
  36334. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36335. {
  36336. front: {
  36337. height: math.unit(11 + 6/12, "feet"),
  36338. weight: math.unit(1366, "lb"),
  36339. name: "Front",
  36340. image: {
  36341. source: "./media/characters/lexor/front.svg",
  36342. extra: 1560/1481,
  36343. bottom: 211/1771
  36344. }
  36345. },
  36346. back: {
  36347. height: math.unit(11 + 6/12, "feet"),
  36348. weight: math.unit(1366, "lb"),
  36349. name: "Back",
  36350. image: {
  36351. source: "./media/characters/lexor/back.svg",
  36352. extra: 1614/1533,
  36353. bottom: 76/1690
  36354. }
  36355. },
  36356. maw: {
  36357. height: math.unit(3, "feet"),
  36358. name: "Maw",
  36359. image: {
  36360. source: "./media/characters/lexor/maw.svg"
  36361. }
  36362. },
  36363. dick: {
  36364. height: math.unit(2.59, "feet"),
  36365. name: "Dick",
  36366. image: {
  36367. source: "./media/characters/lexor/dick.svg"
  36368. }
  36369. },
  36370. },
  36371. [
  36372. {
  36373. name: "Normal",
  36374. height: math.unit(11 + 6/12, "feet"),
  36375. default: true
  36376. },
  36377. ]
  36378. ))
  36379. characterMakers.push(() => makeCharacter(
  36380. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36381. {
  36382. front: {
  36383. height: math.unit(5 + 8/12, "feet"),
  36384. name: "Front",
  36385. image: {
  36386. source: "./media/characters/magnum/front.svg",
  36387. extra: 942/855,
  36388. bottom: 26/968
  36389. }
  36390. },
  36391. },
  36392. [
  36393. {
  36394. name: "Normal",
  36395. height: math.unit(5 + 8/12, "feet"),
  36396. default: true
  36397. },
  36398. ]
  36399. ))
  36400. characterMakers.push(() => makeCharacter(
  36401. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36402. {
  36403. front: {
  36404. height: math.unit(18 + 4/12, "feet"),
  36405. weight: math.unit(1500, "kg"),
  36406. name: "Front",
  36407. image: {
  36408. source: "./media/characters/solas-sharpsman/front.svg",
  36409. extra: 1698/1589,
  36410. bottom: 0/1698
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Normal",
  36417. height: math.unit(18 + 4/12, "feet"),
  36418. default: true
  36419. },
  36420. ]
  36421. ))
  36422. characterMakers.push(() => makeCharacter(
  36423. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36424. {
  36425. front: {
  36426. height: math.unit(5 + 5/12, "feet"),
  36427. weight: math.unit(180, "lb"),
  36428. name: "Front",
  36429. image: {
  36430. source: "./media/characters/october/front.svg",
  36431. extra: 1800/1650,
  36432. bottom: 0/1800
  36433. }
  36434. },
  36435. frontNsfw: {
  36436. height: math.unit(5 + 5/12, "feet"),
  36437. weight: math.unit(180, "lb"),
  36438. name: "Front (NSFW)",
  36439. image: {
  36440. source: "./media/characters/october/front-nsfw.svg",
  36441. extra: 1392/1307,
  36442. bottom: 42/1434
  36443. }
  36444. },
  36445. },
  36446. [
  36447. {
  36448. name: "Normal",
  36449. height: math.unit(5 + 5/12, "feet"),
  36450. default: true
  36451. },
  36452. ]
  36453. ))
  36454. characterMakers.push(() => makeCharacter(
  36455. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36456. {
  36457. front: {
  36458. height: math.unit(8 + 6/12, "feet"),
  36459. name: "Front",
  36460. image: {
  36461. source: "./media/characters/essynkardi/front.svg",
  36462. extra: 1914/1846,
  36463. bottom: 22/1936
  36464. }
  36465. },
  36466. },
  36467. [
  36468. {
  36469. name: "Normal",
  36470. height: math.unit(8 + 6/12, "feet"),
  36471. default: true
  36472. },
  36473. ]
  36474. ))
  36475. characterMakers.push(() => makeCharacter(
  36476. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36477. {
  36478. front: {
  36479. height: math.unit(6 + 6/12, "feet"),
  36480. weight: math.unit(7, "lb"),
  36481. name: "Front",
  36482. image: {
  36483. source: "./media/characters/icky/front.svg",
  36484. extra: 813/782,
  36485. bottom: 66/879
  36486. }
  36487. },
  36488. back: {
  36489. height: math.unit(6 + 6/12, "feet"),
  36490. weight: math.unit(7, "lb"),
  36491. name: "Back",
  36492. image: {
  36493. source: "./media/characters/icky/back.svg",
  36494. extra: 754/735,
  36495. bottom: 56/810
  36496. }
  36497. },
  36498. },
  36499. [
  36500. {
  36501. name: "Normal",
  36502. height: math.unit(6 + 6/12, "feet"),
  36503. default: true
  36504. },
  36505. ]
  36506. ))
  36507. characterMakers.push(() => makeCharacter(
  36508. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36509. {
  36510. front: {
  36511. height: math.unit(15, "feet"),
  36512. name: "Front",
  36513. image: {
  36514. source: "./media/characters/rojas/front.svg",
  36515. extra: 1462/1408,
  36516. bottom: 95/1557
  36517. }
  36518. },
  36519. back: {
  36520. height: math.unit(15, "feet"),
  36521. name: "Back",
  36522. image: {
  36523. source: "./media/characters/rojas/back.svg",
  36524. extra: 1023/954,
  36525. bottom: 28/1051
  36526. }
  36527. },
  36528. },
  36529. [
  36530. {
  36531. name: "Normal",
  36532. height: math.unit(15, "feet"),
  36533. default: true
  36534. },
  36535. ]
  36536. ))
  36537. characterMakers.push(() => makeCharacter(
  36538. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36539. {
  36540. frontHuman: {
  36541. height: math.unit(5 + 7/12, "feet"),
  36542. name: "Front (Human)",
  36543. image: {
  36544. source: "./media/characters/alek-dryagan/front-human.svg",
  36545. extra: 1687/1667,
  36546. bottom: 69/1756
  36547. }
  36548. },
  36549. backHuman: {
  36550. height: math.unit(5 + 7/12, "feet"),
  36551. name: "Back (Human)",
  36552. image: {
  36553. source: "./media/characters/alek-dryagan/back-human.svg",
  36554. extra: 1670/1649,
  36555. bottom: 65/1735
  36556. }
  36557. },
  36558. frontDemi: {
  36559. height: math.unit(65, "feet"),
  36560. name: "Front (Demi)",
  36561. image: {
  36562. source: "./media/characters/alek-dryagan/front-demi.svg",
  36563. extra: 1669/1642,
  36564. bottom: 49/1718
  36565. }
  36566. },
  36567. backDemi: {
  36568. height: math.unit(65, "feet"),
  36569. name: "Back (Demi)",
  36570. image: {
  36571. source: "./media/characters/alek-dryagan/back-demi.svg",
  36572. extra: 1658/1637,
  36573. bottom: 40/1698
  36574. }
  36575. },
  36576. mawHuman: {
  36577. height: math.unit(0.3, "feet"),
  36578. name: "Maw (Human)",
  36579. image: {
  36580. source: "./media/characters/alek-dryagan/maw-human.svg"
  36581. }
  36582. },
  36583. mawDemi: {
  36584. height: math.unit(3.8, "feet"),
  36585. name: "Maw (Demi)",
  36586. image: {
  36587. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36588. }
  36589. },
  36590. },
  36591. [
  36592. {
  36593. name: "Normal",
  36594. height: math.unit(5 + 7/12, "feet"),
  36595. default: true
  36596. },
  36597. ]
  36598. ))
  36599. characterMakers.push(() => makeCharacter(
  36600. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36601. {
  36602. frontHuman: {
  36603. height: math.unit(5 + 2/12, "feet"),
  36604. name: "Front (Human)",
  36605. image: {
  36606. source: "./media/characters/gen/front-human.svg",
  36607. extra: 1627/1538,
  36608. bottom: 71/1698
  36609. }
  36610. },
  36611. backHuman: {
  36612. height: math.unit(5 + 2/12, "feet"),
  36613. name: "Back (Human)",
  36614. image: {
  36615. source: "./media/characters/gen/back-human.svg",
  36616. extra: 1638/1548,
  36617. bottom: 69/1707
  36618. }
  36619. },
  36620. frontDemi: {
  36621. height: math.unit(5 + 2/12, "feet"),
  36622. name: "Front (Demi)",
  36623. image: {
  36624. source: "./media/characters/gen/front-demi.svg",
  36625. extra: 1627/1538,
  36626. bottom: 71/1698
  36627. }
  36628. },
  36629. backDemi: {
  36630. height: math.unit(5 + 2/12, "feet"),
  36631. name: "Back (Demi)",
  36632. image: {
  36633. source: "./media/characters/gen/back-demi.svg",
  36634. extra: 1638/1548,
  36635. bottom: 69/1707
  36636. }
  36637. },
  36638. },
  36639. [
  36640. {
  36641. name: "Normal",
  36642. height: math.unit(5 + 2/12, "feet"),
  36643. default: true
  36644. },
  36645. ]
  36646. ))
  36647. characterMakers.push(() => makeCharacter(
  36648. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36649. {
  36650. frontImp: {
  36651. height: math.unit(1 + 11/12, "feet"),
  36652. name: "Front (Imp)",
  36653. image: {
  36654. source: "./media/characters/max-kobold/front-imp.svg",
  36655. extra: 1238/1134,
  36656. bottom: 81/1319
  36657. }
  36658. },
  36659. backImp: {
  36660. height: math.unit(1 + 11/12, "feet"),
  36661. name: "Back (Imp)",
  36662. image: {
  36663. source: "./media/characters/max-kobold/back-imp.svg",
  36664. extra: 1334/1175,
  36665. bottom: 34/1368
  36666. }
  36667. },
  36668. frontDemi: {
  36669. height: math.unit(5 + 9/12, "feet"),
  36670. name: "Front (Demi)",
  36671. image: {
  36672. source: "./media/characters/max-kobold/front-demi.svg",
  36673. extra: 1715/1685,
  36674. bottom: 54/1769
  36675. }
  36676. },
  36677. backDemi: {
  36678. height: math.unit(5 + 9/12, "feet"),
  36679. name: "Back (Demi)",
  36680. image: {
  36681. source: "./media/characters/max-kobold/back-demi.svg",
  36682. extra: 1752/1729,
  36683. bottom: 41/1793
  36684. }
  36685. },
  36686. handImp: {
  36687. height: math.unit(0.45, "feet"),
  36688. name: "Hand (Imp)",
  36689. image: {
  36690. source: "./media/characters/max-kobold/hand.svg"
  36691. }
  36692. },
  36693. pawImp: {
  36694. height: math.unit(0.46, "feet"),
  36695. name: "Paw (Imp)",
  36696. image: {
  36697. source: "./media/characters/max-kobold/paw.svg"
  36698. }
  36699. },
  36700. handDemi: {
  36701. height: math.unit(0.80, "feet"),
  36702. name: "Hand (Demi)",
  36703. image: {
  36704. source: "./media/characters/max-kobold/hand.svg"
  36705. }
  36706. },
  36707. pawDemi: {
  36708. height: math.unit(1.1, "feet"),
  36709. name: "Paw (Demi)",
  36710. image: {
  36711. source: "./media/characters/max-kobold/paw.svg"
  36712. }
  36713. },
  36714. headImp: {
  36715. height: math.unit(1.33, "feet"),
  36716. name: "Head (Imp)",
  36717. image: {
  36718. source: "./media/characters/max-kobold/head-imp.svg"
  36719. }
  36720. },
  36721. mawImp: {
  36722. height: math.unit(0.75, "feet"),
  36723. name: "Maw (Imp)",
  36724. image: {
  36725. source: "./media/characters/max-kobold/maw-imp.svg"
  36726. }
  36727. },
  36728. mawDemi: {
  36729. height: math.unit(0.42, "feet"),
  36730. name: "Maw (Demi)",
  36731. image: {
  36732. source: "./media/characters/max-kobold/maw-demi.svg"
  36733. }
  36734. },
  36735. },
  36736. [
  36737. {
  36738. name: "Normal",
  36739. height: math.unit(1 + 11/12, "feet"),
  36740. default: true
  36741. },
  36742. ]
  36743. ))
  36744. characterMakers.push(() => makeCharacter(
  36745. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36746. {
  36747. front: {
  36748. height: math.unit(7 + 5/12, "feet"),
  36749. name: "Front",
  36750. image: {
  36751. source: "./media/characters/carbon/front.svg",
  36752. extra: 1754/1689,
  36753. bottom: 65/1819
  36754. }
  36755. },
  36756. back: {
  36757. height: math.unit(7 + 5/12, "feet"),
  36758. name: "Back",
  36759. image: {
  36760. source: "./media/characters/carbon/back.svg",
  36761. extra: 1762/1695,
  36762. bottom: 24/1786
  36763. }
  36764. },
  36765. frontGigantamax: {
  36766. height: math.unit(150, "feet"),
  36767. name: "Front (Gigantamax)",
  36768. image: {
  36769. source: "./media/characters/carbon/front-gigantamax.svg",
  36770. extra: 1826/1669,
  36771. bottom: 59/1885
  36772. }
  36773. },
  36774. backGigantamax: {
  36775. height: math.unit(150, "feet"),
  36776. name: "Back (Gigantamax)",
  36777. image: {
  36778. source: "./media/characters/carbon/back-gigantamax.svg",
  36779. extra: 1796/1653,
  36780. bottom: 53/1849
  36781. }
  36782. },
  36783. maw: {
  36784. height: math.unit(0.48, "feet"),
  36785. name: "Maw",
  36786. image: {
  36787. source: "./media/characters/carbon/maw.svg"
  36788. }
  36789. },
  36790. mawGigantamax: {
  36791. height: math.unit(7.5, "feet"),
  36792. name: "Maw (Gigantamax)",
  36793. image: {
  36794. source: "./media/characters/carbon/maw-gigantamax.svg"
  36795. }
  36796. },
  36797. },
  36798. [
  36799. {
  36800. name: "Normal",
  36801. height: math.unit(7 + 5/12, "feet"),
  36802. default: true
  36803. },
  36804. ]
  36805. ))
  36806. characterMakers.push(() => makeCharacter(
  36807. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36808. {
  36809. front: {
  36810. height: math.unit(6, "feet"),
  36811. name: "Front",
  36812. image: {
  36813. source: "./media/characters/maverick/front.svg",
  36814. extra: 1672/1661,
  36815. bottom: 85/1757
  36816. }
  36817. },
  36818. back: {
  36819. height: math.unit(6, "feet"),
  36820. name: "Back",
  36821. image: {
  36822. source: "./media/characters/maverick/back.svg",
  36823. extra: 1642/1631,
  36824. bottom: 38/1680
  36825. }
  36826. },
  36827. },
  36828. [
  36829. {
  36830. name: "Normal",
  36831. height: math.unit(6, "feet"),
  36832. default: true
  36833. },
  36834. ]
  36835. ))
  36836. characterMakers.push(() => makeCharacter(
  36837. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36838. {
  36839. front: {
  36840. height: math.unit(15, "feet"),
  36841. weight: math.unit(615, "lb"),
  36842. name: "Front",
  36843. image: {
  36844. source: "./media/characters/grockle/front.svg",
  36845. extra: 1535/1427,
  36846. bottom: 56/1591
  36847. }
  36848. },
  36849. },
  36850. [
  36851. {
  36852. name: "Normal",
  36853. height: math.unit(15, "feet"),
  36854. default: true
  36855. },
  36856. {
  36857. name: "Large",
  36858. height: math.unit(150, "feet")
  36859. },
  36860. {
  36861. name: "Macro",
  36862. height: math.unit(1876, "feet")
  36863. },
  36864. {
  36865. name: "Mega Macro",
  36866. height: math.unit(121940, "feet")
  36867. },
  36868. {
  36869. name: "Giga Macro",
  36870. height: math.unit(750, "km")
  36871. },
  36872. {
  36873. name: "Tera Macro",
  36874. height: math.unit(750000, "km")
  36875. },
  36876. {
  36877. name: "Galactic",
  36878. height: math.unit(1.4e5, "km")
  36879. },
  36880. {
  36881. name: "Godlike",
  36882. height: math.unit(9.8e280, "galaxies")
  36883. },
  36884. ]
  36885. ))
  36886. characterMakers.push(() => makeCharacter(
  36887. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36888. {
  36889. front: {
  36890. height: math.unit(11, "meters"),
  36891. weight: math.unit(20, "tonnes"),
  36892. name: "Front",
  36893. image: {
  36894. source: "./media/characters/alistair/front.svg",
  36895. extra: 1265/1009,
  36896. bottom: 93/1358
  36897. }
  36898. },
  36899. },
  36900. [
  36901. {
  36902. name: "Normal",
  36903. height: math.unit(11, "meters"),
  36904. default: true
  36905. },
  36906. ]
  36907. ))
  36908. characterMakers.push(() => makeCharacter(
  36909. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36910. {
  36911. front: {
  36912. height: math.unit(5 + 8/12, "feet"),
  36913. name: "Front",
  36914. image: {
  36915. source: "./media/characters/haruka/front.svg",
  36916. extra: 2012/1952,
  36917. bottom: 0/2012
  36918. }
  36919. },
  36920. },
  36921. [
  36922. {
  36923. name: "Normal",
  36924. height: math.unit(5 + 8/12, "feet"),
  36925. default: true
  36926. },
  36927. ]
  36928. ))
  36929. characterMakers.push(() => makeCharacter(
  36930. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36931. {
  36932. back: {
  36933. height: math.unit(9, "feet"),
  36934. name: "Back",
  36935. image: {
  36936. source: "./media/characters/vivian-sylveon/back.svg",
  36937. extra: 1853/1714,
  36938. bottom: 0/1853
  36939. }
  36940. },
  36941. },
  36942. [
  36943. {
  36944. name: "Normal",
  36945. height: math.unit(9, "feet"),
  36946. default: true
  36947. },
  36948. {
  36949. name: "Macro",
  36950. height: math.unit(500, "feet")
  36951. },
  36952. {
  36953. name: "Megamacro",
  36954. height: math.unit(600, "miles")
  36955. },
  36956. {
  36957. name: "Gigamacro",
  36958. height: math.unit(30000, "miles")
  36959. },
  36960. ]
  36961. ))
  36962. characterMakers.push(() => makeCharacter(
  36963. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36964. {
  36965. anthro: {
  36966. height: math.unit(5 + 10/12, "feet"),
  36967. weight: math.unit(100, "lb"),
  36968. name: "Anthro",
  36969. image: {
  36970. source: "./media/characters/daiki/anthro.svg",
  36971. extra: 1115/1027,
  36972. bottom: 69/1184
  36973. }
  36974. },
  36975. feral: {
  36976. height: math.unit(200, "feet"),
  36977. name: "Feral",
  36978. image: {
  36979. source: "./media/characters/daiki/feral.svg",
  36980. extra: 1256/313,
  36981. bottom: 39/1295
  36982. }
  36983. },
  36984. feralHead: {
  36985. height: math.unit(171, "feet"),
  36986. name: "Feral Head",
  36987. image: {
  36988. source: "./media/characters/daiki/feral-head.svg"
  36989. }
  36990. },
  36991. manaDragon: {
  36992. height: math.unit(170, "meters"),
  36993. name: "Mana-dragon",
  36994. image: {
  36995. source: "./media/characters/daiki/mana-dragon.svg",
  36996. extra: 763/420,
  36997. bottom: 97/860
  36998. }
  36999. },
  37000. },
  37001. [
  37002. {
  37003. name: "Normal",
  37004. height: math.unit(5 + 10/12, "feet"),
  37005. default: true
  37006. },
  37007. ]
  37008. ))
  37009. characterMakers.push(() => makeCharacter(
  37010. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37011. {
  37012. fullyEquippedFront: {
  37013. height: math.unit(3 + 1/12, "feet"),
  37014. weight: math.unit(24, "lb"),
  37015. name: "Fully Equipped (Front)",
  37016. image: {
  37017. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37018. extra: 687/605,
  37019. bottom: 18/705
  37020. }
  37021. },
  37022. fullyEquippedBack: {
  37023. height: math.unit(3 + 1/12, "feet"),
  37024. weight: math.unit(24, "lb"),
  37025. name: "Fully Equipped (Back)",
  37026. image: {
  37027. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37028. extra: 689/590,
  37029. bottom: 18/707
  37030. }
  37031. },
  37032. dailyWear: {
  37033. height: math.unit(3 + 1/12, "feet"),
  37034. weight: math.unit(24, "lb"),
  37035. name: "Daily Wear",
  37036. image: {
  37037. source: "./media/characters/tea-spot/daily-wear.svg",
  37038. extra: 701/620,
  37039. bottom: 21/722
  37040. }
  37041. },
  37042. maidWork: {
  37043. height: math.unit(3 + 1/12, "feet"),
  37044. weight: math.unit(24, "lb"),
  37045. name: "Maid Work",
  37046. image: {
  37047. source: "./media/characters/tea-spot/maid-work.svg",
  37048. extra: 693/609,
  37049. bottom: 15/708
  37050. }
  37051. },
  37052. },
  37053. [
  37054. {
  37055. name: "Normal",
  37056. height: math.unit(3 + 1/12, "feet"),
  37057. default: true
  37058. },
  37059. ]
  37060. ))
  37061. characterMakers.push(() => makeCharacter(
  37062. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37063. {
  37064. front: {
  37065. height: math.unit(175, "cm"),
  37066. weight: math.unit(75, "kg"),
  37067. name: "Front",
  37068. image: {
  37069. source: "./media/characters/chee/front.svg",
  37070. extra: 1796/1740,
  37071. bottom: 40/1836
  37072. }
  37073. },
  37074. },
  37075. [
  37076. {
  37077. name: "Micro-Micro",
  37078. height: math.unit(1, "nm")
  37079. },
  37080. {
  37081. name: "Micro-erst",
  37082. height: math.unit(1, "micrometer")
  37083. },
  37084. {
  37085. name: "Micro-er",
  37086. height: math.unit(1, "cm")
  37087. },
  37088. {
  37089. name: "Normal",
  37090. height: math.unit(175, "cm"),
  37091. default: true
  37092. },
  37093. {
  37094. name: "Macro",
  37095. height: math.unit(100, "m")
  37096. },
  37097. {
  37098. name: "Macro-er",
  37099. height: math.unit(1, "km")
  37100. },
  37101. {
  37102. name: "Macro-erst",
  37103. height: math.unit(10, "km")
  37104. },
  37105. {
  37106. name: "Macro-Macro",
  37107. height: math.unit(100, "km")
  37108. },
  37109. ]
  37110. ))
  37111. characterMakers.push(() => makeCharacter(
  37112. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37113. {
  37114. front: {
  37115. height: math.unit(11 + 9/12, "feet"),
  37116. weight: math.unit(935, "lb"),
  37117. name: "Front",
  37118. image: {
  37119. source: "./media/characters/kingsley/front.svg",
  37120. extra: 1803/1674,
  37121. bottom: 127/1930
  37122. }
  37123. },
  37124. frontNude: {
  37125. height: math.unit(11 + 9/12, "feet"),
  37126. weight: math.unit(935, "lb"),
  37127. name: "Front (Nude)",
  37128. image: {
  37129. source: "./media/characters/kingsley/front-nude.svg",
  37130. extra: 1803/1674,
  37131. bottom: 127/1930
  37132. }
  37133. },
  37134. },
  37135. [
  37136. {
  37137. name: "Normal",
  37138. height: math.unit(11 + 9/12, "feet"),
  37139. default: true
  37140. },
  37141. ]
  37142. ))
  37143. characterMakers.push(() => makeCharacter(
  37144. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37145. {
  37146. side: {
  37147. height: math.unit(9, "feet"),
  37148. name: "Side",
  37149. image: {
  37150. source: "./media/characters/rymel/side.svg",
  37151. extra: 792/469,
  37152. bottom: 121/913
  37153. }
  37154. },
  37155. maw: {
  37156. height: math.unit(2.4, "meters"),
  37157. name: "Maw",
  37158. image: {
  37159. source: "./media/characters/rymel/maw.svg"
  37160. }
  37161. },
  37162. },
  37163. [
  37164. {
  37165. name: "House Drake",
  37166. height: math.unit(2, "feet")
  37167. },
  37168. {
  37169. name: "Reduced",
  37170. height: math.unit(4.5, "feet")
  37171. },
  37172. {
  37173. name: "Normal",
  37174. height: math.unit(9, "feet"),
  37175. default: true
  37176. },
  37177. ]
  37178. ))
  37179. characterMakers.push(() => makeCharacter(
  37180. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37181. {
  37182. front: {
  37183. height: math.unit(1.74, "meters"),
  37184. weight: math.unit(55, "kg"),
  37185. name: "Front",
  37186. image: {
  37187. source: "./media/characters/rubus/front.svg",
  37188. extra: 1894/1742,
  37189. bottom: 44/1938
  37190. }
  37191. },
  37192. },
  37193. [
  37194. {
  37195. name: "Normal",
  37196. height: math.unit(1.74, "meters"),
  37197. default: true
  37198. },
  37199. ]
  37200. ))
  37201. characterMakers.push(() => makeCharacter(
  37202. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37203. {
  37204. front: {
  37205. height: math.unit(5 + 2/12, "feet"),
  37206. weight: math.unit(112, "lb"),
  37207. name: "Front",
  37208. image: {
  37209. source: "./media/characters/cassie-kingston/front.svg",
  37210. extra: 1438/1390,
  37211. bottom: 47/1485
  37212. }
  37213. },
  37214. },
  37215. [
  37216. {
  37217. name: "Normal",
  37218. height: math.unit(5 + 2/12, "feet"),
  37219. default: true
  37220. },
  37221. {
  37222. name: "Macro",
  37223. height: math.unit(128, "feet")
  37224. },
  37225. {
  37226. name: "Megamacro",
  37227. height: math.unit(2.56, "miles")
  37228. },
  37229. ]
  37230. ))
  37231. characterMakers.push(() => makeCharacter(
  37232. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37233. {
  37234. front: {
  37235. height: math.unit(7, "feet"),
  37236. name: "Front",
  37237. image: {
  37238. source: "./media/characters/fox/front.svg",
  37239. extra: 1798/1703,
  37240. bottom: 55/1853
  37241. }
  37242. },
  37243. back: {
  37244. height: math.unit(7, "feet"),
  37245. name: "Back",
  37246. image: {
  37247. source: "./media/characters/fox/back.svg",
  37248. extra: 1748/1649,
  37249. bottom: 32/1780
  37250. }
  37251. },
  37252. head: {
  37253. height: math.unit(1.95, "feet"),
  37254. name: "Head",
  37255. image: {
  37256. source: "./media/characters/fox/head.svg"
  37257. }
  37258. },
  37259. dick: {
  37260. height: math.unit(1.33, "feet"),
  37261. name: "Dick",
  37262. image: {
  37263. source: "./media/characters/fox/dick.svg"
  37264. }
  37265. },
  37266. foot: {
  37267. height: math.unit(1, "feet"),
  37268. name: "Foot",
  37269. image: {
  37270. source: "./media/characters/fox/foot.svg"
  37271. }
  37272. },
  37273. paw: {
  37274. height: math.unit(0.92, "feet"),
  37275. name: "Paw",
  37276. image: {
  37277. source: "./media/characters/fox/paw.svg"
  37278. }
  37279. },
  37280. },
  37281. [
  37282. {
  37283. name: "Small",
  37284. height: math.unit(3, "inches")
  37285. },
  37286. {
  37287. name: "\"Realistic\"",
  37288. height: math.unit(7, "feet")
  37289. },
  37290. {
  37291. name: "Normal",
  37292. height: math.unit(150, "feet"),
  37293. default: true
  37294. },
  37295. {
  37296. name: "BIG",
  37297. height: math.unit(1200, "feet")
  37298. },
  37299. {
  37300. name: "👀",
  37301. height: math.unit(5, "miles")
  37302. },
  37303. {
  37304. name: "👀👀👀",
  37305. height: math.unit(64, "miles")
  37306. },
  37307. ]
  37308. ))
  37309. characterMakers.push(() => makeCharacter(
  37310. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37311. {
  37312. front: {
  37313. height: math.unit(625, "feet"),
  37314. name: "Front",
  37315. image: {
  37316. source: "./media/characters/asonja-rossa/front.svg",
  37317. extra: 1833/1686,
  37318. bottom: 24/1857
  37319. }
  37320. },
  37321. back: {
  37322. height: math.unit(625, "feet"),
  37323. name: "Back",
  37324. image: {
  37325. source: "./media/characters/asonja-rossa/back.svg",
  37326. extra: 1852/1753,
  37327. bottom: 26/1878
  37328. }
  37329. },
  37330. },
  37331. [
  37332. {
  37333. name: "Macro",
  37334. height: math.unit(625, "feet"),
  37335. default: true
  37336. },
  37337. ]
  37338. ))
  37339. characterMakers.push(() => makeCharacter(
  37340. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37341. {
  37342. side: {
  37343. height: math.unit(8, "feet"),
  37344. name: "Side",
  37345. image: {
  37346. source: "./media/characters/rezukii/side.svg",
  37347. extra: 979/542,
  37348. bottom: 87/1066
  37349. }
  37350. },
  37351. sitting: {
  37352. height: math.unit(14.6, "feet"),
  37353. name: "Sitting",
  37354. image: {
  37355. source: "./media/characters/rezukii/sitting.svg",
  37356. extra: 1023/813,
  37357. bottom: 45/1068
  37358. }
  37359. },
  37360. },
  37361. [
  37362. {
  37363. name: "Tiny",
  37364. height: math.unit(2, "feet")
  37365. },
  37366. {
  37367. name: "Smol",
  37368. height: math.unit(4, "feet")
  37369. },
  37370. {
  37371. name: "Normal",
  37372. height: math.unit(8, "feet"),
  37373. default: true
  37374. },
  37375. {
  37376. name: "Big",
  37377. height: math.unit(12, "feet")
  37378. },
  37379. {
  37380. name: "Macro",
  37381. height: math.unit(30, "feet")
  37382. },
  37383. ]
  37384. ))
  37385. characterMakers.push(() => makeCharacter(
  37386. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37387. {
  37388. front: {
  37389. height: math.unit(14, "feet"),
  37390. weight: math.unit(9.5, "tonnes"),
  37391. name: "Front",
  37392. image: {
  37393. source: "./media/characters/dawnheart/front.svg",
  37394. extra: 2792/2675,
  37395. bottom: 64/2856
  37396. }
  37397. },
  37398. },
  37399. [
  37400. {
  37401. name: "Normal",
  37402. height: math.unit(14, "feet"),
  37403. default: true
  37404. },
  37405. ]
  37406. ))
  37407. characterMakers.push(() => makeCharacter(
  37408. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37409. {
  37410. front: {
  37411. height: math.unit(1.7, "m"),
  37412. name: "Front",
  37413. image: {
  37414. source: "./media/characters/gladi/front.svg",
  37415. extra: 1460/1362,
  37416. bottom: 19/1479
  37417. }
  37418. },
  37419. back: {
  37420. height: math.unit(1.7, "m"),
  37421. name: "Back",
  37422. image: {
  37423. source: "./media/characters/gladi/back.svg",
  37424. extra: 1459/1357,
  37425. bottom: 12/1471
  37426. }
  37427. },
  37428. feral: {
  37429. height: math.unit(2.05, "m"),
  37430. name: "Feral",
  37431. image: {
  37432. source: "./media/characters/gladi/feral.svg",
  37433. extra: 821/557,
  37434. bottom: 91/912
  37435. }
  37436. },
  37437. },
  37438. [
  37439. {
  37440. name: "Shortest",
  37441. height: math.unit(70, "cm")
  37442. },
  37443. {
  37444. name: "Normal",
  37445. height: math.unit(1.7, "m")
  37446. },
  37447. {
  37448. name: "Macro",
  37449. height: math.unit(10, "m"),
  37450. default: true
  37451. },
  37452. {
  37453. name: "Tallest",
  37454. height: math.unit(200, "m")
  37455. },
  37456. ]
  37457. ))
  37458. characterMakers.push(() => makeCharacter(
  37459. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37460. {
  37461. front: {
  37462. height: math.unit(5 + 7/12, "feet"),
  37463. weight: math.unit(2, "tons"),
  37464. name: "Front",
  37465. image: {
  37466. source: "./media/characters/erdno/front.svg",
  37467. extra: 1234/1129,
  37468. bottom: 35/1269
  37469. }
  37470. },
  37471. angled: {
  37472. height: math.unit(5 + 7/12, "feet"),
  37473. weight: math.unit(2, "tons"),
  37474. name: "Angled",
  37475. image: {
  37476. source: "./media/characters/erdno/angled.svg",
  37477. extra: 1185/1139,
  37478. bottom: 36/1221
  37479. }
  37480. },
  37481. side: {
  37482. height: math.unit(5 + 7/12, "feet"),
  37483. weight: math.unit(2, "tons"),
  37484. name: "Side",
  37485. image: {
  37486. source: "./media/characters/erdno/side.svg",
  37487. extra: 1191/1144,
  37488. bottom: 40/1231
  37489. }
  37490. },
  37491. back: {
  37492. height: math.unit(5 + 7/12, "feet"),
  37493. weight: math.unit(2, "tons"),
  37494. name: "Back",
  37495. image: {
  37496. source: "./media/characters/erdno/back.svg",
  37497. extra: 1202/1146,
  37498. bottom: 17/1219
  37499. }
  37500. },
  37501. frontNsfw: {
  37502. height: math.unit(5 + 7/12, "feet"),
  37503. weight: math.unit(2, "tons"),
  37504. name: "Front (NSFW)",
  37505. image: {
  37506. source: "./media/characters/erdno/front-nsfw.svg",
  37507. extra: 1234/1129,
  37508. bottom: 35/1269
  37509. }
  37510. },
  37511. angledNsfw: {
  37512. height: math.unit(5 + 7/12, "feet"),
  37513. weight: math.unit(2, "tons"),
  37514. name: "Angled (NSFW)",
  37515. image: {
  37516. source: "./media/characters/erdno/angled-nsfw.svg",
  37517. extra: 1185/1139,
  37518. bottom: 36/1221
  37519. }
  37520. },
  37521. sideNsfw: {
  37522. height: math.unit(5 + 7/12, "feet"),
  37523. weight: math.unit(2, "tons"),
  37524. name: "Side (NSFW)",
  37525. image: {
  37526. source: "./media/characters/erdno/side-nsfw.svg",
  37527. extra: 1191/1144,
  37528. bottom: 40/1231
  37529. }
  37530. },
  37531. backNsfw: {
  37532. height: math.unit(5 + 7/12, "feet"),
  37533. weight: math.unit(2, "tons"),
  37534. name: "Back (NSFW)",
  37535. image: {
  37536. source: "./media/characters/erdno/back-nsfw.svg",
  37537. extra: 1202/1146,
  37538. bottom: 17/1219
  37539. }
  37540. },
  37541. frontHyper: {
  37542. height: math.unit(5 + 7/12, "feet"),
  37543. weight: math.unit(2, "tons"),
  37544. name: "Front (Hyper)",
  37545. image: {
  37546. source: "./media/characters/erdno/front-hyper.svg",
  37547. extra: 1298/1136,
  37548. bottom: 35/1333
  37549. }
  37550. },
  37551. },
  37552. [
  37553. {
  37554. name: "Normal",
  37555. height: math.unit(5 + 7/12, "feet"),
  37556. default: true
  37557. },
  37558. {
  37559. name: "Big",
  37560. height: math.unit(5.7, "meters")
  37561. },
  37562. {
  37563. name: "Macro",
  37564. height: math.unit(5.7, "kilometers")
  37565. },
  37566. {
  37567. name: "Megamacro",
  37568. height: math.unit(5.7, "earths")
  37569. },
  37570. ]
  37571. ))
  37572. characterMakers.push(() => makeCharacter(
  37573. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37574. {
  37575. front: {
  37576. height: math.unit(5 + 10/12, "feet"),
  37577. weight: math.unit(150, "lb"),
  37578. name: "Front",
  37579. image: {
  37580. source: "./media/characters/jamie/front.svg",
  37581. extra: 1908/1768,
  37582. bottom: 19/1927
  37583. }
  37584. },
  37585. },
  37586. [
  37587. {
  37588. name: "Minimum",
  37589. height: math.unit(2, "cm")
  37590. },
  37591. {
  37592. name: "Micro",
  37593. height: math.unit(3, "inches")
  37594. },
  37595. {
  37596. name: "Normal",
  37597. height: math.unit(5 + 10/12, "feet"),
  37598. default: true
  37599. },
  37600. {
  37601. name: "Macro",
  37602. height: math.unit(150, "feet")
  37603. },
  37604. {
  37605. name: "Megamacro",
  37606. height: math.unit(10000, "m")
  37607. },
  37608. ]
  37609. ))
  37610. characterMakers.push(() => makeCharacter(
  37611. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37612. {
  37613. front: {
  37614. height: math.unit(2, "meters"),
  37615. weight: math.unit(100, "kg"),
  37616. name: "Front",
  37617. image: {
  37618. source: "./media/characters/shiron/front.svg",
  37619. extra: 2103/1985,
  37620. bottom: 98/2201
  37621. }
  37622. },
  37623. back: {
  37624. height: math.unit(2, "meters"),
  37625. weight: math.unit(100, "kg"),
  37626. name: "Back",
  37627. image: {
  37628. source: "./media/characters/shiron/back.svg",
  37629. extra: 2110/2015,
  37630. bottom: 89/2199
  37631. }
  37632. },
  37633. hand: {
  37634. height: math.unit(0.96, "feet"),
  37635. name: "Hand",
  37636. image: {
  37637. source: "./media/characters/shiron/hand.svg"
  37638. }
  37639. },
  37640. foot: {
  37641. height: math.unit(1.464, "feet"),
  37642. name: "Foot",
  37643. image: {
  37644. source: "./media/characters/shiron/foot.svg"
  37645. }
  37646. },
  37647. },
  37648. [
  37649. {
  37650. name: "Normal",
  37651. height: math.unit(2, "meters")
  37652. },
  37653. {
  37654. name: "Macro",
  37655. height: math.unit(500, "meters"),
  37656. default: true
  37657. },
  37658. {
  37659. name: "Megamacro",
  37660. height: math.unit(20, "km")
  37661. },
  37662. ]
  37663. ))
  37664. characterMakers.push(() => makeCharacter(
  37665. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37666. {
  37667. front: {
  37668. height: math.unit(6, "feet"),
  37669. name: "Front",
  37670. image: {
  37671. source: "./media/characters/sam/front.svg",
  37672. extra: 849/826,
  37673. bottom: 19/868
  37674. }
  37675. },
  37676. },
  37677. [
  37678. {
  37679. name: "Normal",
  37680. height: math.unit(6, "feet"),
  37681. default: true
  37682. },
  37683. ]
  37684. ))
  37685. characterMakers.push(() => makeCharacter(
  37686. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37687. {
  37688. front: {
  37689. height: math.unit(8 + 4/12, "feet"),
  37690. weight: math.unit(122, "kg"),
  37691. name: "Front",
  37692. image: {
  37693. source: "./media/characters/namori-kurogawa/front.svg",
  37694. extra: 1894/1576,
  37695. bottom: 34/1928
  37696. }
  37697. },
  37698. },
  37699. [
  37700. {
  37701. name: "Normal",
  37702. height: math.unit(8 + 4/12, "feet"),
  37703. default: true
  37704. },
  37705. ]
  37706. ))
  37707. characterMakers.push(() => makeCharacter(
  37708. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37709. {
  37710. front: {
  37711. height: math.unit(9, "feet"),
  37712. weight: math.unit(621, "lb"),
  37713. name: "Front",
  37714. image: {
  37715. source: "./media/characters/unmru/front.svg",
  37716. extra: 1853/1747,
  37717. bottom: 73/1926
  37718. }
  37719. },
  37720. side: {
  37721. height: math.unit(9, "feet"),
  37722. weight: math.unit(621, "lb"),
  37723. name: "Side",
  37724. image: {
  37725. source: "./media/characters/unmru/side.svg",
  37726. extra: 1781/1671,
  37727. bottom: 127/1908
  37728. }
  37729. },
  37730. back: {
  37731. height: math.unit(9, "feet"),
  37732. weight: math.unit(621, "lb"),
  37733. name: "Back",
  37734. image: {
  37735. source: "./media/characters/unmru/back.svg",
  37736. extra: 1894/1765,
  37737. bottom: 75/1969
  37738. }
  37739. },
  37740. dick: {
  37741. height: math.unit(3, "feet"),
  37742. weight: math.unit(35, "lb"),
  37743. name: "Dick",
  37744. image: {
  37745. source: "./media/characters/unmru/dick.svg"
  37746. }
  37747. },
  37748. },
  37749. [
  37750. {
  37751. name: "Normal",
  37752. height: math.unit(9, "feet")
  37753. },
  37754. {
  37755. name: "Natural",
  37756. height: math.unit(27, "feet"),
  37757. default: true
  37758. },
  37759. {
  37760. name: "Giant",
  37761. height: math.unit(90, "feet")
  37762. },
  37763. {
  37764. name: "Kaiju",
  37765. height: math.unit(270, "feet")
  37766. },
  37767. {
  37768. name: "Macro",
  37769. height: math.unit(900, "feet")
  37770. },
  37771. {
  37772. name: "Macro+",
  37773. height: math.unit(2700, "feet")
  37774. },
  37775. {
  37776. name: "Megamacro",
  37777. height: math.unit(9000, "feet")
  37778. },
  37779. {
  37780. name: "City-Crushing",
  37781. height: math.unit(27000, "feet")
  37782. },
  37783. {
  37784. name: "Mountain-Mashing",
  37785. height: math.unit(90000, "feet")
  37786. },
  37787. {
  37788. name: "Earth-Eclipsing",
  37789. height: math.unit(2.7e8, "feet")
  37790. },
  37791. {
  37792. name: "Sol-Swallowing",
  37793. height: math.unit(9e10, "feet")
  37794. },
  37795. {
  37796. name: "Majoris-Munching",
  37797. height: math.unit(2.7e13, "feet")
  37798. },
  37799. ]
  37800. ))
  37801. characterMakers.push(() => makeCharacter(
  37802. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37803. {
  37804. front: {
  37805. height: math.unit(1, "inch"),
  37806. name: "Front",
  37807. image: {
  37808. source: "./media/characters/squeaks-mouse/front.svg",
  37809. extra: 352/308,
  37810. bottom: 25/377
  37811. }
  37812. },
  37813. },
  37814. [
  37815. {
  37816. name: "Micro",
  37817. height: math.unit(1, "inch"),
  37818. default: true
  37819. },
  37820. ]
  37821. ))
  37822. characterMakers.push(() => makeCharacter(
  37823. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37824. {
  37825. side: {
  37826. height: math.unit(35, "feet"),
  37827. name: "Side",
  37828. image: {
  37829. source: "./media/characters/sayko/side.svg",
  37830. extra: 1697/1021,
  37831. bottom: 82/1779
  37832. }
  37833. },
  37834. head: {
  37835. height: math.unit(16, "feet"),
  37836. name: "Head",
  37837. image: {
  37838. source: "./media/characters/sayko/head.svg"
  37839. }
  37840. },
  37841. forepaw: {
  37842. height: math.unit(7.85, "feet"),
  37843. name: "Forepaw",
  37844. image: {
  37845. source: "./media/characters/sayko/forepaw.svg"
  37846. }
  37847. },
  37848. hindpaw: {
  37849. height: math.unit(8.8, "feet"),
  37850. name: "Hindpaw",
  37851. image: {
  37852. source: "./media/characters/sayko/hindpaw.svg"
  37853. }
  37854. },
  37855. },
  37856. [
  37857. {
  37858. name: "Normal",
  37859. height: math.unit(35, "feet"),
  37860. default: true
  37861. },
  37862. {
  37863. name: "Colossus",
  37864. height: math.unit(100, "meters")
  37865. },
  37866. {
  37867. name: "\"Small\" Deity",
  37868. height: math.unit(1, "km")
  37869. },
  37870. {
  37871. name: "\"Large\" Deity",
  37872. height: math.unit(15, "km")
  37873. },
  37874. ]
  37875. ))
  37876. characterMakers.push(() => makeCharacter(
  37877. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37878. {
  37879. front: {
  37880. height: math.unit(6, "feet"),
  37881. weight: math.unit(250, "lb"),
  37882. name: "Front",
  37883. image: {
  37884. source: "./media/characters/mukiro/front.svg",
  37885. extra: 1368/1310,
  37886. bottom: 34/1402
  37887. }
  37888. },
  37889. },
  37890. [
  37891. {
  37892. name: "Normal",
  37893. height: math.unit(6, "feet"),
  37894. default: true
  37895. },
  37896. ]
  37897. ))
  37898. characterMakers.push(() => makeCharacter(
  37899. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37900. {
  37901. front: {
  37902. height: math.unit(12 + 4/12, "feet"),
  37903. name: "Front",
  37904. image: {
  37905. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37906. extra: 1346/1311,
  37907. bottom: 65/1411
  37908. }
  37909. },
  37910. },
  37911. [
  37912. {
  37913. name: "Base",
  37914. height: math.unit(12 + 4/12, "feet"),
  37915. default: true
  37916. },
  37917. {
  37918. name: "Macro",
  37919. height: math.unit(150, "feet")
  37920. },
  37921. {
  37922. name: "Mega",
  37923. height: math.unit(2, "miles")
  37924. },
  37925. {
  37926. name: "Demi God",
  37927. height: math.unit(4, "AU")
  37928. },
  37929. {
  37930. name: "God Size",
  37931. height: math.unit(1, "universe")
  37932. },
  37933. ]
  37934. ))
  37935. characterMakers.push(() => makeCharacter(
  37936. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37937. {
  37938. front: {
  37939. height: math.unit(3 + 3/12, "feet"),
  37940. weight: math.unit(88, "lb"),
  37941. name: "Front",
  37942. image: {
  37943. source: "./media/characters/trey/front.svg",
  37944. extra: 1815/1509,
  37945. bottom: 60/1875
  37946. }
  37947. },
  37948. },
  37949. [
  37950. {
  37951. name: "Normal",
  37952. height: math.unit(3 + 3/12, "feet"),
  37953. default: true
  37954. },
  37955. ]
  37956. ))
  37957. characterMakers.push(() => makeCharacter(
  37958. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  37959. {
  37960. front: {
  37961. height: math.unit(4, "meters"),
  37962. name: "Front",
  37963. image: {
  37964. source: "./media/characters/adelonda/front.svg",
  37965. extra: 1077/982,
  37966. bottom: 39/1116
  37967. }
  37968. },
  37969. back: {
  37970. height: math.unit(4, "meters"),
  37971. name: "Back",
  37972. image: {
  37973. source: "./media/characters/adelonda/back.svg",
  37974. extra: 1105/1003,
  37975. bottom: 25/1130
  37976. }
  37977. },
  37978. feral: {
  37979. height: math.unit(40/1.5, "meters"),
  37980. name: "Feral",
  37981. image: {
  37982. source: "./media/characters/adelonda/feral.svg",
  37983. extra: 597/271,
  37984. bottom: 387/984
  37985. }
  37986. },
  37987. },
  37988. [
  37989. {
  37990. name: "Normal",
  37991. height: math.unit(4, "meters"),
  37992. default: true
  37993. },
  37994. ]
  37995. ))
  37996. characterMakers.push(() => makeCharacter(
  37997. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37998. {
  37999. front: {
  38000. height: math.unit(8 + 4/12, "feet"),
  38001. weight: math.unit(670, "lb"),
  38002. name: "Front",
  38003. image: {
  38004. source: "./media/characters/acadiel/front.svg",
  38005. extra: 1901/1595,
  38006. bottom: 142/2043
  38007. }
  38008. },
  38009. },
  38010. [
  38011. {
  38012. name: "Normal",
  38013. height: math.unit(8 + 4/12, "feet"),
  38014. default: true
  38015. },
  38016. {
  38017. name: "Macro",
  38018. height: math.unit(200, "feet")
  38019. },
  38020. ]
  38021. ))
  38022. characterMakers.push(() => makeCharacter(
  38023. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38024. {
  38025. front: {
  38026. height: math.unit(6 + 2/12, "feet"),
  38027. weight: math.unit(185, "lb"),
  38028. name: "Front",
  38029. image: {
  38030. source: "./media/characters/kayne-ein/front.svg",
  38031. extra: 1780/1560,
  38032. bottom: 81/1861
  38033. }
  38034. },
  38035. },
  38036. [
  38037. {
  38038. name: "Normal",
  38039. height: math.unit(6 + 2/12, "feet"),
  38040. default: true
  38041. },
  38042. {
  38043. name: "Transformation Stage",
  38044. height: math.unit(15, "feet")
  38045. },
  38046. {
  38047. name: "Macro",
  38048. height: math.unit(150, "feet")
  38049. },
  38050. {
  38051. name: "Earth's Shadow",
  38052. height: math.unit(6200, "miles")
  38053. },
  38054. {
  38055. name: "Universal Demon",
  38056. height: math.unit(28e9, "parsecs")
  38057. },
  38058. {
  38059. name: "Multiverse God",
  38060. height: math.unit(3, "multiverses")
  38061. },
  38062. ]
  38063. ))
  38064. characterMakers.push(() => makeCharacter(
  38065. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38066. {
  38067. front: {
  38068. height: math.unit(5 + 5/12, "feet"),
  38069. name: "Front",
  38070. image: {
  38071. source: "./media/characters/fawn/front.svg",
  38072. extra: 1873/1731,
  38073. bottom: 95/1968
  38074. }
  38075. },
  38076. back: {
  38077. height: math.unit(5 + 5/12, "feet"),
  38078. name: "Back",
  38079. image: {
  38080. source: "./media/characters/fawn/back.svg",
  38081. extra: 1813/1700,
  38082. bottom: 14/1827
  38083. }
  38084. },
  38085. hoof: {
  38086. height: math.unit(1.45, "feet"),
  38087. name: "Hoof",
  38088. image: {
  38089. source: "./media/characters/fawn/hoof.svg"
  38090. }
  38091. },
  38092. },
  38093. [
  38094. {
  38095. name: "Normal",
  38096. height: math.unit(5 + 5/12, "feet"),
  38097. default: true
  38098. },
  38099. ]
  38100. ))
  38101. characterMakers.push(() => makeCharacter(
  38102. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38103. {
  38104. front: {
  38105. height: math.unit(2 + 5/12, "feet"),
  38106. name: "Front",
  38107. image: {
  38108. source: "./media/characters/orion/front.svg",
  38109. extra: 1366/1304,
  38110. bottom: 43/1409
  38111. }
  38112. },
  38113. paw: {
  38114. height: math.unit(0.52, "feet"),
  38115. name: "Paw",
  38116. image: {
  38117. source: "./media/characters/orion/paw.svg"
  38118. }
  38119. },
  38120. },
  38121. [
  38122. {
  38123. name: "Normal",
  38124. height: math.unit(2 + 5/12, "feet"),
  38125. default: true
  38126. },
  38127. ]
  38128. ))
  38129. characterMakers.push(() => makeCharacter(
  38130. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38131. {
  38132. front: {
  38133. height: math.unit(5 + 10/12, "feet"),
  38134. name: "Front",
  38135. image: {
  38136. source: "./media/characters/vera/front.svg",
  38137. extra: 1680/1575,
  38138. bottom: 49/1729
  38139. }
  38140. },
  38141. back: {
  38142. height: math.unit(5 + 10/12, "feet"),
  38143. name: "Back",
  38144. image: {
  38145. source: "./media/characters/vera/back.svg",
  38146. extra: 1700/1588,
  38147. bottom: 18/1718
  38148. }
  38149. },
  38150. arcanine: {
  38151. height: math.unit(6 + 8/12, "feet"),
  38152. name: "Arcanine",
  38153. image: {
  38154. source: "./media/characters/vera/arcanine.svg",
  38155. extra: 1590/1511,
  38156. bottom: 71/1661
  38157. }
  38158. },
  38159. maw: {
  38160. height: math.unit(0.82, "feet"),
  38161. name: "Maw",
  38162. image: {
  38163. source: "./media/characters/vera/maw.svg"
  38164. }
  38165. },
  38166. mawArcanine: {
  38167. height: math.unit(0.97, "feet"),
  38168. name: "Maw (Arcanine)",
  38169. image: {
  38170. source: "./media/characters/vera/maw-arcanine.svg"
  38171. }
  38172. },
  38173. paw: {
  38174. height: math.unit(0.75, "feet"),
  38175. name: "Paw",
  38176. image: {
  38177. source: "./media/characters/vera/paw.svg"
  38178. }
  38179. },
  38180. pawprint: {
  38181. height: math.unit(0.52, "feet"),
  38182. name: "Pawprint",
  38183. image: {
  38184. source: "./media/characters/vera/pawprint.svg"
  38185. }
  38186. },
  38187. },
  38188. [
  38189. {
  38190. name: "Normal",
  38191. height: math.unit(5 + 10/12, "feet"),
  38192. default: true
  38193. },
  38194. {
  38195. name: "Macro",
  38196. height: math.unit(75, "feet")
  38197. },
  38198. ]
  38199. ))
  38200. characterMakers.push(() => makeCharacter(
  38201. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38202. {
  38203. front: {
  38204. height: math.unit(4, "feet"),
  38205. weight: math.unit(40, "lb"),
  38206. name: "Front",
  38207. image: {
  38208. source: "./media/characters/orvan-rabbit/front.svg",
  38209. extra: 1896/1642,
  38210. bottom: 29/1925
  38211. }
  38212. },
  38213. },
  38214. [
  38215. {
  38216. name: "Normal",
  38217. height: math.unit(4, "feet"),
  38218. default: true
  38219. },
  38220. ]
  38221. ))
  38222. characterMakers.push(() => makeCharacter(
  38223. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38224. {
  38225. front: {
  38226. height: math.unit(6, "feet"),
  38227. weight: math.unit(168, "lb"),
  38228. name: "Front",
  38229. image: {
  38230. source: "./media/characters/lisa/front.svg",
  38231. extra: 2065/1867,
  38232. bottom: 46/2111
  38233. }
  38234. },
  38235. back: {
  38236. height: math.unit(6, "feet"),
  38237. weight: math.unit(168, "lb"),
  38238. name: "Back",
  38239. image: {
  38240. source: "./media/characters/lisa/back.svg",
  38241. extra: 1982/1838,
  38242. bottom: 29/2011
  38243. }
  38244. },
  38245. maw: {
  38246. height: math.unit(0.81, "feet"),
  38247. name: "Maw",
  38248. image: {
  38249. source: "./media/characters/lisa/maw.svg"
  38250. }
  38251. },
  38252. paw: {
  38253. height: math.unit(0.9, "feet"),
  38254. name: "Paw",
  38255. image: {
  38256. source: "./media/characters/lisa/paw.svg"
  38257. }
  38258. },
  38259. caribousune: {
  38260. height: math.unit(7 + 2/12, "feet"),
  38261. weight: math.unit(268, "lb"),
  38262. name: "Caribousune",
  38263. image: {
  38264. source: "./media/characters/lisa/caribousune.svg",
  38265. extra: 1843/1633,
  38266. bottom: 29/1872
  38267. }
  38268. },
  38269. frontCaribousune: {
  38270. height: math.unit(7 + 2/12, "feet"),
  38271. weight: math.unit(268, "lb"),
  38272. name: "Front (Caribousune)",
  38273. image: {
  38274. source: "./media/characters/lisa/front-caribousune.svg",
  38275. extra: 1818/1638,
  38276. bottom: 52/1870
  38277. }
  38278. },
  38279. sideCaribousune: {
  38280. height: math.unit(7 + 2/12, "feet"),
  38281. weight: math.unit(268, "lb"),
  38282. name: "Side (Caribousune)",
  38283. image: {
  38284. source: "./media/characters/lisa/side-caribousune.svg",
  38285. extra: 1851/1635,
  38286. bottom: 16/1867
  38287. }
  38288. },
  38289. backCaribousune: {
  38290. height: math.unit(7 + 2/12, "feet"),
  38291. weight: math.unit(268, "lb"),
  38292. name: "Back (Caribousune)",
  38293. image: {
  38294. source: "./media/characters/lisa/back-caribousune.svg",
  38295. extra: 1801/1604,
  38296. bottom: 44/1845
  38297. }
  38298. },
  38299. caribou: {
  38300. height: math.unit(7 + 2/12, "feet"),
  38301. weight: math.unit(268, "lb"),
  38302. name: "Caribou",
  38303. image: {
  38304. source: "./media/characters/lisa/caribou.svg",
  38305. extra: 1843/1633,
  38306. bottom: 29/1872
  38307. }
  38308. },
  38309. frontCaribou: {
  38310. height: math.unit(7 + 2/12, "feet"),
  38311. weight: math.unit(268, "lb"),
  38312. name: "Front (Caribou)",
  38313. image: {
  38314. source: "./media/characters/lisa/front-caribou.svg",
  38315. extra: 1818/1638,
  38316. bottom: 52/1870
  38317. }
  38318. },
  38319. sideCaribou: {
  38320. height: math.unit(7 + 2/12, "feet"),
  38321. weight: math.unit(268, "lb"),
  38322. name: "Side (Caribou)",
  38323. image: {
  38324. source: "./media/characters/lisa/side-caribou.svg",
  38325. extra: 1851/1635,
  38326. bottom: 16/1867
  38327. }
  38328. },
  38329. backCaribou: {
  38330. height: math.unit(7 + 2/12, "feet"),
  38331. weight: math.unit(268, "lb"),
  38332. name: "Back (Caribou)",
  38333. image: {
  38334. source: "./media/characters/lisa/back-caribou.svg",
  38335. extra: 1801/1604,
  38336. bottom: 44/1845
  38337. }
  38338. },
  38339. mawCaribou: {
  38340. height: math.unit(1.45, "feet"),
  38341. name: "Maw (Caribou)",
  38342. image: {
  38343. source: "./media/characters/lisa/maw-caribou.svg"
  38344. }
  38345. },
  38346. mawCaribousune: {
  38347. height: math.unit(1.45, "feet"),
  38348. name: "Maw (Caribousune)",
  38349. image: {
  38350. source: "./media/characters/lisa/maw-caribousune.svg"
  38351. }
  38352. },
  38353. pawCaribousune: {
  38354. height: math.unit(1.61, "feet"),
  38355. name: "Paw (Caribou)",
  38356. image: {
  38357. source: "./media/characters/lisa/paw-caribousune.svg"
  38358. }
  38359. },
  38360. },
  38361. [
  38362. {
  38363. name: "Normal",
  38364. height: math.unit(6, "feet")
  38365. },
  38366. {
  38367. name: "God Size",
  38368. height: math.unit(72, "feet"),
  38369. default: true
  38370. },
  38371. {
  38372. name: "Towering",
  38373. height: math.unit(288, "feet")
  38374. },
  38375. {
  38376. name: "City Size",
  38377. height: math.unit(48384, "feet")
  38378. },
  38379. {
  38380. name: "Continental",
  38381. height: math.unit(4200, "miles")
  38382. },
  38383. {
  38384. name: "Planet Eater",
  38385. height: math.unit(42, "earths")
  38386. },
  38387. {
  38388. name: "Star Swallower",
  38389. height: math.unit(42, "solarradii")
  38390. },
  38391. {
  38392. name: "System Swallower",
  38393. height: math.unit(84000, "AU")
  38394. },
  38395. {
  38396. name: "Galaxy Gobbler",
  38397. height: math.unit(42, "galaxies")
  38398. },
  38399. {
  38400. name: "Universe Devourer",
  38401. height: math.unit(42, "universes")
  38402. },
  38403. {
  38404. name: "Multiverse Muncher",
  38405. height: math.unit(42, "multiverses")
  38406. },
  38407. ]
  38408. ))
  38409. characterMakers.push(() => makeCharacter(
  38410. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38411. {
  38412. front: {
  38413. height: math.unit(36, "feet"),
  38414. name: "Front",
  38415. image: {
  38416. source: "./media/characters/shadow-rat/front.svg",
  38417. extra: 1845/1758,
  38418. bottom: 83/1928
  38419. }
  38420. },
  38421. },
  38422. [
  38423. {
  38424. name: "Macro",
  38425. height: math.unit(36, "feet"),
  38426. default: true
  38427. },
  38428. ]
  38429. ))
  38430. characterMakers.push(() => makeCharacter(
  38431. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38432. {
  38433. side: {
  38434. height: math.unit(8, "feet"),
  38435. weight: math.unit(2630, "lb"),
  38436. name: "Side",
  38437. image: {
  38438. source: "./media/characters/torallia/side.svg",
  38439. extra: 2164/2021,
  38440. bottom: 371/2535
  38441. }
  38442. },
  38443. },
  38444. [
  38445. {
  38446. name: "Mortal Interaction",
  38447. height: math.unit(8, "feet")
  38448. },
  38449. {
  38450. name: "Natural",
  38451. height: math.unit(24, "feet"),
  38452. default: true
  38453. },
  38454. {
  38455. name: "Giant",
  38456. height: math.unit(80, "feet")
  38457. },
  38458. {
  38459. name: "Kaiju",
  38460. height: math.unit(240, "feet")
  38461. },
  38462. {
  38463. name: "Macro",
  38464. height: math.unit(800, "feet")
  38465. },
  38466. {
  38467. name: "Macro+",
  38468. height: math.unit(2400, "feet")
  38469. },
  38470. {
  38471. name: "Macro++",
  38472. height: math.unit(8000, "feet")
  38473. },
  38474. {
  38475. name: "City-Crushing",
  38476. height: math.unit(24000, "feet")
  38477. },
  38478. {
  38479. name: "Mountain-Mashing",
  38480. height: math.unit(80000, "feet")
  38481. },
  38482. {
  38483. name: "District Demolisher",
  38484. height: math.unit(240000, "feet")
  38485. },
  38486. {
  38487. name: "Tri-County Terror",
  38488. height: math.unit(800000, "feet")
  38489. },
  38490. {
  38491. name: "State Smasher",
  38492. height: math.unit(2.4e6, "feet")
  38493. },
  38494. {
  38495. name: "Nation Nemesis",
  38496. height: math.unit(8e6, "feet")
  38497. },
  38498. {
  38499. name: "Continent Cracker",
  38500. height: math.unit(2.4e7, "feet")
  38501. },
  38502. {
  38503. name: "Planet-Pillaging",
  38504. height: math.unit(8e7, "feet")
  38505. },
  38506. {
  38507. name: "Earth-Eclipsing",
  38508. height: math.unit(2.4e8, "feet")
  38509. },
  38510. {
  38511. name: "Jovian-Jostling",
  38512. height: math.unit(8e8, "feet")
  38513. },
  38514. {
  38515. name: "Gas Giant Gulper",
  38516. height: math.unit(2.4e9, "feet")
  38517. },
  38518. {
  38519. name: "Astral Annihilator",
  38520. height: math.unit(8e9, "feet")
  38521. },
  38522. {
  38523. name: "Celestial Conqueror",
  38524. height: math.unit(2.4e10, "feet")
  38525. },
  38526. {
  38527. name: "Sol-Swallowing",
  38528. height: math.unit(8e10, "feet")
  38529. },
  38530. {
  38531. name: "Hunter of the Heavens",
  38532. height: math.unit(2.4e13, "feet")
  38533. },
  38534. ]
  38535. ))
  38536. characterMakers.push(() => makeCharacter(
  38537. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38538. {
  38539. front: {
  38540. height: math.unit(6 + 8/12, "feet"),
  38541. name: "Front",
  38542. image: {
  38543. source: "./media/characters/rebecca-pawlson/front.svg",
  38544. extra: 1737/1596,
  38545. bottom: 107/1844
  38546. }
  38547. },
  38548. back: {
  38549. height: math.unit(6 + 8/12, "feet"),
  38550. name: "Back",
  38551. image: {
  38552. source: "./media/characters/rebecca-pawlson/back.svg",
  38553. extra: 1702/1523,
  38554. bottom: 86/1788
  38555. }
  38556. },
  38557. },
  38558. [
  38559. {
  38560. name: "Normal",
  38561. height: math.unit(6 + 8/12, "feet")
  38562. },
  38563. {
  38564. name: "Mini Macro",
  38565. height: math.unit(10, "feet"),
  38566. default: true
  38567. },
  38568. {
  38569. name: "Macro",
  38570. height: math.unit(100, "feet")
  38571. },
  38572. {
  38573. name: "Mega Macro",
  38574. height: math.unit(2500, "feet")
  38575. },
  38576. {
  38577. name: "Giga Macro",
  38578. height: math.unit(50, "miles")
  38579. },
  38580. ]
  38581. ))
  38582. characterMakers.push(() => makeCharacter(
  38583. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38584. {
  38585. front: {
  38586. height: math.unit(7 + 6/12, "feet"),
  38587. weight: math.unit(600, "lb"),
  38588. name: "Front",
  38589. image: {
  38590. source: "./media/characters/moxie-nova/front.svg",
  38591. extra: 1734/1652,
  38592. bottom: 41/1775
  38593. }
  38594. },
  38595. },
  38596. [
  38597. {
  38598. name: "Normal",
  38599. height: math.unit(7 + 6/12, "feet"),
  38600. default: true
  38601. },
  38602. ]
  38603. ))
  38604. characterMakers.push(() => makeCharacter(
  38605. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38606. {
  38607. goat: {
  38608. height: math.unit(4, "feet"),
  38609. weight: math.unit(180, "lb"),
  38610. name: "Goat",
  38611. image: {
  38612. source: "./media/characters/tiffany/goat.svg",
  38613. extra: 1845/1595,
  38614. bottom: 106/1951
  38615. }
  38616. },
  38617. front: {
  38618. height: math.unit(5, "feet"),
  38619. weight: math.unit(150, "lb"),
  38620. name: "Foxcoon",
  38621. image: {
  38622. source: "./media/characters/tiffany/foxcoon.svg",
  38623. extra: 1941/1845,
  38624. bottom: 58/1999
  38625. }
  38626. },
  38627. },
  38628. [
  38629. {
  38630. name: "Normal",
  38631. height: math.unit(5, "feet"),
  38632. default: true
  38633. },
  38634. ]
  38635. ))
  38636. characterMakers.push(() => makeCharacter(
  38637. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38638. {
  38639. front: {
  38640. height: math.unit(8, "feet"),
  38641. weight: math.unit(300, "lb"),
  38642. name: "Front",
  38643. image: {
  38644. source: "./media/characters/raxinath/front.svg",
  38645. extra: 1407/1309,
  38646. bottom: 39/1446
  38647. }
  38648. },
  38649. back: {
  38650. height: math.unit(8, "feet"),
  38651. weight: math.unit(300, "lb"),
  38652. name: "Back",
  38653. image: {
  38654. source: "./media/characters/raxinath/back.svg",
  38655. extra: 1405/1315,
  38656. bottom: 9/1414
  38657. }
  38658. },
  38659. },
  38660. [
  38661. {
  38662. name: "Speck",
  38663. height: math.unit(0.5, "nm")
  38664. },
  38665. {
  38666. name: "Micro",
  38667. height: math.unit(3, "inches")
  38668. },
  38669. {
  38670. name: "Kobold",
  38671. height: math.unit(3, "feet")
  38672. },
  38673. {
  38674. name: "Normal",
  38675. height: math.unit(8, "feet"),
  38676. default: true
  38677. },
  38678. {
  38679. name: "Giant",
  38680. height: math.unit(50, "feet")
  38681. },
  38682. {
  38683. name: "Macro",
  38684. height: math.unit(1000, "feet")
  38685. },
  38686. {
  38687. name: "Megamacro",
  38688. height: math.unit(1, "mile")
  38689. },
  38690. ]
  38691. ))
  38692. characterMakers.push(() => makeCharacter(
  38693. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38694. {
  38695. front: {
  38696. height: math.unit(10, "feet"),
  38697. weight: math.unit(1442, "lb"),
  38698. name: "Front",
  38699. image: {
  38700. source: "./media/characters/mal-dragon/front.svg",
  38701. extra: 1515/1444,
  38702. bottom: 113/1628
  38703. }
  38704. },
  38705. back: {
  38706. height: math.unit(10, "feet"),
  38707. weight: math.unit(1442, "lb"),
  38708. name: "Back",
  38709. image: {
  38710. source: "./media/characters/mal-dragon/back.svg",
  38711. extra: 1527/1434,
  38712. bottom: 25/1552
  38713. }
  38714. },
  38715. },
  38716. [
  38717. {
  38718. name: "Mortal Interaction",
  38719. height: math.unit(10, "feet"),
  38720. default: true
  38721. },
  38722. {
  38723. name: "Large",
  38724. height: math.unit(30, "feet")
  38725. },
  38726. {
  38727. name: "Kaiju",
  38728. height: math.unit(300, "feet")
  38729. },
  38730. {
  38731. name: "Megamacro",
  38732. height: math.unit(10000, "feet")
  38733. },
  38734. {
  38735. name: "Continent Cracker",
  38736. height: math.unit(30000000, "feet")
  38737. },
  38738. {
  38739. name: "Sol-Swallowing",
  38740. height: math.unit(1e11, "feet")
  38741. },
  38742. {
  38743. name: "Light Universal",
  38744. height: math.unit(5, "universes")
  38745. },
  38746. {
  38747. name: "Universe Atoms",
  38748. height: math.unit(1.829e9, "universes")
  38749. },
  38750. {
  38751. name: "Light Multiversal",
  38752. height: math.unit(5, "multiverses")
  38753. },
  38754. {
  38755. name: "Multiverse Atoms",
  38756. height: math.unit(1.829e9, "multiverses")
  38757. },
  38758. {
  38759. name: "Fabric of Time",
  38760. height: math.unit(1e262, "multiverses")
  38761. },
  38762. ]
  38763. ))
  38764. characterMakers.push(() => makeCharacter(
  38765. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38766. {
  38767. front: {
  38768. height: math.unit(9, "feet"),
  38769. weight: math.unit(1050, "lb"),
  38770. name: "Front",
  38771. image: {
  38772. source: "./media/characters/tabitha/front.svg",
  38773. extra: 2083/1994,
  38774. bottom: 68/2151
  38775. }
  38776. },
  38777. },
  38778. [
  38779. {
  38780. name: "Baseline",
  38781. height: math.unit(9, "feet"),
  38782. default: true
  38783. },
  38784. {
  38785. name: "Giant",
  38786. height: math.unit(90, "feet")
  38787. },
  38788. {
  38789. name: "Macro",
  38790. height: math.unit(900, "feet")
  38791. },
  38792. {
  38793. name: "Megamacro",
  38794. height: math.unit(9000, "feet")
  38795. },
  38796. {
  38797. name: "City-Crushing",
  38798. height: math.unit(27000, "feet")
  38799. },
  38800. {
  38801. name: "Mountain-Mashing",
  38802. height: math.unit(90000, "feet")
  38803. },
  38804. {
  38805. name: "Nation Nemesis",
  38806. height: math.unit(9e6, "feet")
  38807. },
  38808. {
  38809. name: "Continent Cracker",
  38810. height: math.unit(27e6, "feet")
  38811. },
  38812. {
  38813. name: "Earth-Eclipsing",
  38814. height: math.unit(2.7e8, "feet")
  38815. },
  38816. {
  38817. name: "Gas Giant Gulper",
  38818. height: math.unit(2.7e9, "feet")
  38819. },
  38820. {
  38821. name: "Sol-Swallowing",
  38822. height: math.unit(9e10, "feet")
  38823. },
  38824. {
  38825. name: "Galaxy Gulper",
  38826. height: math.unit(9, "galaxies")
  38827. },
  38828. {
  38829. name: "Cosmos Churner",
  38830. height: math.unit(9, "universes")
  38831. },
  38832. ]
  38833. ))
  38834. characterMakers.push(() => makeCharacter(
  38835. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38836. {
  38837. front: {
  38838. height: math.unit(160, "cm"),
  38839. weight: math.unit(55, "kg"),
  38840. name: "Front",
  38841. image: {
  38842. source: "./media/characters/tow/front.svg",
  38843. extra: 1751/1722,
  38844. bottom: 74/1825
  38845. }
  38846. },
  38847. },
  38848. [
  38849. {
  38850. name: "Norm",
  38851. height: math.unit(160, "cm")
  38852. },
  38853. {
  38854. name: "Casual",
  38855. height: math.unit(3200, "m"),
  38856. default: true
  38857. },
  38858. {
  38859. name: "Show-Off",
  38860. height: math.unit(160, "km")
  38861. },
  38862. ]
  38863. ))
  38864. characterMakers.push(() => makeCharacter(
  38865. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38866. {
  38867. front: {
  38868. height: math.unit(7 + 11/12, "feet"),
  38869. weight: math.unit(342.8, "lb"),
  38870. name: "Front",
  38871. image: {
  38872. source: "./media/characters/vivian-orca-dragon/front.svg",
  38873. extra: 1890/1865,
  38874. bottom: 28/1918
  38875. }
  38876. },
  38877. },
  38878. [
  38879. {
  38880. name: "Micro",
  38881. height: math.unit(5, "inches")
  38882. },
  38883. {
  38884. name: "Normal",
  38885. height: math.unit(7 + 11/12, "feet"),
  38886. default: true
  38887. },
  38888. {
  38889. name: "Macro",
  38890. height: math.unit(395 + 7/12, "feet")
  38891. },
  38892. ]
  38893. ))
  38894. characterMakers.push(() => makeCharacter(
  38895. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38896. {
  38897. side: {
  38898. height: math.unit(10, "feet"),
  38899. weight: math.unit(1442, "lb"),
  38900. name: "Side",
  38901. image: {
  38902. source: "./media/characters/lotherakon/side.svg",
  38903. extra: 1604/1497,
  38904. bottom: 89/1693
  38905. }
  38906. },
  38907. },
  38908. [
  38909. {
  38910. name: "Mortal Interaction",
  38911. height: math.unit(10, "feet")
  38912. },
  38913. {
  38914. name: "Large",
  38915. height: math.unit(30, "feet"),
  38916. default: true
  38917. },
  38918. {
  38919. name: "Giant",
  38920. height: math.unit(100, "feet")
  38921. },
  38922. {
  38923. name: "Kaiju",
  38924. height: math.unit(300, "feet")
  38925. },
  38926. {
  38927. name: "Macro",
  38928. height: math.unit(1000, "feet")
  38929. },
  38930. {
  38931. name: "Macro+",
  38932. height: math.unit(3000, "feet")
  38933. },
  38934. {
  38935. name: "Megamacro",
  38936. height: math.unit(10000, "feet")
  38937. },
  38938. {
  38939. name: "City-Crushing",
  38940. height: math.unit(30000, "feet")
  38941. },
  38942. {
  38943. name: "Continent Cracker",
  38944. height: math.unit(30e6, "feet")
  38945. },
  38946. {
  38947. name: "Earth Eclipsing",
  38948. height: math.unit(3e8, "feet")
  38949. },
  38950. {
  38951. name: "Gas Giant Gulper",
  38952. height: math.unit(3e9, "feet")
  38953. },
  38954. {
  38955. name: "Sol-Swallowing",
  38956. height: math.unit(1e11, "feet")
  38957. },
  38958. {
  38959. name: "System Swallower",
  38960. height: math.unit(3e14, "feet")
  38961. },
  38962. {
  38963. name: "Galaxy Gulper",
  38964. height: math.unit(10, "galaxies")
  38965. },
  38966. {
  38967. name: "Light Universal",
  38968. height: math.unit(5, "universes")
  38969. },
  38970. {
  38971. name: "Universe Palm",
  38972. height: math.unit(20, "universes")
  38973. },
  38974. {
  38975. name: "Light Multiversal",
  38976. height: math.unit(5, "multiverses")
  38977. },
  38978. {
  38979. name: "Multiverse Palm",
  38980. height: math.unit(20, "multiverses")
  38981. },
  38982. {
  38983. name: "Inferno Incarnate",
  38984. height: math.unit(1e7, "multiverses")
  38985. },
  38986. ]
  38987. ))
  38988. characterMakers.push(() => makeCharacter(
  38989. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38990. {
  38991. front: {
  38992. height: math.unit(8, "feet"),
  38993. weight: math.unit(1200, "lb"),
  38994. name: "Front",
  38995. image: {
  38996. source: "./media/characters/malithee/front.svg",
  38997. extra: 1675/1640,
  38998. bottom: 162/1837
  38999. }
  39000. },
  39001. },
  39002. [
  39003. {
  39004. name: "Mortal Interaction",
  39005. height: math.unit(8, "feet"),
  39006. default: true
  39007. },
  39008. {
  39009. name: "Large",
  39010. height: math.unit(24, "feet")
  39011. },
  39012. {
  39013. name: "Kaiju",
  39014. height: math.unit(240, "feet")
  39015. },
  39016. {
  39017. name: "Megamacro",
  39018. height: math.unit(8000, "feet")
  39019. },
  39020. {
  39021. name: "Continent Cracker",
  39022. height: math.unit(24e6, "feet")
  39023. },
  39024. {
  39025. name: "Earth-Eclipsing",
  39026. height: math.unit(2.4e8, "feet")
  39027. },
  39028. {
  39029. name: "Sol-Swallowing",
  39030. height: math.unit(8e10, "feet")
  39031. },
  39032. {
  39033. name: "Galaxy Gulper",
  39034. height: math.unit(8, "galaxies")
  39035. },
  39036. {
  39037. name: "Light Universal",
  39038. height: math.unit(4, "universes")
  39039. },
  39040. {
  39041. name: "Universe Atoms",
  39042. height: math.unit(1.829e9, "universes")
  39043. },
  39044. {
  39045. name: "Light Multiversal",
  39046. height: math.unit(4, "multiverses")
  39047. },
  39048. {
  39049. name: "Multiverse Atoms",
  39050. height: math.unit(1.829e9, "multiverses")
  39051. },
  39052. {
  39053. name: "Nigh-Omnipresence",
  39054. height: math.unit(8e261, "multiverses")
  39055. },
  39056. ]
  39057. ))
  39058. characterMakers.push(() => makeCharacter(
  39059. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39060. {
  39061. front: {
  39062. height: math.unit(10, "feet"),
  39063. weight: math.unit(1500, "lb"),
  39064. name: "Front",
  39065. image: {
  39066. source: "./media/characters/miles-thestia/front.svg",
  39067. extra: 1812/1727,
  39068. bottom: 86/1898
  39069. }
  39070. },
  39071. back: {
  39072. height: math.unit(10, "feet"),
  39073. weight: math.unit(1500, "lb"),
  39074. name: "Back",
  39075. image: {
  39076. source: "./media/characters/miles-thestia/back.svg",
  39077. extra: 1799/1690,
  39078. bottom: 47/1846
  39079. }
  39080. },
  39081. frontNsfw: {
  39082. height: math.unit(10, "feet"),
  39083. weight: math.unit(1500, "lb"),
  39084. name: "Front (NSFW)",
  39085. image: {
  39086. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39087. extra: 1812/1727,
  39088. bottom: 86/1898
  39089. }
  39090. },
  39091. },
  39092. [
  39093. {
  39094. name: "Mini-Macro",
  39095. height: math.unit(10, "feet"),
  39096. default: true
  39097. },
  39098. ]
  39099. ))
  39100. characterMakers.push(() => makeCharacter(
  39101. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39102. {
  39103. front: {
  39104. height: math.unit(25, "feet"),
  39105. name: "Front",
  39106. image: {
  39107. source: "./media/characters/titan-s-wulf/front.svg",
  39108. extra: 1560/1484,
  39109. bottom: 76/1636
  39110. }
  39111. },
  39112. },
  39113. [
  39114. {
  39115. name: "Smallest",
  39116. height: math.unit(25, "feet"),
  39117. default: true
  39118. },
  39119. {
  39120. name: "Normal",
  39121. height: math.unit(200, "feet")
  39122. },
  39123. {
  39124. name: "Macro",
  39125. height: math.unit(200000, "feet")
  39126. },
  39127. {
  39128. name: "Multiversal Original",
  39129. height: math.unit(10000, "multiverses")
  39130. },
  39131. ]
  39132. ))
  39133. characterMakers.push(() => makeCharacter(
  39134. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39135. {
  39136. front: {
  39137. height: math.unit(8, "feet"),
  39138. weight: math.unit(553, "lb"),
  39139. name: "Front",
  39140. image: {
  39141. source: "./media/characters/tawendeh/front.svg",
  39142. extra: 2365/2268,
  39143. bottom: 83/2448
  39144. }
  39145. },
  39146. frontClothed: {
  39147. height: math.unit(8, "feet"),
  39148. weight: math.unit(553, "lb"),
  39149. name: "Front (Clothed)",
  39150. image: {
  39151. source: "./media/characters/tawendeh/front-clothed.svg",
  39152. extra: 2365/2268,
  39153. bottom: 83/2448
  39154. }
  39155. },
  39156. back: {
  39157. height: math.unit(8, "feet"),
  39158. weight: math.unit(553, "lb"),
  39159. name: "Back",
  39160. image: {
  39161. source: "./media/characters/tawendeh/back.svg",
  39162. extra: 2397/2294,
  39163. bottom: 42/2439
  39164. }
  39165. },
  39166. },
  39167. [
  39168. {
  39169. name: "Mortal Interaction",
  39170. height: math.unit(8, "feet"),
  39171. default: true
  39172. },
  39173. {
  39174. name: "Giant",
  39175. height: math.unit(80, "feet")
  39176. },
  39177. {
  39178. name: "Macro",
  39179. height: math.unit(800, "feet")
  39180. },
  39181. {
  39182. name: "Megamacro",
  39183. height: math.unit(8000, "feet")
  39184. },
  39185. {
  39186. name: "City-Crushing",
  39187. height: math.unit(24000, "feet")
  39188. },
  39189. {
  39190. name: "Mountain-Mashing",
  39191. height: math.unit(80000, "feet")
  39192. },
  39193. {
  39194. name: "Nation Nemesis",
  39195. height: math.unit(8e6, "feet")
  39196. },
  39197. {
  39198. name: "Continent Cracker",
  39199. height: math.unit(24e6, "feet")
  39200. },
  39201. {
  39202. name: "Earth-Eclipsing",
  39203. height: math.unit(2.4e8, "feet")
  39204. },
  39205. {
  39206. name: "Gas Giant Gulper",
  39207. height: math.unit(2.4e9, "feet")
  39208. },
  39209. {
  39210. name: "Sol-Swallowing",
  39211. height: math.unit(8e10, "feet")
  39212. },
  39213. {
  39214. name: "Galaxy Gulper",
  39215. height: math.unit(8, "galaxies")
  39216. },
  39217. {
  39218. name: "Cosmos Churner",
  39219. height: math.unit(8, "universes")
  39220. },
  39221. {
  39222. name: "Omnipotent Otter",
  39223. height: math.unit(80, "universes")
  39224. },
  39225. ]
  39226. ))
  39227. characterMakers.push(() => makeCharacter(
  39228. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39229. {
  39230. front: {
  39231. height: math.unit(2.6, "meters"),
  39232. weight: math.unit(900, "kg"),
  39233. name: "Front",
  39234. image: {
  39235. source: "./media/characters/neesha/front.svg",
  39236. extra: 1803/1653,
  39237. bottom: 128/1931
  39238. }
  39239. },
  39240. },
  39241. [
  39242. {
  39243. name: "Normal",
  39244. height: math.unit(2.6, "meters"),
  39245. default: true
  39246. },
  39247. {
  39248. name: "Macro",
  39249. height: math.unit(50, "meters")
  39250. },
  39251. ]
  39252. ))
  39253. characterMakers.push(() => makeCharacter(
  39254. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39255. {
  39256. front: {
  39257. height: math.unit(5, "feet"),
  39258. weight: math.unit(185, "lb"),
  39259. name: "Front",
  39260. image: {
  39261. source: "./media/characters/kyera/front.svg",
  39262. extra: 1875/1790,
  39263. bottom: 96/1971
  39264. }
  39265. },
  39266. },
  39267. [
  39268. {
  39269. name: "Normal",
  39270. height: math.unit(5, "feet"),
  39271. default: true
  39272. },
  39273. ]
  39274. ))
  39275. characterMakers.push(() => makeCharacter(
  39276. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39277. {
  39278. front: {
  39279. height: math.unit(7 + 6/12, "feet"),
  39280. weight: math.unit(540, "lb"),
  39281. name: "Front",
  39282. image: {
  39283. source: "./media/characters/yuko/front.svg",
  39284. extra: 1282/1222,
  39285. bottom: 101/1383
  39286. }
  39287. },
  39288. frontClothed: {
  39289. height: math.unit(7 + 6/12, "feet"),
  39290. weight: math.unit(540, "lb"),
  39291. name: "Front (Clothed)",
  39292. image: {
  39293. source: "./media/characters/yuko/front-clothed.svg",
  39294. extra: 1282/1222,
  39295. bottom: 101/1383
  39296. }
  39297. },
  39298. },
  39299. [
  39300. {
  39301. name: "Normal",
  39302. height: math.unit(7 + 6/12, "feet"),
  39303. default: true
  39304. },
  39305. {
  39306. name: "Macro",
  39307. height: math.unit(26 + 9/12, "feet")
  39308. },
  39309. {
  39310. name: "Megamacro",
  39311. height: math.unit(300, "feet")
  39312. },
  39313. {
  39314. name: "Gigamacro",
  39315. height: math.unit(5000, "feet")
  39316. },
  39317. {
  39318. name: "Planetary",
  39319. height: math.unit(10000, "miles")
  39320. },
  39321. ]
  39322. ))
  39323. characterMakers.push(() => makeCharacter(
  39324. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39325. {
  39326. front: {
  39327. height: math.unit(8 + 2/12, "feet"),
  39328. weight: math.unit(600, "lb"),
  39329. name: "Front",
  39330. image: {
  39331. source: "./media/characters/deam-nitrel/front.svg",
  39332. extra: 1308/1234,
  39333. bottom: 125/1433
  39334. }
  39335. },
  39336. },
  39337. [
  39338. {
  39339. name: "Normal",
  39340. height: math.unit(8 + 2/12, "feet"),
  39341. default: true
  39342. },
  39343. ]
  39344. ))
  39345. characterMakers.push(() => makeCharacter(
  39346. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39347. {
  39348. front: {
  39349. height: math.unit(6.1, "feet"),
  39350. weight: math.unit(180, "lb"),
  39351. name: "Front",
  39352. image: {
  39353. source: "./media/characters/skyress/front.svg",
  39354. extra: 1045/915,
  39355. bottom: 28/1073
  39356. }
  39357. },
  39358. maw: {
  39359. height: math.unit(1, "feet"),
  39360. name: "Maw",
  39361. image: {
  39362. source: "./media/characters/skyress/maw.svg"
  39363. }
  39364. },
  39365. },
  39366. [
  39367. {
  39368. name: "Normal",
  39369. height: math.unit(6.1, "feet"),
  39370. default: true
  39371. },
  39372. {
  39373. name: "Macro",
  39374. height: math.unit(200, "feet")
  39375. },
  39376. ]
  39377. ))
  39378. characterMakers.push(() => makeCharacter(
  39379. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39380. {
  39381. front: {
  39382. height: math.unit(4 + 2/12, "feet"),
  39383. weight: math.unit(40, "kg"),
  39384. name: "Front",
  39385. image: {
  39386. source: "./media/characters/amethyst-jones/front.svg",
  39387. extra: 1220/1150,
  39388. bottom: 101/1321
  39389. }
  39390. },
  39391. },
  39392. [
  39393. {
  39394. name: "Normal",
  39395. height: math.unit(4 + 2/12, "feet"),
  39396. default: true
  39397. },
  39398. ]
  39399. ))
  39400. characterMakers.push(() => makeCharacter(
  39401. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39402. {
  39403. front: {
  39404. height: math.unit(1.7, "m"),
  39405. weight: math.unit(135, "lb"),
  39406. name: "Front",
  39407. image: {
  39408. source: "./media/characters/jade/front.svg",
  39409. extra: 1818/1767,
  39410. bottom: 32/1850
  39411. }
  39412. },
  39413. back: {
  39414. height: math.unit(1.7, "m"),
  39415. weight: math.unit(135, "lb"),
  39416. name: "Back",
  39417. image: {
  39418. source: "./media/characters/jade/back.svg",
  39419. extra: 1869/1809,
  39420. bottom: 35/1904
  39421. }
  39422. },
  39423. hand: {
  39424. height: math.unit(0.24, "m"),
  39425. name: "Hand",
  39426. image: {
  39427. source: "./media/characters/jade/hand.svg"
  39428. }
  39429. },
  39430. foot: {
  39431. height: math.unit(0.263, "m"),
  39432. name: "Foot",
  39433. image: {
  39434. source: "./media/characters/jade/foot.svg"
  39435. }
  39436. },
  39437. dick: {
  39438. height: math.unit(0.47, "m"),
  39439. name: "Dick",
  39440. image: {
  39441. source: "./media/characters/jade/dick.svg"
  39442. }
  39443. },
  39444. },
  39445. [
  39446. {
  39447. name: "Micro",
  39448. height: math.unit(22, "cm")
  39449. },
  39450. {
  39451. name: "Normal",
  39452. height: math.unit(1.7, "m"),
  39453. default: true
  39454. },
  39455. {
  39456. name: "Macro",
  39457. height: math.unit(152, "m")
  39458. },
  39459. ]
  39460. ))
  39461. characterMakers.push(() => makeCharacter(
  39462. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39463. {
  39464. front: {
  39465. height: math.unit(100, "miles"),
  39466. weight: math.unit(20000, "tons"),
  39467. name: "Front",
  39468. image: {
  39469. source: "./media/characters/cookie/front.svg",
  39470. extra: 1125/1070,
  39471. bottom: 30/1155
  39472. }
  39473. },
  39474. },
  39475. [
  39476. {
  39477. name: "Big",
  39478. height: math.unit(50, "feet")
  39479. },
  39480. {
  39481. name: "Macro",
  39482. height: math.unit(100, "miles"),
  39483. default: true
  39484. },
  39485. {
  39486. name: "Megamacro",
  39487. height: math.unit(90000, "miles")
  39488. },
  39489. ]
  39490. ))
  39491. characterMakers.push(() => makeCharacter(
  39492. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39493. {
  39494. front: {
  39495. height: math.unit(6, "feet"),
  39496. weight: math.unit(145, "lb"),
  39497. name: "Front",
  39498. image: {
  39499. source: "./media/characters/farzian/front.svg",
  39500. extra: 1902/1693,
  39501. bottom: 108/2010
  39502. }
  39503. },
  39504. },
  39505. [
  39506. {
  39507. name: "Macro",
  39508. height: math.unit(500, "feet"),
  39509. default: true
  39510. },
  39511. ]
  39512. ))
  39513. characterMakers.push(() => makeCharacter(
  39514. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39515. {
  39516. front: {
  39517. height: math.unit(3 + 6/12, "feet"),
  39518. weight: math.unit(50, "lb"),
  39519. name: "Front",
  39520. image: {
  39521. source: "./media/characters/kimberly-tilson/front.svg",
  39522. extra: 1400/1322,
  39523. bottom: 36/1436
  39524. }
  39525. },
  39526. back: {
  39527. height: math.unit(3 + 6/12, "feet"),
  39528. weight: math.unit(50, "lb"),
  39529. name: "Back",
  39530. image: {
  39531. source: "./media/characters/kimberly-tilson/back.svg",
  39532. extra: 1370/1307,
  39533. bottom: 20/1390
  39534. }
  39535. },
  39536. },
  39537. [
  39538. {
  39539. name: "Normal",
  39540. height: math.unit(3 + 6/12, "feet"),
  39541. default: true
  39542. },
  39543. ]
  39544. ))
  39545. characterMakers.push(() => makeCharacter(
  39546. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39547. {
  39548. front: {
  39549. height: math.unit(1148, "feet"),
  39550. weight: math.unit(34057, "lb"),
  39551. name: "Front",
  39552. image: {
  39553. source: "./media/characters/harthos/front.svg",
  39554. extra: 1391/1339,
  39555. bottom: 13/1404
  39556. }
  39557. },
  39558. },
  39559. [
  39560. {
  39561. name: "Macro",
  39562. height: math.unit(1148, "feet"),
  39563. default: true
  39564. },
  39565. ]
  39566. ))
  39567. characterMakers.push(() => makeCharacter(
  39568. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39569. {
  39570. front: {
  39571. height: math.unit(15, "feet"),
  39572. name: "Front",
  39573. image: {
  39574. source: "./media/characters/hypatia/front.svg",
  39575. extra: 1653/1591,
  39576. bottom: 79/1732
  39577. }
  39578. },
  39579. },
  39580. [
  39581. {
  39582. name: "Normal",
  39583. height: math.unit(15, "feet")
  39584. },
  39585. {
  39586. name: "Small",
  39587. height: math.unit(300, "feet")
  39588. },
  39589. {
  39590. name: "Macro",
  39591. height: math.unit(2500, "feet"),
  39592. default: true
  39593. },
  39594. {
  39595. name: "Mega Macro",
  39596. height: math.unit(1500, "miles")
  39597. },
  39598. {
  39599. name: "Giga Macro",
  39600. height: math.unit(1.5e6, "miles")
  39601. },
  39602. ]
  39603. ))
  39604. characterMakers.push(() => makeCharacter(
  39605. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39606. {
  39607. front: {
  39608. height: math.unit(6, "feet"),
  39609. weight: math.unit(200, "lb"),
  39610. name: "Front",
  39611. image: {
  39612. source: "./media/characters/wulver/front.svg",
  39613. extra: 1724/1632,
  39614. bottom: 130/1854
  39615. }
  39616. },
  39617. frontNsfw: {
  39618. height: math.unit(6, "feet"),
  39619. weight: math.unit(200, "lb"),
  39620. name: "Front (NSFW)",
  39621. image: {
  39622. source: "./media/characters/wulver/front-nsfw.svg",
  39623. extra: 1724/1632,
  39624. bottom: 130/1854
  39625. }
  39626. },
  39627. },
  39628. [
  39629. {
  39630. name: "Human-Sized",
  39631. height: math.unit(6, "feet")
  39632. },
  39633. {
  39634. name: "Normal",
  39635. height: math.unit(4, "meters"),
  39636. default: true
  39637. },
  39638. {
  39639. name: "Large",
  39640. height: math.unit(6, "m")
  39641. },
  39642. ]
  39643. ))
  39644. characterMakers.push(() => makeCharacter(
  39645. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39646. {
  39647. front: {
  39648. height: math.unit(7, "feet"),
  39649. name: "Front",
  39650. image: {
  39651. source: "./media/characters/maru/front.svg",
  39652. extra: 1595/1570,
  39653. bottom: 0/1595
  39654. }
  39655. },
  39656. },
  39657. [
  39658. {
  39659. name: "Normal",
  39660. height: math.unit(7, "feet"),
  39661. default: true
  39662. },
  39663. {
  39664. name: "Macro",
  39665. height: math.unit(700, "feet")
  39666. },
  39667. {
  39668. name: "Mega Macro",
  39669. height: math.unit(25, "miles")
  39670. },
  39671. ]
  39672. ))
  39673. characterMakers.push(() => makeCharacter(
  39674. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39675. {
  39676. front: {
  39677. height: math.unit(6, "feet"),
  39678. weight: math.unit(170, "lb"),
  39679. name: "Front",
  39680. image: {
  39681. source: "./media/characters/xenon/front.svg",
  39682. extra: 1376/1305,
  39683. bottom: 56/1432
  39684. }
  39685. },
  39686. back: {
  39687. height: math.unit(6, "feet"),
  39688. weight: math.unit(170, "lb"),
  39689. name: "Back",
  39690. image: {
  39691. source: "./media/characters/xenon/back.svg",
  39692. extra: 1328/1259,
  39693. bottom: 95/1423
  39694. }
  39695. },
  39696. maw: {
  39697. height: math.unit(0.52, "feet"),
  39698. name: "Maw",
  39699. image: {
  39700. source: "./media/characters/xenon/maw.svg"
  39701. }
  39702. },
  39703. hand: {
  39704. height: math.unit(0.82, "feet"),
  39705. name: "Hand",
  39706. image: {
  39707. source: "./media/characters/xenon/hand.svg"
  39708. }
  39709. },
  39710. foot: {
  39711. height: math.unit(1.13, "feet"),
  39712. name: "Foot",
  39713. image: {
  39714. source: "./media/characters/xenon/foot.svg"
  39715. }
  39716. },
  39717. },
  39718. [
  39719. {
  39720. name: "Micro",
  39721. height: math.unit(0.8, "inches")
  39722. },
  39723. {
  39724. name: "Normal",
  39725. height: math.unit(6, "feet")
  39726. },
  39727. {
  39728. name: "Macro",
  39729. height: math.unit(50, "feet"),
  39730. default: true
  39731. },
  39732. {
  39733. name: "Macro+",
  39734. height: math.unit(250, "feet")
  39735. },
  39736. {
  39737. name: "Megamacro",
  39738. height: math.unit(1500, "feet")
  39739. },
  39740. ]
  39741. ))
  39742. characterMakers.push(() => makeCharacter(
  39743. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39744. {
  39745. front: {
  39746. height: math.unit(7 + 5/12, "feet"),
  39747. name: "Front",
  39748. image: {
  39749. source: "./media/characters/zane/front.svg",
  39750. extra: 1260/1203,
  39751. bottom: 94/1354
  39752. }
  39753. },
  39754. back: {
  39755. height: math.unit(5.05, "feet"),
  39756. name: "Back",
  39757. image: {
  39758. source: "./media/characters/zane/back.svg",
  39759. extra: 893/829,
  39760. bottom: 30/923
  39761. }
  39762. },
  39763. werewolf: {
  39764. height: math.unit(11, "feet"),
  39765. name: "Werewolf",
  39766. image: {
  39767. source: "./media/characters/zane/werewolf.svg",
  39768. extra: 1383/1323,
  39769. bottom: 89/1472
  39770. }
  39771. },
  39772. foot: {
  39773. height: math.unit(1.46, "feet"),
  39774. name: "Foot",
  39775. image: {
  39776. source: "./media/characters/zane/foot.svg"
  39777. }
  39778. },
  39779. footFront: {
  39780. height: math.unit(0.784, "feet"),
  39781. name: "Foot (Front)",
  39782. image: {
  39783. source: "./media/characters/zane/foot-front.svg"
  39784. }
  39785. },
  39786. dick: {
  39787. height: math.unit(1.95, "feet"),
  39788. name: "Dick",
  39789. image: {
  39790. source: "./media/characters/zane/dick.svg"
  39791. }
  39792. },
  39793. dickWerewolf: {
  39794. height: math.unit(3.77, "feet"),
  39795. name: "Dick (Werewolf)",
  39796. image: {
  39797. source: "./media/characters/zane/dick.svg"
  39798. }
  39799. },
  39800. },
  39801. [
  39802. {
  39803. name: "Normal",
  39804. height: math.unit(7 + 5/12, "feet"),
  39805. default: true
  39806. },
  39807. ]
  39808. ))
  39809. characterMakers.push(() => makeCharacter(
  39810. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39811. {
  39812. front: {
  39813. height: math.unit(6 + 2/12, "feet"),
  39814. weight: math.unit(284, "lb"),
  39815. name: "Front",
  39816. image: {
  39817. source: "./media/characters/benni-desparque/front.svg",
  39818. extra: 1353/1126,
  39819. bottom: 69/1422
  39820. }
  39821. },
  39822. },
  39823. [
  39824. {
  39825. name: "Civilian",
  39826. height: math.unit(6 + 2/12, "feet")
  39827. },
  39828. {
  39829. name: "Normal",
  39830. height: math.unit(98, "feet"),
  39831. default: true
  39832. },
  39833. {
  39834. name: "Kaiju Fighter",
  39835. height: math.unit(268, "feet")
  39836. },
  39837. ]
  39838. ))
  39839. characterMakers.push(() => makeCharacter(
  39840. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39841. {
  39842. front: {
  39843. height: math.unit(5, "feet"),
  39844. weight: math.unit(105, "lb"),
  39845. name: "Front",
  39846. image: {
  39847. source: "./media/characters/maxine/front.svg",
  39848. extra: 1386/1250,
  39849. bottom: 71/1457
  39850. }
  39851. },
  39852. },
  39853. [
  39854. {
  39855. name: "Normal",
  39856. height: math.unit(5, "feet"),
  39857. default: true
  39858. },
  39859. ]
  39860. ))
  39861. characterMakers.push(() => makeCharacter(
  39862. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39863. {
  39864. front: {
  39865. height: math.unit(11 + 7/12, "feet"),
  39866. weight: math.unit(9576, "lb"),
  39867. name: "Front",
  39868. image: {
  39869. source: "./media/characters/scaly/front.svg",
  39870. extra: 888/867,
  39871. bottom: 36/924
  39872. }
  39873. },
  39874. },
  39875. [
  39876. {
  39877. name: "Normal",
  39878. height: math.unit(11 + 7/12, "feet"),
  39879. default: true
  39880. },
  39881. ]
  39882. ))
  39883. characterMakers.push(() => makeCharacter(
  39884. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39885. {
  39886. front: {
  39887. height: math.unit(9, "inches"),
  39888. name: "Front",
  39889. image: {
  39890. source: "./media/characters/saelria/front.svg",
  39891. extra: 662/621,
  39892. bottom: 12/674
  39893. }
  39894. },
  39895. },
  39896. [
  39897. {
  39898. name: "Tiny",
  39899. height: math.unit(9, "inches"),
  39900. default: true
  39901. },
  39902. ]
  39903. ))
  39904. characterMakers.push(() => makeCharacter(
  39905. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39906. {
  39907. front: {
  39908. height: math.unit(80, "meters"),
  39909. weight: math.unit(7000, "tonnes"),
  39910. name: "Front",
  39911. image: {
  39912. source: "./media/characters/tef/front.svg",
  39913. extra: 2036/1991,
  39914. bottom: 54/2090
  39915. }
  39916. },
  39917. back: {
  39918. height: math.unit(80, "meters"),
  39919. weight: math.unit(7000, "tonnes"),
  39920. name: "Back",
  39921. image: {
  39922. source: "./media/characters/tef/back.svg",
  39923. extra: 2036/1991,
  39924. bottom: 54/2090
  39925. }
  39926. },
  39927. },
  39928. [
  39929. {
  39930. name: "Macro",
  39931. height: math.unit(80, "meters"),
  39932. default: true
  39933. },
  39934. ]
  39935. ))
  39936. characterMakers.push(() => makeCharacter(
  39937. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39938. {
  39939. front: {
  39940. height: math.unit(13, "feet"),
  39941. weight: math.unit(6, "tons"),
  39942. name: "Front",
  39943. image: {
  39944. source: "./media/characters/rover/front.svg",
  39945. extra: 1233/1156,
  39946. bottom: 50/1283
  39947. }
  39948. },
  39949. back: {
  39950. height: math.unit(13, "feet"),
  39951. weight: math.unit(6, "tons"),
  39952. name: "Back",
  39953. image: {
  39954. source: "./media/characters/rover/back.svg",
  39955. extra: 1327/1258,
  39956. bottom: 39/1366
  39957. }
  39958. },
  39959. },
  39960. [
  39961. {
  39962. name: "Normal",
  39963. height: math.unit(13, "feet"),
  39964. default: true
  39965. },
  39966. {
  39967. name: "Macro",
  39968. height: math.unit(1300, "feet")
  39969. },
  39970. {
  39971. name: "Megamacro",
  39972. height: math.unit(1300, "miles")
  39973. },
  39974. {
  39975. name: "Gigamacro",
  39976. height: math.unit(1300000, "miles")
  39977. },
  39978. ]
  39979. ))
  39980. characterMakers.push(() => makeCharacter(
  39981. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39982. {
  39983. front: {
  39984. height: math.unit(6, "feet"),
  39985. weight: math.unit(150, "lb"),
  39986. name: "Front",
  39987. image: {
  39988. source: "./media/characters/ariz/front.svg",
  39989. extra: 1401/1346,
  39990. bottom: 5/1406
  39991. }
  39992. },
  39993. },
  39994. [
  39995. {
  39996. name: "Normal",
  39997. height: math.unit(10, "feet"),
  39998. default: true
  39999. },
  40000. ]
  40001. ))
  40002. characterMakers.push(() => makeCharacter(
  40003. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40004. {
  40005. front: {
  40006. height: math.unit(6, "feet"),
  40007. weight: math.unit(140, "lb"),
  40008. name: "Front",
  40009. image: {
  40010. source: "./media/characters/sigrun/front.svg",
  40011. extra: 1418/1359,
  40012. bottom: 27/1445
  40013. }
  40014. },
  40015. },
  40016. [
  40017. {
  40018. name: "Macro",
  40019. height: math.unit(35, "feet"),
  40020. default: true
  40021. },
  40022. ]
  40023. ))
  40024. characterMakers.push(() => makeCharacter(
  40025. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40026. {
  40027. front: {
  40028. height: math.unit(6, "feet"),
  40029. weight: math.unit(150, "lb"),
  40030. name: "Front",
  40031. image: {
  40032. source: "./media/characters/numin/front.svg",
  40033. extra: 1433/1388,
  40034. bottom: 12/1445
  40035. }
  40036. },
  40037. },
  40038. [
  40039. {
  40040. name: "Macro",
  40041. height: math.unit(21.5, "km"),
  40042. default: true
  40043. },
  40044. ]
  40045. ))
  40046. characterMakers.push(() => makeCharacter(
  40047. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40048. {
  40049. front: {
  40050. height: math.unit(6, "feet"),
  40051. weight: math.unit(463, "lb"),
  40052. name: "Front",
  40053. image: {
  40054. source: "./media/characters/melwa/front.svg",
  40055. extra: 1307/1248,
  40056. bottom: 93/1400
  40057. }
  40058. },
  40059. },
  40060. [
  40061. {
  40062. name: "Macro",
  40063. height: math.unit(50, "meters"),
  40064. default: true
  40065. },
  40066. ]
  40067. ))
  40068. characterMakers.push(() => makeCharacter(
  40069. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40070. {
  40071. front: {
  40072. height: math.unit(325, "feet"),
  40073. name: "Front",
  40074. image: {
  40075. source: "./media/characters/zorkaiju/front.svg",
  40076. extra: 1955/1814,
  40077. bottom: 40/1995
  40078. }
  40079. },
  40080. frontExtended: {
  40081. height: math.unit(325, "feet"),
  40082. name: "Front (Extended)",
  40083. image: {
  40084. source: "./media/characters/zorkaiju/front-extended.svg",
  40085. extra: 1955/1814,
  40086. bottom: 40/1995
  40087. }
  40088. },
  40089. side: {
  40090. height: math.unit(325, "feet"),
  40091. name: "Side",
  40092. image: {
  40093. source: "./media/characters/zorkaiju/side.svg",
  40094. extra: 1495/1396,
  40095. bottom: 17/1512
  40096. }
  40097. },
  40098. sideExtended: {
  40099. height: math.unit(325, "feet"),
  40100. name: "Side (Extended)",
  40101. image: {
  40102. source: "./media/characters/zorkaiju/side-extended.svg",
  40103. extra: 1495/1396,
  40104. bottom: 17/1512
  40105. }
  40106. },
  40107. back: {
  40108. height: math.unit(325, "feet"),
  40109. name: "Back",
  40110. image: {
  40111. source: "./media/characters/zorkaiju/back.svg",
  40112. extra: 1959/1821,
  40113. bottom: 31/1990
  40114. }
  40115. },
  40116. backExtended: {
  40117. height: math.unit(325, "feet"),
  40118. name: "Back (Extended)",
  40119. image: {
  40120. source: "./media/characters/zorkaiju/back-extended.svg",
  40121. extra: 1959/1821,
  40122. bottom: 31/1990
  40123. }
  40124. },
  40125. hand: {
  40126. height: math.unit(58.4, "feet"),
  40127. name: "Hand",
  40128. image: {
  40129. source: "./media/characters/zorkaiju/hand.svg"
  40130. }
  40131. },
  40132. handExtended: {
  40133. height: math.unit(61.4, "feet"),
  40134. name: "Hand (Extended)",
  40135. image: {
  40136. source: "./media/characters/zorkaiju/hand-extended.svg"
  40137. }
  40138. },
  40139. foot: {
  40140. height: math.unit(95, "feet"),
  40141. name: "Foot",
  40142. image: {
  40143. source: "./media/characters/zorkaiju/foot.svg"
  40144. }
  40145. },
  40146. leftArm: {
  40147. height: math.unit(59, "feet"),
  40148. name: "Left Arm",
  40149. image: {
  40150. source: "./media/characters/zorkaiju/left-arm.svg"
  40151. }
  40152. },
  40153. rightArm: {
  40154. height: math.unit(59, "feet"),
  40155. name: "Right Arm",
  40156. image: {
  40157. source: "./media/characters/zorkaiju/right-arm.svg"
  40158. }
  40159. },
  40160. tail: {
  40161. height: math.unit(104, "feet"),
  40162. name: "Tail",
  40163. image: {
  40164. source: "./media/characters/zorkaiju/tail.svg"
  40165. }
  40166. },
  40167. tailExtended: {
  40168. height: math.unit(104, "feet"),
  40169. name: "Tail (Extended)",
  40170. image: {
  40171. source: "./media/characters/zorkaiju/tail-extended.svg"
  40172. }
  40173. },
  40174. tailBottom: {
  40175. height: math.unit(104, "feet"),
  40176. name: "Tail Bottom",
  40177. image: {
  40178. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40179. }
  40180. },
  40181. crystal: {
  40182. height: math.unit(27.54, "feet"),
  40183. name: "Crystal",
  40184. image: {
  40185. source: "./media/characters/zorkaiju/crystal.svg"
  40186. }
  40187. },
  40188. },
  40189. [
  40190. {
  40191. name: "Kaiju",
  40192. height: math.unit(325, "feet"),
  40193. default: true
  40194. },
  40195. ]
  40196. ))
  40197. characterMakers.push(() => makeCharacter(
  40198. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40199. {
  40200. front: {
  40201. height: math.unit(6 + 1/12, "feet"),
  40202. weight: math.unit(115, "lb"),
  40203. name: "Front",
  40204. image: {
  40205. source: "./media/characters/bailey-belfry/front.svg",
  40206. extra: 1240/1121,
  40207. bottom: 101/1341
  40208. }
  40209. },
  40210. },
  40211. [
  40212. {
  40213. name: "Normal",
  40214. height: math.unit(6 + 1/12, "feet"),
  40215. default: true
  40216. },
  40217. ]
  40218. ))
  40219. characterMakers.push(() => makeCharacter(
  40220. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40221. {
  40222. side: {
  40223. height: math.unit(4, "meters"),
  40224. weight: math.unit(250, "kg"),
  40225. name: "Side",
  40226. image: {
  40227. source: "./media/characters/blacky/side.svg",
  40228. extra: 1027/919,
  40229. bottom: 43/1070
  40230. }
  40231. },
  40232. maw: {
  40233. height: math.unit(1, "meters"),
  40234. name: "Maw",
  40235. image: {
  40236. source: "./media/characters/blacky/maw.svg"
  40237. }
  40238. },
  40239. paw: {
  40240. height: math.unit(1, "meters"),
  40241. name: "Paw",
  40242. image: {
  40243. source: "./media/characters/blacky/paw.svg"
  40244. }
  40245. },
  40246. },
  40247. [
  40248. {
  40249. name: "Normal",
  40250. height: math.unit(4, "meters"),
  40251. default: true
  40252. },
  40253. ]
  40254. ))
  40255. characterMakers.push(() => makeCharacter(
  40256. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40257. {
  40258. front: {
  40259. height: math.unit(170, "cm"),
  40260. weight: math.unit(66, "kg"),
  40261. name: "Front",
  40262. image: {
  40263. source: "./media/characters/thux-ei/front.svg",
  40264. extra: 1109/1011,
  40265. bottom: 8/1117
  40266. }
  40267. },
  40268. },
  40269. [
  40270. {
  40271. name: "Normal",
  40272. height: math.unit(170, "cm"),
  40273. default: true
  40274. },
  40275. ]
  40276. ))
  40277. characterMakers.push(() => makeCharacter(
  40278. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40279. {
  40280. front: {
  40281. height: math.unit(5, "feet"),
  40282. weight: math.unit(120, "lb"),
  40283. name: "Front",
  40284. image: {
  40285. source: "./media/characters/roxanne-voltaire/front.svg",
  40286. extra: 1901/1779,
  40287. bottom: 53/1954
  40288. }
  40289. },
  40290. },
  40291. [
  40292. {
  40293. name: "Normal",
  40294. height: math.unit(5, "feet"),
  40295. default: true
  40296. },
  40297. {
  40298. name: "Giant",
  40299. height: math.unit(50, "feet")
  40300. },
  40301. {
  40302. name: "Titan",
  40303. height: math.unit(500, "feet")
  40304. },
  40305. {
  40306. name: "Macro",
  40307. height: math.unit(5000, "feet")
  40308. },
  40309. {
  40310. name: "Megamacro",
  40311. height: math.unit(50000, "feet")
  40312. },
  40313. {
  40314. name: "Gigamacro",
  40315. height: math.unit(500000, "feet")
  40316. },
  40317. {
  40318. name: "Teramacro",
  40319. height: math.unit(5e6, "feet")
  40320. },
  40321. ]
  40322. ))
  40323. characterMakers.push(() => makeCharacter(
  40324. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40325. {
  40326. front: {
  40327. height: math.unit(6 + 2/12, "feet"),
  40328. name: "Front",
  40329. image: {
  40330. source: "./media/characters/squeaks/front.svg",
  40331. extra: 1823/1768,
  40332. bottom: 138/1961
  40333. }
  40334. },
  40335. },
  40336. [
  40337. {
  40338. name: "Micro",
  40339. height: math.unit(0.5, "inches")
  40340. },
  40341. {
  40342. name: "Normal",
  40343. height: math.unit(6 + 2/12, "feet"),
  40344. default: true
  40345. },
  40346. {
  40347. name: "Macro",
  40348. height: math.unit(600, "feet")
  40349. },
  40350. ]
  40351. ))
  40352. characterMakers.push(() => makeCharacter(
  40353. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40354. {
  40355. front: {
  40356. height: math.unit(1.72, "meters"),
  40357. name: "Front",
  40358. image: {
  40359. source: "./media/characters/archinger/front.svg",
  40360. extra: 1861/1675,
  40361. bottom: 125/1986
  40362. }
  40363. },
  40364. back: {
  40365. height: math.unit(1.72, "meters"),
  40366. name: "Back",
  40367. image: {
  40368. source: "./media/characters/archinger/back.svg",
  40369. extra: 1844/1701,
  40370. bottom: 104/1948
  40371. }
  40372. },
  40373. cock: {
  40374. height: math.unit(0.59, "feet"),
  40375. name: "Cock",
  40376. image: {
  40377. source: "./media/characters/archinger/cock.svg"
  40378. }
  40379. },
  40380. },
  40381. [
  40382. {
  40383. name: "Normal",
  40384. height: math.unit(1.72, "meters"),
  40385. default: true
  40386. },
  40387. {
  40388. name: "Macro",
  40389. height: math.unit(84, "meters")
  40390. },
  40391. {
  40392. name: "Macro+",
  40393. height: math.unit(112, "meters")
  40394. },
  40395. {
  40396. name: "Macro++",
  40397. height: math.unit(960, "meters")
  40398. },
  40399. {
  40400. name: "Macro+++",
  40401. height: math.unit(4, "km")
  40402. },
  40403. {
  40404. name: "Macro++++",
  40405. height: math.unit(48, "km")
  40406. },
  40407. {
  40408. name: "Macro+++++",
  40409. height: math.unit(4500, "km")
  40410. },
  40411. ]
  40412. ))
  40413. characterMakers.push(() => makeCharacter(
  40414. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40415. {
  40416. front: {
  40417. height: math.unit(5 + 5/12, "feet"),
  40418. name: "Front",
  40419. image: {
  40420. source: "./media/characters/alsnapz/front.svg",
  40421. extra: 1157/1065,
  40422. bottom: 42/1199
  40423. }
  40424. },
  40425. },
  40426. [
  40427. {
  40428. name: "Normal",
  40429. height: math.unit(5 + 5/12, "feet"),
  40430. default: true
  40431. },
  40432. ]
  40433. ))
  40434. characterMakers.push(() => makeCharacter(
  40435. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40436. {
  40437. side: {
  40438. height: math.unit(3.2, "earths"),
  40439. name: "Side",
  40440. image: {
  40441. source: "./media/characters/mag/side.svg",
  40442. extra: 1331/1008,
  40443. bottom: 52/1383
  40444. }
  40445. },
  40446. wing: {
  40447. height: math.unit(1.94, "earths"),
  40448. name: "Wing",
  40449. image: {
  40450. source: "./media/characters/mag/wing.svg"
  40451. }
  40452. },
  40453. dick: {
  40454. height: math.unit(1.8, "earths"),
  40455. name: "Dick",
  40456. image: {
  40457. source: "./media/characters/mag/dick.svg"
  40458. }
  40459. },
  40460. ass: {
  40461. height: math.unit(1.33, "earths"),
  40462. name: "Ass",
  40463. image: {
  40464. source: "./media/characters/mag/ass.svg"
  40465. }
  40466. },
  40467. head: {
  40468. height: math.unit(1.1, "earths"),
  40469. name: "Head",
  40470. image: {
  40471. source: "./media/characters/mag/head.svg"
  40472. }
  40473. },
  40474. maw: {
  40475. height: math.unit(1.62, "earths"),
  40476. name: "Maw",
  40477. image: {
  40478. source: "./media/characters/mag/maw.svg"
  40479. }
  40480. },
  40481. },
  40482. [
  40483. {
  40484. name: "Small",
  40485. height: math.unit(162, "feet")
  40486. },
  40487. {
  40488. name: "Normal",
  40489. height: math.unit(3.2, "earths"),
  40490. default: true
  40491. },
  40492. ]
  40493. ))
  40494. characterMakers.push(() => makeCharacter(
  40495. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40496. {
  40497. front: {
  40498. height: math.unit(512, "feet"),
  40499. weight: math.unit(63509, "tonnes"),
  40500. name: "Front",
  40501. image: {
  40502. source: "./media/characters/vorrel-harroc/front.svg",
  40503. extra: 1075/1063,
  40504. bottom: 62/1137
  40505. }
  40506. },
  40507. },
  40508. [
  40509. {
  40510. name: "Normal",
  40511. height: math.unit(10, "feet")
  40512. },
  40513. {
  40514. name: "Macro",
  40515. height: math.unit(512, "feet"),
  40516. default: true
  40517. },
  40518. {
  40519. name: "Megamacro",
  40520. height: math.unit(256, "miles")
  40521. },
  40522. {
  40523. name: "Gigamacro",
  40524. height: math.unit(4096, "miles")
  40525. },
  40526. ]
  40527. ))
  40528. characterMakers.push(() => makeCharacter(
  40529. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40530. {
  40531. side: {
  40532. height: math.unit(50, "feet"),
  40533. name: "Side",
  40534. image: {
  40535. source: "./media/characters/froimar/side.svg",
  40536. extra: 855/638,
  40537. bottom: 99/954
  40538. }
  40539. },
  40540. },
  40541. [
  40542. {
  40543. name: "Macro",
  40544. height: math.unit(50, "feet"),
  40545. default: true
  40546. },
  40547. ]
  40548. ))
  40549. characterMakers.push(() => makeCharacter(
  40550. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40551. {
  40552. front: {
  40553. height: math.unit(210, "miles"),
  40554. name: "Front",
  40555. image: {
  40556. source: "./media/characters/timothy/front.svg",
  40557. extra: 1007/943,
  40558. bottom: 62/1069
  40559. }
  40560. },
  40561. frontSkirt: {
  40562. height: math.unit(210, "miles"),
  40563. name: "Front (Skirt)",
  40564. image: {
  40565. source: "./media/characters/timothy/front-skirt.svg",
  40566. extra: 1007/943,
  40567. bottom: 62/1069
  40568. }
  40569. },
  40570. frontCoat: {
  40571. height: math.unit(210, "miles"),
  40572. name: "Front (Coat)",
  40573. image: {
  40574. source: "./media/characters/timothy/front-coat.svg",
  40575. extra: 1007/943,
  40576. bottom: 62/1069
  40577. }
  40578. },
  40579. },
  40580. [
  40581. {
  40582. name: "Macro",
  40583. height: math.unit(210, "miles"),
  40584. default: true
  40585. },
  40586. {
  40587. name: "Megamacro",
  40588. height: math.unit(210000, "miles")
  40589. },
  40590. ]
  40591. ))
  40592. characterMakers.push(() => makeCharacter(
  40593. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40594. {
  40595. front: {
  40596. height: math.unit(188, "feet"),
  40597. name: "Front",
  40598. image: {
  40599. source: "./media/characters/pyotr/front.svg",
  40600. extra: 1912/1826,
  40601. bottom: 18/1930
  40602. }
  40603. },
  40604. },
  40605. [
  40606. {
  40607. name: "Macro",
  40608. height: math.unit(188, "feet"),
  40609. default: true
  40610. },
  40611. {
  40612. name: "Megamacro",
  40613. height: math.unit(8, "miles")
  40614. },
  40615. ]
  40616. ))
  40617. characterMakers.push(() => makeCharacter(
  40618. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40619. {
  40620. side: {
  40621. height: math.unit(10, "feet"),
  40622. weight: math.unit(4500, "lb"),
  40623. name: "Side",
  40624. image: {
  40625. source: "./media/characters/ackart/side.svg",
  40626. extra: 1776/1668,
  40627. bottom: 116/1892
  40628. }
  40629. },
  40630. },
  40631. [
  40632. {
  40633. name: "Normal",
  40634. height: math.unit(10, "feet"),
  40635. default: true
  40636. },
  40637. ]
  40638. ))
  40639. characterMakers.push(() => makeCharacter(
  40640. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40641. {
  40642. side: {
  40643. height: math.unit(21, "feet"),
  40644. name: "Side",
  40645. image: {
  40646. source: "./media/characters/nolow/side.svg",
  40647. extra: 1484/1434,
  40648. bottom: 85/1569
  40649. }
  40650. },
  40651. sideErect: {
  40652. height: math.unit(21, "feet"),
  40653. name: "Side-erect",
  40654. image: {
  40655. source: "./media/characters/nolow/side-erect.svg",
  40656. extra: 1484/1434,
  40657. bottom: 85/1569
  40658. }
  40659. },
  40660. },
  40661. [
  40662. {
  40663. name: "Regular",
  40664. height: math.unit(12, "feet")
  40665. },
  40666. {
  40667. name: "Big Chee",
  40668. height: math.unit(21, "feet"),
  40669. default: true
  40670. },
  40671. ]
  40672. ))
  40673. characterMakers.push(() => makeCharacter(
  40674. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40675. {
  40676. front: {
  40677. height: math.unit(7, "feet"),
  40678. weight: math.unit(250, "lb"),
  40679. name: "Front",
  40680. image: {
  40681. source: "./media/characters/nines/front.svg",
  40682. extra: 1741/1607,
  40683. bottom: 41/1782
  40684. }
  40685. },
  40686. side: {
  40687. height: math.unit(7, "feet"),
  40688. weight: math.unit(250, "lb"),
  40689. name: "Side",
  40690. image: {
  40691. source: "./media/characters/nines/side.svg",
  40692. extra: 1854/1735,
  40693. bottom: 93/1947
  40694. }
  40695. },
  40696. back: {
  40697. height: math.unit(7, "feet"),
  40698. weight: math.unit(250, "lb"),
  40699. name: "Back",
  40700. image: {
  40701. source: "./media/characters/nines/back.svg",
  40702. extra: 1748/1615,
  40703. bottom: 20/1768
  40704. }
  40705. },
  40706. },
  40707. [
  40708. {
  40709. name: "Megamacro",
  40710. height: math.unit(99, "km"),
  40711. default: true
  40712. },
  40713. ]
  40714. ))
  40715. characterMakers.push(() => makeCharacter(
  40716. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40717. {
  40718. front: {
  40719. height: math.unit(5 + 10/12, "feet"),
  40720. weight: math.unit(210, "lb"),
  40721. name: "Front",
  40722. image: {
  40723. source: "./media/characters/zenith/front.svg",
  40724. extra: 1531/1452,
  40725. bottom: 198/1729
  40726. }
  40727. },
  40728. back: {
  40729. height: math.unit(5 + 10/12, "feet"),
  40730. weight: math.unit(210, "lb"),
  40731. name: "Back",
  40732. image: {
  40733. source: "./media/characters/zenith/back.svg",
  40734. extra: 1571/1487,
  40735. bottom: 75/1646
  40736. }
  40737. },
  40738. },
  40739. [
  40740. {
  40741. name: "Normal",
  40742. height: math.unit(5 + 10/12, "feet"),
  40743. default: true
  40744. }
  40745. ]
  40746. ))
  40747. characterMakers.push(() => makeCharacter(
  40748. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40749. {
  40750. front: {
  40751. height: math.unit(4, "feet"),
  40752. weight: math.unit(60, "lb"),
  40753. name: "Front",
  40754. image: {
  40755. source: "./media/characters/jasper/front.svg",
  40756. extra: 1450/1379,
  40757. bottom: 19/1469
  40758. }
  40759. },
  40760. },
  40761. [
  40762. {
  40763. name: "Normal",
  40764. height: math.unit(4, "feet"),
  40765. default: true
  40766. },
  40767. ]
  40768. ))
  40769. characterMakers.push(() => makeCharacter(
  40770. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40771. {
  40772. front: {
  40773. height: math.unit(6 + 5/12, "feet"),
  40774. weight: math.unit(290, "lb"),
  40775. name: "Front",
  40776. image: {
  40777. source: "./media/characters/tiberius-thyben/front.svg",
  40778. extra: 757/739,
  40779. bottom: 39/796
  40780. }
  40781. },
  40782. },
  40783. [
  40784. {
  40785. name: "Micro",
  40786. height: math.unit(1.5, "inches")
  40787. },
  40788. {
  40789. name: "Normal",
  40790. height: math.unit(6 + 5/12, "feet"),
  40791. default: true
  40792. },
  40793. {
  40794. name: "Macro",
  40795. height: math.unit(300, "feet")
  40796. },
  40797. ]
  40798. ))
  40799. characterMakers.push(() => makeCharacter(
  40800. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40801. {
  40802. front: {
  40803. height: math.unit(5 + 6/12, "feet"),
  40804. weight: math.unit(60, "kg"),
  40805. name: "Front",
  40806. image: {
  40807. source: "./media/characters/sabre/front.svg",
  40808. extra: 738/671,
  40809. bottom: 27/765
  40810. }
  40811. },
  40812. },
  40813. [
  40814. {
  40815. name: "Teeny",
  40816. height: math.unit(2, "inches")
  40817. },
  40818. {
  40819. name: "Smol",
  40820. height: math.unit(8, "inches")
  40821. },
  40822. {
  40823. name: "Normal",
  40824. height: math.unit(5 + 6/12, "feet"),
  40825. default: true
  40826. },
  40827. {
  40828. name: "Mini-Macro",
  40829. height: math.unit(15, "feet")
  40830. },
  40831. {
  40832. name: "Macro",
  40833. height: math.unit(50, "feet")
  40834. },
  40835. ]
  40836. ))
  40837. characterMakers.push(() => makeCharacter(
  40838. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40839. {
  40840. front: {
  40841. height: math.unit(6 + 4/12, "feet"),
  40842. weight: math.unit(170, "lb"),
  40843. name: "Front",
  40844. image: {
  40845. source: "./media/characters/charlie/front.svg",
  40846. extra: 1348/1228,
  40847. bottom: 15/1363
  40848. }
  40849. },
  40850. },
  40851. [
  40852. {
  40853. name: "Macro",
  40854. height: math.unit(1700, "meters"),
  40855. default: true
  40856. },
  40857. {
  40858. name: "MegaMacro",
  40859. height: math.unit(20400, "meters")
  40860. },
  40861. ]
  40862. ))
  40863. characterMakers.push(() => makeCharacter(
  40864. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40865. {
  40866. front: {
  40867. height: math.unit(6 + 3/12, "feet"),
  40868. weight: math.unit(185, "lb"),
  40869. name: "Front",
  40870. image: {
  40871. source: "./media/characters/susan-grant/front.svg",
  40872. extra: 1351/1327,
  40873. bottom: 26/1377
  40874. }
  40875. },
  40876. },
  40877. [
  40878. {
  40879. name: "Normal",
  40880. height: math.unit(6 + 3/12, "feet"),
  40881. default: true
  40882. },
  40883. {
  40884. name: "Macro",
  40885. height: math.unit(225, "feet")
  40886. },
  40887. {
  40888. name: "Macro+",
  40889. height: math.unit(900, "feet")
  40890. },
  40891. {
  40892. name: "MegaMacro",
  40893. height: math.unit(14400, "feet")
  40894. },
  40895. ]
  40896. ))
  40897. characterMakers.push(() => makeCharacter(
  40898. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40899. {
  40900. front: {
  40901. height: math.unit(5 + 4/12, "feet"),
  40902. weight: math.unit(110, "lb"),
  40903. name: "Front",
  40904. image: {
  40905. source: "./media/characters/axel-isanov/front.svg",
  40906. extra: 1096/1065,
  40907. bottom: 13/1109
  40908. }
  40909. },
  40910. },
  40911. [
  40912. {
  40913. name: "Normal",
  40914. height: math.unit(5 + 4/12, "feet"),
  40915. default: true
  40916. },
  40917. ]
  40918. ))
  40919. characterMakers.push(() => makeCharacter(
  40920. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40921. {
  40922. front: {
  40923. height: math.unit(9, "feet"),
  40924. weight: math.unit(467, "lb"),
  40925. name: "Front",
  40926. image: {
  40927. source: "./media/characters/necahual/front.svg",
  40928. extra: 920/873,
  40929. bottom: 26/946
  40930. }
  40931. },
  40932. back: {
  40933. height: math.unit(9, "feet"),
  40934. weight: math.unit(467, "lb"),
  40935. name: "Back",
  40936. image: {
  40937. source: "./media/characters/necahual/back.svg",
  40938. extra: 930/884,
  40939. bottom: 16/946
  40940. }
  40941. },
  40942. frontUnderwear: {
  40943. height: math.unit(9, "feet"),
  40944. weight: math.unit(467, "lb"),
  40945. name: "Front (Underwear)",
  40946. image: {
  40947. source: "./media/characters/necahual/front-underwear.svg",
  40948. extra: 920/873,
  40949. bottom: 26/946
  40950. }
  40951. },
  40952. frontDressed: {
  40953. height: math.unit(9, "feet"),
  40954. weight: math.unit(467, "lb"),
  40955. name: "Front (Dressed)",
  40956. image: {
  40957. source: "./media/characters/necahual/front-dressed.svg",
  40958. extra: 920/873,
  40959. bottom: 26/946
  40960. }
  40961. },
  40962. },
  40963. [
  40964. {
  40965. name: "Comprsesed",
  40966. height: math.unit(9, "feet")
  40967. },
  40968. {
  40969. name: "Natural",
  40970. height: math.unit(15, "feet"),
  40971. default: true
  40972. },
  40973. {
  40974. name: "Boosted",
  40975. height: math.unit(50, "feet")
  40976. },
  40977. {
  40978. name: "Boosted+",
  40979. height: math.unit(150, "feet")
  40980. },
  40981. {
  40982. name: "Max",
  40983. height: math.unit(500, "feet")
  40984. },
  40985. ]
  40986. ))
  40987. characterMakers.push(() => makeCharacter(
  40988. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40989. {
  40990. front: {
  40991. height: math.unit(22 + 1/12, "feet"),
  40992. weight: math.unit(3200, "lb"),
  40993. name: "Front",
  40994. image: {
  40995. source: "./media/characters/theo-acacia/front.svg",
  40996. extra: 1796/1741,
  40997. bottom: 83/1879
  40998. }
  40999. },
  41000. frontUnderwear: {
  41001. height: math.unit(22 + 1/12, "feet"),
  41002. weight: math.unit(3200, "lb"),
  41003. name: "Front (Underwear)",
  41004. image: {
  41005. source: "./media/characters/theo-acacia/front-underwear.svg",
  41006. extra: 1796/1741,
  41007. bottom: 83/1879
  41008. }
  41009. },
  41010. frontNude: {
  41011. height: math.unit(22 + 1/12, "feet"),
  41012. weight: math.unit(3200, "lb"),
  41013. name: "Front (Nude)",
  41014. image: {
  41015. source: "./media/characters/theo-acacia/front-nude.svg",
  41016. extra: 1796/1741,
  41017. bottom: 83/1879
  41018. }
  41019. },
  41020. },
  41021. [
  41022. {
  41023. name: "Normal",
  41024. height: math.unit(22 + 1/12, "feet"),
  41025. default: true
  41026. },
  41027. ]
  41028. ))
  41029. characterMakers.push(() => makeCharacter(
  41030. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41031. {
  41032. front: {
  41033. height: math.unit(20, "feet"),
  41034. name: "Front",
  41035. image: {
  41036. source: "./media/characters/astra/front.svg",
  41037. extra: 1850/1714,
  41038. bottom: 106/1956
  41039. }
  41040. },
  41041. frontUndressed: {
  41042. height: math.unit(20, "feet"),
  41043. name: "Front (Undressed)",
  41044. image: {
  41045. source: "./media/characters/astra/front-undressed.svg",
  41046. extra: 1926/1749,
  41047. bottom: 0/1926
  41048. }
  41049. },
  41050. hand: {
  41051. height: math.unit(1.53, "feet"),
  41052. name: "Hand",
  41053. image: {
  41054. source: "./media/characters/astra/hand.svg"
  41055. }
  41056. },
  41057. paw: {
  41058. height: math.unit(1.53, "feet"),
  41059. name: "Paw",
  41060. image: {
  41061. source: "./media/characters/astra/paw.svg"
  41062. }
  41063. },
  41064. },
  41065. [
  41066. {
  41067. name: "Smallest",
  41068. height: math.unit(20, "feet")
  41069. },
  41070. {
  41071. name: "Normal",
  41072. height: math.unit(1e9, "miles"),
  41073. default: true
  41074. },
  41075. {
  41076. name: "Larger",
  41077. height: math.unit(5, "multiverses")
  41078. },
  41079. {
  41080. name: "Largest",
  41081. height: math.unit(1e9, "multiverses")
  41082. },
  41083. ]
  41084. ))
  41085. characterMakers.push(() => makeCharacter(
  41086. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41087. {
  41088. front: {
  41089. height: math.unit(8, "feet"),
  41090. name: "Front",
  41091. image: {
  41092. source: "./media/characters/breanna/front.svg",
  41093. extra: 1912/1632,
  41094. bottom: 33/1945
  41095. }
  41096. },
  41097. },
  41098. [
  41099. {
  41100. name: "Smallest",
  41101. height: math.unit(8, "feet")
  41102. },
  41103. {
  41104. name: "Normal",
  41105. height: math.unit(1, "mile"),
  41106. default: true
  41107. },
  41108. {
  41109. name: "Maximum",
  41110. height: math.unit(1500000000000, "lightyears")
  41111. },
  41112. ]
  41113. ))
  41114. characterMakers.push(() => makeCharacter(
  41115. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41116. {
  41117. front: {
  41118. height: math.unit(5 + 11/12, "feet"),
  41119. weight: math.unit(155, "lb"),
  41120. name: "Front",
  41121. image: {
  41122. source: "./media/characters/cai/front.svg",
  41123. extra: 1823/1702,
  41124. bottom: 32/1855
  41125. }
  41126. },
  41127. back: {
  41128. height: math.unit(5 + 11/12, "feet"),
  41129. weight: math.unit(155, "lb"),
  41130. name: "Back",
  41131. image: {
  41132. source: "./media/characters/cai/back.svg",
  41133. extra: 1809/1708,
  41134. bottom: 31/1840
  41135. }
  41136. },
  41137. },
  41138. [
  41139. {
  41140. name: "Normal",
  41141. height: math.unit(5 + 11/12, "feet"),
  41142. default: true
  41143. },
  41144. {
  41145. name: "Big",
  41146. height: math.unit(15, "feet")
  41147. },
  41148. {
  41149. name: "Macro",
  41150. height: math.unit(200, "feet")
  41151. },
  41152. ]
  41153. ))
  41154. characterMakers.push(() => makeCharacter(
  41155. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41156. {
  41157. front: {
  41158. height: math.unit(5 + 6/12, "feet"),
  41159. weight: math.unit(160, "lb"),
  41160. name: "Front",
  41161. image: {
  41162. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41163. extra: 1227/1174,
  41164. bottom: 37/1264
  41165. }
  41166. },
  41167. },
  41168. [
  41169. {
  41170. name: "Macro",
  41171. height: math.unit(444, "meters"),
  41172. default: true
  41173. },
  41174. ]
  41175. ))
  41176. characterMakers.push(() => makeCharacter(
  41177. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41178. {
  41179. front: {
  41180. height: math.unit(18 + 7/12, "feet"),
  41181. name: "Front",
  41182. image: {
  41183. source: "./media/characters/rex/front.svg",
  41184. extra: 1941/1807,
  41185. bottom: 66/2007
  41186. }
  41187. },
  41188. back: {
  41189. height: math.unit(18 + 7/12, "feet"),
  41190. name: "Back",
  41191. image: {
  41192. source: "./media/characters/rex/back.svg",
  41193. extra: 1937/1822,
  41194. bottom: 42/1979
  41195. }
  41196. },
  41197. boot: {
  41198. height: math.unit(3.45, "feet"),
  41199. name: "Boot",
  41200. image: {
  41201. source: "./media/characters/rex/boot.svg"
  41202. }
  41203. },
  41204. paw: {
  41205. height: math.unit(4.17, "feet"),
  41206. name: "Paw",
  41207. image: {
  41208. source: "./media/characters/rex/paw.svg"
  41209. }
  41210. },
  41211. head: {
  41212. height: math.unit(6.728, "feet"),
  41213. name: "Head",
  41214. image: {
  41215. source: "./media/characters/rex/head.svg"
  41216. }
  41217. },
  41218. },
  41219. [
  41220. {
  41221. name: "Nano",
  41222. height: math.unit(18 + 7/12, "feet")
  41223. },
  41224. {
  41225. name: "Micro",
  41226. height: math.unit(1.5, "megameters")
  41227. },
  41228. {
  41229. name: "Normal",
  41230. height: math.unit(440, "megameters"),
  41231. default: true
  41232. },
  41233. {
  41234. name: "Macro",
  41235. height: math.unit(2.5, "gigameters")
  41236. },
  41237. {
  41238. name: "Gigamacro",
  41239. height: math.unit(2, "galaxies")
  41240. },
  41241. ]
  41242. ))
  41243. characterMakers.push(() => makeCharacter(
  41244. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41245. {
  41246. side: {
  41247. height: math.unit(32, "feet"),
  41248. weight: math.unit(250000, "lb"),
  41249. name: "Side",
  41250. image: {
  41251. source: "./media/characters/silverwing/side.svg",
  41252. extra: 1100/1019,
  41253. bottom: 204/1304
  41254. }
  41255. },
  41256. },
  41257. [
  41258. {
  41259. name: "Normal",
  41260. height: math.unit(32, "feet"),
  41261. default: true
  41262. },
  41263. ]
  41264. ))
  41265. characterMakers.push(() => makeCharacter(
  41266. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41267. {
  41268. front: {
  41269. height: math.unit(6 + 6/12, "feet"),
  41270. weight: math.unit(350, "lb"),
  41271. name: "Front",
  41272. image: {
  41273. source: "./media/characters/tristan-hawthorne/front.svg",
  41274. extra: 1159/1124,
  41275. bottom: 37/1196
  41276. }
  41277. },
  41278. },
  41279. [
  41280. {
  41281. name: "Normal",
  41282. height: math.unit(6 + 6/12, "feet"),
  41283. default: true
  41284. },
  41285. ]
  41286. ))
  41287. characterMakers.push(() => makeCharacter(
  41288. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41289. {
  41290. front: {
  41291. height: math.unit(5 + 11/12, "feet"),
  41292. weight: math.unit(190, "lb"),
  41293. name: "Front",
  41294. image: {
  41295. source: "./media/characters/mizu/front.svg",
  41296. extra: 1988/1788,
  41297. bottom: 14/2002
  41298. }
  41299. },
  41300. },
  41301. [
  41302. {
  41303. name: "Normal",
  41304. height: math.unit(5 + 11/12, "feet"),
  41305. default: true
  41306. },
  41307. ]
  41308. ))
  41309. characterMakers.push(() => makeCharacter(
  41310. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41311. {
  41312. front: {
  41313. height: math.unit(6, "feet"),
  41314. name: "Front",
  41315. image: {
  41316. source: "./media/characters/moonlight-rose-terra/front.svg",
  41317. extra: 1434/1252,
  41318. bottom: 48/1482
  41319. }
  41320. },
  41321. },
  41322. [
  41323. {
  41324. name: "TRAPPIST-1D",
  41325. height: math.unit(4992*2, "km")
  41326. },
  41327. {
  41328. name: "Earth",
  41329. height: math.unit(6367*2, "km"),
  41330. default: true
  41331. },
  41332. {
  41333. name: "Kepler-22b",
  41334. height: math.unit(15282*2, "km")
  41335. },
  41336. ]
  41337. ))
  41338. characterMakers.push(() => makeCharacter(
  41339. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41340. {
  41341. front: {
  41342. height: math.unit(6, "feet"),
  41343. name: "Front",
  41344. image: {
  41345. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41346. extra: 1851/1712,
  41347. bottom: 0/1851
  41348. }
  41349. },
  41350. },
  41351. [
  41352. {
  41353. name: "Enceladus",
  41354. height: math.unit(513*2, "km")
  41355. },
  41356. {
  41357. name: "Europe",
  41358. height: math.unit(1560*2, "km")
  41359. },
  41360. {
  41361. name: "Neptune",
  41362. height: math.unit(24622*2, "km"),
  41363. default: true
  41364. },
  41365. {
  41366. name: "CoRoT-9b",
  41367. height: math.unit(75067*2, "km")
  41368. },
  41369. ]
  41370. ))
  41371. characterMakers.push(() => makeCharacter(
  41372. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41373. {
  41374. front: {
  41375. height: math.unit(6, "feet"),
  41376. name: "Front",
  41377. image: {
  41378. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41379. extra: 1367/1286,
  41380. bottom: 55/1422
  41381. }
  41382. },
  41383. },
  41384. [
  41385. {
  41386. name: "Saturn",
  41387. height: math.unit(58232*2, "km")
  41388. },
  41389. {
  41390. name: "Jupiter",
  41391. height: math.unit(69911*2, "km"),
  41392. default: true
  41393. },
  41394. {
  41395. name: "HD 100546 b",
  41396. height: math.unit(482938, "km")
  41397. },
  41398. ]
  41399. ))
  41400. characterMakers.push(() => makeCharacter(
  41401. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41402. {
  41403. front: {
  41404. height: math.unit(1.7, "feet"),
  41405. weight: math.unit(50, "lb"),
  41406. name: "Front",
  41407. image: {
  41408. source: "./media/characters/dechroma/front.svg",
  41409. extra: 1095/859,
  41410. bottom: 64/1159
  41411. }
  41412. },
  41413. },
  41414. [
  41415. {
  41416. name: "Normal",
  41417. height: math.unit(1.7, "feet"),
  41418. default: true
  41419. },
  41420. ]
  41421. ))
  41422. characterMakers.push(() => makeCharacter(
  41423. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41424. {
  41425. side: {
  41426. height: math.unit(30, "feet"),
  41427. name: "Side",
  41428. image: {
  41429. source: "./media/characters/veluren-thanazel/side.svg",
  41430. extra: 1611/633,
  41431. bottom: 118/1729
  41432. }
  41433. },
  41434. front: {
  41435. height: math.unit(30, "feet"),
  41436. name: "Front",
  41437. image: {
  41438. source: "./media/characters/veluren-thanazel/front.svg",
  41439. extra: 1486/636,
  41440. bottom: 238/1724
  41441. }
  41442. },
  41443. head: {
  41444. height: math.unit(21.4, "feet"),
  41445. name: "Head",
  41446. image: {
  41447. source: "./media/characters/veluren-thanazel/head.svg"
  41448. }
  41449. },
  41450. genitals: {
  41451. height: math.unit(19.4, "feet"),
  41452. name: "Genitals",
  41453. image: {
  41454. source: "./media/characters/veluren-thanazel/genitals.svg"
  41455. }
  41456. },
  41457. },
  41458. [
  41459. {
  41460. name: "Social",
  41461. height: math.unit(6, "feet")
  41462. },
  41463. {
  41464. name: "Play",
  41465. height: math.unit(12, "feet")
  41466. },
  41467. {
  41468. name: "True",
  41469. height: math.unit(30, "feet"),
  41470. default: true
  41471. },
  41472. ]
  41473. ))
  41474. characterMakers.push(() => makeCharacter(
  41475. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41476. {
  41477. front: {
  41478. height: math.unit(7 + 6/12, "feet"),
  41479. weight: math.unit(500, "kg"),
  41480. name: "Front",
  41481. image: {
  41482. source: "./media/characters/arcturas/front.svg",
  41483. extra: 1700/1500,
  41484. bottom: 145/1845
  41485. }
  41486. },
  41487. },
  41488. [
  41489. {
  41490. name: "Normal",
  41491. height: math.unit(7 + 6/12, "feet"),
  41492. default: true
  41493. },
  41494. ]
  41495. ))
  41496. characterMakers.push(() => makeCharacter(
  41497. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41498. {
  41499. side: {
  41500. height: math.unit(6, "feet"),
  41501. weight: math.unit(2, "tons"),
  41502. name: "Side",
  41503. image: {
  41504. source: "./media/characters/vitaen/side.svg",
  41505. extra: 1157/617,
  41506. bottom: 122/1279
  41507. }
  41508. },
  41509. },
  41510. [
  41511. {
  41512. name: "Normal",
  41513. height: math.unit(6, "feet"),
  41514. default: true
  41515. },
  41516. ]
  41517. ))
  41518. characterMakers.push(() => makeCharacter(
  41519. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41520. {
  41521. front: {
  41522. height: math.unit(19, "feet"),
  41523. name: "Front",
  41524. image: {
  41525. source: "./media/characters/fia-dreamweaver/front.svg",
  41526. extra: 1630/1504,
  41527. bottom: 25/1655
  41528. }
  41529. },
  41530. },
  41531. [
  41532. {
  41533. name: "Normal",
  41534. height: math.unit(19, "feet"),
  41535. default: true
  41536. },
  41537. ]
  41538. ))
  41539. characterMakers.push(() => makeCharacter(
  41540. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41541. {
  41542. front: {
  41543. height: math.unit(5 + 4/12, "feet"),
  41544. name: "Front",
  41545. image: {
  41546. source: "./media/characters/artan/front.svg",
  41547. extra: 1618/1535,
  41548. bottom: 46/1664
  41549. }
  41550. },
  41551. back: {
  41552. height: math.unit(5 + 4/12, "feet"),
  41553. name: "Back",
  41554. image: {
  41555. source: "./media/characters/artan/back.svg",
  41556. extra: 1618/1543,
  41557. bottom: 31/1649
  41558. }
  41559. },
  41560. },
  41561. [
  41562. {
  41563. name: "Normal",
  41564. height: math.unit(5 + 4/12, "feet"),
  41565. default: true
  41566. },
  41567. ]
  41568. ))
  41569. characterMakers.push(() => makeCharacter(
  41570. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41571. {
  41572. side: {
  41573. height: math.unit(182, "cm"),
  41574. weight: math.unit(1000, "lb"),
  41575. name: "Side",
  41576. image: {
  41577. source: "./media/characters/silver-dragon/side.svg",
  41578. extra: 710/287,
  41579. bottom: 88/798
  41580. }
  41581. },
  41582. },
  41583. [
  41584. {
  41585. name: "Normal",
  41586. height: math.unit(182, "cm"),
  41587. default: true
  41588. },
  41589. ]
  41590. ))
  41591. characterMakers.push(() => makeCharacter(
  41592. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41593. {
  41594. side: {
  41595. height: math.unit(6 + 6/12, "feet"),
  41596. weight: math.unit(1.5, "tons"),
  41597. name: "Side",
  41598. image: {
  41599. source: "./media/characters/zephyr/side.svg",
  41600. extra: 1433/586,
  41601. bottom: 109/1542
  41602. }
  41603. },
  41604. },
  41605. [
  41606. {
  41607. name: "Normal",
  41608. height: math.unit(6 + 6/12, "feet"),
  41609. default: true
  41610. },
  41611. ]
  41612. ))
  41613. characterMakers.push(() => makeCharacter(
  41614. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41615. {
  41616. side: {
  41617. height: math.unit(1, "feet"),
  41618. name: "Side",
  41619. image: {
  41620. source: "./media/characters/vixye/side.svg",
  41621. extra: 632/541,
  41622. bottom: 0/632
  41623. }
  41624. },
  41625. },
  41626. [
  41627. {
  41628. name: "Normal",
  41629. height: math.unit(1, "feet"),
  41630. default: true
  41631. },
  41632. {
  41633. name: "True",
  41634. height: math.unit(1e15, "multiverses")
  41635. },
  41636. ]
  41637. ))
  41638. characterMakers.push(() => makeCharacter(
  41639. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41640. {
  41641. front: {
  41642. height: math.unit(8 + 2/12, "feet"),
  41643. weight: math.unit(650, "lb"),
  41644. name: "Front",
  41645. image: {
  41646. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41647. extra: 1174/1137,
  41648. bottom: 82/1256
  41649. }
  41650. },
  41651. back: {
  41652. height: math.unit(8 + 2/12, "feet"),
  41653. weight: math.unit(650, "lb"),
  41654. name: "Back",
  41655. image: {
  41656. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41657. extra: 1204/1157,
  41658. bottom: 46/1250
  41659. }
  41660. },
  41661. },
  41662. [
  41663. {
  41664. name: "Wildform",
  41665. height: math.unit(8 + 2/12, "feet"),
  41666. default: true
  41667. },
  41668. ]
  41669. ))
  41670. characterMakers.push(() => makeCharacter(
  41671. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41672. {
  41673. front: {
  41674. height: math.unit(18, "feet"),
  41675. name: "Front",
  41676. image: {
  41677. source: "./media/characters/cyphin/front.svg",
  41678. extra: 970/886,
  41679. bottom: 42/1012
  41680. }
  41681. },
  41682. back: {
  41683. height: math.unit(18, "feet"),
  41684. name: "Back",
  41685. image: {
  41686. source: "./media/characters/cyphin/back.svg",
  41687. extra: 1009/894,
  41688. bottom: 24/1033
  41689. }
  41690. },
  41691. head: {
  41692. height: math.unit(5.05, "feet"),
  41693. name: "Head",
  41694. image: {
  41695. source: "./media/characters/cyphin/head.svg"
  41696. }
  41697. },
  41698. tailbud: {
  41699. height: math.unit(5, "feet"),
  41700. name: "Tailbud",
  41701. image: {
  41702. source: "./media/characters/cyphin/tailbud.svg"
  41703. }
  41704. },
  41705. },
  41706. [
  41707. ]
  41708. ))
  41709. characterMakers.push(() => makeCharacter(
  41710. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41711. {
  41712. side: {
  41713. height: math.unit(10, "feet"),
  41714. weight: math.unit(6, "tons"),
  41715. name: "Side",
  41716. image: {
  41717. source: "./media/characters/raijin/side.svg",
  41718. extra: 1529/613,
  41719. bottom: 337/1866
  41720. }
  41721. },
  41722. },
  41723. [
  41724. {
  41725. name: "Normal",
  41726. height: math.unit(10, "feet"),
  41727. default: true
  41728. },
  41729. ]
  41730. ))
  41731. characterMakers.push(() => makeCharacter(
  41732. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41733. {
  41734. side: {
  41735. height: math.unit(9, "feet"),
  41736. name: "Side",
  41737. image: {
  41738. source: "./media/characters/nilghais/side.svg",
  41739. extra: 1047/744,
  41740. bottom: 91/1138
  41741. }
  41742. },
  41743. head: {
  41744. height: math.unit(3.14, "feet"),
  41745. name: "Head",
  41746. image: {
  41747. source: "./media/characters/nilghais/head.svg"
  41748. }
  41749. },
  41750. mouth: {
  41751. height: math.unit(4.6, "feet"),
  41752. name: "Mouth",
  41753. image: {
  41754. source: "./media/characters/nilghais/mouth.svg"
  41755. }
  41756. },
  41757. wings: {
  41758. height: math.unit(24, "feet"),
  41759. name: "Wings",
  41760. image: {
  41761. source: "./media/characters/nilghais/wings.svg"
  41762. }
  41763. },
  41764. ass: {
  41765. height: math.unit(6.12, "feet"),
  41766. name: "Ass",
  41767. image: {
  41768. source: "./media/characters/nilghais/ass.svg"
  41769. }
  41770. },
  41771. },
  41772. [
  41773. {
  41774. name: "Normal",
  41775. height: math.unit(9, "feet"),
  41776. default: true
  41777. },
  41778. ]
  41779. ))
  41780. characterMakers.push(() => makeCharacter(
  41781. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41782. {
  41783. regular: {
  41784. height: math.unit(16 + 2/12, "feet"),
  41785. weight: math.unit(2300, "lb"),
  41786. name: "Regular",
  41787. image: {
  41788. source: "./media/characters/zolgar/regular.svg",
  41789. extra: 1246/1004,
  41790. bottom: 124/1370
  41791. }
  41792. },
  41793. boxers: {
  41794. height: math.unit(16 + 2/12, "feet"),
  41795. weight: math.unit(2300, "lb"),
  41796. name: "Boxers",
  41797. image: {
  41798. source: "./media/characters/zolgar/boxers.svg",
  41799. extra: 1246/1004,
  41800. bottom: 124/1370
  41801. }
  41802. },
  41803. armored: {
  41804. height: math.unit(16 + 2/12, "feet"),
  41805. weight: math.unit(2300, "lb"),
  41806. name: "Armored",
  41807. image: {
  41808. source: "./media/characters/zolgar/armored.svg",
  41809. extra: 1246/1004,
  41810. bottom: 124/1370
  41811. }
  41812. },
  41813. goth: {
  41814. height: math.unit(16 + 2/12, "feet"),
  41815. weight: math.unit(2300, "lb"),
  41816. name: "Goth",
  41817. image: {
  41818. source: "./media/characters/zolgar/goth.svg",
  41819. extra: 1246/1004,
  41820. bottom: 124/1370
  41821. }
  41822. },
  41823. },
  41824. [
  41825. {
  41826. name: "Shrunken Down",
  41827. height: math.unit(9 + 2/12, "feet")
  41828. },
  41829. {
  41830. name: "Normal",
  41831. height: math.unit(16 + 2/12, "feet"),
  41832. default: true
  41833. },
  41834. ]
  41835. ))
  41836. characterMakers.push(() => makeCharacter(
  41837. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41838. {
  41839. front: {
  41840. height: math.unit(6, "feet"),
  41841. weight: math.unit(168, "lb"),
  41842. name: "Front",
  41843. image: {
  41844. source: "./media/characters/luca/front.svg",
  41845. extra: 841/667,
  41846. bottom: 102/943
  41847. }
  41848. },
  41849. },
  41850. [
  41851. {
  41852. name: "Normal",
  41853. height: math.unit(6, "feet"),
  41854. default: true
  41855. },
  41856. ]
  41857. ))
  41858. characterMakers.push(() => makeCharacter(
  41859. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41860. {
  41861. side: {
  41862. height: math.unit(7 + 3/12, "feet"),
  41863. weight: math.unit(312, "lb"),
  41864. name: "Side",
  41865. image: {
  41866. source: "./media/characters/zezo/side.svg",
  41867. extra: 1192/1067,
  41868. bottom: 63/1255
  41869. }
  41870. },
  41871. },
  41872. [
  41873. {
  41874. name: "Normal",
  41875. height: math.unit(7 + 3/12, "feet"),
  41876. default: true
  41877. },
  41878. ]
  41879. ))
  41880. characterMakers.push(() => makeCharacter(
  41881. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41882. {
  41883. front: {
  41884. height: math.unit(5 + 5/12, "feet"),
  41885. weight: math.unit(170, "lb"),
  41886. name: "Front",
  41887. image: {
  41888. source: "./media/characters/mayso/front.svg",
  41889. extra: 1215/1108,
  41890. bottom: 16/1231
  41891. }
  41892. },
  41893. },
  41894. [
  41895. {
  41896. name: "Normal",
  41897. height: math.unit(5 + 5/12, "feet"),
  41898. default: true
  41899. },
  41900. ]
  41901. ))
  41902. characterMakers.push(() => makeCharacter(
  41903. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41904. {
  41905. front: {
  41906. height: math.unit(4 + 3/12, "feet"),
  41907. weight: math.unit(80, "lb"),
  41908. name: "Front",
  41909. image: {
  41910. source: "./media/characters/hess/front.svg",
  41911. extra: 1200/1123,
  41912. bottom: 16/1216
  41913. }
  41914. },
  41915. },
  41916. [
  41917. {
  41918. name: "Normal",
  41919. height: math.unit(4 + 3/12, "feet"),
  41920. default: true
  41921. },
  41922. ]
  41923. ))
  41924. characterMakers.push(() => makeCharacter(
  41925. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41926. {
  41927. front: {
  41928. height: math.unit(1.9, "meters"),
  41929. name: "Front",
  41930. image: {
  41931. source: "./media/characters/ashgar/front.svg",
  41932. extra: 1177/1146,
  41933. bottom: 99/1276
  41934. }
  41935. },
  41936. back: {
  41937. height: math.unit(1.9, "meters"),
  41938. name: "Back",
  41939. image: {
  41940. source: "./media/characters/ashgar/back.svg",
  41941. extra: 1201/1183,
  41942. bottom: 53/1254
  41943. }
  41944. },
  41945. feral: {
  41946. height: math.unit(1.4, "meters"),
  41947. name: "Feral",
  41948. image: {
  41949. source: "./media/characters/ashgar/feral.svg",
  41950. extra: 370/345,
  41951. bottom: 45/415
  41952. }
  41953. },
  41954. },
  41955. [
  41956. {
  41957. name: "Normal",
  41958. height: math.unit(1.9, "meters"),
  41959. default: true
  41960. },
  41961. ]
  41962. ))
  41963. characterMakers.push(() => makeCharacter(
  41964. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41965. {
  41966. regular: {
  41967. height: math.unit(6, "feet"),
  41968. weight: math.unit(220, "lb"),
  41969. name: "Regular",
  41970. image: {
  41971. source: "./media/characters/phillip/regular.svg",
  41972. extra: 1373/1277,
  41973. bottom: 75/1448
  41974. }
  41975. },
  41976. dressed: {
  41977. height: math.unit(6, "feet"),
  41978. weight: math.unit(220, "lb"),
  41979. name: "Dressed",
  41980. image: {
  41981. source: "./media/characters/phillip/dressed.svg",
  41982. extra: 1373/1277,
  41983. bottom: 75/1448
  41984. }
  41985. },
  41986. paw: {
  41987. height: math.unit(1.44, "feet"),
  41988. name: "Paw",
  41989. image: {
  41990. source: "./media/characters/phillip/paw.svg"
  41991. }
  41992. },
  41993. },
  41994. [
  41995. {
  41996. name: "Normal",
  41997. height: math.unit(6, "feet"),
  41998. default: true
  41999. },
  42000. ]
  42001. ))
  42002. characterMakers.push(() => makeCharacter(
  42003. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42004. {
  42005. side: {
  42006. height: math.unit(42, "feet"),
  42007. name: "Side",
  42008. image: {
  42009. source: "./media/characters/uvula/side.svg",
  42010. extra: 683/586,
  42011. bottom: 60/743
  42012. }
  42013. },
  42014. front: {
  42015. height: math.unit(42, "feet"),
  42016. name: "Front",
  42017. image: {
  42018. source: "./media/characters/uvula/front.svg",
  42019. extra: 705/613,
  42020. bottom: 54/759
  42021. }
  42022. },
  42023. maw: {
  42024. height: math.unit(23.5, "feet"),
  42025. name: "Maw",
  42026. image: {
  42027. source: "./media/characters/uvula/maw.svg"
  42028. }
  42029. },
  42030. },
  42031. [
  42032. {
  42033. name: "Original Size",
  42034. height: math.unit(14, "inches")
  42035. },
  42036. {
  42037. name: "Human Size",
  42038. height: math.unit(6, "feet")
  42039. },
  42040. {
  42041. name: "Big",
  42042. height: math.unit(42, "feet"),
  42043. default: true
  42044. },
  42045. {
  42046. name: "Bigger",
  42047. height: math.unit(100, "feet")
  42048. },
  42049. ]
  42050. ))
  42051. characterMakers.push(() => makeCharacter(
  42052. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42053. {
  42054. front: {
  42055. height: math.unit(5 + 11/12, "feet"),
  42056. name: "Front",
  42057. image: {
  42058. source: "./media/characters/lannah/front.svg",
  42059. extra: 1208/1113,
  42060. bottom: 97/1305
  42061. }
  42062. },
  42063. },
  42064. [
  42065. {
  42066. name: "Normal",
  42067. height: math.unit(5 + 11/12, "feet"),
  42068. default: true
  42069. },
  42070. ]
  42071. ))
  42072. characterMakers.push(() => makeCharacter(
  42073. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42074. {
  42075. front: {
  42076. height: math.unit(6 + 3/12, "feet"),
  42077. weight: math.unit(3.5, "tons"),
  42078. name: "Front",
  42079. image: {
  42080. source: "./media/characters/emberflame/front.svg",
  42081. extra: 1198/672,
  42082. bottom: 82/1280
  42083. }
  42084. },
  42085. side: {
  42086. height: math.unit(6 + 3/12, "feet"),
  42087. weight: math.unit(3.5, "tons"),
  42088. name: "Side",
  42089. image: {
  42090. source: "./media/characters/emberflame/side.svg",
  42091. extra: 938/527,
  42092. bottom: 56/994
  42093. }
  42094. },
  42095. },
  42096. [
  42097. {
  42098. name: "Normal",
  42099. height: math.unit(6 + 3/12, "feet"),
  42100. default: true
  42101. },
  42102. ]
  42103. ))
  42104. characterMakers.push(() => makeCharacter(
  42105. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42106. {
  42107. side: {
  42108. height: math.unit(17.5, "feet"),
  42109. weight: math.unit(35, "tons"),
  42110. name: "Side",
  42111. image: {
  42112. source: "./media/characters/sophie-ambrose/side.svg",
  42113. extra: 1573/1242,
  42114. bottom: 71/1644
  42115. }
  42116. },
  42117. maw: {
  42118. height: math.unit(7.4, "feet"),
  42119. name: "Maw",
  42120. image: {
  42121. source: "./media/characters/sophie-ambrose/maw.svg"
  42122. }
  42123. },
  42124. },
  42125. [
  42126. {
  42127. name: "Normal",
  42128. height: math.unit(17.5, "feet"),
  42129. default: true
  42130. },
  42131. ]
  42132. ))
  42133. characterMakers.push(() => makeCharacter(
  42134. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42135. {
  42136. front: {
  42137. height: math.unit(280, "feet"),
  42138. weight: math.unit(550, "tons"),
  42139. name: "Front",
  42140. image: {
  42141. source: "./media/characters/king-mugi/front.svg",
  42142. extra: 1102/947,
  42143. bottom: 104/1206
  42144. }
  42145. },
  42146. },
  42147. [
  42148. {
  42149. name: "King Mugi",
  42150. height: math.unit(280, "feet"),
  42151. default: true
  42152. },
  42153. ]
  42154. ))
  42155. characterMakers.push(() => makeCharacter(
  42156. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42157. {
  42158. front: {
  42159. height: math.unit(64, "meters"),
  42160. name: "Front",
  42161. image: {
  42162. source: "./media/characters/nova-fox/front.svg",
  42163. extra: 1310/1246,
  42164. bottom: 65/1375
  42165. }
  42166. },
  42167. },
  42168. [
  42169. {
  42170. name: "Macro",
  42171. height: math.unit(64, "meters"),
  42172. default: true
  42173. },
  42174. ]
  42175. ))
  42176. characterMakers.push(() => makeCharacter(
  42177. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42178. {
  42179. front: {
  42180. height: math.unit(6 + 3/12, "feet"),
  42181. weight: math.unit(170, "lb"),
  42182. name: "Front",
  42183. image: {
  42184. source: "./media/characters/sam-bat/front.svg",
  42185. extra: 1601/1411,
  42186. bottom: 125/1726
  42187. }
  42188. },
  42189. back: {
  42190. height: math.unit(6 + 3/12, "feet"),
  42191. weight: math.unit(170, "lb"),
  42192. name: "Back",
  42193. image: {
  42194. source: "./media/characters/sam-bat/back.svg",
  42195. extra: 1577/1405,
  42196. bottom: 58/1635
  42197. }
  42198. },
  42199. },
  42200. [
  42201. {
  42202. name: "Normal",
  42203. height: math.unit(6 + 3/12, "feet"),
  42204. default: true
  42205. },
  42206. ]
  42207. ))
  42208. characterMakers.push(() => makeCharacter(
  42209. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42210. {
  42211. front: {
  42212. height: math.unit(59, "feet"),
  42213. weight: math.unit(40000, "lb"),
  42214. name: "Front",
  42215. image: {
  42216. source: "./media/characters/inari/front.svg",
  42217. extra: 1884/1350,
  42218. bottom: 95/1979
  42219. }
  42220. },
  42221. },
  42222. [
  42223. {
  42224. name: "Gigantamax",
  42225. height: math.unit(59, "feet"),
  42226. default: true
  42227. },
  42228. ]
  42229. ))
  42230. characterMakers.push(() => makeCharacter(
  42231. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42232. {
  42233. front: {
  42234. height: math.unit(5 + 8/12, "feet"),
  42235. name: "Front",
  42236. image: {
  42237. source: "./media/characters/elizabeth/front.svg",
  42238. extra: 1395/1298,
  42239. bottom: 54/1449
  42240. }
  42241. },
  42242. mouth: {
  42243. height: math.unit(1.97, "feet"),
  42244. name: "Mouth",
  42245. image: {
  42246. source: "./media/characters/elizabeth/mouth.svg"
  42247. }
  42248. },
  42249. foot: {
  42250. height: math.unit(1.17, "feet"),
  42251. name: "Foot",
  42252. image: {
  42253. source: "./media/characters/elizabeth/foot.svg"
  42254. }
  42255. },
  42256. },
  42257. [
  42258. {
  42259. name: "Normal",
  42260. height: math.unit(5 + 8/12, "feet"),
  42261. default: true
  42262. },
  42263. {
  42264. name: "Minimacro",
  42265. height: math.unit(18, "feet")
  42266. },
  42267. {
  42268. name: "Macro",
  42269. height: math.unit(180, "feet")
  42270. },
  42271. ]
  42272. ))
  42273. characterMakers.push(() => makeCharacter(
  42274. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42275. {
  42276. front: {
  42277. height: math.unit(5 + 2/12, "feet"),
  42278. name: "Front",
  42279. image: {
  42280. source: "./media/characters/october-gossamer/front.svg",
  42281. extra: 505/454,
  42282. bottom: 7/512
  42283. }
  42284. },
  42285. back: {
  42286. height: math.unit(5 + 2/12, "feet"),
  42287. name: "Back",
  42288. image: {
  42289. source: "./media/characters/october-gossamer/back.svg",
  42290. extra: 501/454,
  42291. bottom: 11/512
  42292. }
  42293. },
  42294. },
  42295. [
  42296. {
  42297. name: "Normal",
  42298. height: math.unit(5 + 2/12, "feet"),
  42299. default: true
  42300. },
  42301. ]
  42302. ))
  42303. characterMakers.push(() => makeCharacter(
  42304. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42305. {
  42306. front: {
  42307. height: math.unit(5, "feet"),
  42308. name: "Front",
  42309. image: {
  42310. source: "./media/characters/epiglottis/front.svg",
  42311. extra: 923/849,
  42312. bottom: 17/940
  42313. }
  42314. },
  42315. },
  42316. [
  42317. {
  42318. name: "Original Size",
  42319. height: math.unit(10, "inches")
  42320. },
  42321. {
  42322. name: "Human Size",
  42323. height: math.unit(5, "feet"),
  42324. default: true
  42325. },
  42326. {
  42327. name: "Big",
  42328. height: math.unit(25, "feet")
  42329. },
  42330. {
  42331. name: "Bigger",
  42332. height: math.unit(50, "feet")
  42333. },
  42334. {
  42335. name: "oh lawd",
  42336. height: math.unit(75, "feet")
  42337. },
  42338. ]
  42339. ))
  42340. characterMakers.push(() => makeCharacter(
  42341. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42342. {
  42343. front: {
  42344. height: math.unit(2 + 4/12, "feet"),
  42345. weight: math.unit(60, "lb"),
  42346. name: "Front",
  42347. image: {
  42348. source: "./media/characters/lerm/front.svg",
  42349. extra: 796/790,
  42350. bottom: 79/875
  42351. }
  42352. },
  42353. },
  42354. [
  42355. {
  42356. name: "Normal",
  42357. height: math.unit(2 + 4/12, "feet"),
  42358. default: true
  42359. },
  42360. ]
  42361. ))
  42362. characterMakers.push(() => makeCharacter(
  42363. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42364. {
  42365. front: {
  42366. height: math.unit(5.5, "feet"),
  42367. weight: math.unit(130, "lb"),
  42368. name: "Front",
  42369. image: {
  42370. source: "./media/characters/xena-nebadon/front.svg",
  42371. extra: 1828/1730,
  42372. bottom: 79/1907
  42373. }
  42374. },
  42375. },
  42376. [
  42377. {
  42378. name: "Tiny Puppy",
  42379. height: math.unit(3, "inches")
  42380. },
  42381. {
  42382. name: "Normal",
  42383. height: math.unit(5.5, "feet"),
  42384. default: true
  42385. },
  42386. {
  42387. name: "Lotta Lady",
  42388. height: math.unit(12, "feet")
  42389. },
  42390. {
  42391. name: "Pretty Big",
  42392. height: math.unit(100, "feet")
  42393. },
  42394. {
  42395. name: "Big",
  42396. height: math.unit(500, "feet")
  42397. },
  42398. {
  42399. name: "Skyscraper Toys",
  42400. height: math.unit(2500, "feet")
  42401. },
  42402. {
  42403. name: "Plane Catcher",
  42404. height: math.unit(8, "miles")
  42405. },
  42406. {
  42407. name: "Planet Toys",
  42408. height: math.unit(15, "earths")
  42409. },
  42410. {
  42411. name: "Stardust",
  42412. height: math.unit(0.25, "galaxies")
  42413. },
  42414. {
  42415. name: "Snacks",
  42416. height: math.unit(70, "universes")
  42417. },
  42418. ]
  42419. ))
  42420. characterMakers.push(() => makeCharacter(
  42421. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42422. {
  42423. front: {
  42424. height: math.unit(1.6, "meters"),
  42425. weight: math.unit(60, "kg"),
  42426. name: "Front",
  42427. image: {
  42428. source: "./media/characters/bounty/front.svg",
  42429. extra: 1426/1308,
  42430. bottom: 15/1441
  42431. }
  42432. },
  42433. back: {
  42434. height: math.unit(1.6, "meters"),
  42435. weight: math.unit(60, "kg"),
  42436. name: "Back",
  42437. image: {
  42438. source: "./media/characters/bounty/back.svg",
  42439. extra: 1417/1307,
  42440. bottom: 8/1425
  42441. }
  42442. },
  42443. },
  42444. [
  42445. {
  42446. name: "Normal",
  42447. height: math.unit(1.6, "meters"),
  42448. default: true
  42449. },
  42450. {
  42451. name: "Macro",
  42452. height: math.unit(300, "meters")
  42453. },
  42454. ]
  42455. ))
  42456. characterMakers.push(() => makeCharacter(
  42457. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42458. {
  42459. front: {
  42460. height: math.unit(2 + 8/12, "feet"),
  42461. weight: math.unit(15, "lb"),
  42462. name: "Front",
  42463. image: {
  42464. source: "./media/characters/mochi/front.svg",
  42465. extra: 1022/852,
  42466. bottom: 435/1457
  42467. }
  42468. },
  42469. back: {
  42470. height: math.unit(2 + 8/12, "feet"),
  42471. weight: math.unit(15, "lb"),
  42472. name: "Back",
  42473. image: {
  42474. source: "./media/characters/mochi/back.svg",
  42475. extra: 1335/1119,
  42476. bottom: 39/1374
  42477. }
  42478. },
  42479. bird: {
  42480. height: math.unit(2 + 8/12, "feet"),
  42481. weight: math.unit(15, "lb"),
  42482. name: "Bird",
  42483. image: {
  42484. source: "./media/characters/mochi/bird.svg",
  42485. extra: 1251/1113,
  42486. bottom: 178/1429
  42487. }
  42488. },
  42489. kaiju: {
  42490. height: math.unit(154, "feet"),
  42491. weight: math.unit(1e7, "lb"),
  42492. name: "Kaiju",
  42493. image: {
  42494. source: "./media/characters/mochi/kaiju.svg",
  42495. extra: 460/324,
  42496. bottom: 40/500
  42497. }
  42498. },
  42499. head: {
  42500. height: math.unit(1.21, "feet"),
  42501. name: "Head",
  42502. image: {
  42503. source: "./media/characters/mochi/head.svg"
  42504. }
  42505. },
  42506. alternateTail: {
  42507. height: math.unit(2 + 8/12, "feet"),
  42508. weight: math.unit(45, "lb"),
  42509. name: "Alternate Tail",
  42510. image: {
  42511. source: "./media/characters/mochi/alternate-tail.svg",
  42512. extra: 139/76,
  42513. bottom: 45/184
  42514. }
  42515. },
  42516. },
  42517. [
  42518. {
  42519. name: "Micro",
  42520. height: math.unit(2, "inches")
  42521. },
  42522. {
  42523. name: "Normal",
  42524. height: math.unit(2 + 8/12, "feet"),
  42525. default: true
  42526. },
  42527. {
  42528. name: "Macro",
  42529. height: math.unit(106, "feet")
  42530. },
  42531. ]
  42532. ))
  42533. characterMakers.push(() => makeCharacter(
  42534. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42535. {
  42536. front: {
  42537. height: math.unit(5.67, "feet"),
  42538. weight: math.unit(135, "lb"),
  42539. name: "Front",
  42540. image: {
  42541. source: "./media/characters/sarel/front.svg",
  42542. extra: 865/788,
  42543. bottom: 97/962
  42544. }
  42545. },
  42546. back: {
  42547. height: math.unit(5.67, "feet"),
  42548. weight: math.unit(135, "lb"),
  42549. name: "Back",
  42550. image: {
  42551. source: "./media/characters/sarel/back.svg",
  42552. extra: 857/777,
  42553. bottom: 32/889
  42554. }
  42555. },
  42556. chozoan: {
  42557. height: math.unit(5.67, "feet"),
  42558. weight: math.unit(135, "lb"),
  42559. name: "Chozoan",
  42560. image: {
  42561. source: "./media/characters/sarel/chozoan.svg",
  42562. extra: 865/788,
  42563. bottom: 97/962
  42564. }
  42565. },
  42566. current: {
  42567. height: math.unit(5.67, "feet"),
  42568. weight: math.unit(135, "lb"),
  42569. name: "Current",
  42570. image: {
  42571. source: "./media/characters/sarel/current.svg",
  42572. extra: 865/788,
  42573. bottom: 97/962
  42574. }
  42575. },
  42576. head: {
  42577. height: math.unit(1.77, "feet"),
  42578. name: "Head",
  42579. image: {
  42580. source: "./media/characters/sarel/head.svg"
  42581. }
  42582. },
  42583. claws: {
  42584. height: math.unit(1.8, "feet"),
  42585. name: "Claws",
  42586. image: {
  42587. source: "./media/characters/sarel/claws.svg"
  42588. }
  42589. },
  42590. clawsAlt: {
  42591. height: math.unit(1.8, "feet"),
  42592. name: "Claws-alt",
  42593. image: {
  42594. source: "./media/characters/sarel/claws-alt.svg"
  42595. }
  42596. },
  42597. },
  42598. [
  42599. {
  42600. name: "Normal",
  42601. height: math.unit(5.67, "feet"),
  42602. default: true
  42603. },
  42604. ]
  42605. ))
  42606. characterMakers.push(() => makeCharacter(
  42607. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42608. {
  42609. front: {
  42610. height: math.unit(5500, "feet"),
  42611. name: "Front",
  42612. image: {
  42613. source: "./media/characters/alyonia/front.svg",
  42614. extra: 1200/1135,
  42615. bottom: 29/1229
  42616. }
  42617. },
  42618. back: {
  42619. height: math.unit(5500, "feet"),
  42620. name: "Back",
  42621. image: {
  42622. source: "./media/characters/alyonia/back.svg",
  42623. extra: 1205/1138,
  42624. bottom: 10/1215
  42625. }
  42626. },
  42627. },
  42628. [
  42629. {
  42630. name: "Small",
  42631. height: math.unit(10, "feet")
  42632. },
  42633. {
  42634. name: "Macro",
  42635. height: math.unit(500, "feet")
  42636. },
  42637. {
  42638. name: "Mega Macro",
  42639. height: math.unit(5500, "feet"),
  42640. default: true
  42641. },
  42642. {
  42643. name: "Mega Macro+",
  42644. height: math.unit(500000, "feet")
  42645. },
  42646. {
  42647. name: "Giga Macro",
  42648. height: math.unit(3000, "miles")
  42649. },
  42650. {
  42651. name: "Tera Macro",
  42652. height: math.unit(2.8e6, "miles")
  42653. },
  42654. {
  42655. name: "Galactic",
  42656. height: math.unit(120000, "lightyears")
  42657. },
  42658. ]
  42659. ))
  42660. characterMakers.push(() => makeCharacter(
  42661. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42662. {
  42663. werewolf: {
  42664. height: math.unit(8, "feet"),
  42665. weight: math.unit(425, "lb"),
  42666. name: "Werewolf",
  42667. image: {
  42668. source: "./media/characters/autumn/werewolf.svg",
  42669. extra: 2154/2031,
  42670. bottom: 160/2314
  42671. }
  42672. },
  42673. human: {
  42674. height: math.unit(5 + 8/12, "feet"),
  42675. weight: math.unit(150, "lb"),
  42676. name: "Human",
  42677. image: {
  42678. source: "./media/characters/autumn/human.svg",
  42679. extra: 1200/1149,
  42680. bottom: 30/1230
  42681. }
  42682. },
  42683. },
  42684. [
  42685. {
  42686. name: "Normal",
  42687. height: math.unit(8, "feet"),
  42688. default: true
  42689. },
  42690. ]
  42691. ))
  42692. characterMakers.push(() => makeCharacter(
  42693. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42694. {
  42695. front: {
  42696. height: math.unit(8 + 5/12, "feet"),
  42697. weight: math.unit(825, "lb"),
  42698. name: "Front",
  42699. image: {
  42700. source: "./media/characters/cobalt-charizard/front.svg",
  42701. extra: 1268/1155,
  42702. bottom: 122/1390
  42703. }
  42704. },
  42705. side: {
  42706. height: math.unit(8 + 5/12, "feet"),
  42707. weight: math.unit(825, "lb"),
  42708. name: "Side",
  42709. image: {
  42710. source: "./media/characters/cobalt-charizard/side.svg",
  42711. extra: 1348/1257,
  42712. bottom: 58/1406
  42713. }
  42714. },
  42715. gMax: {
  42716. height: math.unit(134 + 11/12, "feet"),
  42717. name: "G-Max",
  42718. image: {
  42719. source: "./media/characters/cobalt-charizard/g-max.svg",
  42720. extra: 1835/1541,
  42721. bottom: 151/1986
  42722. }
  42723. },
  42724. },
  42725. [
  42726. {
  42727. name: "Normal",
  42728. height: math.unit(8 + 5/12, "feet"),
  42729. default: true
  42730. },
  42731. ]
  42732. ))
  42733. characterMakers.push(() => makeCharacter(
  42734. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42735. {
  42736. front: {
  42737. height: math.unit(6 + 3/12, "feet"),
  42738. weight: math.unit(210, "lb"),
  42739. name: "Front",
  42740. image: {
  42741. source: "./media/characters/stella/front.svg",
  42742. extra: 3549/3335,
  42743. bottom: 51/3600
  42744. }
  42745. },
  42746. },
  42747. [
  42748. {
  42749. name: "Normal",
  42750. height: math.unit(6 + 3/12, "feet"),
  42751. default: true
  42752. },
  42753. ]
  42754. ))
  42755. characterMakers.push(() => makeCharacter(
  42756. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42757. {
  42758. front: {
  42759. height: math.unit(5, "feet"),
  42760. weight: math.unit(90, "lb"),
  42761. name: "Front",
  42762. image: {
  42763. source: "./media/characters/riley-bishop/front.svg",
  42764. extra: 1450/1428,
  42765. bottom: 152/1602
  42766. }
  42767. },
  42768. },
  42769. [
  42770. {
  42771. name: "Normal",
  42772. height: math.unit(5, "feet"),
  42773. default: true
  42774. },
  42775. ]
  42776. ))
  42777. characterMakers.push(() => makeCharacter(
  42778. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42779. {
  42780. side: {
  42781. height: math.unit(8 + 2/12, "feet"),
  42782. weight: math.unit(500, "kg"),
  42783. name: "Side",
  42784. image: {
  42785. source: "./media/characters/theo-arcanine/side.svg",
  42786. extra: 1342/1074,
  42787. bottom: 111/1453
  42788. }
  42789. },
  42790. },
  42791. [
  42792. {
  42793. name: "Normal",
  42794. height: math.unit(8 + 2/12, "feet"),
  42795. default: true
  42796. },
  42797. ]
  42798. ))
  42799. characterMakers.push(() => makeCharacter(
  42800. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42801. {
  42802. front: {
  42803. height: math.unit(4, "feet"),
  42804. name: "Front",
  42805. image: {
  42806. source: "./media/characters/kali/front.svg",
  42807. extra: 1921/1357,
  42808. bottom: 70/1991
  42809. }
  42810. },
  42811. },
  42812. [
  42813. {
  42814. name: "Normal",
  42815. height: math.unit(4, "feet"),
  42816. default: true
  42817. },
  42818. {
  42819. name: "Macro",
  42820. height: math.unit(32, "meters")
  42821. },
  42822. {
  42823. name: "Macro+",
  42824. height: math.unit(150, "meters")
  42825. },
  42826. {
  42827. name: "Megamacro",
  42828. height: math.unit(7500, "meters")
  42829. },
  42830. {
  42831. name: "Megamacro+",
  42832. height: math.unit(80, "kilometers")
  42833. },
  42834. ]
  42835. ))
  42836. characterMakers.push(() => makeCharacter(
  42837. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42838. {
  42839. side: {
  42840. height: math.unit(5 + 11/12, "feet"),
  42841. weight: math.unit(236, "lb"),
  42842. name: "Side",
  42843. image: {
  42844. source: "./media/characters/gapp/side.svg",
  42845. extra: 775/340,
  42846. bottom: 58/833
  42847. }
  42848. },
  42849. mouth: {
  42850. height: math.unit(2.98, "feet"),
  42851. name: "Mouth",
  42852. image: {
  42853. source: "./media/characters/gapp/mouth.svg"
  42854. }
  42855. },
  42856. },
  42857. [
  42858. {
  42859. name: "Normal",
  42860. height: math.unit(5 + 1/12, "feet"),
  42861. default: true
  42862. },
  42863. ]
  42864. ))
  42865. characterMakers.push(() => makeCharacter(
  42866. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42867. {
  42868. front: {
  42869. height: math.unit(6, "feet"),
  42870. name: "Front",
  42871. image: {
  42872. source: "./media/characters/persephone/front.svg",
  42873. extra: 1895/1717,
  42874. bottom: 96/1991
  42875. }
  42876. },
  42877. back: {
  42878. height: math.unit(6, "feet"),
  42879. name: "Back",
  42880. image: {
  42881. source: "./media/characters/persephone/back.svg",
  42882. extra: 1868/1679,
  42883. bottom: 26/1894
  42884. }
  42885. },
  42886. casual: {
  42887. height: math.unit(6, "feet"),
  42888. name: "Casual",
  42889. image: {
  42890. source: "./media/characters/persephone/casual.svg",
  42891. extra: 1713/1541,
  42892. bottom: 76/1789
  42893. }
  42894. },
  42895. },
  42896. [
  42897. {
  42898. name: "Human Size",
  42899. height: math.unit(6, "feet")
  42900. },
  42901. {
  42902. name: "Big Steppy",
  42903. height: math.unit(600, "meters"),
  42904. default: true
  42905. },
  42906. {
  42907. name: "Galaxy Brain",
  42908. height: math.unit(1, "zettameter")
  42909. },
  42910. ]
  42911. ))
  42912. characterMakers.push(() => makeCharacter(
  42913. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42914. {
  42915. front: {
  42916. height: math.unit(1.85, "meters"),
  42917. name: "Front",
  42918. image: {
  42919. source: "./media/characters/riley-foxthing/front.svg",
  42920. extra: 1495/1354,
  42921. bottom: 122/1617
  42922. }
  42923. },
  42924. frontAlt: {
  42925. height: math.unit(1.85, "meters"),
  42926. name: "Front (Alt)",
  42927. image: {
  42928. source: "./media/characters/riley-foxthing/front-alt.svg",
  42929. extra: 1572/1389,
  42930. bottom: 116/1688
  42931. }
  42932. },
  42933. },
  42934. [
  42935. {
  42936. name: "Normal Sized",
  42937. height: math.unit(1.85, "meters"),
  42938. default: true
  42939. },
  42940. {
  42941. name: "Quite Sizable",
  42942. height: math.unit(5, "meters")
  42943. },
  42944. {
  42945. name: "Rather Large",
  42946. height: math.unit(20, "meters")
  42947. },
  42948. {
  42949. name: "Macro",
  42950. height: math.unit(450, "meters")
  42951. },
  42952. {
  42953. name: "Giga",
  42954. height: math.unit(5, "km")
  42955. },
  42956. ]
  42957. ))
  42958. characterMakers.push(() => makeCharacter(
  42959. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42960. {
  42961. front: {
  42962. height: math.unit(6, "feet"),
  42963. weight: math.unit(200, "lb"),
  42964. name: "Front",
  42965. image: {
  42966. source: "./media/characters/blizzard/front.svg",
  42967. extra: 1136/990,
  42968. bottom: 136/1272
  42969. }
  42970. },
  42971. back: {
  42972. height: math.unit(6, "feet"),
  42973. weight: math.unit(200, "lb"),
  42974. name: "Back",
  42975. image: {
  42976. source: "./media/characters/blizzard/back.svg",
  42977. extra: 1175/1034,
  42978. bottom: 97/1272
  42979. }
  42980. },
  42981. sitting: {
  42982. height: math.unit(3.725, "feet"),
  42983. weight: math.unit(200, "lb"),
  42984. name: "Sitting",
  42985. image: {
  42986. source: "./media/characters/blizzard/sitting.svg",
  42987. extra: 581/485,
  42988. bottom: 90/671
  42989. }
  42990. },
  42991. frontWizard: {
  42992. height: math.unit(7.9, "feet"),
  42993. weight: math.unit(200, "lb"),
  42994. name: "Front (Wizard)",
  42995. image: {
  42996. source: "./media/characters/blizzard/front-wizard.svg"
  42997. }
  42998. },
  42999. backWizard: {
  43000. height: math.unit(7.9, "feet"),
  43001. weight: math.unit(200, "lb"),
  43002. name: "Back (Wizard)",
  43003. image: {
  43004. source: "./media/characters/blizzard/back-wizard.svg"
  43005. }
  43006. },
  43007. frontNsfw: {
  43008. height: math.unit(6, "feet"),
  43009. weight: math.unit(200, "lb"),
  43010. name: "Front (NSFW)",
  43011. image: {
  43012. source: "./media/characters/blizzard/front-nsfw.svg",
  43013. extra: 1136/990,
  43014. bottom: 136/1272
  43015. }
  43016. },
  43017. backNsfw: {
  43018. height: math.unit(6, "feet"),
  43019. weight: math.unit(200, "lb"),
  43020. name: "Back (NSFW)",
  43021. image: {
  43022. source: "./media/characters/blizzard/back-nsfw.svg",
  43023. extra: 1175/1034,
  43024. bottom: 97/1272
  43025. }
  43026. },
  43027. sittingNsfw: {
  43028. height: math.unit(3.725, "feet"),
  43029. weight: math.unit(200, "lb"),
  43030. name: "Sitting (NSFW)",
  43031. image: {
  43032. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43033. extra: 581/485,
  43034. bottom: 90/671
  43035. }
  43036. },
  43037. wizardFrontNsfw: {
  43038. height: math.unit(7.9, "feet"),
  43039. weight: math.unit(200, "lb"),
  43040. name: "Wizard (Front, NSFW)",
  43041. image: {
  43042. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43043. }
  43044. },
  43045. },
  43046. [
  43047. {
  43048. name: "Normal",
  43049. height: math.unit(6, "feet"),
  43050. default: true
  43051. },
  43052. ]
  43053. ))
  43054. characterMakers.push(() => makeCharacter(
  43055. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43056. {
  43057. front: {
  43058. height: math.unit(5 + 2/12, "feet"),
  43059. name: "Front",
  43060. image: {
  43061. source: "./media/characters/lumi/front.svg",
  43062. extra: 1328/1268,
  43063. bottom: 103/1431
  43064. }
  43065. },
  43066. back: {
  43067. height: math.unit(5 + 2/12, "feet"),
  43068. name: "Back",
  43069. image: {
  43070. source: "./media/characters/lumi/back.svg",
  43071. extra: 1381/1327,
  43072. bottom: 43/1424
  43073. }
  43074. },
  43075. },
  43076. [
  43077. {
  43078. name: "Normal",
  43079. height: math.unit(5 + 2/12, "feet"),
  43080. default: true
  43081. },
  43082. ]
  43083. ))
  43084. characterMakers.push(() => makeCharacter(
  43085. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43086. {
  43087. front: {
  43088. height: math.unit(5 + 9/12, "feet"),
  43089. name: "Front",
  43090. image: {
  43091. source: "./media/characters/aliya-cotton/front.svg",
  43092. extra: 577/564,
  43093. bottom: 29/606
  43094. }
  43095. },
  43096. },
  43097. [
  43098. {
  43099. name: "Normal",
  43100. height: math.unit(5 + 9/12, "feet"),
  43101. default: true
  43102. },
  43103. ]
  43104. ))
  43105. characterMakers.push(() => makeCharacter(
  43106. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43107. {
  43108. front: {
  43109. height: math.unit(2.7, "meters"),
  43110. weight: math.unit(25000, "lb"),
  43111. name: "Front",
  43112. image: {
  43113. source: "./media/characters/noah-luxray/front.svg",
  43114. extra: 1644/825,
  43115. bottom: 339/1983
  43116. }
  43117. },
  43118. side: {
  43119. height: math.unit(2.97, "meters"),
  43120. weight: math.unit(25000, "lb"),
  43121. name: "Side",
  43122. image: {
  43123. source: "./media/characters/noah-luxray/side.svg",
  43124. extra: 1319/650,
  43125. bottom: 163/1482
  43126. }
  43127. },
  43128. dick: {
  43129. height: math.unit(7.4, "feet"),
  43130. weight: math.unit(2500, "lb"),
  43131. name: "Dick",
  43132. image: {
  43133. source: "./media/characters/noah-luxray/dick.svg"
  43134. }
  43135. },
  43136. dickAlt: {
  43137. height: math.unit(10.83, "feet"),
  43138. weight: math.unit(2500, "lb"),
  43139. name: "Dick-alt",
  43140. image: {
  43141. source: "./media/characters/noah-luxray/dick-alt.svg"
  43142. }
  43143. },
  43144. },
  43145. [
  43146. {
  43147. name: "BIG",
  43148. height: math.unit(2.7, "meters"),
  43149. default: true
  43150. },
  43151. ]
  43152. ))
  43153. characterMakers.push(() => makeCharacter(
  43154. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43155. {
  43156. standing: {
  43157. height: math.unit(183, "cm"),
  43158. weight: math.unit(68, "kg"),
  43159. name: "Standing",
  43160. image: {
  43161. source: "./media/characters/arion/standing.svg",
  43162. extra: 1869/1807,
  43163. bottom: 93/1962
  43164. }
  43165. },
  43166. reclining: {
  43167. height: math.unit(70.5, "cm"),
  43168. weight: math.unit(68, "lb"),
  43169. name: "Reclining",
  43170. image: {
  43171. source: "./media/characters/arion/reclining.svg",
  43172. extra: 937/870,
  43173. bottom: 63/1000
  43174. }
  43175. },
  43176. },
  43177. [
  43178. {
  43179. name: "Colossus Size, Low",
  43180. height: math.unit(33, "meters"),
  43181. default: true
  43182. },
  43183. {
  43184. name: "Colossus Size, Mid",
  43185. height: math.unit(52, "meters")
  43186. },
  43187. {
  43188. name: "Colossus Size, High",
  43189. height: math.unit(60, "meters")
  43190. },
  43191. {
  43192. name: "Titan Size, Low",
  43193. height: math.unit(91, "meters"),
  43194. },
  43195. {
  43196. name: "Titan Size, Mid",
  43197. height: math.unit(122, "meters")
  43198. },
  43199. {
  43200. name: "Titan Size, High",
  43201. height: math.unit(162, "meters")
  43202. },
  43203. ]
  43204. ))
  43205. characterMakers.push(() => makeCharacter(
  43206. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43207. {
  43208. front: {
  43209. height: math.unit(53, "meters"),
  43210. name: "Front",
  43211. image: {
  43212. source: "./media/characters/stellar-marbey/front.svg",
  43213. extra: 1913/1805,
  43214. bottom: 92/2005
  43215. }
  43216. },
  43217. back: {
  43218. height: math.unit(53, "meters"),
  43219. name: "Back",
  43220. image: {
  43221. source: "./media/characters/stellar-marbey/back.svg",
  43222. extra: 1960/1851,
  43223. bottom: 28/1988
  43224. }
  43225. },
  43226. mouth: {
  43227. height: math.unit(3.5, "meters"),
  43228. name: "Mouth",
  43229. image: {
  43230. source: "./media/characters/stellar-marbey/mouth.svg"
  43231. }
  43232. },
  43233. },
  43234. [
  43235. {
  43236. name: "Macro",
  43237. height: math.unit(53, "meters"),
  43238. default: true
  43239. },
  43240. ]
  43241. ))
  43242. characterMakers.push(() => makeCharacter(
  43243. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43244. {
  43245. front: {
  43246. height: math.unit(8 + 1/12, "feet"),
  43247. weight: math.unit(233, "lb"),
  43248. name: "Front",
  43249. image: {
  43250. source: "./media/characters/matsu/front.svg",
  43251. extra: 832/772,
  43252. bottom: 40/872
  43253. }
  43254. },
  43255. back: {
  43256. height: math.unit(8 + 1/12, "feet"),
  43257. weight: math.unit(233, "lb"),
  43258. name: "Back",
  43259. image: {
  43260. source: "./media/characters/matsu/back.svg",
  43261. extra: 839/780,
  43262. bottom: 47/886
  43263. }
  43264. },
  43265. },
  43266. [
  43267. {
  43268. name: "Normal",
  43269. height: math.unit(8 + 1/12, "feet"),
  43270. default: true
  43271. },
  43272. ]
  43273. ))
  43274. characterMakers.push(() => makeCharacter(
  43275. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43276. {
  43277. front: {
  43278. height: math.unit(4, "feet"),
  43279. weight: math.unit(148, "lb"),
  43280. name: "Front",
  43281. image: {
  43282. source: "./media/characters/thiz/front.svg",
  43283. extra: 1913/1748,
  43284. bottom: 62/1975
  43285. }
  43286. },
  43287. },
  43288. [
  43289. {
  43290. name: "Normal",
  43291. height: math.unit(4, "feet"),
  43292. default: true
  43293. },
  43294. ]
  43295. ))
  43296. characterMakers.push(() => makeCharacter(
  43297. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43298. {
  43299. front: {
  43300. height: math.unit(7 + 6/12, "feet"),
  43301. weight: math.unit(267, "lb"),
  43302. name: "Front",
  43303. image: {
  43304. source: "./media/characters/marcel/front.svg",
  43305. extra: 1221/1096,
  43306. bottom: 76/1297
  43307. }
  43308. },
  43309. },
  43310. [
  43311. {
  43312. name: "Normal",
  43313. height: math.unit(7 + 6/12, "feet"),
  43314. default: true
  43315. },
  43316. ]
  43317. ))
  43318. characterMakers.push(() => makeCharacter(
  43319. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43320. {
  43321. side: {
  43322. height: math.unit(42, "meters"),
  43323. name: "Side",
  43324. image: {
  43325. source: "./media/characters/flake/side.svg",
  43326. extra: 1525/1306,
  43327. bottom: 209/1734
  43328. }
  43329. },
  43330. },
  43331. [
  43332. {
  43333. name: "Normal",
  43334. height: math.unit(42, "meters"),
  43335. default: true
  43336. },
  43337. ]
  43338. ))
  43339. characterMakers.push(() => makeCharacter(
  43340. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43341. {
  43342. dressed: {
  43343. height: math.unit(6 + 4/12, "feet"),
  43344. weight: math.unit(520, "lb"),
  43345. name: "Dressed",
  43346. image: {
  43347. source: "./media/characters/someonne/dressed.svg",
  43348. extra: 1020/1010,
  43349. bottom: 178/1198
  43350. }
  43351. },
  43352. undressed: {
  43353. height: math.unit(6 + 4/12, "feet"),
  43354. weight: math.unit(520, "lb"),
  43355. name: "Undressed",
  43356. image: {
  43357. source: "./media/characters/someonne/undressed.svg",
  43358. extra: 1019/1014,
  43359. bottom: 169/1188
  43360. }
  43361. },
  43362. },
  43363. [
  43364. {
  43365. name: "Normal",
  43366. height: math.unit(6 + 4/12, "feet"),
  43367. default: true
  43368. },
  43369. ]
  43370. ))
  43371. characterMakers.push(() => makeCharacter(
  43372. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43373. {
  43374. front: {
  43375. height: math.unit(3, "feet"),
  43376. weight: math.unit(30, "lb"),
  43377. name: "Front",
  43378. image: {
  43379. source: "./media/characters/till/front.svg",
  43380. extra: 892/823,
  43381. bottom: 55/947
  43382. }
  43383. },
  43384. },
  43385. [
  43386. {
  43387. name: "Normal",
  43388. height: math.unit(3, "feet"),
  43389. default: true
  43390. },
  43391. ]
  43392. ))
  43393. characterMakers.push(() => makeCharacter(
  43394. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43395. {
  43396. front: {
  43397. height: math.unit(9 + 8/12, "feet"),
  43398. weight: math.unit(800, "lb"),
  43399. name: "Front",
  43400. image: {
  43401. source: "./media/characters/sydney-heki/front.svg",
  43402. extra: 1360/1300,
  43403. bottom: 22/1382
  43404. }
  43405. },
  43406. back: {
  43407. height: math.unit(9 + 8/12, "feet"),
  43408. weight: math.unit(800, "lb"),
  43409. name: "Back",
  43410. image: {
  43411. source: "./media/characters/sydney-heki/back.svg",
  43412. extra: 1356/1293,
  43413. bottom: 12/1368
  43414. }
  43415. },
  43416. frontDressed: {
  43417. height: math.unit(9 + 8/12, "feet"),
  43418. weight: math.unit(800, "lb"),
  43419. name: "Front-dressed",
  43420. image: {
  43421. source: "./media/characters/sydney-heki/front-dressed.svg",
  43422. extra: 1360/1300,
  43423. bottom: 22/1382
  43424. }
  43425. },
  43426. },
  43427. [
  43428. {
  43429. name: "Normal",
  43430. height: math.unit(9 + 8/12, "feet"),
  43431. default: true
  43432. },
  43433. {
  43434. name: "Macro",
  43435. height: math.unit(500, "feet")
  43436. },
  43437. {
  43438. name: "Megamacro",
  43439. height: math.unit(3.6, "miles")
  43440. },
  43441. ]
  43442. ))
  43443. characterMakers.push(() => makeCharacter(
  43444. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43445. {
  43446. front: {
  43447. height: math.unit(200, "cm"),
  43448. weight: math.unit(250, "lb"),
  43449. name: "Front",
  43450. image: {
  43451. source: "./media/characters/fowler-karlsson/front.svg",
  43452. extra: 897/845,
  43453. bottom: 123/1020
  43454. }
  43455. },
  43456. back: {
  43457. height: math.unit(200, "cm"),
  43458. weight: math.unit(250, "lb"),
  43459. name: "Back",
  43460. image: {
  43461. source: "./media/characters/fowler-karlsson/back.svg",
  43462. extra: 999/944,
  43463. bottom: 26/1025
  43464. }
  43465. },
  43466. dick: {
  43467. height: math.unit(1.92, "feet"),
  43468. weight: math.unit(150, "lb"),
  43469. name: "Dick",
  43470. image: {
  43471. source: "./media/characters/fowler-karlsson/dick.svg"
  43472. }
  43473. },
  43474. },
  43475. [
  43476. {
  43477. name: "Normal",
  43478. height: math.unit(200, "cm"),
  43479. default: true
  43480. },
  43481. {
  43482. name: "Smaller Macro",
  43483. height: math.unit(90, "m")
  43484. },
  43485. {
  43486. name: "Macro",
  43487. height: math.unit(150, "m")
  43488. },
  43489. {
  43490. name: "Bigger Macro",
  43491. height: math.unit(300, "m")
  43492. },
  43493. ]
  43494. ))
  43495. characterMakers.push(() => makeCharacter(
  43496. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43497. {
  43498. side: {
  43499. height: math.unit(8 + 2/12, "feet"),
  43500. weight: math.unit(1, "tonne"),
  43501. name: "Side",
  43502. image: {
  43503. source: "./media/characters/rylide/side.svg",
  43504. extra: 1318/1034,
  43505. bottom: 106/1424
  43506. }
  43507. },
  43508. sitting: {
  43509. height: math.unit(303, "cm"),
  43510. weight: math.unit(1, "tonne"),
  43511. name: "Sitting",
  43512. image: {
  43513. source: "./media/characters/rylide/sitting.svg",
  43514. extra: 1303/1103,
  43515. bottom: 36/1339
  43516. }
  43517. },
  43518. },
  43519. [
  43520. {
  43521. name: "Normal",
  43522. height: math.unit(8 + 2/12, "feet"),
  43523. default: true
  43524. },
  43525. ]
  43526. ))
  43527. characterMakers.push(() => makeCharacter(
  43528. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43529. {
  43530. front: {
  43531. height: math.unit(5 + 10/12, "feet"),
  43532. weight: math.unit(160, "lb"),
  43533. name: "Front",
  43534. image: {
  43535. source: "./media/characters/pudask/front.svg",
  43536. extra: 1616/1590,
  43537. bottom: 161/1777
  43538. }
  43539. },
  43540. },
  43541. [
  43542. {
  43543. name: "Ferret Height",
  43544. height: math.unit(2 + 5/12, "feet")
  43545. },
  43546. {
  43547. name: "Canon Height",
  43548. height: math.unit(5 + 10/12, "feet"),
  43549. default: true
  43550. },
  43551. ]
  43552. ))
  43553. characterMakers.push(() => makeCharacter(
  43554. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43555. {
  43556. front: {
  43557. height: math.unit(3 + 6/12, "feet"),
  43558. weight: math.unit(60, "lb"),
  43559. name: "Front",
  43560. image: {
  43561. source: "./media/characters/ramita/front.svg",
  43562. extra: 1402/1232,
  43563. bottom: 62/1464
  43564. }
  43565. },
  43566. dressed: {
  43567. height: math.unit(3 + 6/12, "feet"),
  43568. weight: math.unit(60, "lb"),
  43569. name: "Dressed",
  43570. image: {
  43571. source: "./media/characters/ramita/dressed.svg",
  43572. extra: 1534/1249,
  43573. bottom: 50/1584
  43574. }
  43575. },
  43576. },
  43577. [
  43578. {
  43579. name: "Normal",
  43580. height: math.unit(3 + 6/12, "feet"),
  43581. default: true
  43582. },
  43583. ]
  43584. ))
  43585. characterMakers.push(() => makeCharacter(
  43586. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43587. {
  43588. front: {
  43589. height: math.unit(8, "feet"),
  43590. name: "Front",
  43591. image: {
  43592. source: "./media/characters/ark/front.svg",
  43593. extra: 772/693,
  43594. bottom: 45/817
  43595. }
  43596. },
  43597. },
  43598. [
  43599. {
  43600. name: "Normal",
  43601. height: math.unit(8, "feet"),
  43602. default: true
  43603. },
  43604. ]
  43605. ))
  43606. characterMakers.push(() => makeCharacter(
  43607. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43608. {
  43609. front: {
  43610. height: math.unit(6, "feet"),
  43611. weight: math.unit(250, "lb"),
  43612. volume: math.unit(5/8, "gallons"),
  43613. name: "Front",
  43614. image: {
  43615. source: "./media/characters/ludwig-horn/front.svg",
  43616. extra: 1782/1635,
  43617. bottom: 96/1878
  43618. }
  43619. },
  43620. back: {
  43621. height: math.unit(6, "feet"),
  43622. weight: math.unit(250, "lb"),
  43623. volume: math.unit(5/8, "gallons"),
  43624. name: "Back",
  43625. image: {
  43626. source: "./media/characters/ludwig-horn/back.svg",
  43627. extra: 1874/1729,
  43628. bottom: 27/1901
  43629. }
  43630. },
  43631. dick: {
  43632. height: math.unit(1.05, "feet"),
  43633. weight: math.unit(15, "lb"),
  43634. volume: math.unit(5/8, "gallons"),
  43635. name: "Dick",
  43636. image: {
  43637. source: "./media/characters/ludwig-horn/dick.svg"
  43638. }
  43639. },
  43640. },
  43641. [
  43642. {
  43643. name: "Small",
  43644. height: math.unit(6, "feet")
  43645. },
  43646. {
  43647. name: "Typical",
  43648. height: math.unit(12, "feet"),
  43649. default: true
  43650. },
  43651. {
  43652. name: "Building",
  43653. height: math.unit(80, "feet")
  43654. },
  43655. {
  43656. name: "Town",
  43657. height: math.unit(800, "feet")
  43658. },
  43659. {
  43660. name: "Kingdom",
  43661. height: math.unit(80000, "feet")
  43662. },
  43663. {
  43664. name: "Planet",
  43665. height: math.unit(8000000, "feet")
  43666. },
  43667. {
  43668. name: "Universe",
  43669. height: math.unit(8000000000, "feet")
  43670. },
  43671. {
  43672. name: "Transcended",
  43673. height: math.unit(8e27, "feet")
  43674. },
  43675. ]
  43676. ))
  43677. characterMakers.push(() => makeCharacter(
  43678. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43679. {
  43680. front: {
  43681. height: math.unit(5, "feet"),
  43682. weight: math.unit(50, "kg"),
  43683. name: "Front",
  43684. image: {
  43685. source: "./media/characters/biot-avery/front.svg",
  43686. extra: 1295/1232,
  43687. bottom: 86/1381
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Normal",
  43694. height: math.unit(5, "feet"),
  43695. default: true
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43701. {
  43702. front: {
  43703. height: math.unit(6, "feet"),
  43704. name: "Front",
  43705. image: {
  43706. source: "./media/characters/kitsune-kiro/front.svg",
  43707. extra: 1270/1158,
  43708. bottom: 42/1312
  43709. }
  43710. },
  43711. frontAlt: {
  43712. height: math.unit(6, "feet"),
  43713. name: "Front-alt",
  43714. image: {
  43715. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43716. extra: 1130/1081,
  43717. bottom: 36/1166
  43718. }
  43719. },
  43720. },
  43721. [
  43722. {
  43723. name: "Smol",
  43724. height: math.unit(3, "feet")
  43725. },
  43726. {
  43727. name: "Normal",
  43728. height: math.unit(6, "feet"),
  43729. default: true
  43730. },
  43731. ]
  43732. ))
  43733. characterMakers.push(() => makeCharacter(
  43734. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43735. {
  43736. front: {
  43737. height: math.unit(6, "feet"),
  43738. weight: math.unit(125, "lb"),
  43739. name: "Front",
  43740. image: {
  43741. source: "./media/characters/jack-thatcher/front.svg",
  43742. extra: 1474/1370,
  43743. bottom: 26/1500
  43744. }
  43745. },
  43746. back: {
  43747. height: math.unit(6, "feet"),
  43748. weight: math.unit(125, "lb"),
  43749. name: "Back",
  43750. image: {
  43751. source: "./media/characters/jack-thatcher/back.svg",
  43752. extra: 1489/1384,
  43753. bottom: 18/1507
  43754. }
  43755. },
  43756. },
  43757. [
  43758. {
  43759. name: "Normal",
  43760. height: math.unit(6, "feet"),
  43761. default: true
  43762. },
  43763. {
  43764. name: "Macro",
  43765. height: math.unit(75, "feet")
  43766. },
  43767. {
  43768. name: "Macro-er",
  43769. height: math.unit(250, "feet")
  43770. },
  43771. ]
  43772. ))
  43773. characterMakers.push(() => makeCharacter(
  43774. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43775. {
  43776. front: {
  43777. height: math.unit(7, "feet"),
  43778. weight: math.unit(110, "kg"),
  43779. name: "Front",
  43780. image: {
  43781. source: "./media/characters/max-hyper/front.svg",
  43782. extra: 1969/1881,
  43783. bottom: 49/2018
  43784. }
  43785. },
  43786. },
  43787. [
  43788. {
  43789. name: "Normal",
  43790. height: math.unit(7, "feet"),
  43791. default: true
  43792. },
  43793. ]
  43794. ))
  43795. characterMakers.push(() => makeCharacter(
  43796. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43797. {
  43798. front: {
  43799. height: math.unit(5 + 5/12, "feet"),
  43800. weight: math.unit(160, "lb"),
  43801. name: "Front",
  43802. image: {
  43803. source: "./media/characters/spook/front.svg",
  43804. extra: 794/791,
  43805. bottom: 54/848
  43806. }
  43807. },
  43808. back: {
  43809. height: math.unit(5 + 5/12, "feet"),
  43810. weight: math.unit(160, "lb"),
  43811. name: "Back",
  43812. image: {
  43813. source: "./media/characters/spook/back.svg",
  43814. extra: 812/798,
  43815. bottom: 32/844
  43816. }
  43817. },
  43818. },
  43819. [
  43820. {
  43821. name: "Normal",
  43822. height: math.unit(5 + 5/12, "feet"),
  43823. default: true
  43824. },
  43825. ]
  43826. ))
  43827. characterMakers.push(() => makeCharacter(
  43828. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43829. {
  43830. front: {
  43831. height: math.unit(18, "feet"),
  43832. name: "Front",
  43833. image: {
  43834. source: "./media/characters/xeaduulix/front.svg",
  43835. extra: 1380/1166,
  43836. bottom: 110/1490
  43837. }
  43838. },
  43839. back: {
  43840. height: math.unit(18, "feet"),
  43841. name: "Back",
  43842. image: {
  43843. source: "./media/characters/xeaduulix/back.svg",
  43844. extra: 1592/1170,
  43845. bottom: 128/1720
  43846. }
  43847. },
  43848. frontNsfw: {
  43849. height: math.unit(18, "feet"),
  43850. name: "Front (NSFW)",
  43851. image: {
  43852. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43853. extra: 1380/1166,
  43854. bottom: 110/1490
  43855. }
  43856. },
  43857. backNsfw: {
  43858. height: math.unit(18, "feet"),
  43859. name: "Back (NSFW)",
  43860. image: {
  43861. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43862. extra: 1592/1170,
  43863. bottom: 128/1720
  43864. }
  43865. },
  43866. },
  43867. [
  43868. {
  43869. name: "Normal",
  43870. height: math.unit(18, "feet"),
  43871. default: true
  43872. },
  43873. ]
  43874. ))
  43875. characterMakers.push(() => makeCharacter(
  43876. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43877. {
  43878. spreadWings: {
  43879. height: math.unit(20, "feet"),
  43880. name: "Spread Wings",
  43881. image: {
  43882. source: "./media/characters/fledge/spread-wings.svg",
  43883. extra: 693/635,
  43884. bottom: 26/719
  43885. }
  43886. },
  43887. front: {
  43888. height: math.unit(20, "feet"),
  43889. name: "Front",
  43890. image: {
  43891. source: "./media/characters/fledge/front.svg",
  43892. extra: 684/637,
  43893. bottom: 18/702
  43894. }
  43895. },
  43896. frontAlt: {
  43897. height: math.unit(20, "feet"),
  43898. name: "Front (Alt)",
  43899. image: {
  43900. source: "./media/characters/fledge/front-alt.svg",
  43901. extra: 708/664,
  43902. bottom: 13/721
  43903. }
  43904. },
  43905. back: {
  43906. height: math.unit(20, "feet"),
  43907. name: "Back",
  43908. image: {
  43909. source: "./media/characters/fledge/back.svg",
  43910. extra: 718/634,
  43911. bottom: 22/740
  43912. }
  43913. },
  43914. head: {
  43915. height: math.unit(5.55, "feet"),
  43916. name: "Head",
  43917. image: {
  43918. source: "./media/characters/fledge/head.svg"
  43919. }
  43920. },
  43921. headAlt: {
  43922. height: math.unit(5.1, "feet"),
  43923. name: "Head (Alt)",
  43924. image: {
  43925. source: "./media/characters/fledge/head-alt.svg"
  43926. }
  43927. },
  43928. },
  43929. [
  43930. {
  43931. name: "Small",
  43932. height: math.unit(6 + 2/12, "feet")
  43933. },
  43934. {
  43935. name: "Big",
  43936. height: math.unit(20, "feet"),
  43937. default: true
  43938. },
  43939. {
  43940. name: "Giant",
  43941. height: math.unit(100, "feet")
  43942. },
  43943. {
  43944. name: "Macro",
  43945. height: math.unit(200, "feet")
  43946. },
  43947. ]
  43948. ))
  43949. characterMakers.push(() => makeCharacter(
  43950. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43951. {
  43952. front: {
  43953. height: math.unit(1, "meter"),
  43954. name: "Front",
  43955. image: {
  43956. source: "./media/characters/atlas-morenai/front.svg",
  43957. extra: 1275/1043,
  43958. bottom: 19/1294
  43959. }
  43960. },
  43961. back: {
  43962. height: math.unit(1, "meter"),
  43963. name: "Back",
  43964. image: {
  43965. source: "./media/characters/atlas-morenai/back.svg",
  43966. extra: 1141/1001,
  43967. bottom: 25/1166
  43968. }
  43969. },
  43970. },
  43971. [
  43972. {
  43973. name: "Normal",
  43974. height: math.unit(1, "meter"),
  43975. default: true
  43976. },
  43977. {
  43978. name: "Magic-Infused",
  43979. height: math.unit(5, "meters")
  43980. },
  43981. ]
  43982. ))
  43983. characterMakers.push(() => makeCharacter(
  43984. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43985. {
  43986. front: {
  43987. height: math.unit(5, "meters"),
  43988. name: "Front",
  43989. image: {
  43990. source: "./media/characters/cintia/front.svg",
  43991. extra: 1312/1228,
  43992. bottom: 38/1350
  43993. }
  43994. },
  43995. back: {
  43996. height: math.unit(5, "meters"),
  43997. name: "Back",
  43998. image: {
  43999. source: "./media/characters/cintia/back.svg",
  44000. extra: 1260/1166,
  44001. bottom: 98/1358
  44002. }
  44003. },
  44004. frontDick: {
  44005. height: math.unit(5, "meters"),
  44006. name: "Front (Dick)",
  44007. image: {
  44008. source: "./media/characters/cintia/front-dick.svg",
  44009. extra: 1312/1228,
  44010. bottom: 38/1350
  44011. }
  44012. },
  44013. backDick: {
  44014. height: math.unit(5, "meters"),
  44015. name: "Back (Dick)",
  44016. image: {
  44017. source: "./media/characters/cintia/back-dick.svg",
  44018. extra: 1260/1166,
  44019. bottom: 98/1358
  44020. }
  44021. },
  44022. bust: {
  44023. height: math.unit(1.97, "meters"),
  44024. name: "Bust",
  44025. image: {
  44026. source: "./media/characters/cintia/bust.svg",
  44027. extra: 617/565,
  44028. bottom: 0/617
  44029. }
  44030. },
  44031. },
  44032. [
  44033. {
  44034. name: "Normal",
  44035. height: math.unit(5, "meters"),
  44036. default: true
  44037. },
  44038. ]
  44039. ))
  44040. characterMakers.push(() => makeCharacter(
  44041. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44042. {
  44043. side: {
  44044. height: math.unit(100, "feet"),
  44045. name: "Side",
  44046. image: {
  44047. source: "./media/characters/denora/side.svg",
  44048. extra: 875/803,
  44049. bottom: 9/884
  44050. }
  44051. },
  44052. },
  44053. [
  44054. {
  44055. name: "Standard",
  44056. height: math.unit(100, "feet"),
  44057. default: true
  44058. },
  44059. {
  44060. name: "Grand",
  44061. height: math.unit(1000, "feet")
  44062. },
  44063. {
  44064. name: "Conquering",
  44065. height: math.unit(10000, "feet")
  44066. },
  44067. ]
  44068. ))
  44069. characterMakers.push(() => makeCharacter(
  44070. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44071. {
  44072. dressed: {
  44073. height: math.unit(8 + 5/12, "feet"),
  44074. weight: math.unit(700, "lb"),
  44075. name: "Dressed",
  44076. image: {
  44077. source: "./media/characters/kiva/dressed.svg",
  44078. extra: 1102/1055,
  44079. bottom: 60/1162
  44080. }
  44081. },
  44082. nude: {
  44083. height: math.unit(8 + 5/12, "feet"),
  44084. weight: math.unit(700, "lb"),
  44085. name: "Nude",
  44086. image: {
  44087. source: "./media/characters/kiva/nude.svg",
  44088. extra: 1102/1055,
  44089. bottom: 60/1162
  44090. }
  44091. },
  44092. },
  44093. [
  44094. {
  44095. name: "Base Height",
  44096. height: math.unit(8 + 5/12, "feet"),
  44097. default: true
  44098. },
  44099. {
  44100. name: "Macro",
  44101. height: math.unit(100, "feet")
  44102. },
  44103. {
  44104. name: "Max",
  44105. height: math.unit(3280, "feet")
  44106. },
  44107. ]
  44108. ))
  44109. characterMakers.push(() => makeCharacter(
  44110. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44111. {
  44112. front: {
  44113. height: math.unit(6 + 8/12, "feet"),
  44114. weight: math.unit(250, "lb"),
  44115. name: "Front",
  44116. image: {
  44117. source: "./media/characters/ztragon/front.svg",
  44118. extra: 1825/1684,
  44119. bottom: 98/1923
  44120. }
  44121. },
  44122. },
  44123. [
  44124. {
  44125. name: "Normal",
  44126. height: math.unit(6 + 8/12, "feet"),
  44127. default: true
  44128. },
  44129. {
  44130. name: "Macro",
  44131. height: math.unit(80, "feet")
  44132. },
  44133. ]
  44134. ))
  44135. characterMakers.push(() => makeCharacter(
  44136. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44137. {
  44138. front: {
  44139. height: math.unit(10.4, "feet"),
  44140. weight: math.unit(2, "tons"),
  44141. name: "Front",
  44142. image: {
  44143. source: "./media/characters/yesenia/front.svg",
  44144. extra: 1479/1474,
  44145. bottom: 233/1712
  44146. }
  44147. },
  44148. },
  44149. [
  44150. {
  44151. name: "Normal",
  44152. height: math.unit(10.4, "feet"),
  44153. default: true
  44154. },
  44155. ]
  44156. ))
  44157. characterMakers.push(() => makeCharacter(
  44158. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44159. {
  44160. normal: {
  44161. height: math.unit(6 + 1/12, "feet"),
  44162. weight: math.unit(180, "lb"),
  44163. name: "Normal",
  44164. image: {
  44165. source: "./media/characters/leanne-lycheborne/normal.svg",
  44166. extra: 1748/1660,
  44167. bottom: 98/1846
  44168. }
  44169. },
  44170. were: {
  44171. height: math.unit(12, "feet"),
  44172. weight: math.unit(1600, "lb"),
  44173. name: "Were",
  44174. image: {
  44175. source: "./media/characters/leanne-lycheborne/were.svg",
  44176. extra: 1485/1432,
  44177. bottom: 66/1551
  44178. }
  44179. },
  44180. },
  44181. [
  44182. {
  44183. name: "Normal",
  44184. height: math.unit(6 + 1/12, "feet"),
  44185. default: true
  44186. },
  44187. ]
  44188. ))
  44189. characterMakers.push(() => makeCharacter(
  44190. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44191. {
  44192. side: {
  44193. height: math.unit(13, "feet"),
  44194. name: "Side",
  44195. image: {
  44196. source: "./media/characters/kira-tyler/side.svg",
  44197. extra: 693/393,
  44198. bottom: 58/751
  44199. }
  44200. },
  44201. },
  44202. [
  44203. {
  44204. name: "Normal",
  44205. height: math.unit(13, "feet"),
  44206. default: true
  44207. },
  44208. ]
  44209. ))
  44210. characterMakers.push(() => makeCharacter(
  44211. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44212. {
  44213. front: {
  44214. height: math.unit(10.3, "feet"),
  44215. weight: math.unit(150, "lb"),
  44216. name: "Front",
  44217. image: {
  44218. source: "./media/characters/blaze/front.svg",
  44219. extra: 1378/1286,
  44220. bottom: 172/1550
  44221. }
  44222. },
  44223. },
  44224. [
  44225. {
  44226. name: "Normal",
  44227. height: math.unit(10.3, "feet"),
  44228. default: true
  44229. },
  44230. ]
  44231. ))
  44232. characterMakers.push(() => makeCharacter(
  44233. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44234. {
  44235. side: {
  44236. height: math.unit(2, "meters"),
  44237. weight: math.unit(400, "kg"),
  44238. name: "Side",
  44239. image: {
  44240. source: "./media/characters/anu/side.svg",
  44241. extra: 506/394,
  44242. bottom: 18/524
  44243. }
  44244. },
  44245. },
  44246. [
  44247. {
  44248. name: "Humanoid",
  44249. height: math.unit(2, "meters")
  44250. },
  44251. {
  44252. name: "Normal",
  44253. height: math.unit(5, "meters"),
  44254. default: true
  44255. },
  44256. ]
  44257. ))
  44258. characterMakers.push(() => makeCharacter(
  44259. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44260. {
  44261. front: {
  44262. height: math.unit(5 + 5/12, "feet"),
  44263. weight: math.unit(170, "lb"),
  44264. name: "Front",
  44265. image: {
  44266. source: "./media/characters/synx-the-lynx/front.svg",
  44267. extra: 1893/1745,
  44268. bottom: 17/1910
  44269. }
  44270. },
  44271. side: {
  44272. height: math.unit(5 + 5/12, "feet"),
  44273. weight: math.unit(170, "lb"),
  44274. name: "Side",
  44275. image: {
  44276. source: "./media/characters/synx-the-lynx/side.svg",
  44277. extra: 1884/1740,
  44278. bottom: 39/1923
  44279. }
  44280. },
  44281. back: {
  44282. height: math.unit(5 + 5/12, "feet"),
  44283. weight: math.unit(170, "lb"),
  44284. name: "Back",
  44285. image: {
  44286. source: "./media/characters/synx-the-lynx/back.svg",
  44287. extra: 1903/1755,
  44288. bottom: 14/1917
  44289. }
  44290. },
  44291. },
  44292. [
  44293. {
  44294. name: "Normal",
  44295. height: math.unit(5 + 5/12, "feet"),
  44296. default: true
  44297. },
  44298. ]
  44299. ))
  44300. characterMakers.push(() => makeCharacter(
  44301. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44302. {
  44303. back: {
  44304. height: math.unit(15, "feet"),
  44305. name: "Back",
  44306. image: {
  44307. source: "./media/characters/nadezda-fex/back.svg",
  44308. extra: 1695/1481,
  44309. bottom: 25/1720
  44310. }
  44311. },
  44312. },
  44313. [
  44314. {
  44315. name: "Normal",
  44316. height: math.unit(15, "feet"),
  44317. default: true
  44318. },
  44319. {
  44320. name: "Macro",
  44321. height: math.unit(2.5, "miles")
  44322. },
  44323. {
  44324. name: "Goddess",
  44325. height: math.unit(2, "multiverses")
  44326. },
  44327. ]
  44328. ))
  44329. characterMakers.push(() => makeCharacter(
  44330. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44331. {
  44332. front: {
  44333. height: math.unit(216, "cm"),
  44334. name: "Front",
  44335. image: {
  44336. source: "./media/characters/lev/front.svg",
  44337. extra: 1728/1670,
  44338. bottom: 82/1810
  44339. }
  44340. },
  44341. back: {
  44342. height: math.unit(216, "cm"),
  44343. name: "Back",
  44344. image: {
  44345. source: "./media/characters/lev/back.svg",
  44346. extra: 1738/1675,
  44347. bottom: 24/1762
  44348. }
  44349. },
  44350. dressed: {
  44351. height: math.unit(216, "cm"),
  44352. name: "Dressed",
  44353. image: {
  44354. source: "./media/characters/lev/dressed.svg",
  44355. extra: 1397/1351,
  44356. bottom: 73/1470
  44357. }
  44358. },
  44359. head: {
  44360. height: math.unit(0.51, "meter"),
  44361. name: "Head",
  44362. image: {
  44363. source: "./media/characters/lev/head.svg"
  44364. }
  44365. },
  44366. },
  44367. [
  44368. {
  44369. name: "Normal",
  44370. height: math.unit(216, "cm"),
  44371. default: true
  44372. },
  44373. {
  44374. name: "Relatively Macro",
  44375. height: math.unit(80, "meters")
  44376. },
  44377. {
  44378. name: "Megamacro",
  44379. height: math.unit(21600, "meters")
  44380. },
  44381. {
  44382. name: "Megamacro+",
  44383. height: math.unit(64800, "meters")
  44384. },
  44385. ]
  44386. ))
  44387. characterMakers.push(() => makeCharacter(
  44388. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44389. {
  44390. front: {
  44391. height: math.unit(2, "meters"),
  44392. weight: math.unit(80, "kg"),
  44393. name: "Front",
  44394. image: {
  44395. source: "./media/characters/moka/front.svg",
  44396. extra: 1337/1255,
  44397. bottom: 58/1395
  44398. }
  44399. },
  44400. },
  44401. [
  44402. {
  44403. name: "Micro",
  44404. height: math.unit(15, "cm")
  44405. },
  44406. {
  44407. name: "Normal",
  44408. height: math.unit(2, "meters"),
  44409. default: true
  44410. },
  44411. {
  44412. name: "Macro",
  44413. height: math.unit(20, "meters"),
  44414. },
  44415. ]
  44416. ))
  44417. characterMakers.push(() => makeCharacter(
  44418. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44419. {
  44420. front: {
  44421. height: math.unit(9, "feet"),
  44422. weight: math.unit(240, "lb"),
  44423. name: "Front",
  44424. image: {
  44425. source: "./media/characters/kuzco/front.svg",
  44426. extra: 1593/1487,
  44427. bottom: 32/1625
  44428. }
  44429. },
  44430. side: {
  44431. height: math.unit(9, "feet"),
  44432. weight: math.unit(240, "lb"),
  44433. name: "Side",
  44434. image: {
  44435. source: "./media/characters/kuzco/side.svg",
  44436. extra: 1575/1485,
  44437. bottom: 30/1605
  44438. }
  44439. },
  44440. back: {
  44441. height: math.unit(9, "feet"),
  44442. weight: math.unit(240, "lb"),
  44443. name: "Back",
  44444. image: {
  44445. source: "./media/characters/kuzco/back.svg",
  44446. extra: 1603/1514,
  44447. bottom: 14/1617
  44448. }
  44449. },
  44450. },
  44451. [
  44452. {
  44453. name: "Normal",
  44454. height: math.unit(9, "feet"),
  44455. default: true
  44456. },
  44457. ]
  44458. ))
  44459. characterMakers.push(() => makeCharacter(
  44460. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44461. {
  44462. side: {
  44463. height: math.unit(2, "meters"),
  44464. weight: math.unit(300, "kg"),
  44465. name: "Side",
  44466. image: {
  44467. source: "./media/characters/ceruleus/side.svg",
  44468. extra: 1068/974,
  44469. bottom: 126/1194
  44470. }
  44471. },
  44472. },
  44473. [
  44474. {
  44475. name: "Normal",
  44476. height: math.unit(16, "meters"),
  44477. default: true
  44478. },
  44479. ]
  44480. ))
  44481. characterMakers.push(() => makeCharacter(
  44482. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44483. {
  44484. front: {
  44485. height: math.unit(9, "feet"),
  44486. weight: math.unit(500, "kg"),
  44487. name: "Front",
  44488. image: {
  44489. source: "./media/characters/acouya/front.svg",
  44490. extra: 1660/1473,
  44491. bottom: 28/1688
  44492. }
  44493. },
  44494. },
  44495. [
  44496. {
  44497. name: "Normal",
  44498. height: math.unit(9, "feet"),
  44499. default: true
  44500. },
  44501. ]
  44502. ))
  44503. characterMakers.push(() => makeCharacter(
  44504. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44505. {
  44506. front: {
  44507. height: math.unit(5 + 6/12, "feet"),
  44508. weight: math.unit(195, "lb"),
  44509. name: "Front",
  44510. image: {
  44511. source: "./media/characters/vant/front.svg",
  44512. extra: 1396/1320,
  44513. bottom: 20/1416
  44514. }
  44515. },
  44516. back: {
  44517. height: math.unit(5 + 6/12, "feet"),
  44518. weight: math.unit(195, "lb"),
  44519. name: "Back",
  44520. image: {
  44521. source: "./media/characters/vant/back.svg",
  44522. extra: 1396/1320,
  44523. bottom: 20/1416
  44524. }
  44525. },
  44526. maw: {
  44527. height: math.unit(0.75, "feet"),
  44528. name: "Maw",
  44529. image: {
  44530. source: "./media/characters/vant/maw.svg"
  44531. }
  44532. },
  44533. paw: {
  44534. height: math.unit(1.07, "feet"),
  44535. name: "Paw",
  44536. image: {
  44537. source: "./media/characters/vant/paw.svg"
  44538. }
  44539. },
  44540. },
  44541. [
  44542. {
  44543. name: "Micro",
  44544. height: math.unit(0.25, "inches")
  44545. },
  44546. {
  44547. name: "Normal",
  44548. height: math.unit(5 + 6/12, "feet"),
  44549. default: true
  44550. },
  44551. {
  44552. name: "Macro",
  44553. height: math.unit(75, "feet")
  44554. },
  44555. ]
  44556. ))
  44557. characterMakers.push(() => makeCharacter(
  44558. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44559. {
  44560. front: {
  44561. height: math.unit(30, "meters"),
  44562. weight: math.unit(363, "tons"),
  44563. name: "Front",
  44564. image: {
  44565. source: "./media/characters/ahra/front.svg",
  44566. extra: 1914/1814,
  44567. bottom: 46/1960
  44568. }
  44569. },
  44570. },
  44571. [
  44572. {
  44573. name: "Macro",
  44574. height: math.unit(30, "meters"),
  44575. default: true
  44576. },
  44577. ]
  44578. ))
  44579. characterMakers.push(() => makeCharacter(
  44580. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44581. {
  44582. undressed: {
  44583. height: math.unit(2, "m"),
  44584. weight: math.unit(250, "kg"),
  44585. name: "Undressed",
  44586. image: {
  44587. source: "./media/characters/coriander/undressed.svg",
  44588. extra: 1757/1606,
  44589. bottom: 107/1864
  44590. }
  44591. },
  44592. dressed: {
  44593. height: math.unit(2, "m"),
  44594. weight: math.unit(250, "kg"),
  44595. name: "Dressed",
  44596. image: {
  44597. source: "./media/characters/coriander/dressed.svg",
  44598. extra: 1757/1606,
  44599. bottom: 107/1864
  44600. }
  44601. },
  44602. },
  44603. [
  44604. {
  44605. name: "Normal",
  44606. height: math.unit(4, "meters"),
  44607. default: true
  44608. },
  44609. {
  44610. name: "XL",
  44611. height: math.unit(6, "meters")
  44612. },
  44613. {
  44614. name: "XXL",
  44615. height: math.unit(8, "meters")
  44616. },
  44617. ]
  44618. ))
  44619. characterMakers.push(() => makeCharacter(
  44620. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44621. {
  44622. front: {
  44623. height: math.unit(6, "feet"),
  44624. name: "Front",
  44625. image: {
  44626. source: "./media/characters/syrinx/front.svg",
  44627. extra: 1557/1259,
  44628. bottom: 171/1728
  44629. }
  44630. },
  44631. },
  44632. [
  44633. {
  44634. name: "Normal",
  44635. height: math.unit(6 + 3/12, "feet"),
  44636. default: true
  44637. },
  44638. ]
  44639. ))
  44640. characterMakers.push(() => makeCharacter(
  44641. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44642. {
  44643. front: {
  44644. height: math.unit(11 + 6/12, "feet"),
  44645. weight: math.unit(1.5, "tons"),
  44646. name: "Front",
  44647. image: {
  44648. source: "./media/characters/bor/front.svg",
  44649. extra: 1189/1109,
  44650. bottom: 170/1359
  44651. }
  44652. },
  44653. },
  44654. [
  44655. {
  44656. name: "Normal",
  44657. height: math.unit(11 + 6/12, "feet"),
  44658. default: true
  44659. },
  44660. {
  44661. name: "Macro",
  44662. height: math.unit(32 + 9/12, "feet")
  44663. },
  44664. ]
  44665. ))
  44666. characterMakers.push(() => makeCharacter(
  44667. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44668. {
  44669. anthro: {
  44670. height: math.unit(9, "feet"),
  44671. weight: math.unit(2076, "lb"),
  44672. name: "Anthro",
  44673. image: {
  44674. source: "./media/characters/abacus/anthro.svg",
  44675. extra: 1540/1494,
  44676. bottom: 233/1773
  44677. }
  44678. },
  44679. pigeon: {
  44680. height: math.unit(1, "feet"),
  44681. name: "Pigeon",
  44682. image: {
  44683. source: "./media/characters/abacus/pigeon.svg",
  44684. extra: 528/525,
  44685. bottom: 46/574
  44686. }
  44687. },
  44688. },
  44689. [
  44690. {
  44691. name: "Normal",
  44692. height: math.unit(9, "feet"),
  44693. default: true
  44694. },
  44695. ]
  44696. ))
  44697. characterMakers.push(() => makeCharacter(
  44698. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44699. {
  44700. side: {
  44701. height: math.unit(6, "feet"),
  44702. name: "Side",
  44703. image: {
  44704. source: "./media/characters/delkhan/side.svg",
  44705. extra: 1884/1786,
  44706. bottom: 308/2192
  44707. }
  44708. },
  44709. head: {
  44710. height: math.unit(3.38, "feet"),
  44711. name: "Head",
  44712. image: {
  44713. source: "./media/characters/delkhan/head.svg"
  44714. }
  44715. },
  44716. },
  44717. [
  44718. {
  44719. name: "Normal",
  44720. height: math.unit(72, "feet"),
  44721. default: true
  44722. },
  44723. {
  44724. name: "Giant",
  44725. height: math.unit(172, "feet")
  44726. },
  44727. ]
  44728. ))
  44729. characterMakers.push(() => makeCharacter(
  44730. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44731. {
  44732. standing: {
  44733. height: math.unit(6, "feet"),
  44734. name: "Standing",
  44735. image: {
  44736. source: "./media/characters/euchidat/standing.svg",
  44737. extra: 1612/1553,
  44738. bottom: 116/1728
  44739. }
  44740. },
  44741. leaning: {
  44742. height: math.unit(6, "feet"),
  44743. name: "Leaning",
  44744. image: {
  44745. source: "./media/characters/euchidat/leaning.svg",
  44746. extra: 1719/1674,
  44747. bottom: 27/1746
  44748. }
  44749. },
  44750. },
  44751. [
  44752. {
  44753. name: "Normal",
  44754. height: math.unit(175, "feet"),
  44755. default: true
  44756. },
  44757. {
  44758. name: "Megamacro",
  44759. height: math.unit(190, "miles")
  44760. },
  44761. {
  44762. name: "Gigamacro",
  44763. height: math.unit(190000, "miles")
  44764. },
  44765. ]
  44766. ))
  44767. characterMakers.push(() => makeCharacter(
  44768. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44769. {
  44770. front: {
  44771. height: math.unit(6, "feet"),
  44772. weight: math.unit(150, "lb"),
  44773. name: "Front",
  44774. image: {
  44775. source: "./media/characters/rebecca-stack/front.svg",
  44776. extra: 1256/1201,
  44777. bottom: 18/1274
  44778. }
  44779. },
  44780. },
  44781. [
  44782. {
  44783. name: "Normal",
  44784. height: math.unit(5 + 8/12, "feet"),
  44785. default: true
  44786. },
  44787. {
  44788. name: "Demolitionist",
  44789. height: math.unit(200, "feet")
  44790. },
  44791. {
  44792. name: "Out of Control",
  44793. height: math.unit(2, "miles")
  44794. },
  44795. {
  44796. name: "Giga",
  44797. height: math.unit(7200, "miles")
  44798. },
  44799. ]
  44800. ))
  44801. characterMakers.push(() => makeCharacter(
  44802. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44803. {
  44804. front: {
  44805. height: math.unit(6, "feet"),
  44806. weight: math.unit(150, "lb"),
  44807. name: "Front",
  44808. image: {
  44809. source: "./media/characters/jenny-cartwright/front.svg",
  44810. extra: 1384/1376,
  44811. bottom: 58/1442
  44812. }
  44813. },
  44814. },
  44815. [
  44816. {
  44817. name: "Normal",
  44818. height: math.unit(6 + 7/12, "feet"),
  44819. default: true
  44820. },
  44821. {
  44822. name: "Librarian",
  44823. height: math.unit(55, "feet")
  44824. },
  44825. {
  44826. name: "Sightseer",
  44827. height: math.unit(50, "miles")
  44828. },
  44829. {
  44830. name: "Giga",
  44831. height: math.unit(30000, "miles")
  44832. },
  44833. ]
  44834. ))
  44835. characterMakers.push(() => makeCharacter(
  44836. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44837. {
  44838. nude: {
  44839. height: math.unit(8, "feet"),
  44840. weight: math.unit(225, "lb"),
  44841. name: "Nude",
  44842. image: {
  44843. source: "./media/characters/marvy/nude.svg",
  44844. extra: 1900/1683,
  44845. bottom: 89/1989
  44846. }
  44847. },
  44848. dressed: {
  44849. height: math.unit(8, "feet"),
  44850. weight: math.unit(225, "lb"),
  44851. name: "Dressed",
  44852. image: {
  44853. source: "./media/characters/marvy/dressed.svg",
  44854. extra: 1900/1683,
  44855. bottom: 89/1989
  44856. }
  44857. },
  44858. head: {
  44859. height: math.unit(2.85, "feet"),
  44860. name: "Head",
  44861. image: {
  44862. source: "./media/characters/marvy/head.svg"
  44863. }
  44864. },
  44865. },
  44866. [
  44867. {
  44868. name: "Normal",
  44869. height: math.unit(8, "feet"),
  44870. default: true
  44871. },
  44872. ]
  44873. ))
  44874. characterMakers.push(() => makeCharacter(
  44875. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  44876. {
  44877. front: {
  44878. height: math.unit(8, "feet"),
  44879. weight: math.unit(250, "lb"),
  44880. name: "Front",
  44881. image: {
  44882. source: "./media/characters/leah/front.svg",
  44883. extra: 1257/1149,
  44884. bottom: 109/1366
  44885. }
  44886. },
  44887. },
  44888. [
  44889. {
  44890. name: "Normal",
  44891. height: math.unit(8, "feet"),
  44892. default: true
  44893. },
  44894. {
  44895. name: "Minimacro",
  44896. height: math.unit(40, "feet")
  44897. },
  44898. {
  44899. name: "Macro",
  44900. height: math.unit(124, "feet")
  44901. },
  44902. {
  44903. name: "Megamacro",
  44904. height: math.unit(850, "feet")
  44905. },
  44906. ]
  44907. ))
  44908. characterMakers.push(() => makeCharacter(
  44909. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  44910. {
  44911. side: {
  44912. height: math.unit(13 + 6/12, "feet"),
  44913. weight: math.unit(3200, "lb"),
  44914. name: "Side",
  44915. image: {
  44916. source: "./media/characters/alvir/side.svg",
  44917. extra: 896/589,
  44918. bottom: 26/922
  44919. }
  44920. },
  44921. },
  44922. [
  44923. {
  44924. name: "Normal",
  44925. height: math.unit(13 + 6/12, "feet"),
  44926. default: true
  44927. },
  44928. ]
  44929. ))
  44930. characterMakers.push(() => makeCharacter(
  44931. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  44932. {
  44933. front: {
  44934. height: math.unit(5 + 4/12, "feet"),
  44935. weight: math.unit(236, "lb"),
  44936. name: "Front",
  44937. image: {
  44938. source: "./media/characters/zaina-khalil/front.svg",
  44939. extra: 1533/1485,
  44940. bottom: 94/1627
  44941. }
  44942. },
  44943. side: {
  44944. height: math.unit(5 + 4/12, "feet"),
  44945. weight: math.unit(236, "lb"),
  44946. name: "Side",
  44947. image: {
  44948. source: "./media/characters/zaina-khalil/side.svg",
  44949. extra: 1537/1498,
  44950. bottom: 66/1603
  44951. }
  44952. },
  44953. back: {
  44954. height: math.unit(5 + 4/12, "feet"),
  44955. weight: math.unit(236, "lb"),
  44956. name: "Back",
  44957. image: {
  44958. source: "./media/characters/zaina-khalil/back.svg",
  44959. extra: 1546/1494,
  44960. bottom: 89/1635
  44961. }
  44962. },
  44963. },
  44964. [
  44965. {
  44966. name: "Normal",
  44967. height: math.unit(5 + 4/12, "feet"),
  44968. default: true
  44969. },
  44970. ]
  44971. ))
  44972. characterMakers.push(() => makeCharacter(
  44973. { name: "Terry", species: ["husky"], tags: ["taur"] },
  44974. {
  44975. side: {
  44976. height: math.unit(12, "feet"),
  44977. weight: math.unit(4000, "lb"),
  44978. name: "Side",
  44979. image: {
  44980. source: "./media/characters/terry/side.svg",
  44981. extra: 1518/1439,
  44982. bottom: 149/1667
  44983. }
  44984. },
  44985. },
  44986. [
  44987. {
  44988. name: "Normal",
  44989. height: math.unit(12, "feet"),
  44990. default: true
  44991. },
  44992. ]
  44993. ))
  44994. characterMakers.push(() => makeCharacter(
  44995. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  44996. {
  44997. front: {
  44998. height: math.unit(12, "feet"),
  44999. weight: math.unit(1500, "lb"),
  45000. name: "Front",
  45001. image: {
  45002. source: "./media/characters/kahea/front.svg",
  45003. extra: 1722/1617,
  45004. bottom: 179/1901
  45005. }
  45006. },
  45007. },
  45008. [
  45009. {
  45010. name: "Normal",
  45011. height: math.unit(12, "feet"),
  45012. default: true
  45013. },
  45014. ]
  45015. ))
  45016. //characters
  45017. function makeCharacters() {
  45018. const results = [];
  45019. characterMakers.forEach(character => {
  45020. results.push(character());
  45021. });
  45022. return results;
  45023. }