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

42858 строки
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. }
  1743. //species
  1744. function getSpeciesInfo(speciesList) {
  1745. let result = new Set();
  1746. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1747. result.add(entry)
  1748. });
  1749. return Array.from(result);
  1750. };
  1751. function getSpeciesInfoHelper(species) {
  1752. if (!speciesData[species]) {
  1753. console.warn(species + " doesn't exist");
  1754. return [];
  1755. }
  1756. if (speciesData[species].parents) {
  1757. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1758. } else {
  1759. return [species];
  1760. }
  1761. }
  1762. characterMakers.push(() => makeCharacter(
  1763. {
  1764. name: "Fen",
  1765. species: ["crux"],
  1766. description: {
  1767. title: "Bio",
  1768. text: "Very furry. Sheds on everything."
  1769. },
  1770. tags: [
  1771. "anthro",
  1772. "goo"
  1773. ]
  1774. },
  1775. {
  1776. back: {
  1777. height: math.unit(2.2428, "meter"),
  1778. weight: math.unit(124.738, "kg"),
  1779. name: "Back",
  1780. image: {
  1781. source: "./media/characters/fen/back.svg",
  1782. },
  1783. info: {
  1784. description: {
  1785. mode: "append",
  1786. text: "\n\nHe is not currently looking at you."
  1787. }
  1788. }
  1789. },
  1790. full: {
  1791. height: math.unit(1.34, "meter"),
  1792. weight: math.unit(225, "kg"),
  1793. name: "Full",
  1794. image: {
  1795. source: "./media/characters/fen/full.svg"
  1796. },
  1797. info: {
  1798. description: {
  1799. mode: "append",
  1800. text: "\n\nMunch."
  1801. }
  1802. }
  1803. },
  1804. kneeling: {
  1805. height: math.unit(5.4, "feet"),
  1806. weight: math.unit(124.738, "kg"),
  1807. name: "Kneeling",
  1808. image: {
  1809. source: "./media/characters/fen/kneeling.svg",
  1810. extra: 563 / 507
  1811. }
  1812. },
  1813. goo: {
  1814. height: math.unit(2.8, "feet"),
  1815. weight: math.unit(125, "kg"),
  1816. capacity: math.unit(1, "people"),
  1817. name: "Goo",
  1818. image: {
  1819. source: "./media/characters/fen/goo.svg",
  1820. bottom: 116 / 613
  1821. }
  1822. },
  1823. lounging: {
  1824. height: math.unit(6.5, "feet"),
  1825. weight: math.unit(125, "kg"),
  1826. name: "Lounging",
  1827. image: {
  1828. source: "./media/characters/fen/lounging.svg"
  1829. }
  1830. },
  1831. },
  1832. [
  1833. {
  1834. name: "Normal",
  1835. height: math.unit(2.2428, "meter")
  1836. },
  1837. {
  1838. name: "Big",
  1839. height: math.unit(12, "feet")
  1840. },
  1841. {
  1842. name: "Minimacro",
  1843. height: math.unit(40, "feet"),
  1844. default: true,
  1845. info: {
  1846. description: {
  1847. mode: "append",
  1848. text: "\n\nTOO DAMN BIG"
  1849. }
  1850. }
  1851. },
  1852. {
  1853. name: "Macro",
  1854. height: math.unit(100, "feet"),
  1855. info: {
  1856. description: {
  1857. mode: "append",
  1858. text: "\n\nTOO DAMN BIG"
  1859. }
  1860. }
  1861. },
  1862. {
  1863. name: "Macro+",
  1864. height: math.unit(300, "feet")
  1865. },
  1866. {
  1867. name: "Megamacro",
  1868. height: math.unit(2, "miles")
  1869. }
  1870. ]
  1871. ))
  1872. characterMakers.push(() => makeCharacter(
  1873. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1874. {
  1875. front: {
  1876. height: math.unit(183, "cm"),
  1877. weight: math.unit(80, "kg"),
  1878. name: "Front",
  1879. image: {
  1880. source: "./media/characters/sofia-fluttertail/front.svg",
  1881. bottom: 0.01,
  1882. extra: 2154 / 2081
  1883. }
  1884. },
  1885. frontAlt: {
  1886. height: math.unit(183, "cm"),
  1887. weight: math.unit(80, "kg"),
  1888. name: "Front (alt)",
  1889. image: {
  1890. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1891. }
  1892. },
  1893. back: {
  1894. height: math.unit(183, "cm"),
  1895. weight: math.unit(80, "kg"),
  1896. name: "Back",
  1897. image: {
  1898. source: "./media/characters/sofia-fluttertail/back.svg"
  1899. }
  1900. },
  1901. kneeling: {
  1902. height: math.unit(125, "cm"),
  1903. weight: math.unit(80, "kg"),
  1904. name: "Kneeling",
  1905. image: {
  1906. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1907. extra: 1033 / 977,
  1908. bottom: 23.7 / 1057
  1909. }
  1910. },
  1911. maw: {
  1912. height: math.unit(183 / 5, "cm"),
  1913. name: "Maw",
  1914. image: {
  1915. source: "./media/characters/sofia-fluttertail/maw.svg"
  1916. }
  1917. },
  1918. mawcloseup: {
  1919. height: math.unit(183 / 5 * 0.41, "cm"),
  1920. name: "Maw (Closeup)",
  1921. image: {
  1922. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1923. }
  1924. },
  1925. paws: {
  1926. height: math.unit(1.17, "feet"),
  1927. name: "Paws",
  1928. image: {
  1929. source: "./media/characters/sofia-fluttertail/paws.svg",
  1930. extra: 851 / 851,
  1931. bottom: 17 / 868
  1932. }
  1933. },
  1934. },
  1935. [
  1936. {
  1937. name: "Normal",
  1938. height: math.unit(1.83, "meter")
  1939. },
  1940. {
  1941. name: "Size Thief",
  1942. height: math.unit(18, "feet")
  1943. },
  1944. {
  1945. name: "50 Foot Collie",
  1946. height: math.unit(50, "feet")
  1947. },
  1948. {
  1949. name: "Macro",
  1950. height: math.unit(96, "feet"),
  1951. default: true
  1952. },
  1953. {
  1954. name: "Megamerger",
  1955. height: math.unit(650, "feet")
  1956. },
  1957. ]
  1958. ))
  1959. characterMakers.push(() => makeCharacter(
  1960. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1961. {
  1962. front: {
  1963. height: math.unit(7, "feet"),
  1964. weight: math.unit(100, "kg"),
  1965. name: "Front",
  1966. image: {
  1967. source: "./media/characters/march/front.svg",
  1968. extra: 1992/1851,
  1969. bottom: 39/2031
  1970. }
  1971. },
  1972. foot: {
  1973. height: math.unit(0.9, "feet"),
  1974. name: "Foot",
  1975. image: {
  1976. source: "./media/characters/march/foot.svg"
  1977. }
  1978. },
  1979. },
  1980. [
  1981. {
  1982. name: "Normal",
  1983. height: math.unit(7.9, "feet")
  1984. },
  1985. {
  1986. name: "Macro",
  1987. height: math.unit(220, "meters")
  1988. },
  1989. {
  1990. name: "Megamacro",
  1991. height: math.unit(2.98, "km"),
  1992. default: true
  1993. },
  1994. {
  1995. name: "Gigamacro",
  1996. height: math.unit(15963, "km")
  1997. },
  1998. {
  1999. name: "Teramacro",
  2000. height: math.unit(2980000000, "km")
  2001. },
  2002. {
  2003. name: "Examacro",
  2004. height: math.unit(250, "parsecs")
  2005. },
  2006. ]
  2007. ))
  2008. characterMakers.push(() => makeCharacter(
  2009. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2010. {
  2011. front: {
  2012. height: math.unit(6, "feet"),
  2013. weight: math.unit(60, "kg"),
  2014. name: "Front",
  2015. image: {
  2016. source: "./media/characters/noir/front.svg",
  2017. extra: 1,
  2018. bottom: 0.032
  2019. }
  2020. },
  2021. },
  2022. [
  2023. {
  2024. name: "Normal",
  2025. height: math.unit(6.6, "feet")
  2026. },
  2027. {
  2028. name: "Macro",
  2029. height: math.unit(500, "feet")
  2030. },
  2031. {
  2032. name: "Megamacro",
  2033. height: math.unit(2.5, "km"),
  2034. default: true
  2035. },
  2036. {
  2037. name: "Gigamacro",
  2038. height: math.unit(22500, "km")
  2039. },
  2040. {
  2041. name: "Teramacro",
  2042. height: math.unit(2500000000, "km")
  2043. },
  2044. {
  2045. name: "Examacro",
  2046. height: math.unit(200, "parsecs")
  2047. },
  2048. ]
  2049. ))
  2050. characterMakers.push(() => makeCharacter(
  2051. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2052. {
  2053. front: {
  2054. height: math.unit(7, "feet"),
  2055. weight: math.unit(100, "kg"),
  2056. name: "Front",
  2057. image: {
  2058. source: "./media/characters/okuri/front.svg",
  2059. extra: 1,
  2060. bottom: 0.037
  2061. }
  2062. },
  2063. back: {
  2064. height: math.unit(7, "feet"),
  2065. weight: math.unit(100, "kg"),
  2066. name: "Back",
  2067. image: {
  2068. source: "./media/characters/okuri/back.svg",
  2069. extra: 1,
  2070. bottom: 0.007
  2071. }
  2072. },
  2073. },
  2074. [
  2075. {
  2076. name: "Megamacro",
  2077. height: math.unit(100, "miles"),
  2078. default: true
  2079. },
  2080. ]
  2081. ))
  2082. characterMakers.push(() => makeCharacter(
  2083. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2084. {
  2085. front: {
  2086. height: math.unit(7, "feet"),
  2087. weight: math.unit(100, "kg"),
  2088. name: "Front",
  2089. image: {
  2090. source: "./media/characters/manny/front.svg",
  2091. extra: 1,
  2092. bottom: 0.06
  2093. }
  2094. },
  2095. back: {
  2096. height: math.unit(7, "feet"),
  2097. weight: math.unit(100, "kg"),
  2098. name: "Back",
  2099. image: {
  2100. source: "./media/characters/manny/back.svg",
  2101. extra: 1,
  2102. bottom: 0.014
  2103. }
  2104. },
  2105. },
  2106. [
  2107. {
  2108. name: "Normal",
  2109. height: math.unit(7, "feet"),
  2110. },
  2111. {
  2112. name: "Macro",
  2113. height: math.unit(78, "feet"),
  2114. default: true
  2115. },
  2116. {
  2117. name: "Macro+",
  2118. height: math.unit(300, "meters")
  2119. },
  2120. {
  2121. name: "Macro++",
  2122. height: math.unit(2400, "meters")
  2123. },
  2124. {
  2125. name: "Megamacro",
  2126. height: math.unit(5167, "meters")
  2127. },
  2128. {
  2129. name: "Gigamacro",
  2130. height: math.unit(41769, "miles")
  2131. },
  2132. ]
  2133. ))
  2134. characterMakers.push(() => makeCharacter(
  2135. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2136. {
  2137. front: {
  2138. height: math.unit(7, "feet"),
  2139. weight: math.unit(100, "kg"),
  2140. name: "Front",
  2141. image: {
  2142. source: "./media/characters/adake/front-1.svg"
  2143. }
  2144. },
  2145. frontAlt: {
  2146. height: math.unit(7, "feet"),
  2147. weight: math.unit(100, "kg"),
  2148. name: "Front (Alt)",
  2149. image: {
  2150. source: "./media/characters/adake/front-2.svg",
  2151. extra: 1,
  2152. bottom: 0.01
  2153. }
  2154. },
  2155. back: {
  2156. height: math.unit(7, "feet"),
  2157. weight: math.unit(100, "kg"),
  2158. name: "Back",
  2159. image: {
  2160. source: "./media/characters/adake/back.svg",
  2161. }
  2162. },
  2163. kneel: {
  2164. height: math.unit(5.385, "feet"),
  2165. weight: math.unit(100, "kg"),
  2166. name: "Kneeling",
  2167. image: {
  2168. source: "./media/characters/adake/kneel.svg",
  2169. bottom: 0.052
  2170. }
  2171. },
  2172. },
  2173. [
  2174. {
  2175. name: "Normal",
  2176. height: math.unit(7, "feet"),
  2177. },
  2178. {
  2179. name: "Macro",
  2180. height: math.unit(78, "feet"),
  2181. default: true
  2182. },
  2183. {
  2184. name: "Macro+",
  2185. height: math.unit(300, "meters")
  2186. },
  2187. {
  2188. name: "Macro++",
  2189. height: math.unit(2400, "meters")
  2190. },
  2191. {
  2192. name: "Megamacro",
  2193. height: math.unit(5167, "meters")
  2194. },
  2195. {
  2196. name: "Gigamacro",
  2197. height: math.unit(41769, "miles")
  2198. },
  2199. ]
  2200. ))
  2201. characterMakers.push(() => makeCharacter(
  2202. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2203. {
  2204. front: {
  2205. height: math.unit(1.65, "meters"),
  2206. weight: math.unit(50, "kg"),
  2207. name: "Front",
  2208. image: {
  2209. source: "./media/characters/elijah/front.svg",
  2210. extra: 858 / 830,
  2211. bottom: 95.5 / 953.8559
  2212. }
  2213. },
  2214. back: {
  2215. height: math.unit(1.65, "meters"),
  2216. weight: math.unit(50, "kg"),
  2217. name: "Back",
  2218. image: {
  2219. source: "./media/characters/elijah/back.svg",
  2220. extra: 895 / 850,
  2221. bottom: 5.3 / 897.956
  2222. }
  2223. },
  2224. frontNsfw: {
  2225. height: math.unit(1.65, "meters"),
  2226. weight: math.unit(50, "kg"),
  2227. name: "Front (NSFW)",
  2228. image: {
  2229. source: "./media/characters/elijah/front-nsfw.svg",
  2230. extra: 858 / 830,
  2231. bottom: 95.5 / 953.8559
  2232. }
  2233. },
  2234. backNsfw: {
  2235. height: math.unit(1.65, "meters"),
  2236. weight: math.unit(50, "kg"),
  2237. name: "Back (NSFW)",
  2238. image: {
  2239. source: "./media/characters/elijah/back-nsfw.svg",
  2240. extra: 895 / 850,
  2241. bottom: 5.3 / 897.956
  2242. }
  2243. },
  2244. dick: {
  2245. height: math.unit(1, "feet"),
  2246. name: "Dick",
  2247. image: {
  2248. source: "./media/characters/elijah/dick.svg"
  2249. }
  2250. },
  2251. beakOpen: {
  2252. height: math.unit(1.25, "feet"),
  2253. name: "Beak (Open)",
  2254. image: {
  2255. source: "./media/characters/elijah/beak-open.svg"
  2256. }
  2257. },
  2258. beakShut: {
  2259. height: math.unit(1.25, "feet"),
  2260. name: "Beak (Shut)",
  2261. image: {
  2262. source: "./media/characters/elijah/beak-shut.svg"
  2263. }
  2264. },
  2265. footFlexing: {
  2266. height: math.unit(1.61, "feet"),
  2267. name: "Foot (Flexing)",
  2268. image: {
  2269. source: "./media/characters/elijah/foot-flexing.svg"
  2270. }
  2271. },
  2272. footStepping: {
  2273. height: math.unit(1.44, "feet"),
  2274. name: "Foot (Stepping)",
  2275. image: {
  2276. source: "./media/characters/elijah/foot-stepping.svg"
  2277. }
  2278. },
  2279. plantigradeLeg: {
  2280. height: math.unit(2.34, "feet"),
  2281. name: "Plantigrade Leg",
  2282. image: {
  2283. source: "./media/characters/elijah/plantigrade-leg.svg"
  2284. }
  2285. },
  2286. plantigradeFootLeft: {
  2287. height: math.unit(0.9, "feet"),
  2288. name: "Plantigrade Foot (Left)",
  2289. image: {
  2290. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2291. }
  2292. },
  2293. plantigradeFootRight: {
  2294. height: math.unit(0.9, "feet"),
  2295. name: "Plantigrade Foot (Right)",
  2296. image: {
  2297. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2298. }
  2299. },
  2300. },
  2301. [
  2302. {
  2303. name: "Normal",
  2304. height: math.unit(1.65, "meters")
  2305. },
  2306. {
  2307. name: "Macro",
  2308. height: math.unit(55, "meters"),
  2309. default: true
  2310. },
  2311. {
  2312. name: "Macro+",
  2313. height: math.unit(105, "meters")
  2314. },
  2315. ]
  2316. ))
  2317. characterMakers.push(() => makeCharacter(
  2318. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2319. {
  2320. front: {
  2321. height: math.unit(11, "feet"),
  2322. weight: math.unit(320, "kg"),
  2323. name: "Front",
  2324. image: {
  2325. source: "./media/characters/rai/front.svg",
  2326. extra: 1802/1696,
  2327. bottom: 68/1870
  2328. }
  2329. },
  2330. frontDressed: {
  2331. height: math.unit(11, "feet"),
  2332. weight: math.unit(320, "kg"),
  2333. name: "Front (Dressed)",
  2334. image: {
  2335. source: "./media/characters/rai/front-dressed.svg",
  2336. extra: 1802/1696,
  2337. bottom: 68/1870
  2338. }
  2339. },
  2340. side: {
  2341. height: math.unit(11, "feet"),
  2342. weight: math.unit(320, "kg"),
  2343. name: "Side",
  2344. image: {
  2345. source: "./media/characters/rai/side.svg",
  2346. extra: 1789/1710,
  2347. bottom: 115/1904
  2348. }
  2349. },
  2350. back: {
  2351. height: math.unit(11, "feet"),
  2352. weight: math.unit(320, "kg"),
  2353. name: "Back",
  2354. image: {
  2355. source: "./media/characters/rai/back.svg",
  2356. extra: 1770/1707,
  2357. bottom: 28/1798
  2358. }
  2359. },
  2360. feral: {
  2361. height: math.unit(11, "feet"),
  2362. weight: math.unit(640, "kg"),
  2363. name: "Feral",
  2364. image: {
  2365. source: "./media/characters/rai/feral.svg",
  2366. extra: 1035/642,
  2367. bottom: 86/1121
  2368. }
  2369. },
  2370. dragon: {
  2371. height: math.unit(23, "feet"),
  2372. weight: math.unit(50000, "lb"),
  2373. name: "Dragon",
  2374. image: {
  2375. source: "./media/characters/rai/dragon.svg",
  2376. extra: 2498 / 2030,
  2377. bottom: 85.2 / 2584
  2378. }
  2379. },
  2380. maw: {
  2381. height: math.unit(6 / 3.81416, "feet"),
  2382. name: "Maw",
  2383. image: {
  2384. source: "./media/characters/rai/maw.svg"
  2385. }
  2386. },
  2387. },
  2388. [
  2389. {
  2390. name: "Normal",
  2391. height: math.unit(11, "feet")
  2392. },
  2393. {
  2394. name: "Macro",
  2395. height: math.unit(302, "feet"),
  2396. default: true
  2397. },
  2398. ]
  2399. ))
  2400. characterMakers.push(() => makeCharacter(
  2401. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2402. {
  2403. frontDressed: {
  2404. height: math.unit(216, "feet"),
  2405. weight: math.unit(7000000, "lb"),
  2406. name: "Front (Dressed)",
  2407. image: {
  2408. source: "./media/characters/jazzy/front-dressed.svg",
  2409. extra: 2738 / 2651,
  2410. bottom: 41.8 / 2786
  2411. }
  2412. },
  2413. backDressed: {
  2414. height: math.unit(216, "feet"),
  2415. weight: math.unit(7000000, "lb"),
  2416. name: "Back (Dressed)",
  2417. image: {
  2418. source: "./media/characters/jazzy/back-dressed.svg",
  2419. extra: 2775 / 2673,
  2420. bottom: 36.8 / 2817
  2421. }
  2422. },
  2423. front: {
  2424. height: math.unit(216, "feet"),
  2425. weight: math.unit(7000000, "lb"),
  2426. name: "Front",
  2427. image: {
  2428. source: "./media/characters/jazzy/front.svg",
  2429. extra: 2738 / 2651,
  2430. bottom: 41.8 / 2786
  2431. }
  2432. },
  2433. back: {
  2434. height: math.unit(216, "feet"),
  2435. weight: math.unit(7000000, "lb"),
  2436. name: "Back",
  2437. image: {
  2438. source: "./media/characters/jazzy/back.svg",
  2439. extra: 2775 / 2673,
  2440. bottom: 36.8 / 2817
  2441. }
  2442. },
  2443. maw: {
  2444. height: math.unit(20, "feet"),
  2445. name: "Maw",
  2446. image: {
  2447. source: "./media/characters/jazzy/maw.svg"
  2448. }
  2449. },
  2450. paws: {
  2451. height: math.unit(27.5, "feet"),
  2452. name: "Paws",
  2453. image: {
  2454. source: "./media/characters/jazzy/paws.svg"
  2455. }
  2456. },
  2457. eye: {
  2458. height: math.unit(4.4, "feet"),
  2459. name: "Eye",
  2460. image: {
  2461. source: "./media/characters/jazzy/eye.svg"
  2462. }
  2463. },
  2464. droneOffense: {
  2465. height: math.unit(9.5, "inches"),
  2466. name: "Drone (Offense)",
  2467. image: {
  2468. source: "./media/characters/jazzy/drone-offense.svg"
  2469. }
  2470. },
  2471. droneRecon: {
  2472. height: math.unit(9.5, "inches"),
  2473. name: "Drone (Recon)",
  2474. image: {
  2475. source: "./media/characters/jazzy/drone-recon.svg"
  2476. }
  2477. },
  2478. droneDefense: {
  2479. height: math.unit(9.5, "inches"),
  2480. name: "Drone (Defense)",
  2481. image: {
  2482. source: "./media/characters/jazzy/drone-defense.svg"
  2483. }
  2484. },
  2485. },
  2486. [
  2487. {
  2488. name: "Macro",
  2489. height: math.unit(216, "feet"),
  2490. default: true
  2491. },
  2492. ]
  2493. ))
  2494. characterMakers.push(() => makeCharacter(
  2495. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2496. {
  2497. front: {
  2498. height: math.unit(9 + 6/12, "feet"),
  2499. weight: math.unit(700, "lb"),
  2500. name: "Front",
  2501. image: {
  2502. source: "./media/characters/flamm/front.svg",
  2503. extra: 1751/1632,
  2504. bottom: 46/1797
  2505. }
  2506. },
  2507. buff: {
  2508. height: math.unit(9 + 6/12, "feet"),
  2509. weight: math.unit(950, "lb"),
  2510. name: "Buff",
  2511. image: {
  2512. source: "./media/characters/flamm/buff.svg",
  2513. extra: 3018/2874,
  2514. bottom: 221/3239
  2515. }
  2516. },
  2517. },
  2518. [
  2519. {
  2520. name: "Normal",
  2521. height: math.unit(9.5, "feet")
  2522. },
  2523. {
  2524. name: "Macro",
  2525. height: math.unit(200, "feet"),
  2526. default: true
  2527. },
  2528. ]
  2529. ))
  2530. characterMakers.push(() => makeCharacter(
  2531. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2532. {
  2533. front: {
  2534. height: math.unit(5 + 3/12, "feet"),
  2535. weight: math.unit(60, "kg"),
  2536. name: "Front",
  2537. image: {
  2538. source: "./media/characters/zephiro/front.svg",
  2539. extra: 2309 / 2162,
  2540. bottom: 0.069
  2541. }
  2542. },
  2543. side: {
  2544. height: math.unit(5 + 3/12, "feet"),
  2545. weight: math.unit(60, "kg"),
  2546. name: "Side",
  2547. image: {
  2548. source: "./media/characters/zephiro/side.svg",
  2549. extra: 2403 / 2279,
  2550. bottom: 0.015
  2551. }
  2552. },
  2553. back: {
  2554. height: math.unit(5 + 3/12, "feet"),
  2555. weight: math.unit(60, "kg"),
  2556. name: "Back",
  2557. image: {
  2558. source: "./media/characters/zephiro/back.svg",
  2559. extra: 2373 / 2244,
  2560. bottom: 0.013
  2561. }
  2562. },
  2563. hand: {
  2564. height: math.unit(0.68, "feet"),
  2565. name: "Hand",
  2566. image: {
  2567. source: "./media/characters/zephiro/hand.svg"
  2568. }
  2569. },
  2570. paw: {
  2571. height: math.unit(1, "feet"),
  2572. name: "Paw",
  2573. image: {
  2574. source: "./media/characters/zephiro/paw.svg"
  2575. }
  2576. },
  2577. beans: {
  2578. height: math.unit(0.93, "feet"),
  2579. name: "Beans",
  2580. image: {
  2581. source: "./media/characters/zephiro/beans.svg"
  2582. }
  2583. },
  2584. },
  2585. [
  2586. {
  2587. name: "Micro",
  2588. height: math.unit(3, "inches")
  2589. },
  2590. {
  2591. name: "Normal",
  2592. height: math.unit(5 + 3 / 12, "feet"),
  2593. default: true
  2594. },
  2595. {
  2596. name: "Macro",
  2597. height: math.unit(118, "feet")
  2598. },
  2599. ]
  2600. ))
  2601. characterMakers.push(() => makeCharacter(
  2602. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2603. {
  2604. front: {
  2605. height: math.unit(5, "feet"),
  2606. weight: math.unit(90, "kg"),
  2607. name: "Front",
  2608. image: {
  2609. source: "./media/characters/fory/front.svg",
  2610. extra: 2862 / 2674,
  2611. bottom: 180 / 3043.8
  2612. }
  2613. },
  2614. back: {
  2615. height: math.unit(5, "feet"),
  2616. weight: math.unit(90, "kg"),
  2617. name: "Back",
  2618. image: {
  2619. source: "./media/characters/fory/back.svg",
  2620. extra: 2962 / 2791,
  2621. bottom: 106 / 3071.8
  2622. }
  2623. },
  2624. foot: {
  2625. height: math.unit(2.14, "feet"),
  2626. name: "Foot",
  2627. image: {
  2628. source: "./media/characters/fory/foot.svg"
  2629. }
  2630. },
  2631. },
  2632. [
  2633. {
  2634. name: "Normal",
  2635. height: math.unit(5, "feet")
  2636. },
  2637. {
  2638. name: "Macro",
  2639. height: math.unit(50, "feet"),
  2640. default: true
  2641. },
  2642. {
  2643. name: "Megamacro",
  2644. height: math.unit(10, "miles")
  2645. },
  2646. {
  2647. name: "Gigamacro",
  2648. height: math.unit(5, "earths")
  2649. },
  2650. ]
  2651. ))
  2652. characterMakers.push(() => makeCharacter(
  2653. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2654. {
  2655. front: {
  2656. height: math.unit(7, "feet"),
  2657. weight: math.unit(90, "kg"),
  2658. name: "Front",
  2659. image: {
  2660. source: "./media/characters/kurrikage/front.svg",
  2661. extra: 1,
  2662. bottom: 0.035
  2663. }
  2664. },
  2665. back: {
  2666. height: math.unit(7, "feet"),
  2667. weight: math.unit(90, "lb"),
  2668. name: "Back",
  2669. image: {
  2670. source: "./media/characters/kurrikage/back.svg"
  2671. }
  2672. },
  2673. paw: {
  2674. height: math.unit(1.5, "feet"),
  2675. name: "Paw",
  2676. image: {
  2677. source: "./media/characters/kurrikage/paw.svg"
  2678. }
  2679. },
  2680. staff: {
  2681. height: math.unit(6.7, "feet"),
  2682. name: "Staff",
  2683. image: {
  2684. source: "./media/characters/kurrikage/staff.svg"
  2685. }
  2686. },
  2687. peek: {
  2688. height: math.unit(1.05, "feet"),
  2689. name: "Peeking",
  2690. image: {
  2691. source: "./media/characters/kurrikage/peek.svg",
  2692. bottom: 0.08
  2693. }
  2694. },
  2695. },
  2696. [
  2697. {
  2698. name: "Normal",
  2699. height: math.unit(12, "feet"),
  2700. default: true
  2701. },
  2702. {
  2703. name: "Big",
  2704. height: math.unit(20, "feet")
  2705. },
  2706. {
  2707. name: "Macro",
  2708. height: math.unit(500, "feet")
  2709. },
  2710. {
  2711. name: "Megamacro",
  2712. height: math.unit(20, "miles")
  2713. },
  2714. ]
  2715. ))
  2716. characterMakers.push(() => makeCharacter(
  2717. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2718. {
  2719. front: {
  2720. height: math.unit(6, "feet"),
  2721. weight: math.unit(75, "kg"),
  2722. name: "Front",
  2723. image: {
  2724. source: "./media/characters/shingo/front.svg",
  2725. extra: 1900/1825,
  2726. bottom: 82/1982
  2727. }
  2728. },
  2729. side: {
  2730. height: math.unit(6, "feet"),
  2731. weight: math.unit(75, "kg"),
  2732. name: "Side",
  2733. image: {
  2734. source: "./media/characters/shingo/side.svg",
  2735. extra: 1930/1865,
  2736. bottom: 16/1946
  2737. }
  2738. },
  2739. back: {
  2740. height: math.unit(6, "feet"),
  2741. weight: math.unit(75, "kg"),
  2742. name: "Back",
  2743. image: {
  2744. source: "./media/characters/shingo/back.svg",
  2745. extra: 1922/1852,
  2746. bottom: 16/1938
  2747. }
  2748. },
  2749. frontDressed: {
  2750. height: math.unit(6, "feet"),
  2751. weight: math.unit(150, "lb"),
  2752. name: "Front-dressed",
  2753. image: {
  2754. source: "./media/characters/shingo/front-dressed.svg",
  2755. extra: 1900/1825,
  2756. bottom: 82/1982
  2757. }
  2758. },
  2759. paw: {
  2760. height: math.unit(1.29, "feet"),
  2761. name: "Paw",
  2762. image: {
  2763. source: "./media/characters/shingo/paw.svg"
  2764. }
  2765. },
  2766. hand: {
  2767. height: math.unit(1.07, "feet"),
  2768. name: "Hand",
  2769. image: {
  2770. source: "./media/characters/shingo/hand.svg"
  2771. }
  2772. },
  2773. frontAlt: {
  2774. height: math.unit(6, "feet"),
  2775. weight: math.unit(75, "kg"),
  2776. name: "Front (Alt)",
  2777. image: {
  2778. source: "./media/characters/shingo/front-alt.svg",
  2779. extra: 3511 / 3338,
  2780. bottom: 0.005
  2781. }
  2782. },
  2783. frontAlt2: {
  2784. height: math.unit(6, "feet"),
  2785. weight: math.unit(75, "kg"),
  2786. name: "Front (Alt 2)",
  2787. image: {
  2788. source: "./media/characters/shingo/front-alt-2.svg",
  2789. extra: 706/681,
  2790. bottom: 11/717
  2791. }
  2792. },
  2793. pawAlt: {
  2794. height: math.unit(1, "feet"),
  2795. name: "Paw (Alt)",
  2796. image: {
  2797. source: "./media/characters/shingo/paw-alt.svg"
  2798. }
  2799. },
  2800. },
  2801. [
  2802. {
  2803. name: "Micro",
  2804. height: math.unit(4, "inches")
  2805. },
  2806. {
  2807. name: "Normal",
  2808. height: math.unit(6, "feet"),
  2809. default: true
  2810. },
  2811. {
  2812. name: "Macro",
  2813. height: math.unit(108, "feet")
  2814. },
  2815. {
  2816. name: "Macro+",
  2817. height: math.unit(1500, "feet")
  2818. },
  2819. ]
  2820. ))
  2821. characterMakers.push(() => makeCharacter(
  2822. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2823. {
  2824. side: {
  2825. height: math.unit(6, "feet"),
  2826. weight: math.unit(75, "kg"),
  2827. name: "Side",
  2828. image: {
  2829. source: "./media/characters/aigey/side.svg"
  2830. }
  2831. },
  2832. },
  2833. [
  2834. {
  2835. name: "Macro",
  2836. height: math.unit(200, "feet"),
  2837. default: true
  2838. },
  2839. {
  2840. name: "Megamacro",
  2841. height: math.unit(100, "miles")
  2842. },
  2843. ]
  2844. )
  2845. )
  2846. characterMakers.push(() => makeCharacter(
  2847. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2848. {
  2849. front: {
  2850. height: math.unit(5 + 5 / 12, "feet"),
  2851. weight: math.unit(75, "kg"),
  2852. name: "Front",
  2853. image: {
  2854. source: "./media/characters/natasha/front.svg",
  2855. extra: 859 / 824,
  2856. bottom: 23 / 879.6
  2857. }
  2858. },
  2859. frontNsfw: {
  2860. height: math.unit(5 + 5 / 12, "feet"),
  2861. weight: math.unit(75, "kg"),
  2862. name: "Front (NSFW)",
  2863. image: {
  2864. source: "./media/characters/natasha/front-nsfw.svg",
  2865. extra: 859 / 824,
  2866. bottom: 23 / 879.6
  2867. }
  2868. },
  2869. frontErect: {
  2870. height: math.unit(5 + 5 / 12, "feet"),
  2871. weight: math.unit(75, "kg"),
  2872. name: "Front (Erect)",
  2873. image: {
  2874. source: "./media/characters/natasha/front-erect.svg",
  2875. extra: 859 / 824,
  2876. bottom: 23 / 879.6
  2877. }
  2878. },
  2879. back: {
  2880. height: math.unit(5 + 5 / 12, "feet"),
  2881. weight: math.unit(75, "kg"),
  2882. name: "Back",
  2883. image: {
  2884. source: "./media/characters/natasha/back.svg",
  2885. extra: 887.9 / 852.6,
  2886. bottom: 9.7 / 896.4
  2887. }
  2888. },
  2889. backAlt: {
  2890. height: math.unit(5 + 5 / 12, "feet"),
  2891. weight: math.unit(75, "kg"),
  2892. name: "Back (Alt)",
  2893. image: {
  2894. source: "./media/characters/natasha/back-alt.svg",
  2895. extra: 1236.7 / 1192,
  2896. bottom: 22.3 / 1258.2
  2897. }
  2898. },
  2899. dick: {
  2900. height: math.unit(1.772, "feet"),
  2901. name: "Dick",
  2902. image: {
  2903. source: "./media/characters/natasha/dick.svg"
  2904. }
  2905. },
  2906. paw: {
  2907. height: math.unit(0.250, "meters"),
  2908. name: "Paw",
  2909. image: {
  2910. source: "./media/characters/natasha/paw.svg"
  2911. }
  2912. },
  2913. },
  2914. [
  2915. {
  2916. name: "Normal",
  2917. height: math.unit(5 + 5 / 12, "feet")
  2918. },
  2919. {
  2920. name: "Large",
  2921. height: math.unit(12, "feet")
  2922. },
  2923. {
  2924. name: "Macro",
  2925. height: math.unit(100, "feet"),
  2926. default: true
  2927. },
  2928. {
  2929. name: "Macro+",
  2930. height: math.unit(260, "feet")
  2931. },
  2932. {
  2933. name: "Macro++",
  2934. height: math.unit(1, "mile")
  2935. },
  2936. ]
  2937. ))
  2938. characterMakers.push(() => makeCharacter(
  2939. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2940. {
  2941. front: {
  2942. height: math.unit(6, "feet"),
  2943. weight: math.unit(75, "kg"),
  2944. name: "Front",
  2945. image: {
  2946. source: "./media/characters/malik/front.svg"
  2947. }
  2948. },
  2949. side: {
  2950. height: math.unit(6, "feet"),
  2951. weight: math.unit(75, "kg"),
  2952. name: "Side",
  2953. image: {
  2954. source: "./media/characters/malik/side.svg",
  2955. extra: 1.1539
  2956. }
  2957. },
  2958. back: {
  2959. height: math.unit(6, "feet"),
  2960. weight: math.unit(75, "kg"),
  2961. name: "Back",
  2962. image: {
  2963. source: "./media/characters/malik/back.svg"
  2964. }
  2965. },
  2966. },
  2967. [
  2968. {
  2969. name: "Macro",
  2970. height: math.unit(156, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Macro+",
  2975. height: math.unit(1188, "feet")
  2976. },
  2977. ]
  2978. ))
  2979. characterMakers.push(() => makeCharacter(
  2980. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2981. {
  2982. front: {
  2983. height: math.unit(6, "feet"),
  2984. weight: math.unit(75, "kg"),
  2985. name: "Front",
  2986. image: {
  2987. source: "./media/characters/sefer/front.svg",
  2988. extra: 848 / 659,
  2989. bottom: 28.3 / 876.442
  2990. }
  2991. },
  2992. back: {
  2993. height: math.unit(6, "feet"),
  2994. weight: math.unit(75, "kg"),
  2995. name: "Back",
  2996. image: {
  2997. source: "./media/characters/sefer/back.svg",
  2998. extra: 864 / 695,
  2999. bottom: 10 / 871
  3000. }
  3001. },
  3002. frontDressed: {
  3003. height: math.unit(6, "feet"),
  3004. weight: math.unit(75, "kg"),
  3005. name: "Front (Dressed)",
  3006. image: {
  3007. source: "./media/characters/sefer/front-dressed.svg",
  3008. extra: 839 / 653,
  3009. bottom: 37.6 / 878
  3010. }
  3011. },
  3012. },
  3013. [
  3014. {
  3015. name: "Normal",
  3016. height: math.unit(6, "feet"),
  3017. default: true
  3018. },
  3019. ]
  3020. ))
  3021. characterMakers.push(() => makeCharacter(
  3022. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3023. {
  3024. body: {
  3025. height: math.unit(2.2428, "meter"),
  3026. weight: math.unit(124.738, "kg"),
  3027. name: "Body",
  3028. image: {
  3029. extra: 1225 / 1050,
  3030. source: "./media/characters/north/front.svg"
  3031. }
  3032. }
  3033. },
  3034. [
  3035. {
  3036. name: "Micro",
  3037. height: math.unit(4, "inches")
  3038. },
  3039. {
  3040. name: "Macro",
  3041. height: math.unit(63, "meters")
  3042. },
  3043. {
  3044. name: "Megamacro",
  3045. height: math.unit(101, "miles"),
  3046. default: true
  3047. }
  3048. ]
  3049. ))
  3050. characterMakers.push(() => makeCharacter(
  3051. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3052. {
  3053. angled: {
  3054. height: math.unit(4, "meter"),
  3055. weight: math.unit(150, "kg"),
  3056. name: "Angled",
  3057. image: {
  3058. source: "./media/characters/talan/angled-sfw.svg",
  3059. bottom: 29 / 3734
  3060. }
  3061. },
  3062. angledNsfw: {
  3063. height: math.unit(4, "meter"),
  3064. weight: math.unit(150, "kg"),
  3065. name: "Angled (NSFW)",
  3066. image: {
  3067. source: "./media/characters/talan/angled-nsfw.svg",
  3068. bottom: 29 / 3734
  3069. }
  3070. },
  3071. frontNsfw: {
  3072. height: math.unit(4, "meter"),
  3073. weight: math.unit(150, "kg"),
  3074. name: "Front (NSFW)",
  3075. image: {
  3076. source: "./media/characters/talan/front-nsfw.svg",
  3077. bottom: 29 / 3734
  3078. }
  3079. },
  3080. sideNsfw: {
  3081. height: math.unit(4, "meter"),
  3082. weight: math.unit(150, "kg"),
  3083. name: "Side (NSFW)",
  3084. image: {
  3085. source: "./media/characters/talan/side-nsfw.svg",
  3086. bottom: 29 / 3734
  3087. }
  3088. },
  3089. back: {
  3090. height: math.unit(4, "meter"),
  3091. weight: math.unit(150, "kg"),
  3092. name: "Back",
  3093. image: {
  3094. source: "./media/characters/talan/back.svg"
  3095. }
  3096. },
  3097. dickBottom: {
  3098. height: math.unit(0.621, "meter"),
  3099. name: "Dick (Bottom)",
  3100. image: {
  3101. source: "./media/characters/talan/dick-bottom.svg"
  3102. }
  3103. },
  3104. dickTop: {
  3105. height: math.unit(0.621, "meter"),
  3106. name: "Dick (Top)",
  3107. image: {
  3108. source: "./media/characters/talan/dick-top.svg"
  3109. }
  3110. },
  3111. dickSide: {
  3112. height: math.unit(0.305, "meter"),
  3113. name: "Dick (Side)",
  3114. image: {
  3115. source: "./media/characters/talan/dick-side.svg"
  3116. }
  3117. },
  3118. dickFront: {
  3119. height: math.unit(0.305, "meter"),
  3120. name: "Dick (Front)",
  3121. image: {
  3122. source: "./media/characters/talan/dick-front.svg"
  3123. }
  3124. },
  3125. },
  3126. [
  3127. {
  3128. name: "Normal",
  3129. height: math.unit(4, "meters")
  3130. },
  3131. {
  3132. name: "Macro",
  3133. height: math.unit(100, "meters")
  3134. },
  3135. {
  3136. name: "Megamacro",
  3137. height: math.unit(2, "miles"),
  3138. default: true
  3139. },
  3140. {
  3141. name: "Gigamacro",
  3142. height: math.unit(5000, "miles")
  3143. },
  3144. {
  3145. name: "Teramacro",
  3146. height: math.unit(100, "parsecs")
  3147. }
  3148. ]
  3149. ))
  3150. characterMakers.push(() => makeCharacter(
  3151. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3152. {
  3153. front: {
  3154. height: math.unit(2, "meter"),
  3155. weight: math.unit(90, "kg"),
  3156. name: "Front",
  3157. image: {
  3158. source: "./media/characters/gael'rathus/front.svg"
  3159. }
  3160. },
  3161. frontAlt: {
  3162. height: math.unit(2, "meter"),
  3163. weight: math.unit(90, "kg"),
  3164. name: "Front (alt)",
  3165. image: {
  3166. source: "./media/characters/gael'rathus/front-alt.svg"
  3167. }
  3168. },
  3169. frontAlt2: {
  3170. height: math.unit(2, "meter"),
  3171. weight: math.unit(90, "kg"),
  3172. name: "Front (alt 2)",
  3173. image: {
  3174. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3175. }
  3176. }
  3177. },
  3178. [
  3179. {
  3180. name: "Normal",
  3181. height: math.unit(9, "feet"),
  3182. default: true
  3183. },
  3184. {
  3185. name: "Large",
  3186. height: math.unit(25, "feet")
  3187. },
  3188. {
  3189. name: "Macro",
  3190. height: math.unit(0.25, "miles")
  3191. },
  3192. {
  3193. name: "Megamacro",
  3194. height: math.unit(10, "miles")
  3195. }
  3196. ]
  3197. ))
  3198. characterMakers.push(() => makeCharacter(
  3199. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3200. {
  3201. side: {
  3202. height: math.unit(2, "meter"),
  3203. weight: math.unit(140, "kg"),
  3204. name: "Side",
  3205. image: {
  3206. source: "./media/characters/sosha/side.svg",
  3207. bottom: 0.042
  3208. }
  3209. },
  3210. },
  3211. [
  3212. {
  3213. name: "Normal",
  3214. height: math.unit(12, "feet"),
  3215. default: true
  3216. }
  3217. ]
  3218. ))
  3219. characterMakers.push(() => makeCharacter(
  3220. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3221. {
  3222. side: {
  3223. height: math.unit(5 + 5 / 12, "feet"),
  3224. weight: math.unit(170, "kg"),
  3225. name: "Side",
  3226. image: {
  3227. source: "./media/characters/runnola/side.svg",
  3228. extra: 741 / 448,
  3229. bottom: 0.05
  3230. }
  3231. },
  3232. },
  3233. [
  3234. {
  3235. name: "Small",
  3236. height: math.unit(3, "feet")
  3237. },
  3238. {
  3239. name: "Normal",
  3240. height: math.unit(5 + 5 / 12, "feet"),
  3241. default: true
  3242. },
  3243. {
  3244. name: "Big",
  3245. height: math.unit(10, "feet")
  3246. },
  3247. ]
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3251. {
  3252. front: {
  3253. height: math.unit(2, "meter"),
  3254. weight: math.unit(50, "kg"),
  3255. name: "Front",
  3256. image: {
  3257. source: "./media/characters/kurribird/front.svg",
  3258. bottom: 0.015
  3259. }
  3260. },
  3261. frontAlt: {
  3262. height: math.unit(1.5, "meter"),
  3263. weight: math.unit(50, "kg"),
  3264. name: "Front (Alt)",
  3265. image: {
  3266. source: "./media/characters/kurribird/front-alt.svg",
  3267. extra: 1.45
  3268. }
  3269. },
  3270. },
  3271. [
  3272. {
  3273. name: "Normal",
  3274. height: math.unit(7, "feet")
  3275. },
  3276. {
  3277. name: "Big",
  3278. height: math.unit(12, "feet"),
  3279. default: true
  3280. },
  3281. {
  3282. name: "Macro",
  3283. height: math.unit(1500, "feet")
  3284. },
  3285. {
  3286. name: "Megamacro",
  3287. height: math.unit(2, "miles")
  3288. }
  3289. ]
  3290. ))
  3291. characterMakers.push(() => makeCharacter(
  3292. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3293. {
  3294. front: {
  3295. height: math.unit(2, "meter"),
  3296. weight: math.unit(80, "kg"),
  3297. name: "Front",
  3298. image: {
  3299. source: "./media/characters/elbial/front.svg",
  3300. extra: 1643 / 1556,
  3301. bottom: 60.2 / 1696
  3302. }
  3303. },
  3304. side: {
  3305. height: math.unit(2, "meter"),
  3306. weight: math.unit(80, "kg"),
  3307. name: "Side",
  3308. image: {
  3309. source: "./media/characters/elbial/side.svg",
  3310. extra: 1630 / 1565,
  3311. bottom: 71.5 / 1697
  3312. }
  3313. },
  3314. back: {
  3315. height: math.unit(2, "meter"),
  3316. weight: math.unit(80, "kg"),
  3317. name: "Back",
  3318. image: {
  3319. source: "./media/characters/elbial/back.svg",
  3320. extra: 1668 / 1595,
  3321. bottom: 5.6 / 1672
  3322. }
  3323. },
  3324. frontDressed: {
  3325. height: math.unit(2, "meter"),
  3326. weight: math.unit(80, "kg"),
  3327. name: "Front (Dressed)",
  3328. image: {
  3329. source: "./media/characters/elbial/front-dressed.svg",
  3330. extra: 1653 / 1584,
  3331. bottom: 57 / 1708
  3332. }
  3333. },
  3334. genitals: {
  3335. height: math.unit(2 / 3.367, "meter"),
  3336. name: "Genitals",
  3337. image: {
  3338. source: "./media/characters/elbial/genitals.svg"
  3339. }
  3340. },
  3341. },
  3342. [
  3343. {
  3344. name: "Large",
  3345. height: math.unit(100, "feet")
  3346. },
  3347. {
  3348. name: "Macro",
  3349. height: math.unit(500, "feet"),
  3350. default: true
  3351. },
  3352. {
  3353. name: "Megamacro",
  3354. height: math.unit(10, "miles")
  3355. },
  3356. {
  3357. name: "Gigamacro",
  3358. height: math.unit(25000, "miles")
  3359. },
  3360. {
  3361. name: "Full-Size",
  3362. height: math.unit(8000000, "gigaparsecs")
  3363. }
  3364. ]
  3365. ))
  3366. characterMakers.push(() => makeCharacter(
  3367. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3368. {
  3369. front: {
  3370. height: math.unit(2, "meter"),
  3371. weight: math.unit(60, "kg"),
  3372. name: "Front",
  3373. image: {
  3374. source: "./media/characters/noah/front.svg"
  3375. }
  3376. },
  3377. talons: {
  3378. height: math.unit(0.315, "meter"),
  3379. name: "Talons",
  3380. image: {
  3381. source: "./media/characters/noah/talons.svg"
  3382. }
  3383. }
  3384. },
  3385. [
  3386. {
  3387. name: "Large",
  3388. height: math.unit(50, "feet")
  3389. },
  3390. {
  3391. name: "Macro",
  3392. height: math.unit(750, "feet"),
  3393. default: true
  3394. },
  3395. {
  3396. name: "Megamacro",
  3397. height: math.unit(50, "miles")
  3398. },
  3399. {
  3400. name: "Gigamacro",
  3401. height: math.unit(100000, "miles")
  3402. },
  3403. {
  3404. name: "Full-Size",
  3405. height: math.unit(3000000000, "miles")
  3406. }
  3407. ]
  3408. ))
  3409. characterMakers.push(() => makeCharacter(
  3410. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3411. {
  3412. front: {
  3413. height: math.unit(2, "meter"),
  3414. weight: math.unit(80, "kg"),
  3415. name: "Front",
  3416. image: {
  3417. source: "./media/characters/natalya/front.svg"
  3418. }
  3419. },
  3420. back: {
  3421. height: math.unit(2, "meter"),
  3422. weight: math.unit(80, "kg"),
  3423. name: "Back",
  3424. image: {
  3425. source: "./media/characters/natalya/back.svg"
  3426. }
  3427. }
  3428. },
  3429. [
  3430. {
  3431. name: "Normal",
  3432. height: math.unit(150, "feet"),
  3433. default: true
  3434. },
  3435. {
  3436. name: "Megamacro",
  3437. height: math.unit(5, "miles")
  3438. },
  3439. {
  3440. name: "Full-Size",
  3441. height: math.unit(600, "kiloparsecs")
  3442. }
  3443. ]
  3444. ))
  3445. characterMakers.push(() => makeCharacter(
  3446. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3447. {
  3448. front: {
  3449. height: math.unit(2, "meter"),
  3450. weight: math.unit(50, "kg"),
  3451. name: "Front",
  3452. image: {
  3453. source: "./media/characters/erestrebah/front.svg",
  3454. extra: 208 / 193,
  3455. bottom: 0.055
  3456. }
  3457. },
  3458. back: {
  3459. height: math.unit(2, "meter"),
  3460. weight: math.unit(50, "kg"),
  3461. name: "Back",
  3462. image: {
  3463. source: "./media/characters/erestrebah/back.svg",
  3464. extra: 1.3
  3465. }
  3466. }
  3467. },
  3468. [
  3469. {
  3470. name: "Normal",
  3471. height: math.unit(10, "feet")
  3472. },
  3473. {
  3474. name: "Large",
  3475. height: math.unit(50, "feet"),
  3476. default: true
  3477. },
  3478. {
  3479. name: "Macro",
  3480. height: math.unit(300, "feet")
  3481. },
  3482. {
  3483. name: "Macro+",
  3484. height: math.unit(750, "feet")
  3485. },
  3486. {
  3487. name: "Megamacro",
  3488. height: math.unit(3, "miles")
  3489. }
  3490. ]
  3491. ))
  3492. characterMakers.push(() => makeCharacter(
  3493. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3494. {
  3495. front: {
  3496. height: math.unit(2, "meter"),
  3497. weight: math.unit(80, "kg"),
  3498. name: "Front",
  3499. image: {
  3500. source: "./media/characters/jennifer/front.svg",
  3501. bottom: 0.11,
  3502. extra: 1.16
  3503. }
  3504. },
  3505. frontAlt: {
  3506. height: math.unit(2, "meter"),
  3507. weight: math.unit(80, "kg"),
  3508. name: "Front (Alt)",
  3509. image: {
  3510. source: "./media/characters/jennifer/front-alt.svg"
  3511. }
  3512. }
  3513. },
  3514. [
  3515. {
  3516. name: "Canon Height",
  3517. height: math.unit(120, "feet"),
  3518. default: true
  3519. },
  3520. {
  3521. name: "Macro+",
  3522. height: math.unit(300, "feet")
  3523. },
  3524. {
  3525. name: "Megamacro",
  3526. height: math.unit(20000, "feet")
  3527. }
  3528. ]
  3529. ))
  3530. characterMakers.push(() => makeCharacter(
  3531. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3532. {
  3533. front: {
  3534. height: math.unit(2, "meter"),
  3535. weight: math.unit(50, "kg"),
  3536. name: "Front",
  3537. image: {
  3538. source: "./media/characters/kalista/front.svg",
  3539. extra: 1947 / 1700,
  3540. bottom: 76.6 / 1412.98
  3541. }
  3542. },
  3543. back: {
  3544. height: math.unit(2, "meter"),
  3545. weight: math.unit(50, "kg"),
  3546. name: "Back",
  3547. image: {
  3548. source: "./media/characters/kalista/back.svg",
  3549. extra: 1366 / 1156,
  3550. bottom: 33.9 / 1362.78
  3551. }
  3552. }
  3553. },
  3554. [
  3555. {
  3556. name: "Uncomfortably Small",
  3557. height: math.unit(10, "feet")
  3558. },
  3559. {
  3560. name: "Small",
  3561. height: math.unit(30, "feet")
  3562. },
  3563. {
  3564. name: "Macro",
  3565. height: math.unit(100, "feet"),
  3566. default: true
  3567. },
  3568. {
  3569. name: "Macro+",
  3570. height: math.unit(2000, "feet")
  3571. },
  3572. {
  3573. name: "True Form",
  3574. height: math.unit(8924, "miles")
  3575. }
  3576. ]
  3577. ))
  3578. characterMakers.push(() => makeCharacter(
  3579. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3580. {
  3581. front: {
  3582. height: math.unit(2, "meter"),
  3583. weight: math.unit(120, "kg"),
  3584. name: "Front",
  3585. image: {
  3586. source: "./media/characters/ggv/front.svg"
  3587. }
  3588. },
  3589. side: {
  3590. height: math.unit(2, "meter"),
  3591. weight: math.unit(120, "kg"),
  3592. name: "Side",
  3593. image: {
  3594. source: "./media/characters/ggv/side.svg"
  3595. }
  3596. }
  3597. },
  3598. [
  3599. {
  3600. name: "Extremely Puny",
  3601. height: math.unit(9 + 5 / 12, "feet")
  3602. },
  3603. {
  3604. name: "Horribly Small",
  3605. height: math.unit(47.7, "miles"),
  3606. default: true
  3607. },
  3608. {
  3609. name: "Reasonably Sized",
  3610. height: math.unit(25000, "parsecs")
  3611. },
  3612. {
  3613. name: "Slightly Uncompressed",
  3614. height: math.unit(7.77e31, "parsecs")
  3615. },
  3616. {
  3617. name: "Omniversal",
  3618. height: math.unit(1e300, "meters")
  3619. },
  3620. ]
  3621. ))
  3622. characterMakers.push(() => makeCharacter(
  3623. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3624. {
  3625. front: {
  3626. height: math.unit(2, "meter"),
  3627. weight: math.unit(75, "lb"),
  3628. name: "Front",
  3629. image: {
  3630. source: "./media/characters/napalm/front.svg"
  3631. }
  3632. },
  3633. back: {
  3634. height: math.unit(2, "meter"),
  3635. weight: math.unit(75, "lb"),
  3636. name: "Back",
  3637. image: {
  3638. source: "./media/characters/napalm/back.svg"
  3639. }
  3640. }
  3641. },
  3642. [
  3643. {
  3644. name: "Standard",
  3645. height: math.unit(55, "feet"),
  3646. default: true
  3647. }
  3648. ]
  3649. ))
  3650. characterMakers.push(() => makeCharacter(
  3651. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3652. {
  3653. front: {
  3654. height: math.unit(7 + 5 / 6, "feet"),
  3655. weight: math.unit(325, "lb"),
  3656. name: "Front",
  3657. image: {
  3658. source: "./media/characters/asana/front.svg",
  3659. extra: 1133 / 1060,
  3660. bottom: 15.2 / 1148.6
  3661. }
  3662. },
  3663. back: {
  3664. height: math.unit(7 + 5 / 6, "feet"),
  3665. weight: math.unit(325, "lb"),
  3666. name: "Back",
  3667. image: {
  3668. source: "./media/characters/asana/back.svg",
  3669. extra: 1114 / 1043,
  3670. bottom: 5 / 1120
  3671. }
  3672. },
  3673. dressedDark: {
  3674. height: math.unit(7 + 5 / 6, "feet"),
  3675. weight: math.unit(325, "lb"),
  3676. name: "Dressed (Dark)",
  3677. image: {
  3678. source: "./media/characters/asana/dressed-dark.svg",
  3679. extra: 1133 / 1060,
  3680. bottom: 15.2 / 1148.6
  3681. }
  3682. },
  3683. dressedLight: {
  3684. height: math.unit(7 + 5 / 6, "feet"),
  3685. weight: math.unit(325, "lb"),
  3686. name: "Dressed (Light)",
  3687. image: {
  3688. source: "./media/characters/asana/dressed-light.svg",
  3689. extra: 1133 / 1060,
  3690. bottom: 15.2 / 1148.6
  3691. }
  3692. },
  3693. },
  3694. [
  3695. {
  3696. name: "Standard",
  3697. height: math.unit(7 + 5 / 6, "feet"),
  3698. default: true
  3699. },
  3700. {
  3701. name: "Large",
  3702. height: math.unit(10, "meters")
  3703. },
  3704. {
  3705. name: "Macro",
  3706. height: math.unit(2500, "meters")
  3707. },
  3708. {
  3709. name: "Megamacro",
  3710. height: math.unit(5e6, "meters")
  3711. },
  3712. {
  3713. name: "Examacro",
  3714. height: math.unit(5e12, "lightyears")
  3715. },
  3716. {
  3717. name: "Max Size",
  3718. height: math.unit(1e31, "lightyears")
  3719. }
  3720. ]
  3721. ))
  3722. characterMakers.push(() => makeCharacter(
  3723. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3724. {
  3725. front: {
  3726. height: math.unit(2, "meter"),
  3727. weight: math.unit(60, "kg"),
  3728. name: "Front",
  3729. image: {
  3730. source: "./media/characters/ebony/front.svg",
  3731. bottom: 0.03,
  3732. extra: 1045 / 810 + 0.03
  3733. }
  3734. },
  3735. side: {
  3736. height: math.unit(2, "meter"),
  3737. weight: math.unit(60, "kg"),
  3738. name: "Side",
  3739. image: {
  3740. source: "./media/characters/ebony/side.svg",
  3741. bottom: 0.03,
  3742. extra: 1045 / 810 + 0.03
  3743. }
  3744. },
  3745. back: {
  3746. height: math.unit(2, "meter"),
  3747. weight: math.unit(60, "kg"),
  3748. name: "Back",
  3749. image: {
  3750. source: "./media/characters/ebony/back.svg",
  3751. bottom: 0.01,
  3752. extra: 1045 / 810 + 0.01
  3753. }
  3754. },
  3755. },
  3756. [
  3757. // TODO check why I did this lol
  3758. {
  3759. name: "Standard",
  3760. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3761. default: true
  3762. },
  3763. {
  3764. name: "Macro",
  3765. height: math.unit(200, "feet")
  3766. },
  3767. {
  3768. name: "Gigamacro",
  3769. height: math.unit(13000, "km")
  3770. }
  3771. ]
  3772. ))
  3773. characterMakers.push(() => makeCharacter(
  3774. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3775. {
  3776. front: {
  3777. height: math.unit(6, "feet"),
  3778. weight: math.unit(175, "lb"),
  3779. name: "Front",
  3780. image: {
  3781. source: "./media/characters/mountain/front.svg",
  3782. extra: 972 / 955,
  3783. bottom: 64 / 1036.6
  3784. }
  3785. },
  3786. back: {
  3787. height: math.unit(6, "feet"),
  3788. weight: math.unit(175, "lb"),
  3789. name: "Back",
  3790. image: {
  3791. source: "./media/characters/mountain/back.svg",
  3792. extra: 970 / 950,
  3793. bottom: 28.25 / 999
  3794. }
  3795. },
  3796. },
  3797. [
  3798. {
  3799. name: "Large",
  3800. height: math.unit(20, "meters")
  3801. },
  3802. {
  3803. name: "Macro",
  3804. height: math.unit(300, "meters")
  3805. },
  3806. {
  3807. name: "Gigamacro",
  3808. height: math.unit(10000, "km"),
  3809. default: true
  3810. },
  3811. {
  3812. name: "Examacro",
  3813. height: math.unit(10e9, "lightyears")
  3814. }
  3815. ]
  3816. ))
  3817. characterMakers.push(() => makeCharacter(
  3818. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3819. {
  3820. front: {
  3821. height: math.unit(8, "feet"),
  3822. weight: math.unit(500, "lb"),
  3823. name: "Front",
  3824. image: {
  3825. source: "./media/characters/rick/front.svg"
  3826. }
  3827. }
  3828. },
  3829. [
  3830. {
  3831. name: "Normal",
  3832. height: math.unit(8, "feet"),
  3833. default: true
  3834. },
  3835. {
  3836. name: "Macro",
  3837. height: math.unit(5, "km")
  3838. }
  3839. ]
  3840. ))
  3841. characterMakers.push(() => makeCharacter(
  3842. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3843. {
  3844. front: {
  3845. height: math.unit(8, "feet"),
  3846. weight: math.unit(120, "lb"),
  3847. name: "Front",
  3848. image: {
  3849. source: "./media/characters/ona/front.svg"
  3850. }
  3851. },
  3852. frontAlt: {
  3853. height: math.unit(8, "feet"),
  3854. weight: math.unit(120, "lb"),
  3855. name: "Front (Alt)",
  3856. image: {
  3857. source: "./media/characters/ona/front-alt.svg"
  3858. }
  3859. },
  3860. back: {
  3861. height: math.unit(8, "feet"),
  3862. weight: math.unit(120, "lb"),
  3863. name: "Back",
  3864. image: {
  3865. source: "./media/characters/ona/back.svg"
  3866. }
  3867. },
  3868. foot: {
  3869. height: math.unit(1.1, "feet"),
  3870. name: "Foot",
  3871. image: {
  3872. source: "./media/characters/ona/foot.svg"
  3873. }
  3874. }
  3875. },
  3876. [
  3877. {
  3878. name: "Megamacro",
  3879. height: math.unit(70, "km"),
  3880. default: true
  3881. },
  3882. {
  3883. name: "Gigamacro",
  3884. height: math.unit(681818, "miles")
  3885. },
  3886. {
  3887. name: "Examacro",
  3888. height: math.unit(3800000, "lightyears")
  3889. },
  3890. ]
  3891. ))
  3892. characterMakers.push(() => makeCharacter(
  3893. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3894. {
  3895. front: {
  3896. height: math.unit(12, "feet"),
  3897. weight: math.unit(3000, "lb"),
  3898. name: "Front",
  3899. image: {
  3900. source: "./media/characters/mech/front.svg",
  3901. extra: 2900 / 2770,
  3902. bottom: 110 / 3010
  3903. }
  3904. },
  3905. back: {
  3906. height: math.unit(12, "feet"),
  3907. weight: math.unit(3000, "lb"),
  3908. name: "Back",
  3909. image: {
  3910. source: "./media/characters/mech/back.svg",
  3911. extra: 3011 / 2890,
  3912. bottom: 94 / 3105
  3913. }
  3914. },
  3915. maw: {
  3916. height: math.unit(3.07, "feet"),
  3917. name: "Maw",
  3918. image: {
  3919. source: "./media/characters/mech/maw.svg"
  3920. }
  3921. },
  3922. head: {
  3923. height: math.unit(2.82, "feet"),
  3924. name: "Head",
  3925. image: {
  3926. source: "./media/characters/mech/head.svg"
  3927. }
  3928. },
  3929. dick: {
  3930. height: math.unit(1.43, "feet"),
  3931. name: "Dick",
  3932. image: {
  3933. source: "./media/characters/mech/dick.svg"
  3934. }
  3935. },
  3936. },
  3937. [
  3938. {
  3939. name: "Normal",
  3940. height: math.unit(12, "feet")
  3941. },
  3942. {
  3943. name: "Macro",
  3944. height: math.unit(300, "feet"),
  3945. default: true
  3946. },
  3947. {
  3948. name: "Macro+",
  3949. height: math.unit(1500, "feet")
  3950. },
  3951. ]
  3952. ))
  3953. characterMakers.push(() => makeCharacter(
  3954. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3955. {
  3956. front: {
  3957. height: math.unit(1.3, "meter"),
  3958. weight: math.unit(30, "kg"),
  3959. name: "Front",
  3960. image: {
  3961. source: "./media/characters/gregory/front.svg",
  3962. }
  3963. }
  3964. },
  3965. [
  3966. {
  3967. name: "Normal",
  3968. height: math.unit(1.3, "meter"),
  3969. default: true
  3970. },
  3971. {
  3972. name: "Macro",
  3973. height: math.unit(20, "meter")
  3974. }
  3975. ]
  3976. ))
  3977. characterMakers.push(() => makeCharacter(
  3978. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3979. {
  3980. front: {
  3981. height: math.unit(2.8, "meter"),
  3982. weight: math.unit(200, "kg"),
  3983. name: "Front",
  3984. image: {
  3985. source: "./media/characters/elory/front.svg",
  3986. }
  3987. }
  3988. },
  3989. [
  3990. {
  3991. name: "Normal",
  3992. height: math.unit(2.8, "meter"),
  3993. default: true
  3994. },
  3995. {
  3996. name: "Macro",
  3997. height: math.unit(38, "meter")
  3998. }
  3999. ]
  4000. ))
  4001. characterMakers.push(() => makeCharacter(
  4002. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4003. {
  4004. front: {
  4005. height: math.unit(470, "feet"),
  4006. weight: math.unit(924, "tons"),
  4007. name: "Front",
  4008. image: {
  4009. source: "./media/characters/angelpatamon/front.svg",
  4010. }
  4011. }
  4012. },
  4013. [
  4014. {
  4015. name: "Normal",
  4016. height: math.unit(470, "feet"),
  4017. default: true
  4018. },
  4019. {
  4020. name: "Deity Size I",
  4021. height: math.unit(28651.2, "km")
  4022. },
  4023. {
  4024. name: "Deity Size II",
  4025. height: math.unit(171907.2, "km")
  4026. }
  4027. ]
  4028. ))
  4029. characterMakers.push(() => makeCharacter(
  4030. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4031. {
  4032. side: {
  4033. height: math.unit(7.2, "meter"),
  4034. weight: math.unit(8.2, "tons"),
  4035. name: "Side",
  4036. image: {
  4037. source: "./media/characters/cryae/side.svg",
  4038. extra: 3500 / 1500
  4039. }
  4040. }
  4041. },
  4042. [
  4043. {
  4044. name: "Normal",
  4045. height: math.unit(7.2, "meter"),
  4046. default: true
  4047. }
  4048. ]
  4049. ))
  4050. characterMakers.push(() => makeCharacter(
  4051. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4052. {
  4053. front: {
  4054. height: math.unit(6, "feet"),
  4055. weight: math.unit(175, "lb"),
  4056. name: "Front",
  4057. image: {
  4058. source: "./media/characters/xera/front.svg",
  4059. extra: 2377 / 1972,
  4060. bottom: 75.5 / 2452
  4061. }
  4062. },
  4063. side: {
  4064. height: math.unit(6, "feet"),
  4065. weight: math.unit(175, "lb"),
  4066. name: "Side",
  4067. image: {
  4068. source: "./media/characters/xera/side.svg",
  4069. extra: 2345 / 2019,
  4070. bottom: 39.7 / 2384
  4071. }
  4072. },
  4073. back: {
  4074. height: math.unit(6, "feet"),
  4075. weight: math.unit(175, "lb"),
  4076. name: "Back",
  4077. image: {
  4078. source: "./media/characters/xera/back.svg",
  4079. extra: 2095 / 1984,
  4080. bottom: 67 / 2166
  4081. }
  4082. },
  4083. },
  4084. [
  4085. {
  4086. name: "Small",
  4087. height: math.unit(10, "feet")
  4088. },
  4089. {
  4090. name: "Macro",
  4091. height: math.unit(500, "meters"),
  4092. default: true
  4093. },
  4094. {
  4095. name: "Macro+",
  4096. height: math.unit(10, "km")
  4097. },
  4098. {
  4099. name: "Gigamacro",
  4100. height: math.unit(25000, "km")
  4101. },
  4102. {
  4103. name: "Teramacro",
  4104. height: math.unit(3e6, "km")
  4105. }
  4106. ]
  4107. ))
  4108. characterMakers.push(() => makeCharacter(
  4109. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4110. {
  4111. front: {
  4112. height: math.unit(6, "feet"),
  4113. weight: math.unit(175, "lb"),
  4114. name: "Front",
  4115. image: {
  4116. source: "./media/characters/nebula/front.svg",
  4117. extra: 2566 / 2362,
  4118. bottom: 81 / 2644
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Small",
  4125. height: math.unit(4.5, "meters")
  4126. },
  4127. {
  4128. name: "Macro",
  4129. height: math.unit(1500, "meters"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Megamacro",
  4134. height: math.unit(150, "km")
  4135. },
  4136. {
  4137. name: "Gigamacro",
  4138. height: math.unit(27000, "km")
  4139. }
  4140. ]
  4141. ))
  4142. characterMakers.push(() => makeCharacter(
  4143. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4144. {
  4145. front: {
  4146. height: math.unit(6, "feet"),
  4147. weight: math.unit(225, "lb"),
  4148. name: "Front",
  4149. image: {
  4150. source: "./media/characters/abysgar/front.svg"
  4151. }
  4152. }
  4153. },
  4154. [
  4155. {
  4156. name: "Small",
  4157. height: math.unit(4.5, "meters")
  4158. },
  4159. {
  4160. name: "Macro",
  4161. height: math.unit(1250, "meters"),
  4162. default: true
  4163. },
  4164. {
  4165. name: "Megamacro",
  4166. height: math.unit(125, "km")
  4167. },
  4168. {
  4169. name: "Gigamacro",
  4170. height: math.unit(26000, "km")
  4171. }
  4172. ]
  4173. ))
  4174. characterMakers.push(() => makeCharacter(
  4175. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4176. {
  4177. front: {
  4178. height: math.unit(6, "feet"),
  4179. weight: math.unit(180, "lb"),
  4180. name: "Front",
  4181. image: {
  4182. source: "./media/characters/yakuz/front.svg"
  4183. }
  4184. }
  4185. },
  4186. [
  4187. {
  4188. name: "Small",
  4189. height: math.unit(5, "meters")
  4190. },
  4191. {
  4192. name: "Macro",
  4193. height: math.unit(1500, "meters"),
  4194. default: true
  4195. },
  4196. {
  4197. name: "Megamacro",
  4198. height: math.unit(200, "km")
  4199. },
  4200. {
  4201. name: "Gigamacro",
  4202. height: math.unit(100000, "km")
  4203. }
  4204. ]
  4205. ))
  4206. characterMakers.push(() => makeCharacter(
  4207. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4208. {
  4209. front: {
  4210. height: math.unit(6, "feet"),
  4211. weight: math.unit(175, "lb"),
  4212. name: "Front",
  4213. image: {
  4214. source: "./media/characters/mirova/front.svg",
  4215. extra: 3334 / 3071,
  4216. bottom: 42 / 3375.6
  4217. }
  4218. }
  4219. },
  4220. [
  4221. {
  4222. name: "Small",
  4223. height: math.unit(5, "meters")
  4224. },
  4225. {
  4226. name: "Macro",
  4227. height: math.unit(900, "meters"),
  4228. default: true
  4229. },
  4230. {
  4231. name: "Megamacro",
  4232. height: math.unit(135, "km")
  4233. },
  4234. {
  4235. name: "Gigamacro",
  4236. height: math.unit(20000, "km")
  4237. }
  4238. ]
  4239. ))
  4240. characterMakers.push(() => makeCharacter(
  4241. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4242. {
  4243. side: {
  4244. height: math.unit(28.35, "feet"),
  4245. weight: math.unit(99.75, "tons"),
  4246. name: "Side",
  4247. image: {
  4248. source: "./media/characters/asana-mech/side.svg",
  4249. extra: 923 / 699,
  4250. bottom: 50 / 975
  4251. }
  4252. },
  4253. chaingun: {
  4254. height: math.unit(7, "feet"),
  4255. weight: math.unit(2400, "lb"),
  4256. name: "Chaingun",
  4257. image: {
  4258. source: "./media/characters/asana-mech/chaingun.svg"
  4259. }
  4260. },
  4261. laser: {
  4262. height: math.unit(7.12, "feet"),
  4263. weight: math.unit(2000, "lb"),
  4264. name: "Laser",
  4265. image: {
  4266. source: "./media/characters/asana-mech/laser.svg"
  4267. }
  4268. },
  4269. },
  4270. [
  4271. {
  4272. name: "Normal",
  4273. height: math.unit(28.35, "feet"),
  4274. default: true
  4275. },
  4276. {
  4277. name: "Macro",
  4278. height: math.unit(2500, "feet")
  4279. },
  4280. {
  4281. name: "Megamacro",
  4282. height: math.unit(25, "miles")
  4283. },
  4284. {
  4285. name: "Examacro",
  4286. height: math.unit(6e8, "lightyears")
  4287. },
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4292. {
  4293. front: {
  4294. height: math.unit(5, "meters"),
  4295. weight: math.unit(1000, "kg"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/asche/front.svg",
  4299. extra: 1258 / 1190,
  4300. bottom: 47 / 1305
  4301. }
  4302. },
  4303. frontUnderwear: {
  4304. height: math.unit(5, "meters"),
  4305. weight: math.unit(1000, "kg"),
  4306. name: "Front (Underwear)",
  4307. image: {
  4308. source: "./media/characters/asche/front-underwear.svg",
  4309. extra: 1258 / 1190,
  4310. bottom: 47 / 1305
  4311. }
  4312. },
  4313. frontDressed: {
  4314. height: math.unit(5, "meters"),
  4315. weight: math.unit(1000, "kg"),
  4316. name: "Front (Dressed)",
  4317. image: {
  4318. source: "./media/characters/asche/front-dressed.svg",
  4319. extra: 1258 / 1190,
  4320. bottom: 47 / 1305
  4321. }
  4322. },
  4323. frontArmor: {
  4324. height: math.unit(5, "meters"),
  4325. weight: math.unit(1000, "kg"),
  4326. name: "Front (Armored)",
  4327. image: {
  4328. source: "./media/characters/asche/front-armored.svg",
  4329. extra: 1374 / 1308,
  4330. bottom: 23 / 1397
  4331. }
  4332. },
  4333. mp724: {
  4334. height: math.unit(0.96, "meters"),
  4335. weight: math.unit(38, "kg"),
  4336. name: "H&K MP724",
  4337. image: {
  4338. source: "./media/characters/asche/h&k-mp724.svg"
  4339. }
  4340. },
  4341. side: {
  4342. height: math.unit(5, "meters"),
  4343. weight: math.unit(1000, "kg"),
  4344. name: "Side",
  4345. image: {
  4346. source: "./media/characters/asche/side.svg",
  4347. extra: 1717 / 1609,
  4348. bottom: 0.005
  4349. }
  4350. },
  4351. back: {
  4352. height: math.unit(5, "meters"),
  4353. weight: math.unit(1000, "kg"),
  4354. name: "Back",
  4355. image: {
  4356. source: "./media/characters/asche/back.svg",
  4357. extra: 1570 / 1501
  4358. }
  4359. },
  4360. },
  4361. [
  4362. {
  4363. name: "DEFCON 5",
  4364. height: math.unit(5, "meters")
  4365. },
  4366. {
  4367. name: "DEFCON 4",
  4368. height: math.unit(500, "meters"),
  4369. default: true
  4370. },
  4371. {
  4372. name: "DEFCON 3",
  4373. height: math.unit(5, "km")
  4374. },
  4375. {
  4376. name: "DEFCON 2",
  4377. height: math.unit(500, "km")
  4378. },
  4379. {
  4380. name: "DEFCON 1",
  4381. height: math.unit(500000, "km")
  4382. },
  4383. {
  4384. name: "DEFCON 0",
  4385. height: math.unit(3, "gigaparsecs")
  4386. },
  4387. ]
  4388. ))
  4389. characterMakers.push(() => makeCharacter(
  4390. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4391. {
  4392. front: {
  4393. height: math.unit(2, "meters"),
  4394. weight: math.unit(76, "kg"),
  4395. name: "Front",
  4396. image: {
  4397. source: "./media/characters/gale/front.svg"
  4398. }
  4399. },
  4400. frontAlt1: {
  4401. height: math.unit(2, "meters"),
  4402. weight: math.unit(76, "kg"),
  4403. name: "Front (Alt 1)",
  4404. image: {
  4405. source: "./media/characters/gale/front-alt-1.svg"
  4406. }
  4407. },
  4408. frontAlt2: {
  4409. height: math.unit(2, "meters"),
  4410. weight: math.unit(76, "kg"),
  4411. name: "Front (Alt 2)",
  4412. image: {
  4413. source: "./media/characters/gale/front-alt-2.svg"
  4414. }
  4415. },
  4416. },
  4417. [
  4418. {
  4419. name: "Normal",
  4420. height: math.unit(7, "feet")
  4421. },
  4422. {
  4423. name: "Macro",
  4424. height: math.unit(150, "feet"),
  4425. default: true
  4426. },
  4427. {
  4428. name: "Macro+",
  4429. height: math.unit(300, "feet")
  4430. },
  4431. ]
  4432. ))
  4433. characterMakers.push(() => makeCharacter(
  4434. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4435. {
  4436. front: {
  4437. height: math.unit(2, "meters"),
  4438. weight: math.unit(76, "kg"),
  4439. name: "Front",
  4440. image: {
  4441. source: "./media/characters/draylen/front.svg"
  4442. }
  4443. }
  4444. },
  4445. [
  4446. {
  4447. name: "Macro",
  4448. height: math.unit(150, "feet"),
  4449. default: true
  4450. }
  4451. ]
  4452. ))
  4453. characterMakers.push(() => makeCharacter(
  4454. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4455. {
  4456. front: {
  4457. height: math.unit(7 + 9 / 12, "feet"),
  4458. weight: math.unit(379, "lbs"),
  4459. name: "Front",
  4460. image: {
  4461. source: "./media/characters/chez/front.svg"
  4462. }
  4463. },
  4464. side: {
  4465. height: math.unit(7 + 9 / 12, "feet"),
  4466. weight: math.unit(379, "lbs"),
  4467. name: "Side",
  4468. image: {
  4469. source: "./media/characters/chez/side.svg"
  4470. }
  4471. }
  4472. },
  4473. [
  4474. {
  4475. name: "Normal",
  4476. height: math.unit(7 + 9 / 12, "feet"),
  4477. default: true
  4478. },
  4479. {
  4480. name: "God King",
  4481. height: math.unit(9750000, "meters")
  4482. }
  4483. ]
  4484. ))
  4485. characterMakers.push(() => makeCharacter(
  4486. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4487. {
  4488. front: {
  4489. height: math.unit(6, "feet"),
  4490. weight: math.unit(275, "lbs"),
  4491. name: "Front",
  4492. image: {
  4493. source: "./media/characters/kaylum/front.svg",
  4494. bottom: 0.01,
  4495. extra: 1166 / 1031
  4496. }
  4497. },
  4498. frontWingless: {
  4499. height: math.unit(6, "feet"),
  4500. weight: math.unit(275, "lbs"),
  4501. name: "Front (Wingless)",
  4502. image: {
  4503. source: "./media/characters/kaylum/front-wingless.svg",
  4504. bottom: 0.01,
  4505. extra: 1117 / 1031
  4506. }
  4507. }
  4508. },
  4509. [
  4510. {
  4511. name: "Normal",
  4512. height: math.unit(3.05, "meters")
  4513. },
  4514. {
  4515. name: "Master",
  4516. height: math.unit(5.5, "meters")
  4517. },
  4518. {
  4519. name: "Rampage",
  4520. height: math.unit(19, "meters")
  4521. },
  4522. {
  4523. name: "Macro Lite",
  4524. height: math.unit(37, "meters")
  4525. },
  4526. {
  4527. name: "Hyper Predator",
  4528. height: math.unit(61, "meters")
  4529. },
  4530. {
  4531. name: "Macro",
  4532. height: math.unit(138, "meters"),
  4533. default: true
  4534. }
  4535. ]
  4536. ))
  4537. characterMakers.push(() => makeCharacter(
  4538. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4539. {
  4540. front: {
  4541. height: math.unit(6, "feet"),
  4542. weight: math.unit(150, "lbs"),
  4543. name: "Front",
  4544. image: {
  4545. source: "./media/characters/geta/front.svg"
  4546. }
  4547. }
  4548. },
  4549. [
  4550. {
  4551. name: "Micro",
  4552. height: math.unit(3, "inches"),
  4553. default: true
  4554. },
  4555. {
  4556. name: "Normal",
  4557. height: math.unit(5 + 5 / 12, "feet")
  4558. }
  4559. ]
  4560. ))
  4561. characterMakers.push(() => makeCharacter(
  4562. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4563. {
  4564. front: {
  4565. height: math.unit(6, "feet"),
  4566. weight: math.unit(300, "lbs"),
  4567. name: "Front",
  4568. image: {
  4569. source: "./media/characters/tyrnn/front.svg"
  4570. }
  4571. }
  4572. },
  4573. [
  4574. {
  4575. name: "Main Height",
  4576. height: math.unit(355, "feet"),
  4577. default: true
  4578. },
  4579. {
  4580. name: "Fave. Height",
  4581. height: math.unit(2400, "feet")
  4582. }
  4583. ]
  4584. ))
  4585. characterMakers.push(() => makeCharacter(
  4586. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4587. {
  4588. front: {
  4589. height: math.unit(6, "feet"),
  4590. weight: math.unit(300, "lbs"),
  4591. name: "Front",
  4592. image: {
  4593. source: "./media/characters/appledectomy/front.svg"
  4594. }
  4595. }
  4596. },
  4597. [
  4598. {
  4599. name: "Macro",
  4600. height: math.unit(2500, "feet")
  4601. },
  4602. {
  4603. name: "Megamacro",
  4604. height: math.unit(50, "miles"),
  4605. default: true
  4606. },
  4607. {
  4608. name: "Gigamacro",
  4609. height: math.unit(5000, "miles")
  4610. },
  4611. {
  4612. name: "Teramacro",
  4613. height: math.unit(250000, "miles")
  4614. },
  4615. ]
  4616. ))
  4617. characterMakers.push(() => makeCharacter(
  4618. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4619. {
  4620. front: {
  4621. height: math.unit(6, "feet"),
  4622. weight: math.unit(200, "lbs"),
  4623. name: "Front",
  4624. image: {
  4625. source: "./media/characters/vulpes/front.svg",
  4626. extra: 573 / 543,
  4627. bottom: 0.033
  4628. }
  4629. },
  4630. side: {
  4631. height: math.unit(6, "feet"),
  4632. weight: math.unit(200, "lbs"),
  4633. name: "Side",
  4634. image: {
  4635. source: "./media/characters/vulpes/side.svg",
  4636. extra: 577 / 549,
  4637. bottom: 11 / 588
  4638. }
  4639. },
  4640. back: {
  4641. height: math.unit(6, "feet"),
  4642. weight: math.unit(200, "lbs"),
  4643. name: "Back",
  4644. image: {
  4645. source: "./media/characters/vulpes/back.svg",
  4646. extra: 573 / 549,
  4647. bottom: 20 / 593
  4648. }
  4649. },
  4650. feet: {
  4651. height: math.unit(1.276, "feet"),
  4652. name: "Feet",
  4653. image: {
  4654. source: "./media/characters/vulpes/feet.svg"
  4655. }
  4656. },
  4657. maw: {
  4658. height: math.unit(1.18, "feet"),
  4659. name: "Maw",
  4660. image: {
  4661. source: "./media/characters/vulpes/maw.svg"
  4662. }
  4663. },
  4664. },
  4665. [
  4666. {
  4667. name: "Micro",
  4668. height: math.unit(2, "inches")
  4669. },
  4670. {
  4671. name: "Normal",
  4672. height: math.unit(6.3, "feet")
  4673. },
  4674. {
  4675. name: "Macro",
  4676. height: math.unit(850, "feet")
  4677. },
  4678. {
  4679. name: "Megamacro",
  4680. height: math.unit(7500, "feet"),
  4681. default: true
  4682. },
  4683. {
  4684. name: "Gigamacro",
  4685. height: math.unit(570000, "miles")
  4686. }
  4687. ]
  4688. ))
  4689. characterMakers.push(() => makeCharacter(
  4690. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4691. {
  4692. front: {
  4693. height: math.unit(6, "feet"),
  4694. weight: math.unit(210, "lbs"),
  4695. name: "Front",
  4696. image: {
  4697. source: "./media/characters/rain-fallen/front.svg"
  4698. }
  4699. },
  4700. side: {
  4701. height: math.unit(6, "feet"),
  4702. weight: math.unit(210, "lbs"),
  4703. name: "Side",
  4704. image: {
  4705. source: "./media/characters/rain-fallen/side.svg"
  4706. }
  4707. },
  4708. back: {
  4709. height: math.unit(6, "feet"),
  4710. weight: math.unit(210, "lbs"),
  4711. name: "Back",
  4712. image: {
  4713. source: "./media/characters/rain-fallen/back.svg"
  4714. }
  4715. },
  4716. feral: {
  4717. height: math.unit(9, "feet"),
  4718. weight: math.unit(700, "lbs"),
  4719. name: "Feral",
  4720. image: {
  4721. source: "./media/characters/rain-fallen/feral.svg"
  4722. }
  4723. },
  4724. },
  4725. [
  4726. {
  4727. name: "Meddling with Mortals",
  4728. height: math.unit(8 + 8/12, "feet")
  4729. },
  4730. {
  4731. name: "Normal",
  4732. height: math.unit(5, "meter")
  4733. },
  4734. {
  4735. name: "Macro",
  4736. height: math.unit(150, "meter"),
  4737. default: true
  4738. },
  4739. {
  4740. name: "Megamacro",
  4741. height: math.unit(278e6, "meter")
  4742. },
  4743. {
  4744. name: "Gigamacro",
  4745. height: math.unit(2e9, "meter")
  4746. },
  4747. {
  4748. name: "Teramacro",
  4749. height: math.unit(8e12, "meter")
  4750. },
  4751. {
  4752. name: "Devourer",
  4753. height: math.unit(14, "zettameters")
  4754. },
  4755. {
  4756. name: "Scarlet King",
  4757. height: math.unit(18, "yottameters")
  4758. },
  4759. {
  4760. name: "Void",
  4761. height: math.unit(1e88, "yottameters")
  4762. }
  4763. ]
  4764. ))
  4765. characterMakers.push(() => makeCharacter(
  4766. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4767. {
  4768. standing: {
  4769. height: math.unit(6, "feet"),
  4770. weight: math.unit(180, "lbs"),
  4771. name: "Standing",
  4772. image: {
  4773. source: "./media/characters/zaakira/standing.svg",
  4774. extra: 1599/1504,
  4775. bottom: 39/1638
  4776. }
  4777. },
  4778. laying: {
  4779. height: math.unit(3, "feet"),
  4780. weight: math.unit(180, "lbs"),
  4781. name: "Laying",
  4782. image: {
  4783. source: "./media/characters/zaakira/laying.svg"
  4784. }
  4785. },
  4786. },
  4787. [
  4788. {
  4789. name: "Normal",
  4790. height: math.unit(12, "feet")
  4791. },
  4792. {
  4793. name: "Macro",
  4794. height: math.unit(279, "feet"),
  4795. default: true
  4796. }
  4797. ]
  4798. ))
  4799. characterMakers.push(() => makeCharacter(
  4800. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4801. {
  4802. femSfw: {
  4803. height: math.unit(8, "feet"),
  4804. weight: math.unit(350, "lb"),
  4805. name: "Fem",
  4806. image: {
  4807. source: "./media/characters/sigvald/fem-sfw.svg",
  4808. extra: 182 / 164,
  4809. bottom: 8.7 / 190.5
  4810. }
  4811. },
  4812. femNsfw: {
  4813. height: math.unit(8, "feet"),
  4814. weight: math.unit(350, "lb"),
  4815. name: "Fem (NSFW)",
  4816. image: {
  4817. source: "./media/characters/sigvald/fem-nsfw.svg",
  4818. extra: 182 / 164,
  4819. bottom: 8.7 / 190.5
  4820. }
  4821. },
  4822. maleNsfw: {
  4823. height: math.unit(8, "feet"),
  4824. weight: math.unit(350, "lb"),
  4825. name: "Male (NSFW)",
  4826. image: {
  4827. source: "./media/characters/sigvald/male-nsfw.svg",
  4828. extra: 182 / 164,
  4829. bottom: 8.7 / 190.5
  4830. }
  4831. },
  4832. hermNsfw: {
  4833. height: math.unit(8, "feet"),
  4834. weight: math.unit(350, "lb"),
  4835. name: "Herm (NSFW)",
  4836. image: {
  4837. source: "./media/characters/sigvald/herm-nsfw.svg",
  4838. extra: 182 / 164,
  4839. bottom: 8.7 / 190.5
  4840. }
  4841. },
  4842. dick: {
  4843. height: math.unit(2.36, "feet"),
  4844. name: "Dick",
  4845. image: {
  4846. source: "./media/characters/sigvald/dick.svg"
  4847. }
  4848. },
  4849. eye: {
  4850. height: math.unit(0.31, "feet"),
  4851. name: "Eye",
  4852. image: {
  4853. source: "./media/characters/sigvald/eye.svg"
  4854. }
  4855. },
  4856. mouth: {
  4857. height: math.unit(0.92, "feet"),
  4858. name: "Mouth",
  4859. image: {
  4860. source: "./media/characters/sigvald/mouth.svg"
  4861. }
  4862. },
  4863. paws: {
  4864. height: math.unit(2.2, "feet"),
  4865. name: "Paws",
  4866. image: {
  4867. source: "./media/characters/sigvald/paws.svg"
  4868. }
  4869. }
  4870. },
  4871. [
  4872. {
  4873. name: "Normal",
  4874. height: math.unit(8, "feet")
  4875. },
  4876. {
  4877. name: "Large",
  4878. height: math.unit(12, "feet")
  4879. },
  4880. {
  4881. name: "Larger",
  4882. height: math.unit(20, "feet")
  4883. },
  4884. {
  4885. name: "Macro",
  4886. height: math.unit(150, "feet")
  4887. },
  4888. {
  4889. name: "Macro+",
  4890. height: math.unit(200, "feet"),
  4891. default: true
  4892. },
  4893. ]
  4894. ))
  4895. characterMakers.push(() => makeCharacter(
  4896. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4897. {
  4898. side: {
  4899. height: math.unit(12, "feet"),
  4900. weight: math.unit(2000, "kg"),
  4901. name: "Side",
  4902. image: {
  4903. source: "./media/characters/scott/side.svg",
  4904. extra: 754 / 724,
  4905. bottom: 0.069
  4906. }
  4907. },
  4908. upright: {
  4909. height: math.unit(12, "feet"),
  4910. weight: math.unit(2000, "kg"),
  4911. name: "Upright",
  4912. image: {
  4913. source: "./media/characters/scott/upright.svg",
  4914. extra: 3881 / 3722,
  4915. bottom: 0.05
  4916. }
  4917. },
  4918. },
  4919. [
  4920. {
  4921. name: "Normal",
  4922. height: math.unit(12, "feet"),
  4923. default: true
  4924. },
  4925. ]
  4926. ))
  4927. characterMakers.push(() => makeCharacter(
  4928. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4929. {
  4930. side: {
  4931. height: math.unit(8, "meters"),
  4932. weight: math.unit(84755, "lbs"),
  4933. name: "Side",
  4934. image: {
  4935. source: "./media/characters/tobias/side.svg",
  4936. extra: 1474 / 1096,
  4937. bottom: 38.9 / 1513.1235
  4938. }
  4939. },
  4940. },
  4941. [
  4942. {
  4943. name: "Normal",
  4944. height: math.unit(8, "meters"),
  4945. default: true
  4946. },
  4947. ]
  4948. ))
  4949. characterMakers.push(() => makeCharacter(
  4950. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4951. {
  4952. front: {
  4953. height: math.unit(5.5, "feet"),
  4954. weight: math.unit(400, "lbs"),
  4955. name: "Front",
  4956. image: {
  4957. source: "./media/characters/kieran/front.svg",
  4958. extra: 2694 / 2364,
  4959. bottom: 217 / 2908
  4960. }
  4961. },
  4962. side: {
  4963. height: math.unit(5.5, "feet"),
  4964. weight: math.unit(400, "lbs"),
  4965. name: "Side",
  4966. image: {
  4967. source: "./media/characters/kieran/side.svg",
  4968. extra: 875 / 777,
  4969. bottom: 84.6 / 959
  4970. }
  4971. },
  4972. },
  4973. [
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(5.5, "feet"),
  4977. default: true
  4978. },
  4979. ]
  4980. ))
  4981. characterMakers.push(() => makeCharacter(
  4982. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4983. {
  4984. side: {
  4985. height: math.unit(2, "meters"),
  4986. weight: math.unit(70, "kg"),
  4987. name: "Side",
  4988. image: {
  4989. source: "./media/characters/sanya/side.svg",
  4990. bottom: 0.02,
  4991. extra: 1.02
  4992. }
  4993. },
  4994. },
  4995. [
  4996. {
  4997. name: "Small",
  4998. height: math.unit(2, "meters")
  4999. },
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(3, "meters")
  5003. },
  5004. {
  5005. name: "Macro",
  5006. height: math.unit(16, "meters"),
  5007. default: true
  5008. },
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5013. {
  5014. front: {
  5015. height: math.unit(2, "meters"),
  5016. weight: math.unit(120, "kg"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/miranda/front.svg",
  5020. extra: 195 / 185,
  5021. bottom: 10.9 / 206.5
  5022. }
  5023. },
  5024. back: {
  5025. height: math.unit(2, "meters"),
  5026. weight: math.unit(120, "kg"),
  5027. name: "Back",
  5028. image: {
  5029. source: "./media/characters/miranda/back.svg",
  5030. extra: 201 / 193,
  5031. bottom: 2.3 / 203.7
  5032. }
  5033. },
  5034. },
  5035. [
  5036. {
  5037. name: "Normal",
  5038. height: math.unit(10, "feet"),
  5039. default: true
  5040. }
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "James", species: ["deer"], tags: ["anthro"] },
  5045. {
  5046. side: {
  5047. height: math.unit(2, "meters"),
  5048. weight: math.unit(100, "kg"),
  5049. name: "Front",
  5050. image: {
  5051. source: "./media/characters/james/front.svg",
  5052. extra: 10 / 8.5
  5053. }
  5054. },
  5055. },
  5056. [
  5057. {
  5058. name: "Normal",
  5059. height: math.unit(8.5, "feet"),
  5060. default: true
  5061. }
  5062. ]
  5063. ))
  5064. characterMakers.push(() => makeCharacter(
  5065. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5066. {
  5067. side: {
  5068. height: math.unit(9.5, "feet"),
  5069. weight: math.unit(2500, "lbs"),
  5070. name: "Side",
  5071. image: {
  5072. source: "./media/characters/heather/side.svg"
  5073. }
  5074. },
  5075. },
  5076. [
  5077. {
  5078. name: "Normal",
  5079. height: math.unit(9.5, "feet"),
  5080. default: true
  5081. }
  5082. ]
  5083. ))
  5084. characterMakers.push(() => makeCharacter(
  5085. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5086. {
  5087. side: {
  5088. height: math.unit(6.5, "feet"),
  5089. weight: math.unit(400, "lbs"),
  5090. name: "Side",
  5091. image: {
  5092. source: "./media/characters/lukas/side.svg",
  5093. extra: 7.25 / 6.5
  5094. }
  5095. },
  5096. },
  5097. [
  5098. {
  5099. name: "Normal",
  5100. height: math.unit(6.5, "feet"),
  5101. default: true
  5102. }
  5103. ]
  5104. ))
  5105. characterMakers.push(() => makeCharacter(
  5106. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5107. {
  5108. side: {
  5109. height: math.unit(5, "feet"),
  5110. weight: math.unit(3000, "lbs"),
  5111. name: "Side",
  5112. image: {
  5113. source: "./media/characters/louise/side.svg"
  5114. }
  5115. },
  5116. },
  5117. [
  5118. {
  5119. name: "Normal",
  5120. height: math.unit(5, "feet"),
  5121. default: true
  5122. }
  5123. ]
  5124. ))
  5125. characterMakers.push(() => makeCharacter(
  5126. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5127. {
  5128. side: {
  5129. height: math.unit(6, "feet"),
  5130. weight: math.unit(150, "lbs"),
  5131. name: "Side",
  5132. image: {
  5133. source: "./media/characters/ramona/side.svg"
  5134. }
  5135. },
  5136. },
  5137. [
  5138. {
  5139. name: "Normal",
  5140. height: math.unit(5.3, "meters"),
  5141. default: true
  5142. },
  5143. {
  5144. name: "Macro",
  5145. height: math.unit(20, "stories")
  5146. },
  5147. {
  5148. name: "Macro+",
  5149. height: math.unit(50, "stories")
  5150. },
  5151. ]
  5152. ))
  5153. characterMakers.push(() => makeCharacter(
  5154. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5155. {
  5156. standing: {
  5157. height: math.unit(5.75, "feet"),
  5158. weight: math.unit(160, "lbs"),
  5159. name: "Standing",
  5160. image: {
  5161. source: "./media/characters/deerpuff/standing.svg",
  5162. extra: 682 / 624
  5163. }
  5164. },
  5165. sitting: {
  5166. height: math.unit(5.75 / 1.79, "feet"),
  5167. weight: math.unit(160, "lbs"),
  5168. name: "Sitting",
  5169. image: {
  5170. source: "./media/characters/deerpuff/sitting.svg",
  5171. bottom: 44 / 400,
  5172. extra: 1
  5173. }
  5174. },
  5175. taurLaying: {
  5176. height: math.unit(6, "feet"),
  5177. weight: math.unit(400, "lbs"),
  5178. name: "Taur (Laying)",
  5179. image: {
  5180. source: "./media/characters/deerpuff/taur-laying.svg"
  5181. }
  5182. },
  5183. },
  5184. [
  5185. {
  5186. name: "Puffball",
  5187. height: math.unit(6, "inches")
  5188. },
  5189. {
  5190. name: "Normalpuff",
  5191. height: math.unit(5.75, "feet")
  5192. },
  5193. {
  5194. name: "Macropuff",
  5195. height: math.unit(1500, "feet"),
  5196. default: true
  5197. },
  5198. {
  5199. name: "Megapuff",
  5200. height: math.unit(500, "miles")
  5201. },
  5202. {
  5203. name: "Gigapuff",
  5204. height: math.unit(250000, "miles")
  5205. },
  5206. {
  5207. name: "Omegapuff",
  5208. height: math.unit(1000, "lightyears")
  5209. },
  5210. ]
  5211. ))
  5212. characterMakers.push(() => makeCharacter(
  5213. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5214. {
  5215. stomping: {
  5216. height: math.unit(6, "feet"),
  5217. weight: math.unit(170, "lbs"),
  5218. name: "Stomping",
  5219. image: {
  5220. source: "./media/characters/vivian/stomping.svg"
  5221. }
  5222. },
  5223. sitting: {
  5224. height: math.unit(6 / 1.75, "feet"),
  5225. weight: math.unit(170, "lbs"),
  5226. name: "Sitting",
  5227. image: {
  5228. source: "./media/characters/vivian/sitting.svg",
  5229. bottom: 1 / 6.4,
  5230. extra: 1,
  5231. }
  5232. },
  5233. },
  5234. [
  5235. {
  5236. name: "Normal",
  5237. height: math.unit(7, "feet"),
  5238. default: true
  5239. },
  5240. {
  5241. name: "Macro",
  5242. height: math.unit(10, "stories")
  5243. },
  5244. {
  5245. name: "Macro+",
  5246. height: math.unit(30, "stories")
  5247. },
  5248. {
  5249. name: "Megamacro",
  5250. height: math.unit(10, "miles")
  5251. },
  5252. {
  5253. name: "Megamacro+",
  5254. height: math.unit(2750000, "meters")
  5255. },
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5260. {
  5261. front: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(160, "lbs"),
  5264. name: "Front",
  5265. image: {
  5266. source: "./media/characters/prince/front.svg",
  5267. extra: 3400 / 3000
  5268. }
  5269. },
  5270. jumping: {
  5271. height: math.unit(6, "feet"),
  5272. weight: math.unit(160, "lbs"),
  5273. name: "Jumping",
  5274. image: {
  5275. source: "./media/characters/prince/jump.svg",
  5276. extra: 2555 / 2134
  5277. }
  5278. },
  5279. },
  5280. [
  5281. {
  5282. name: "Normal",
  5283. height: math.unit(7.75, "feet"),
  5284. default: true
  5285. },
  5286. {
  5287. name: "Not cute",
  5288. height: math.unit(17, "feet")
  5289. },
  5290. {
  5291. name: "I said NOT",
  5292. height: math.unit(91, "feet")
  5293. },
  5294. {
  5295. name: "Please stop",
  5296. height: math.unit(560, "feet")
  5297. },
  5298. {
  5299. name: "What have you done",
  5300. height: math.unit(2200, "feet")
  5301. },
  5302. {
  5303. name: "Deer God",
  5304. height: math.unit(3.6, "miles")
  5305. },
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5310. {
  5311. standing: {
  5312. height: math.unit(6, "feet"),
  5313. weight: math.unit(300, "lbs"),
  5314. name: "Standing",
  5315. image: {
  5316. source: "./media/characters/psymon/standing.svg",
  5317. extra: 1888 / 1810,
  5318. bottom: 0.05
  5319. }
  5320. },
  5321. slithering: {
  5322. height: math.unit(6, "feet"),
  5323. weight: math.unit(300, "lbs"),
  5324. name: "Slithering",
  5325. image: {
  5326. source: "./media/characters/psymon/slithering.svg",
  5327. extra: 1330 / 1224
  5328. }
  5329. },
  5330. slitheringAlt: {
  5331. height: math.unit(6, "feet"),
  5332. weight: math.unit(300, "lbs"),
  5333. name: "Slithering (Alt)",
  5334. image: {
  5335. source: "./media/characters/psymon/slithering-alt.svg",
  5336. extra: 1330 / 1224
  5337. }
  5338. },
  5339. },
  5340. [
  5341. {
  5342. name: "Normal",
  5343. height: math.unit(11.25, "feet"),
  5344. default: true
  5345. },
  5346. {
  5347. name: "Large",
  5348. height: math.unit(27, "feet")
  5349. },
  5350. {
  5351. name: "Giant",
  5352. height: math.unit(87, "feet")
  5353. },
  5354. {
  5355. name: "Macro",
  5356. height: math.unit(365, "feet")
  5357. },
  5358. {
  5359. name: "Megamacro",
  5360. height: math.unit(3, "miles")
  5361. },
  5362. {
  5363. name: "World Serpent",
  5364. height: math.unit(8000, "miles")
  5365. },
  5366. ]
  5367. ))
  5368. characterMakers.push(() => makeCharacter(
  5369. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5370. {
  5371. front: {
  5372. height: math.unit(6, "feet"),
  5373. weight: math.unit(180, "lbs"),
  5374. name: "Front",
  5375. image: {
  5376. source: "./media/characters/daimos/front.svg",
  5377. extra: 4160 / 3897,
  5378. bottom: 0.021
  5379. }
  5380. }
  5381. },
  5382. [
  5383. {
  5384. name: "Normal",
  5385. height: math.unit(8, "feet"),
  5386. default: true
  5387. },
  5388. {
  5389. name: "Big Dog",
  5390. height: math.unit(22, "feet")
  5391. },
  5392. {
  5393. name: "Macro",
  5394. height: math.unit(127, "feet")
  5395. },
  5396. {
  5397. name: "Megamacro",
  5398. height: math.unit(3600, "feet")
  5399. },
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5404. {
  5405. side: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(180, "lbs"),
  5408. name: "Side",
  5409. image: {
  5410. source: "./media/characters/blake/side.svg",
  5411. extra: 1212 / 1120,
  5412. bottom: 0.05
  5413. }
  5414. },
  5415. crouched: {
  5416. height: math.unit(6 * 0.57, "feet"),
  5417. weight: math.unit(180, "lbs"),
  5418. name: "Crouched",
  5419. image: {
  5420. source: "./media/characters/blake/crouched.svg",
  5421. extra: 840 / 587,
  5422. bottom: 0.04
  5423. }
  5424. },
  5425. bent: {
  5426. height: math.unit(6 * 0.75, "feet"),
  5427. weight: math.unit(180, "lbs"),
  5428. name: "Bent",
  5429. image: {
  5430. source: "./media/characters/blake/bent.svg",
  5431. extra: 592 / 544,
  5432. bottom: 0.035
  5433. }
  5434. },
  5435. },
  5436. [
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(8 + 1 / 6, "feet"),
  5440. default: true
  5441. },
  5442. {
  5443. name: "Big Backside",
  5444. height: math.unit(37, "feet")
  5445. },
  5446. {
  5447. name: "Subway Shredder",
  5448. height: math.unit(72, "feet")
  5449. },
  5450. {
  5451. name: "City Carver",
  5452. height: math.unit(1675, "feet")
  5453. },
  5454. {
  5455. name: "Tectonic Tweaker",
  5456. height: math.unit(2300, "miles")
  5457. },
  5458. ]
  5459. ))
  5460. characterMakers.push(() => makeCharacter(
  5461. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5462. {
  5463. front: {
  5464. height: math.unit(6, "feet"),
  5465. weight: math.unit(180, "lbs"),
  5466. name: "Front",
  5467. image: {
  5468. source: "./media/characters/guisetto/front.svg",
  5469. extra: 856 / 817,
  5470. bottom: 0.06
  5471. }
  5472. },
  5473. airborne: {
  5474. height: math.unit(6, "feet"),
  5475. weight: math.unit(180, "lbs"),
  5476. name: "Airborne",
  5477. image: {
  5478. source: "./media/characters/guisetto/airborne.svg",
  5479. extra: 584 / 525
  5480. }
  5481. },
  5482. },
  5483. [
  5484. {
  5485. name: "Normal",
  5486. height: math.unit(10 + 11 / 12, "feet"),
  5487. default: true
  5488. },
  5489. {
  5490. name: "Large",
  5491. height: math.unit(35, "feet")
  5492. },
  5493. {
  5494. name: "Macro",
  5495. height: math.unit(475, "feet")
  5496. },
  5497. ]
  5498. ))
  5499. characterMakers.push(() => makeCharacter(
  5500. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5501. {
  5502. front: {
  5503. height: math.unit(6, "feet"),
  5504. weight: math.unit(180, "lbs"),
  5505. name: "Front",
  5506. image: {
  5507. source: "./media/characters/luxor/front.svg",
  5508. extra: 2940 / 2152
  5509. }
  5510. },
  5511. back: {
  5512. height: math.unit(6, "feet"),
  5513. weight: math.unit(180, "lbs"),
  5514. name: "Back",
  5515. image: {
  5516. source: "./media/characters/luxor/back.svg",
  5517. extra: 1083 / 960
  5518. }
  5519. },
  5520. },
  5521. [
  5522. {
  5523. name: "Normal",
  5524. height: math.unit(5 + 5 / 6, "feet"),
  5525. default: true
  5526. },
  5527. {
  5528. name: "Lamp",
  5529. height: math.unit(50, "feet")
  5530. },
  5531. {
  5532. name: "Lämp",
  5533. height: math.unit(300, "feet")
  5534. },
  5535. {
  5536. name: "The sun is a lamp",
  5537. height: math.unit(250000, "miles")
  5538. },
  5539. ]
  5540. ))
  5541. characterMakers.push(() => makeCharacter(
  5542. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5543. {
  5544. front: {
  5545. height: math.unit(6, "feet"),
  5546. weight: math.unit(50, "lbs"),
  5547. name: "Front",
  5548. image: {
  5549. source: "./media/characters/huoyan/front.svg"
  5550. }
  5551. },
  5552. side: {
  5553. height: math.unit(6, "feet"),
  5554. weight: math.unit(180, "lbs"),
  5555. name: "Side",
  5556. image: {
  5557. source: "./media/characters/huoyan/side.svg"
  5558. }
  5559. },
  5560. },
  5561. [
  5562. {
  5563. name: "Chef",
  5564. height: math.unit(9, "feet")
  5565. },
  5566. {
  5567. name: "Normal",
  5568. height: math.unit(65, "feet"),
  5569. default: true
  5570. },
  5571. {
  5572. name: "Macro",
  5573. height: math.unit(780, "feet")
  5574. },
  5575. {
  5576. name: "Flaming Mountain",
  5577. height: math.unit(4.8, "miles")
  5578. },
  5579. {
  5580. name: "Celestial",
  5581. height: math.unit(765000, "miles")
  5582. },
  5583. ]
  5584. ))
  5585. characterMakers.push(() => makeCharacter(
  5586. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5587. {
  5588. front: {
  5589. height: math.unit(5 + 3 / 4, "feet"),
  5590. weight: math.unit(120, "lbs"),
  5591. name: "Front",
  5592. image: {
  5593. source: "./media/characters/tails/front.svg"
  5594. }
  5595. }
  5596. },
  5597. [
  5598. {
  5599. name: "Normal",
  5600. height: math.unit(5 + 3 / 4, "feet"),
  5601. default: true
  5602. }
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5607. {
  5608. front: {
  5609. height: math.unit(4, "feet"),
  5610. weight: math.unit(50, "lbs"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/rainy/front.svg"
  5614. }
  5615. }
  5616. },
  5617. [
  5618. {
  5619. name: "Macro",
  5620. height: math.unit(800, "feet"),
  5621. default: true
  5622. }
  5623. ]
  5624. ))
  5625. characterMakers.push(() => makeCharacter(
  5626. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5627. {
  5628. front: {
  5629. height: math.unit(6, "feet"),
  5630. weight: math.unit(150, "lbs"),
  5631. name: "Front",
  5632. image: {
  5633. source: "./media/characters/rainier/front.svg"
  5634. }
  5635. }
  5636. },
  5637. [
  5638. {
  5639. name: "Micro",
  5640. height: math.unit(2, "mm"),
  5641. default: true
  5642. }
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5647. {
  5648. front: {
  5649. height: math.unit(8 + 4/12, "feet"),
  5650. name: "Front",
  5651. image: {
  5652. source: "./media/characters/andy-renard/front.svg",
  5653. extra: 1839/1726,
  5654. bottom: 134/1973
  5655. }
  5656. },
  5657. back: {
  5658. height: math.unit(8 + 4/12, "feet"),
  5659. name: "Back",
  5660. image: {
  5661. source: "./media/characters/andy-renard/back.svg",
  5662. extra: 1838/1710,
  5663. bottom: 105/1943
  5664. }
  5665. },
  5666. },
  5667. [
  5668. {
  5669. name: "Tall",
  5670. height: math.unit(8 + 4/12, "feet")
  5671. },
  5672. {
  5673. name: "Mini Macro",
  5674. height: math.unit(15, "feet"),
  5675. default: true
  5676. },
  5677. {
  5678. name: "Macro",
  5679. height: math.unit(100, "feet")
  5680. },
  5681. {
  5682. name: "Mega Macro",
  5683. height: math.unit(1000, "feet")
  5684. },
  5685. {
  5686. name: "Giga Macro",
  5687. height: math.unit(10, "miles")
  5688. },
  5689. {
  5690. name: "God Macro",
  5691. height: math.unit(1, "multiverse")
  5692. },
  5693. ]
  5694. ))
  5695. characterMakers.push(() => makeCharacter(
  5696. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5697. {
  5698. front: {
  5699. height: math.unit(6, "feet"),
  5700. weight: math.unit(210, "lbs"),
  5701. name: "Front",
  5702. image: {
  5703. source: "./media/characters/cimmaron/front-sfw.svg",
  5704. extra: 701 / 676,
  5705. bottom: 0.046
  5706. }
  5707. },
  5708. back: {
  5709. height: math.unit(6, "feet"),
  5710. weight: math.unit(210, "lbs"),
  5711. name: "Back",
  5712. image: {
  5713. source: "./media/characters/cimmaron/back-sfw.svg",
  5714. extra: 701 / 676,
  5715. bottom: 0.046
  5716. }
  5717. },
  5718. frontNsfw: {
  5719. height: math.unit(6, "feet"),
  5720. weight: math.unit(210, "lbs"),
  5721. name: "Front (NSFW)",
  5722. image: {
  5723. source: "./media/characters/cimmaron/front-nsfw.svg",
  5724. extra: 701 / 676,
  5725. bottom: 0.046
  5726. }
  5727. },
  5728. backNsfw: {
  5729. height: math.unit(6, "feet"),
  5730. weight: math.unit(210, "lbs"),
  5731. name: "Back (NSFW)",
  5732. image: {
  5733. source: "./media/characters/cimmaron/back-nsfw.svg",
  5734. extra: 701 / 676,
  5735. bottom: 0.046
  5736. }
  5737. },
  5738. dick: {
  5739. height: math.unit(1.714, "feet"),
  5740. name: "Dick",
  5741. image: {
  5742. source: "./media/characters/cimmaron/dick.svg"
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(6, "feet"),
  5750. default: true
  5751. },
  5752. {
  5753. name: "Macro Mayor",
  5754. height: math.unit(350, "meters")
  5755. },
  5756. ]
  5757. ))
  5758. characterMakers.push(() => makeCharacter(
  5759. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5760. {
  5761. front: {
  5762. height: math.unit(6, "feet"),
  5763. weight: math.unit(200, "lbs"),
  5764. name: "Front",
  5765. image: {
  5766. source: "./media/characters/akari/front.svg",
  5767. extra: 962 / 901,
  5768. bottom: 0.04
  5769. }
  5770. }
  5771. },
  5772. [
  5773. {
  5774. name: "Micro",
  5775. height: math.unit(5, "inches"),
  5776. default: true
  5777. },
  5778. {
  5779. name: "Normal",
  5780. height: math.unit(7, "feet")
  5781. },
  5782. ]
  5783. ))
  5784. characterMakers.push(() => makeCharacter(
  5785. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5786. {
  5787. front: {
  5788. height: math.unit(6, "feet"),
  5789. weight: math.unit(140, "lbs"),
  5790. name: "Front",
  5791. image: {
  5792. source: "./media/characters/cynosura/front.svg",
  5793. extra: 896 / 847
  5794. }
  5795. },
  5796. back: {
  5797. height: math.unit(6, "feet"),
  5798. weight: math.unit(140, "lbs"),
  5799. name: "Back",
  5800. image: {
  5801. source: "./media/characters/cynosura/back.svg",
  5802. extra: 1365 / 1250
  5803. }
  5804. },
  5805. },
  5806. [
  5807. {
  5808. name: "Micro",
  5809. height: math.unit(4, "inches")
  5810. },
  5811. {
  5812. name: "Normal",
  5813. height: math.unit(5.75, "feet"),
  5814. default: true
  5815. },
  5816. {
  5817. name: "Tall",
  5818. height: math.unit(10, "feet")
  5819. },
  5820. {
  5821. name: "Big",
  5822. height: math.unit(20, "feet")
  5823. },
  5824. {
  5825. name: "Macro",
  5826. height: math.unit(50, "feet")
  5827. },
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(13 + 2/12, "feet"),
  5835. weight: math.unit(800, "kg"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/gin/front.svg",
  5839. extra: 1312/1191,
  5840. bottom: 45/1357
  5841. }
  5842. },
  5843. mouth: {
  5844. height: math.unit(2.39 * 1.8, "feet"),
  5845. name: "Mouth",
  5846. image: {
  5847. source: "./media/characters/gin/mouth.svg"
  5848. }
  5849. },
  5850. hand: {
  5851. height: math.unit(1.57 * 2.19, "feet"),
  5852. name: "Hand",
  5853. image: {
  5854. source: "./media/characters/gin/hand.svg"
  5855. }
  5856. },
  5857. foot: {
  5858. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5859. name: "Foot",
  5860. image: {
  5861. source: "./media/characters/gin/foot.svg"
  5862. }
  5863. },
  5864. sole: {
  5865. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5866. name: "Sole",
  5867. image: {
  5868. source: "./media/characters/gin/sole.svg"
  5869. }
  5870. },
  5871. },
  5872. [
  5873. {
  5874. name: "Very Small",
  5875. height: math.unit(13 + 2 / 12, "feet")
  5876. },
  5877. {
  5878. name: "Micro",
  5879. height: math.unit(600, "miles")
  5880. },
  5881. {
  5882. name: "Regular",
  5883. height: math.unit(20, "earths"),
  5884. default: true
  5885. },
  5886. {
  5887. name: "Macro",
  5888. height: math.unit(2.2, "solarradii")
  5889. },
  5890. {
  5891. name: "Teramacro",
  5892. height: math.unit(1.2, "galaxies")
  5893. },
  5894. {
  5895. name: "Omegamacro",
  5896. height: math.unit(200, "universes")
  5897. },
  5898. ]
  5899. ))
  5900. characterMakers.push(() => makeCharacter(
  5901. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5902. {
  5903. front: {
  5904. height: math.unit(6 + 1 / 6, "feet"),
  5905. weight: math.unit(178, "lbs"),
  5906. name: "Front",
  5907. image: {
  5908. source: "./media/characters/guy/front.svg"
  5909. }
  5910. }
  5911. },
  5912. [
  5913. {
  5914. name: "Normal",
  5915. height: math.unit(6 + 1 / 6, "feet"),
  5916. default: true
  5917. },
  5918. {
  5919. name: "Large",
  5920. height: math.unit(25 + 7 / 12, "feet")
  5921. },
  5922. {
  5923. name: "Macro",
  5924. height: math.unit(60 + 9 / 12, "feet")
  5925. },
  5926. {
  5927. name: "Macro+",
  5928. height: math.unit(246, "feet")
  5929. },
  5930. {
  5931. name: "Macro++",
  5932. height: math.unit(878, "feet")
  5933. }
  5934. ]
  5935. ))
  5936. characterMakers.push(() => makeCharacter(
  5937. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5938. {
  5939. front: {
  5940. height: math.unit(9, "feet"),
  5941. weight: math.unit(800, "lbs"),
  5942. name: "Front",
  5943. image: {
  5944. source: "./media/characters/tiberius/front.svg",
  5945. extra: 2295 / 2071
  5946. }
  5947. },
  5948. back: {
  5949. height: math.unit(9, "feet"),
  5950. weight: math.unit(800, "lbs"),
  5951. name: "Back",
  5952. image: {
  5953. source: "./media/characters/tiberius/back.svg",
  5954. extra: 2373 / 2160
  5955. }
  5956. },
  5957. },
  5958. [
  5959. {
  5960. name: "Normal",
  5961. height: math.unit(9, "feet"),
  5962. default: true
  5963. }
  5964. ]
  5965. ))
  5966. characterMakers.push(() => makeCharacter(
  5967. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5968. {
  5969. front: {
  5970. height: math.unit(6, "feet"),
  5971. weight: math.unit(600, "lbs"),
  5972. name: "Front",
  5973. image: {
  5974. source: "./media/characters/surgo/front.svg",
  5975. extra: 3591 / 2227
  5976. }
  5977. },
  5978. back: {
  5979. height: math.unit(6, "feet"),
  5980. weight: math.unit(600, "lbs"),
  5981. name: "Back",
  5982. image: {
  5983. source: "./media/characters/surgo/back.svg",
  5984. extra: 3557 / 2228
  5985. }
  5986. },
  5987. laying: {
  5988. height: math.unit(6 * 0.85, "feet"),
  5989. weight: math.unit(600, "lbs"),
  5990. name: "Laying",
  5991. image: {
  5992. source: "./media/characters/surgo/laying.svg"
  5993. }
  5994. },
  5995. },
  5996. [
  5997. {
  5998. name: "Normal",
  5999. height: math.unit(6, "feet"),
  6000. default: true
  6001. }
  6002. ]
  6003. ))
  6004. characterMakers.push(() => makeCharacter(
  6005. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6006. {
  6007. side: {
  6008. height: math.unit(6, "feet"),
  6009. weight: math.unit(150, "lbs"),
  6010. name: "Side",
  6011. image: {
  6012. source: "./media/characters/cibus/side.svg",
  6013. extra: 800 / 400
  6014. }
  6015. },
  6016. },
  6017. [
  6018. {
  6019. name: "Normal",
  6020. height: math.unit(6, "feet"),
  6021. default: true
  6022. }
  6023. ]
  6024. ))
  6025. characterMakers.push(() => makeCharacter(
  6026. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6027. {
  6028. front: {
  6029. height: math.unit(6, "feet"),
  6030. weight: math.unit(240, "lbs"),
  6031. name: "Front",
  6032. image: {
  6033. source: "./media/characters/nibbles/front.svg"
  6034. }
  6035. },
  6036. side: {
  6037. height: math.unit(6, "feet"),
  6038. weight: math.unit(240, "lbs"),
  6039. name: "Side",
  6040. image: {
  6041. source: "./media/characters/nibbles/side.svg"
  6042. }
  6043. },
  6044. },
  6045. [
  6046. {
  6047. name: "Normal",
  6048. height: math.unit(9, "feet"),
  6049. default: true
  6050. }
  6051. ]
  6052. ))
  6053. characterMakers.push(() => makeCharacter(
  6054. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6055. {
  6056. side: {
  6057. height: math.unit(5 + 1 / 6, "feet"),
  6058. weight: math.unit(130, "lbs"),
  6059. name: "Side",
  6060. image: {
  6061. source: "./media/characters/rikky/side.svg",
  6062. extra: 851 / 801
  6063. }
  6064. },
  6065. },
  6066. [
  6067. {
  6068. name: "Normal",
  6069. height: math.unit(5 + 1 / 6, "feet")
  6070. },
  6071. {
  6072. name: "Macro",
  6073. height: math.unit(152, "feet"),
  6074. default: true
  6075. },
  6076. {
  6077. name: "Megamacro",
  6078. height: math.unit(7, "miles")
  6079. }
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6084. {
  6085. side: {
  6086. height: math.unit(370, "cm"),
  6087. weight: math.unit(350, "lbs"),
  6088. name: "Side",
  6089. image: {
  6090. source: "./media/characters/malfressa/side.svg"
  6091. }
  6092. },
  6093. walking: {
  6094. height: math.unit(370, "cm"),
  6095. weight: math.unit(350, "lbs"),
  6096. name: "Walking",
  6097. image: {
  6098. source: "./media/characters/malfressa/walking.svg"
  6099. }
  6100. },
  6101. feral: {
  6102. height: math.unit(2500, "cm"),
  6103. weight: math.unit(100000, "lbs"),
  6104. name: "Feral",
  6105. image: {
  6106. source: "./media/characters/malfressa/feral.svg",
  6107. extra: 2108 / 837,
  6108. bottom: 0.02
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Normal",
  6115. height: math.unit(370, "cm")
  6116. },
  6117. {
  6118. name: "Macro",
  6119. height: math.unit(300, "meters"),
  6120. default: true
  6121. }
  6122. ]
  6123. ))
  6124. characterMakers.push(() => makeCharacter(
  6125. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6126. {
  6127. front: {
  6128. height: math.unit(6, "feet"),
  6129. weight: math.unit(60, "kg"),
  6130. name: "Front",
  6131. image: {
  6132. source: "./media/characters/jaro/front.svg"
  6133. }
  6134. },
  6135. back: {
  6136. height: math.unit(6, "feet"),
  6137. weight: math.unit(60, "kg"),
  6138. name: "Back",
  6139. image: {
  6140. source: "./media/characters/jaro/back.svg"
  6141. }
  6142. },
  6143. },
  6144. [
  6145. {
  6146. name: "Micro",
  6147. height: math.unit(7, "inches")
  6148. },
  6149. {
  6150. name: "Normal",
  6151. height: math.unit(5.5, "feet"),
  6152. default: true
  6153. },
  6154. {
  6155. name: "Minimacro",
  6156. height: math.unit(20, "feet")
  6157. },
  6158. {
  6159. name: "Macro",
  6160. height: math.unit(200, "meters")
  6161. }
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6166. {
  6167. front: {
  6168. height: math.unit(6, "feet"),
  6169. weight: math.unit(195, "lb"),
  6170. name: "Front",
  6171. image: {
  6172. source: "./media/characters/rogue/front.svg"
  6173. }
  6174. },
  6175. },
  6176. [
  6177. {
  6178. name: "Macro",
  6179. height: math.unit(90, "feet"),
  6180. default: true
  6181. },
  6182. ]
  6183. ))
  6184. characterMakers.push(() => makeCharacter(
  6185. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6186. {
  6187. front: {
  6188. height: math.unit(5 + 8 / 12, "feet"),
  6189. weight: math.unit(140, "lb"),
  6190. name: "Front",
  6191. image: {
  6192. source: "./media/characters/piper/front.svg",
  6193. extra: 3948/3655,
  6194. bottom: 0/3948
  6195. }
  6196. },
  6197. },
  6198. [
  6199. {
  6200. name: "Micro",
  6201. height: math.unit(2, "inches")
  6202. },
  6203. {
  6204. name: "Normal",
  6205. height: math.unit(5 + 8 / 12, "feet")
  6206. },
  6207. {
  6208. name: "Macro",
  6209. height: math.unit(250, "feet"),
  6210. default: true
  6211. },
  6212. {
  6213. name: "Megamacro",
  6214. height: math.unit(7, "miles")
  6215. },
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6220. {
  6221. front: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(220, "lb"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/gemini/front.svg"
  6227. }
  6228. },
  6229. back: {
  6230. height: math.unit(6, "feet"),
  6231. weight: math.unit(220, "lb"),
  6232. name: "Back",
  6233. image: {
  6234. source: "./media/characters/gemini/back.svg"
  6235. }
  6236. },
  6237. kneeling: {
  6238. height: math.unit(6 / 1.5, "feet"),
  6239. weight: math.unit(220, "lb"),
  6240. name: "Kneeling",
  6241. image: {
  6242. source: "./media/characters/gemini/kneeling.svg",
  6243. bottom: 0.02
  6244. }
  6245. },
  6246. },
  6247. [
  6248. {
  6249. name: "Macro",
  6250. height: math.unit(300, "meters"),
  6251. default: true
  6252. },
  6253. {
  6254. name: "Megamacro",
  6255. height: math.unit(6900, "meters")
  6256. },
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6261. {
  6262. anthro: {
  6263. height: math.unit(2.35, "meters"),
  6264. weight: math.unit(73, "kg"),
  6265. name: "Anthro",
  6266. image: {
  6267. source: "./media/characters/alicia/anthro.svg",
  6268. extra: 2571 / 2385,
  6269. bottom: 75 / 2648
  6270. }
  6271. },
  6272. paw: {
  6273. height: math.unit(1.32, "feet"),
  6274. name: "Paw",
  6275. image: {
  6276. source: "./media/characters/alicia/paw.svg"
  6277. }
  6278. },
  6279. feral: {
  6280. height: math.unit(1.69, "meters"),
  6281. weight: math.unit(73, "kg"),
  6282. name: "Feral",
  6283. image: {
  6284. source: "./media/characters/alicia/feral.svg",
  6285. extra: 2123 / 1715,
  6286. bottom: 222 / 2349
  6287. }
  6288. },
  6289. },
  6290. [
  6291. {
  6292. name: "Normal",
  6293. height: math.unit(2.35, "meters")
  6294. },
  6295. {
  6296. name: "Macro",
  6297. height: math.unit(60, "meters"),
  6298. default: true
  6299. },
  6300. {
  6301. name: "Megamacro",
  6302. height: math.unit(10000, "kilometers")
  6303. },
  6304. ]
  6305. ))
  6306. characterMakers.push(() => makeCharacter(
  6307. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6308. {
  6309. front: {
  6310. height: math.unit(7, "feet"),
  6311. weight: math.unit(250, "lbs"),
  6312. name: "Front",
  6313. image: {
  6314. source: "./media/characters/archy/front.svg"
  6315. }
  6316. }
  6317. },
  6318. [
  6319. {
  6320. name: "Micro",
  6321. height: math.unit(1, "inch")
  6322. },
  6323. {
  6324. name: "Shorty",
  6325. height: math.unit(5, "feet")
  6326. },
  6327. {
  6328. name: "Normal",
  6329. height: math.unit(7, "feet")
  6330. },
  6331. {
  6332. name: "Macro",
  6333. height: math.unit(600, "meters"),
  6334. default: true
  6335. },
  6336. {
  6337. name: "Megamacro",
  6338. height: math.unit(1, "mile")
  6339. },
  6340. ]
  6341. ))
  6342. characterMakers.push(() => makeCharacter(
  6343. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6344. {
  6345. front: {
  6346. height: math.unit(1.65, "meters"),
  6347. weight: math.unit(74, "kg"),
  6348. name: "Front",
  6349. image: {
  6350. source: "./media/characters/berri/front.svg",
  6351. extra: 857 / 837,
  6352. bottom: 18 / 877
  6353. }
  6354. },
  6355. bum: {
  6356. height: math.unit(1.46, "feet"),
  6357. name: "Bum",
  6358. image: {
  6359. source: "./media/characters/berri/bum.svg"
  6360. }
  6361. },
  6362. mouth: {
  6363. height: math.unit(0.44, "feet"),
  6364. name: "Mouth",
  6365. image: {
  6366. source: "./media/characters/berri/mouth.svg"
  6367. }
  6368. },
  6369. paw: {
  6370. height: math.unit(0.826, "feet"),
  6371. name: "Paw",
  6372. image: {
  6373. source: "./media/characters/berri/paw.svg"
  6374. }
  6375. },
  6376. },
  6377. [
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(1.65, "meters")
  6381. },
  6382. {
  6383. name: "Macro",
  6384. height: math.unit(60, "m"),
  6385. default: true
  6386. },
  6387. {
  6388. name: "Megamacro",
  6389. height: math.unit(9.213, "km")
  6390. },
  6391. {
  6392. name: "Planet Eater",
  6393. height: math.unit(489, "megameters")
  6394. },
  6395. {
  6396. name: "Teramacro",
  6397. height: math.unit(2471635000000, "meters")
  6398. },
  6399. {
  6400. name: "Examacro",
  6401. height: math.unit(8.0624e+26, "meters")
  6402. }
  6403. ]
  6404. ))
  6405. characterMakers.push(() => makeCharacter(
  6406. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6407. {
  6408. front: {
  6409. height: math.unit(1.72, "meters"),
  6410. weight: math.unit(68, "kg"),
  6411. name: "Front",
  6412. image: {
  6413. source: "./media/characters/lexi/front.svg"
  6414. }
  6415. }
  6416. },
  6417. [
  6418. {
  6419. name: "Very Smol",
  6420. height: math.unit(10, "mm")
  6421. },
  6422. {
  6423. name: "Micro",
  6424. height: math.unit(6.8, "cm"),
  6425. default: true
  6426. },
  6427. {
  6428. name: "Normal",
  6429. height: math.unit(1.72, "m")
  6430. }
  6431. ]
  6432. ))
  6433. characterMakers.push(() => makeCharacter(
  6434. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6435. {
  6436. front: {
  6437. height: math.unit(1.69, "meters"),
  6438. weight: math.unit(68, "kg"),
  6439. name: "Front",
  6440. image: {
  6441. source: "./media/characters/martin/front.svg",
  6442. extra: 596 / 581
  6443. }
  6444. }
  6445. },
  6446. [
  6447. {
  6448. name: "Micro",
  6449. height: math.unit(6.85, "cm"),
  6450. default: true
  6451. },
  6452. {
  6453. name: "Normal",
  6454. height: math.unit(1.69, "m")
  6455. }
  6456. ]
  6457. ))
  6458. characterMakers.push(() => makeCharacter(
  6459. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6460. {
  6461. front: {
  6462. height: math.unit(1.69, "meters"),
  6463. weight: math.unit(68, "kg"),
  6464. name: "Front",
  6465. image: {
  6466. source: "./media/characters/juno/front.svg"
  6467. }
  6468. }
  6469. },
  6470. [
  6471. {
  6472. name: "Micro",
  6473. height: math.unit(7, "cm")
  6474. },
  6475. {
  6476. name: "Normal",
  6477. height: math.unit(1.89, "m")
  6478. },
  6479. {
  6480. name: "Macro",
  6481. height: math.unit(353, "meters"),
  6482. default: true
  6483. }
  6484. ]
  6485. ))
  6486. characterMakers.push(() => makeCharacter(
  6487. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6488. {
  6489. front: {
  6490. height: math.unit(1.93, "meters"),
  6491. weight: math.unit(83, "kg"),
  6492. name: "Front",
  6493. image: {
  6494. source: "./media/characters/samantha/front.svg"
  6495. }
  6496. },
  6497. frontClothed: {
  6498. height: math.unit(1.93, "meters"),
  6499. weight: math.unit(83, "kg"),
  6500. name: "Front (Clothed)",
  6501. image: {
  6502. source: "./media/characters/samantha/front-clothed.svg"
  6503. }
  6504. },
  6505. back: {
  6506. height: math.unit(1.93, "meters"),
  6507. weight: math.unit(83, "kg"),
  6508. name: "Back",
  6509. image: {
  6510. source: "./media/characters/samantha/back.svg"
  6511. }
  6512. },
  6513. },
  6514. [
  6515. {
  6516. name: "Normal",
  6517. height: math.unit(1.93, "m")
  6518. },
  6519. {
  6520. name: "Macro",
  6521. height: math.unit(74, "meters"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Macro+",
  6526. height: math.unit(223, "meters"),
  6527. },
  6528. {
  6529. name: "Megamacro",
  6530. height: math.unit(8381, "meters"),
  6531. },
  6532. {
  6533. name: "Megamacro+",
  6534. height: math.unit(12000, "kilometers")
  6535. },
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6540. {
  6541. front: {
  6542. height: math.unit(1.92, "meters"),
  6543. weight: math.unit(80, "kg"),
  6544. name: "Front",
  6545. image: {
  6546. source: "./media/characters/dr-clay/front.svg"
  6547. }
  6548. },
  6549. frontClothed: {
  6550. height: math.unit(1.92, "meters"),
  6551. weight: math.unit(80, "kg"),
  6552. name: "Front (Clothed)",
  6553. image: {
  6554. source: "./media/characters/dr-clay/front-clothed.svg"
  6555. }
  6556. }
  6557. },
  6558. [
  6559. {
  6560. name: "Normal",
  6561. height: math.unit(1.92, "m")
  6562. },
  6563. {
  6564. name: "Macro",
  6565. height: math.unit(214, "meters"),
  6566. default: true
  6567. },
  6568. {
  6569. name: "Macro+",
  6570. height: math.unit(12.237, "meters"),
  6571. },
  6572. {
  6573. name: "Megamacro",
  6574. height: math.unit(557, "megameters"),
  6575. },
  6576. {
  6577. name: "Unimaginable",
  6578. height: math.unit(120e9, "lightyears")
  6579. },
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(2, "meters"),
  6587. weight: math.unit(80, "kg"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6591. }
  6592. }
  6593. },
  6594. [
  6595. {
  6596. name: "Teramacro",
  6597. height: math.unit(500000, "lightyears"),
  6598. default: true
  6599. },
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6604. {
  6605. crux: {
  6606. height: math.unit(2, "meters"),
  6607. weight: math.unit(150, "kg"),
  6608. name: "Crux",
  6609. image: {
  6610. source: "./media/characters/vemus/crux.svg",
  6611. extra: 1074/936,
  6612. bottom: 23/1097
  6613. }
  6614. },
  6615. skunkTanuki: {
  6616. height: math.unit(2, "meters"),
  6617. weight: math.unit(150, "kg"),
  6618. name: "Skunk-Tanuki",
  6619. image: {
  6620. source: "./media/characters/vemus/skunk-tanuki.svg",
  6621. extra: 926/893,
  6622. bottom: 20/946
  6623. }
  6624. },
  6625. },
  6626. [
  6627. {
  6628. name: "Normal",
  6629. height: math.unit(3.75, "meters"),
  6630. default: true
  6631. },
  6632. {
  6633. name: "Big",
  6634. height: math.unit(8, "meters")
  6635. },
  6636. {
  6637. name: "Macro",
  6638. height: math.unit(100, "meters")
  6639. },
  6640. {
  6641. name: "Macro+",
  6642. height: math.unit(1500, "meters")
  6643. },
  6644. {
  6645. name: "Stellar",
  6646. height: math.unit(14e8, "meters")
  6647. },
  6648. ]
  6649. ))
  6650. characterMakers.push(() => makeCharacter(
  6651. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6652. {
  6653. front: {
  6654. height: math.unit(2, "meters"),
  6655. weight: math.unit(70, "kg"),
  6656. name: "Front",
  6657. image: {
  6658. source: "./media/characters/beherit/front.svg",
  6659. extra: 1408 / 1242
  6660. }
  6661. }
  6662. },
  6663. [
  6664. {
  6665. name: "Normal",
  6666. height: math.unit(6, "feet")
  6667. },
  6668. {
  6669. name: "Lorg",
  6670. height: math.unit(25, "feet"),
  6671. default: true
  6672. },
  6673. {
  6674. name: "Lorger",
  6675. height: math.unit(75, "feet")
  6676. },
  6677. {
  6678. name: "Macro",
  6679. height: math.unit(200, "meters")
  6680. },
  6681. ]
  6682. ))
  6683. characterMakers.push(() => makeCharacter(
  6684. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6685. {
  6686. front: {
  6687. height: math.unit(2, "meters"),
  6688. weight: math.unit(150, "kg"),
  6689. name: "Front",
  6690. image: {
  6691. source: "./media/characters/everett/front.svg",
  6692. extra: 2038 / 1737,
  6693. bottom: 0.03
  6694. }
  6695. },
  6696. paw: {
  6697. height: math.unit(2 / 3.6, "meters"),
  6698. name: "Paw",
  6699. image: {
  6700. source: "./media/characters/everett/paw.svg"
  6701. }
  6702. },
  6703. },
  6704. [
  6705. {
  6706. name: "Normal",
  6707. height: math.unit(15, "feet"),
  6708. default: true
  6709. },
  6710. {
  6711. name: "Lorg",
  6712. height: math.unit(70, "feet"),
  6713. default: true
  6714. },
  6715. {
  6716. name: "Lorger",
  6717. height: math.unit(250, "feet")
  6718. },
  6719. {
  6720. name: "Macro",
  6721. height: math.unit(500, "meters")
  6722. },
  6723. ]
  6724. ))
  6725. characterMakers.push(() => makeCharacter(
  6726. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6727. {
  6728. front: {
  6729. height: math.unit(2, "meters"),
  6730. weight: math.unit(86, "kg"),
  6731. name: "Front",
  6732. image: {
  6733. source: "./media/characters/rose/front.svg",
  6734. extra: 1785/1636,
  6735. bottom: 30/1815
  6736. }
  6737. },
  6738. frontSporty: {
  6739. height: math.unit(2, "meters"),
  6740. weight: math.unit(86, "kg"),
  6741. name: "Front (Sporty)",
  6742. image: {
  6743. source: "./media/characters/rose/front-sporty.svg",
  6744. extra: 350/335,
  6745. bottom: 10/360
  6746. }
  6747. },
  6748. frontAlt: {
  6749. height: math.unit(1.6, "meters"),
  6750. weight: math.unit(86, "kg"),
  6751. name: "Front (Alt)",
  6752. image: {
  6753. source: "./media/characters/rose/front-alt.svg",
  6754. extra: 299/283,
  6755. bottom: 3/302
  6756. }
  6757. },
  6758. plush: {
  6759. height: math.unit(2, "meters"),
  6760. weight: math.unit(86/3, "kg"),
  6761. name: "Plush",
  6762. image: {
  6763. source: "./media/characters/rose/plush.svg",
  6764. extra: 361/337,
  6765. bottom: 11/372
  6766. }
  6767. },
  6768. },
  6769. [
  6770. {
  6771. name: "True Micro",
  6772. height: math.unit(9, "cm")
  6773. },
  6774. {
  6775. name: "Micro",
  6776. height: math.unit(16, "cm")
  6777. },
  6778. {
  6779. name: "Normal",
  6780. height: math.unit(1.85, "meters"),
  6781. default: true
  6782. },
  6783. {
  6784. name: "Mini-Macro",
  6785. height: math.unit(5, "meters")
  6786. },
  6787. {
  6788. name: "Macro",
  6789. height: math.unit(15, "meters")
  6790. },
  6791. {
  6792. name: "True Macro",
  6793. height: math.unit(40, "meters")
  6794. },
  6795. {
  6796. name: "City Scale",
  6797. height: math.unit(1, "km")
  6798. },
  6799. ]
  6800. ))
  6801. characterMakers.push(() => makeCharacter(
  6802. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6803. {
  6804. front: {
  6805. height: math.unit(2, "meters"),
  6806. weight: math.unit(350, "lbs"),
  6807. name: "Front",
  6808. image: {
  6809. source: "./media/characters/regal/front.svg"
  6810. }
  6811. },
  6812. back: {
  6813. height: math.unit(2, "meters"),
  6814. weight: math.unit(350, "lbs"),
  6815. name: "Back",
  6816. image: {
  6817. source: "./media/characters/regal/back.svg"
  6818. }
  6819. },
  6820. },
  6821. [
  6822. {
  6823. name: "Macro",
  6824. height: math.unit(350, "feet"),
  6825. default: true
  6826. }
  6827. ]
  6828. ))
  6829. characterMakers.push(() => makeCharacter(
  6830. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6831. {
  6832. front: {
  6833. height: math.unit(4 + 11 / 12, "feet"),
  6834. weight: math.unit(100, "lbs"),
  6835. name: "Front",
  6836. image: {
  6837. source: "./media/characters/opal/front.svg"
  6838. }
  6839. },
  6840. frontAlt: {
  6841. height: math.unit(4 + 11 / 12, "feet"),
  6842. weight: math.unit(100, "lbs"),
  6843. name: "Front (Alt)",
  6844. image: {
  6845. source: "./media/characters/opal/front-alt.svg"
  6846. }
  6847. },
  6848. },
  6849. [
  6850. {
  6851. name: "Small",
  6852. height: math.unit(4 + 11 / 12, "feet")
  6853. },
  6854. {
  6855. name: "Normal",
  6856. height: math.unit(20, "feet"),
  6857. default: true
  6858. },
  6859. {
  6860. name: "Macro",
  6861. height: math.unit(120, "feet")
  6862. },
  6863. {
  6864. name: "Megamacro",
  6865. height: math.unit(80, "miles")
  6866. },
  6867. {
  6868. name: "True Size",
  6869. height: math.unit(100000, "lightyears")
  6870. },
  6871. ]
  6872. ))
  6873. characterMakers.push(() => makeCharacter(
  6874. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6875. {
  6876. front: {
  6877. height: math.unit(6, "feet"),
  6878. weight: math.unit(200, "lbs"),
  6879. name: "Front",
  6880. image: {
  6881. source: "./media/characters/vector-wuff/front.svg"
  6882. }
  6883. }
  6884. },
  6885. [
  6886. {
  6887. name: "Normal",
  6888. height: math.unit(2.8, "meters")
  6889. },
  6890. {
  6891. name: "Macro",
  6892. height: math.unit(450, "meters"),
  6893. default: true
  6894. },
  6895. {
  6896. name: "Megamacro",
  6897. height: math.unit(15, "kilometers")
  6898. }
  6899. ]
  6900. ))
  6901. characterMakers.push(() => makeCharacter(
  6902. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6903. {
  6904. front: {
  6905. height: math.unit(6, "feet"),
  6906. weight: math.unit(256, "lbs"),
  6907. name: "Front",
  6908. image: {
  6909. source: "./media/characters/dannik/front.svg"
  6910. }
  6911. }
  6912. },
  6913. [
  6914. {
  6915. name: "Macro",
  6916. height: math.unit(69.57, "meters"),
  6917. default: true
  6918. },
  6919. ]
  6920. ))
  6921. characterMakers.push(() => makeCharacter(
  6922. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6923. {
  6924. front: {
  6925. height: math.unit(6, "feet"),
  6926. weight: math.unit(120, "lbs"),
  6927. name: "Front",
  6928. image: {
  6929. source: "./media/characters/azura-saharah/front.svg"
  6930. }
  6931. },
  6932. back: {
  6933. height: math.unit(6, "feet"),
  6934. weight: math.unit(120, "lbs"),
  6935. name: "Back",
  6936. image: {
  6937. source: "./media/characters/azura-saharah/back.svg"
  6938. }
  6939. },
  6940. },
  6941. [
  6942. {
  6943. name: "Macro",
  6944. height: math.unit(100, "feet"),
  6945. default: true
  6946. },
  6947. ]
  6948. ))
  6949. characterMakers.push(() => makeCharacter(
  6950. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6951. {
  6952. side: {
  6953. height: math.unit(5 + 4 / 12, "feet"),
  6954. weight: math.unit(163, "lbs"),
  6955. name: "Side",
  6956. image: {
  6957. source: "./media/characters/kennedy/side.svg"
  6958. }
  6959. }
  6960. },
  6961. [
  6962. {
  6963. name: "Standard Doggo",
  6964. height: math.unit(5 + 4 / 12, "feet")
  6965. },
  6966. {
  6967. name: "Big Doggo",
  6968. height: math.unit(25 + 3 / 12, "feet"),
  6969. default: true
  6970. },
  6971. ]
  6972. ))
  6973. characterMakers.push(() => makeCharacter(
  6974. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6975. {
  6976. front: {
  6977. height: math.unit(6, "feet"),
  6978. weight: math.unit(90, "lbs"),
  6979. name: "Front",
  6980. image: {
  6981. source: "./media/characters/odi-lunar/front.svg"
  6982. }
  6983. }
  6984. },
  6985. [
  6986. {
  6987. name: "Micro",
  6988. height: math.unit(3, "inches"),
  6989. default: true
  6990. },
  6991. {
  6992. name: "Normal",
  6993. height: math.unit(5.5, "feet")
  6994. }
  6995. ]
  6996. ))
  6997. characterMakers.push(() => makeCharacter(
  6998. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6999. {
  7000. back: {
  7001. height: math.unit(6, "feet"),
  7002. weight: math.unit(220, "lbs"),
  7003. name: "Back",
  7004. image: {
  7005. source: "./media/characters/mandake/back.svg"
  7006. }
  7007. }
  7008. },
  7009. [
  7010. {
  7011. name: "Normal",
  7012. height: math.unit(7, "feet"),
  7013. default: true
  7014. },
  7015. {
  7016. name: "Macro",
  7017. height: math.unit(78, "feet")
  7018. },
  7019. {
  7020. name: "Macro+",
  7021. height: math.unit(300, "meters")
  7022. },
  7023. {
  7024. name: "Macro++",
  7025. height: math.unit(2400, "feet")
  7026. },
  7027. {
  7028. name: "Megamacro",
  7029. height: math.unit(5167, "meters")
  7030. },
  7031. {
  7032. name: "Gigamacro",
  7033. height: math.unit(41769, "miles")
  7034. },
  7035. ]
  7036. ))
  7037. characterMakers.push(() => makeCharacter(
  7038. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7039. {
  7040. front: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(120, "lbs"),
  7043. name: "Front",
  7044. image: {
  7045. source: "./media/characters/yozey/front.svg"
  7046. }
  7047. },
  7048. frontAlt: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(120, "lbs"),
  7051. name: "Front (Alt)",
  7052. image: {
  7053. source: "./media/characters/yozey/front-alt.svg"
  7054. }
  7055. },
  7056. side: {
  7057. height: math.unit(6, "feet"),
  7058. weight: math.unit(120, "lbs"),
  7059. name: "Side",
  7060. image: {
  7061. source: "./media/characters/yozey/side.svg"
  7062. }
  7063. },
  7064. },
  7065. [
  7066. {
  7067. name: "Micro",
  7068. height: math.unit(3, "inches"),
  7069. default: true
  7070. },
  7071. {
  7072. name: "Normal",
  7073. height: math.unit(6, "feet")
  7074. }
  7075. ]
  7076. ))
  7077. characterMakers.push(() => makeCharacter(
  7078. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7079. {
  7080. front: {
  7081. height: math.unit(6, "feet"),
  7082. weight: math.unit(103, "lbs"),
  7083. name: "Front",
  7084. image: {
  7085. source: "./media/characters/valeska-voss/front.svg"
  7086. }
  7087. }
  7088. },
  7089. [
  7090. {
  7091. name: "Mini-Sized Sub",
  7092. height: math.unit(3.1, "inches")
  7093. },
  7094. {
  7095. name: "Mid-Sized Sub",
  7096. height: math.unit(6.2, "inches")
  7097. },
  7098. {
  7099. name: "Full-Sized Sub",
  7100. height: math.unit(9.3, "inches")
  7101. },
  7102. {
  7103. name: "Normal",
  7104. height: math.unit(5 + 2 / 12, "foot"),
  7105. default: true
  7106. },
  7107. ]
  7108. ))
  7109. characterMakers.push(() => makeCharacter(
  7110. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7111. {
  7112. front: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(160, "lbs"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/gene-zeta/front.svg",
  7118. extra: 3006 / 2826,
  7119. bottom: 182 / 3188
  7120. }
  7121. }
  7122. },
  7123. [
  7124. {
  7125. name: "Micro",
  7126. height: math.unit(6, "inches")
  7127. },
  7128. {
  7129. name: "Normal",
  7130. height: math.unit(5 + 11 / 12, "foot"),
  7131. default: true
  7132. },
  7133. {
  7134. name: "Macro",
  7135. height: math.unit(140, "feet")
  7136. },
  7137. {
  7138. name: "Supercharged",
  7139. height: math.unit(2500, "feet")
  7140. },
  7141. ]
  7142. ))
  7143. characterMakers.push(() => makeCharacter(
  7144. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7145. {
  7146. front: {
  7147. height: math.unit(6, "feet"),
  7148. weight: math.unit(350, "lbs"),
  7149. name: "Front",
  7150. image: {
  7151. source: "./media/characters/razinox/front.svg",
  7152. extra: 1686 / 1548,
  7153. bottom: 28.2 / 1868
  7154. }
  7155. },
  7156. back: {
  7157. height: math.unit(6, "feet"),
  7158. weight: math.unit(350, "lbs"),
  7159. name: "Back",
  7160. image: {
  7161. source: "./media/characters/razinox/back.svg",
  7162. extra: 1660 / 1590,
  7163. bottom: 15 / 1665
  7164. }
  7165. },
  7166. },
  7167. [
  7168. {
  7169. name: "Normal",
  7170. height: math.unit(10 + 8 / 12, "foot")
  7171. },
  7172. {
  7173. name: "Minimacro",
  7174. height: math.unit(15, "foot")
  7175. },
  7176. {
  7177. name: "Macro",
  7178. height: math.unit(60, "foot"),
  7179. default: true
  7180. },
  7181. {
  7182. name: "Megamacro",
  7183. height: math.unit(5, "miles")
  7184. },
  7185. {
  7186. name: "Gigamacro",
  7187. height: math.unit(6000, "miles")
  7188. },
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7193. {
  7194. front: {
  7195. height: math.unit(6, "feet"),
  7196. weight: math.unit(150, "lbs"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/cobalt/front.svg"
  7200. }
  7201. }
  7202. },
  7203. [
  7204. {
  7205. name: "Normal",
  7206. height: math.unit(8 + 1 / 12, "foot")
  7207. },
  7208. {
  7209. name: "Macro",
  7210. height: math.unit(111, "foot"),
  7211. default: true
  7212. },
  7213. {
  7214. name: "Supracosmic",
  7215. height: math.unit(1e42, "feet")
  7216. },
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7221. {
  7222. front: {
  7223. height: math.unit(6, "feet"),
  7224. weight: math.unit(140, "lbs"),
  7225. name: "Front",
  7226. image: {
  7227. source: "./media/characters/amanda/front.svg"
  7228. }
  7229. }
  7230. },
  7231. [
  7232. {
  7233. name: "Micro",
  7234. height: math.unit(5, "inches"),
  7235. default: true
  7236. },
  7237. ]
  7238. ))
  7239. characterMakers.push(() => makeCharacter(
  7240. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7241. {
  7242. front: {
  7243. height: math.unit(2.75, "meters"),
  7244. weight: math.unit(1200, "lb"),
  7245. name: "Front",
  7246. image: {
  7247. source: "./media/characters/teal/front.svg",
  7248. extra: 2463 / 2320,
  7249. bottom: 166 / 2629
  7250. }
  7251. },
  7252. back: {
  7253. height: math.unit(2.75, "meters"),
  7254. weight: math.unit(1200, "lb"),
  7255. name: "Back",
  7256. image: {
  7257. source: "./media/characters/teal/back.svg",
  7258. extra: 2580 / 2489,
  7259. bottom: 151 / 2731
  7260. }
  7261. },
  7262. sitting: {
  7263. height: math.unit(1.9, "meters"),
  7264. weight: math.unit(1200, "lb"),
  7265. name: "Sitting",
  7266. image: {
  7267. source: "./media/characters/teal/sitting.svg",
  7268. extra: 623 / 590,
  7269. bottom: 121 / 744
  7270. }
  7271. },
  7272. standing: {
  7273. height: math.unit(2.75, "meters"),
  7274. weight: math.unit(1200, "lb"),
  7275. name: "Standing",
  7276. image: {
  7277. source: "./media/characters/teal/standing.svg",
  7278. extra: 923 / 893,
  7279. bottom: 60 / 983
  7280. }
  7281. },
  7282. stretching: {
  7283. height: math.unit(3.65, "meters"),
  7284. weight: math.unit(1200, "lb"),
  7285. name: "Stretching",
  7286. image: {
  7287. source: "./media/characters/teal/stretching.svg",
  7288. extra: 1276 / 1244,
  7289. bottom: 0 / 1276
  7290. }
  7291. },
  7292. legged: {
  7293. height: math.unit(1.3, "meters"),
  7294. weight: math.unit(100, "lb"),
  7295. name: "Legged",
  7296. image: {
  7297. source: "./media/characters/teal/legged.svg",
  7298. extra: 462 / 437,
  7299. bottom: 24 / 486
  7300. }
  7301. },
  7302. naga: {
  7303. height: math.unit(5.4, "meters"),
  7304. weight: math.unit(4000, "lb"),
  7305. name: "Naga",
  7306. image: {
  7307. source: "./media/characters/teal/naga.svg",
  7308. extra: 1902 / 1858,
  7309. bottom: 0 / 1902
  7310. }
  7311. },
  7312. hand: {
  7313. height: math.unit(0.52, "meters"),
  7314. name: "Hand",
  7315. image: {
  7316. source: "./media/characters/teal/hand.svg"
  7317. }
  7318. },
  7319. maw: {
  7320. height: math.unit(0.43, "meters"),
  7321. name: "Maw",
  7322. image: {
  7323. source: "./media/characters/teal/maw.svg"
  7324. }
  7325. },
  7326. slit: {
  7327. height: math.unit(0.25, "meters"),
  7328. name: "Slit",
  7329. image: {
  7330. source: "./media/characters/teal/slit.svg"
  7331. }
  7332. },
  7333. },
  7334. [
  7335. {
  7336. name: "Normal",
  7337. height: math.unit(2.75, "meters"),
  7338. default: true
  7339. },
  7340. {
  7341. name: "Macro",
  7342. height: math.unit(300, "feet")
  7343. },
  7344. {
  7345. name: "Macro+",
  7346. height: math.unit(2000, "feet")
  7347. },
  7348. ]
  7349. ))
  7350. characterMakers.push(() => makeCharacter(
  7351. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7352. {
  7353. frontCat: {
  7354. height: math.unit(6, "feet"),
  7355. weight: math.unit(180, "lbs"),
  7356. name: "Front (Cat)",
  7357. image: {
  7358. source: "./media/characters/ravin-amulet/front-cat.svg"
  7359. }
  7360. },
  7361. frontCatAlt: {
  7362. height: math.unit(6, "feet"),
  7363. weight: math.unit(180, "lbs"),
  7364. name: "Front (Alt, Cat)",
  7365. image: {
  7366. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7367. }
  7368. },
  7369. frontWerewolf: {
  7370. height: math.unit(6 * 1.2, "feet"),
  7371. weight: math.unit(225, "lbs"),
  7372. name: "Front (Werewolf)",
  7373. image: {
  7374. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7375. }
  7376. },
  7377. backWerewolf: {
  7378. height: math.unit(6 * 1.2, "feet"),
  7379. weight: math.unit(225, "lbs"),
  7380. name: "Back (Werewolf)",
  7381. image: {
  7382. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7383. }
  7384. },
  7385. },
  7386. [
  7387. {
  7388. name: "Nano",
  7389. height: math.unit(1, "micrometer")
  7390. },
  7391. {
  7392. name: "Micro",
  7393. height: math.unit(1, "inch")
  7394. },
  7395. {
  7396. name: "Normal",
  7397. height: math.unit(6, "feet"),
  7398. default: true
  7399. },
  7400. {
  7401. name: "Macro",
  7402. height: math.unit(60, "feet")
  7403. }
  7404. ]
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7408. {
  7409. front: {
  7410. height: math.unit(6, "feet"),
  7411. weight: math.unit(165, "lbs"),
  7412. name: "Front",
  7413. image: {
  7414. source: "./media/characters/fluoresce/front.svg"
  7415. }
  7416. }
  7417. },
  7418. [
  7419. {
  7420. name: "Micro",
  7421. height: math.unit(6, "cm")
  7422. },
  7423. {
  7424. name: "Normal",
  7425. height: math.unit(5 + 7 / 12, "feet"),
  7426. default: true
  7427. },
  7428. {
  7429. name: "Macro",
  7430. height: math.unit(56, "feet")
  7431. },
  7432. {
  7433. name: "Megamacro",
  7434. height: math.unit(1.9, "miles")
  7435. },
  7436. ]
  7437. ))
  7438. characterMakers.push(() => makeCharacter(
  7439. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7440. {
  7441. front: {
  7442. height: math.unit(9 + 6 / 12, "feet"),
  7443. weight: math.unit(523, "lbs"),
  7444. name: "Side",
  7445. image: {
  7446. source: "./media/characters/aurora/side.svg"
  7447. }
  7448. }
  7449. },
  7450. [
  7451. {
  7452. name: "Normal",
  7453. height: math.unit(9 + 6 / 12, "feet")
  7454. },
  7455. {
  7456. name: "Macro",
  7457. height: math.unit(96, "feet"),
  7458. default: true
  7459. },
  7460. {
  7461. name: "Macro+",
  7462. height: math.unit(243, "feet")
  7463. },
  7464. ]
  7465. ))
  7466. characterMakers.push(() => makeCharacter(
  7467. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7468. {
  7469. front: {
  7470. height: math.unit(194, "cm"),
  7471. weight: math.unit(90, "kg"),
  7472. name: "Front",
  7473. image: {
  7474. source: "./media/characters/ranek/front.svg"
  7475. }
  7476. },
  7477. side: {
  7478. height: math.unit(194, "cm"),
  7479. weight: math.unit(90, "kg"),
  7480. name: "Side",
  7481. image: {
  7482. source: "./media/characters/ranek/side.svg"
  7483. }
  7484. },
  7485. back: {
  7486. height: math.unit(194, "cm"),
  7487. weight: math.unit(90, "kg"),
  7488. name: "Back",
  7489. image: {
  7490. source: "./media/characters/ranek/back.svg"
  7491. }
  7492. },
  7493. feral: {
  7494. height: math.unit(30, "cm"),
  7495. weight: math.unit(1.6, "lbs"),
  7496. name: "Feral",
  7497. image: {
  7498. source: "./media/characters/ranek/feral.svg"
  7499. }
  7500. },
  7501. },
  7502. [
  7503. {
  7504. name: "Normal",
  7505. height: math.unit(194, "cm"),
  7506. default: true
  7507. },
  7508. {
  7509. name: "Macro",
  7510. height: math.unit(100, "meters")
  7511. },
  7512. ]
  7513. ))
  7514. characterMakers.push(() => makeCharacter(
  7515. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7516. {
  7517. front: {
  7518. height: math.unit(5 + 6 / 12, "feet"),
  7519. weight: math.unit(153, "lbs"),
  7520. name: "Front",
  7521. image: {
  7522. source: "./media/characters/andrew-cooper/front.svg"
  7523. }
  7524. },
  7525. },
  7526. [
  7527. {
  7528. name: "Nano",
  7529. height: math.unit(1, "mm")
  7530. },
  7531. {
  7532. name: "Micro",
  7533. height: math.unit(2, "inches")
  7534. },
  7535. {
  7536. name: "Normal",
  7537. height: math.unit(5 + 6 / 12, "feet"),
  7538. default: true
  7539. }
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7544. {
  7545. front: {
  7546. height: math.unit(6, "feet"),
  7547. weight: math.unit(180, "lbs"),
  7548. name: "Front",
  7549. image: {
  7550. source: "./media/characters/akane-sato/front.svg",
  7551. extra: 1219 / 1140
  7552. }
  7553. },
  7554. back: {
  7555. height: math.unit(6, "feet"),
  7556. weight: math.unit(180, "lbs"),
  7557. name: "Back",
  7558. image: {
  7559. source: "./media/characters/akane-sato/back.svg",
  7560. extra: 1219 / 1170
  7561. }
  7562. },
  7563. },
  7564. [
  7565. {
  7566. name: "Normal",
  7567. height: math.unit(2.5, "meters")
  7568. },
  7569. {
  7570. name: "Macro",
  7571. height: math.unit(250, "meters"),
  7572. default: true
  7573. },
  7574. {
  7575. name: "Megamacro",
  7576. height: math.unit(25, "km")
  7577. },
  7578. ]
  7579. ))
  7580. characterMakers.push(() => makeCharacter(
  7581. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7582. {
  7583. front: {
  7584. height: math.unit(6, "feet"),
  7585. weight: math.unit(65, "kg"),
  7586. name: "Front",
  7587. image: {
  7588. source: "./media/characters/rook/front.svg",
  7589. extra: 960 / 950
  7590. }
  7591. }
  7592. },
  7593. [
  7594. {
  7595. name: "Normal",
  7596. height: math.unit(8.8, "feet")
  7597. },
  7598. {
  7599. name: "Macro",
  7600. height: math.unit(88, "feet"),
  7601. default: true
  7602. },
  7603. {
  7604. name: "Megamacro",
  7605. height: math.unit(8, "miles")
  7606. },
  7607. ]
  7608. ))
  7609. characterMakers.push(() => makeCharacter(
  7610. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7611. {
  7612. front: {
  7613. height: math.unit(12 + 2 / 12, "feet"),
  7614. weight: math.unit(808, "lbs"),
  7615. name: "Front",
  7616. image: {
  7617. source: "./media/characters/prodigy/front.svg"
  7618. }
  7619. }
  7620. },
  7621. [
  7622. {
  7623. name: "Normal",
  7624. height: math.unit(12 + 2 / 12, "feet"),
  7625. default: true
  7626. },
  7627. {
  7628. name: "Macro",
  7629. height: math.unit(143, "feet")
  7630. },
  7631. {
  7632. name: "Macro+",
  7633. height: math.unit(400, "feet")
  7634. },
  7635. ]
  7636. ))
  7637. characterMakers.push(() => makeCharacter(
  7638. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7639. {
  7640. front: {
  7641. height: math.unit(6, "feet"),
  7642. weight: math.unit(225, "lbs"),
  7643. name: "Front",
  7644. image: {
  7645. source: "./media/characters/daniel/front.svg"
  7646. }
  7647. },
  7648. leaning: {
  7649. height: math.unit(6, "feet"),
  7650. weight: math.unit(225, "lbs"),
  7651. name: "Leaning",
  7652. image: {
  7653. source: "./media/characters/daniel/leaning.svg"
  7654. }
  7655. },
  7656. },
  7657. [
  7658. {
  7659. name: "Macro",
  7660. height: math.unit(1000, "feet"),
  7661. default: true
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7667. {
  7668. front: {
  7669. height: math.unit(6, "feet"),
  7670. weight: math.unit(88, "lbs"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/chiros/front.svg",
  7674. extra: 306 / 226
  7675. }
  7676. },
  7677. side: {
  7678. height: math.unit(6, "feet"),
  7679. weight: math.unit(88, "lbs"),
  7680. name: "Side",
  7681. image: {
  7682. source: "./media/characters/chiros/side.svg",
  7683. extra: 306 / 226
  7684. }
  7685. },
  7686. },
  7687. [
  7688. {
  7689. name: "Normal",
  7690. height: math.unit(6, "cm"),
  7691. default: true
  7692. },
  7693. ]
  7694. ))
  7695. characterMakers.push(() => makeCharacter(
  7696. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7697. {
  7698. front: {
  7699. height: math.unit(6, "feet"),
  7700. weight: math.unit(100, "lbs"),
  7701. name: "Front",
  7702. image: {
  7703. source: "./media/characters/selka/front.svg",
  7704. extra: 947 / 887
  7705. }
  7706. }
  7707. },
  7708. [
  7709. {
  7710. name: "Normal",
  7711. height: math.unit(5, "cm"),
  7712. default: true
  7713. },
  7714. ]
  7715. ))
  7716. characterMakers.push(() => makeCharacter(
  7717. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7718. {
  7719. front: {
  7720. height: math.unit(8 + 3 / 12, "feet"),
  7721. weight: math.unit(424, "lbs"),
  7722. name: "Front",
  7723. image: {
  7724. source: "./media/characters/verin/front.svg",
  7725. extra: 1845 / 1550
  7726. }
  7727. },
  7728. frontArmored: {
  7729. height: math.unit(8 + 3 / 12, "feet"),
  7730. weight: math.unit(424, "lbs"),
  7731. name: "Front (Armored)",
  7732. image: {
  7733. source: "./media/characters/verin/front-armor.svg",
  7734. extra: 1845 / 1550,
  7735. bottom: 0.01
  7736. }
  7737. },
  7738. back: {
  7739. height: math.unit(8 + 3 / 12, "feet"),
  7740. weight: math.unit(424, "lbs"),
  7741. name: "Back",
  7742. image: {
  7743. source: "./media/characters/verin/back.svg",
  7744. bottom: 0.1,
  7745. extra: 1
  7746. }
  7747. },
  7748. foot: {
  7749. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7750. name: "Foot",
  7751. image: {
  7752. source: "./media/characters/verin/foot.svg"
  7753. }
  7754. },
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(8 + 3 / 12, "feet")
  7760. },
  7761. {
  7762. name: "Minimacro",
  7763. height: math.unit(21, "feet"),
  7764. default: true
  7765. },
  7766. {
  7767. name: "Macro",
  7768. height: math.unit(626, "feet")
  7769. },
  7770. ]
  7771. ))
  7772. characterMakers.push(() => makeCharacter(
  7773. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7774. {
  7775. front: {
  7776. height: math.unit(2.718, "meters"),
  7777. weight: math.unit(150, "lbs"),
  7778. name: "Front",
  7779. image: {
  7780. source: "./media/characters/sovrim-terraquian/front.svg"
  7781. }
  7782. },
  7783. back: {
  7784. height: math.unit(2.718, "meters"),
  7785. weight: math.unit(150, "lbs"),
  7786. name: "Back",
  7787. image: {
  7788. source: "./media/characters/sovrim-terraquian/back.svg"
  7789. }
  7790. }
  7791. },
  7792. [
  7793. {
  7794. name: "Micro",
  7795. height: math.unit(2, "inches")
  7796. },
  7797. {
  7798. name: "Small",
  7799. height: math.unit(1, "meter")
  7800. },
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(Math.E, "meters"),
  7804. default: true
  7805. },
  7806. {
  7807. name: "Macro",
  7808. height: math.unit(20, "meters")
  7809. },
  7810. {
  7811. name: "Macro+",
  7812. height: math.unit(400, "meters")
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(7, "feet"),
  7821. weight: math.unit(489, "lbs"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/reece-silvermane/front.svg",
  7825. bottom: 0.02,
  7826. extra: 1
  7827. }
  7828. },
  7829. },
  7830. [
  7831. {
  7832. name: "Macro",
  7833. height: math.unit(1.5, "miles"),
  7834. default: true
  7835. },
  7836. ]
  7837. ))
  7838. characterMakers.push(() => makeCharacter(
  7839. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7840. {
  7841. front: {
  7842. height: math.unit(6, "feet"),
  7843. weight: math.unit(78, "kg"),
  7844. name: "Front",
  7845. image: {
  7846. source: "./media/characters/kane/front.svg",
  7847. extra: 978 / 899
  7848. }
  7849. },
  7850. },
  7851. [
  7852. {
  7853. name: "Normal",
  7854. height: math.unit(2.1, "m"),
  7855. },
  7856. {
  7857. name: "Macro",
  7858. height: math.unit(1, "km"),
  7859. default: true
  7860. },
  7861. ]
  7862. ))
  7863. characterMakers.push(() => makeCharacter(
  7864. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7865. {
  7866. front: {
  7867. height: math.unit(6, "feet"),
  7868. weight: math.unit(200, "kg"),
  7869. name: "Front",
  7870. image: {
  7871. source: "./media/characters/tegon/front.svg",
  7872. bottom: 0.01,
  7873. extra: 1
  7874. }
  7875. },
  7876. },
  7877. [
  7878. {
  7879. name: "Micro",
  7880. height: math.unit(1, "inch")
  7881. },
  7882. {
  7883. name: "Normal",
  7884. height: math.unit(6 + 3 / 12, "feet"),
  7885. default: true
  7886. },
  7887. {
  7888. name: "Macro",
  7889. height: math.unit(300, "feet")
  7890. },
  7891. {
  7892. name: "Megamacro",
  7893. height: math.unit(69, "miles")
  7894. },
  7895. ]
  7896. ))
  7897. characterMakers.push(() => makeCharacter(
  7898. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7899. {
  7900. side: {
  7901. height: math.unit(6, "feet"),
  7902. weight: math.unit(2304, "lbs"),
  7903. name: "Side",
  7904. image: {
  7905. source: "./media/characters/arcturax/side.svg",
  7906. extra: 790 / 376,
  7907. bottom: 0.01
  7908. }
  7909. },
  7910. },
  7911. [
  7912. {
  7913. name: "Micro",
  7914. height: math.unit(2, "inch")
  7915. },
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(6, "feet")
  7919. },
  7920. {
  7921. name: "Macro",
  7922. height: math.unit(39, "feet"),
  7923. default: true
  7924. },
  7925. {
  7926. name: "Megamacro",
  7927. height: math.unit(7, "miles")
  7928. },
  7929. ]
  7930. ))
  7931. characterMakers.push(() => makeCharacter(
  7932. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7933. {
  7934. front: {
  7935. height: math.unit(6, "feet"),
  7936. weight: math.unit(50, "lbs"),
  7937. name: "Front",
  7938. image: {
  7939. source: "./media/characters/sentri/front.svg",
  7940. extra: 1750 / 1570,
  7941. bottom: 0.025
  7942. }
  7943. },
  7944. frontAlt: {
  7945. height: math.unit(6, "feet"),
  7946. weight: math.unit(50, "lbs"),
  7947. name: "Front (Alt)",
  7948. image: {
  7949. source: "./media/characters/sentri/front-alt.svg",
  7950. extra: 1750 / 1570,
  7951. bottom: 0.025
  7952. }
  7953. },
  7954. },
  7955. [
  7956. {
  7957. name: "Normal",
  7958. height: math.unit(15, "feet"),
  7959. default: true
  7960. },
  7961. {
  7962. name: "Macro",
  7963. height: math.unit(2500, "feet")
  7964. }
  7965. ]
  7966. ))
  7967. characterMakers.push(() => makeCharacter(
  7968. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7969. {
  7970. front: {
  7971. height: math.unit(5 + 8 / 12, "feet"),
  7972. weight: math.unit(130, "lbs"),
  7973. name: "Front",
  7974. image: {
  7975. source: "./media/characters/corvin/front.svg",
  7976. extra: 1803 / 1629
  7977. }
  7978. },
  7979. frontShirt: {
  7980. height: math.unit(5 + 8 / 12, "feet"),
  7981. weight: math.unit(130, "lbs"),
  7982. name: "Front (Shirt)",
  7983. image: {
  7984. source: "./media/characters/corvin/front-shirt.svg",
  7985. extra: 1803 / 1629
  7986. }
  7987. },
  7988. frontPoncho: {
  7989. height: math.unit(5 + 8 / 12, "feet"),
  7990. weight: math.unit(130, "lbs"),
  7991. name: "Front (Poncho)",
  7992. image: {
  7993. source: "./media/characters/corvin/front-poncho.svg",
  7994. extra: 1803 / 1629
  7995. }
  7996. },
  7997. side: {
  7998. height: math.unit(5 + 8 / 12, "feet"),
  7999. weight: math.unit(130, "lbs"),
  8000. name: "Side",
  8001. image: {
  8002. source: "./media/characters/corvin/side.svg",
  8003. extra: 1012 / 945
  8004. }
  8005. },
  8006. back: {
  8007. height: math.unit(5 + 8 / 12, "feet"),
  8008. weight: math.unit(130, "lbs"),
  8009. name: "Back",
  8010. image: {
  8011. source: "./media/characters/corvin/back.svg",
  8012. extra: 1803 / 1629
  8013. }
  8014. },
  8015. },
  8016. [
  8017. {
  8018. name: "Micro",
  8019. height: math.unit(3, "inches")
  8020. },
  8021. {
  8022. name: "Normal",
  8023. height: math.unit(5 + 8 / 12, "feet")
  8024. },
  8025. {
  8026. name: "Macro",
  8027. height: math.unit(300, "feet"),
  8028. default: true
  8029. },
  8030. {
  8031. name: "Megamacro",
  8032. height: math.unit(500, "miles")
  8033. }
  8034. ]
  8035. ))
  8036. characterMakers.push(() => makeCharacter(
  8037. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8038. {
  8039. front: {
  8040. height: math.unit(6, "feet"),
  8041. weight: math.unit(135, "lbs"),
  8042. name: "Front",
  8043. image: {
  8044. source: "./media/characters/q/front.svg",
  8045. extra: 854 / 752,
  8046. bottom: 0.005
  8047. }
  8048. },
  8049. back: {
  8050. height: math.unit(6, "feet"),
  8051. weight: math.unit(130, "lbs"),
  8052. name: "Back",
  8053. image: {
  8054. source: "./media/characters/q/back.svg",
  8055. extra: 854 / 752
  8056. }
  8057. },
  8058. },
  8059. [
  8060. {
  8061. name: "Macro",
  8062. height: math.unit(90, "feet"),
  8063. default: true
  8064. },
  8065. {
  8066. name: "Extra Macro",
  8067. height: math.unit(300, "feet"),
  8068. },
  8069. {
  8070. name: "BIG WALF",
  8071. height: math.unit(750, "feet"),
  8072. },
  8073. ]
  8074. ))
  8075. characterMakers.push(() => makeCharacter(
  8076. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8077. {
  8078. front: {
  8079. height: math.unit(6, "feet"),
  8080. weight: math.unit(150, "lbs"),
  8081. name: "Front",
  8082. image: {
  8083. source: "./media/characters/carley/front.svg",
  8084. extra: 3927 / 3540,
  8085. bottom: 29.2 / 735
  8086. }
  8087. }
  8088. },
  8089. [
  8090. {
  8091. name: "Normal",
  8092. height: math.unit(6 + 3 / 12, "feet")
  8093. },
  8094. {
  8095. name: "Macro",
  8096. height: math.unit(185, "feet"),
  8097. default: true
  8098. },
  8099. {
  8100. name: "Megamacro",
  8101. height: math.unit(8, "miles"),
  8102. },
  8103. ]
  8104. ))
  8105. characterMakers.push(() => makeCharacter(
  8106. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8107. {
  8108. front: {
  8109. height: math.unit(3, "feet"),
  8110. weight: math.unit(28, "lbs"),
  8111. name: "Front",
  8112. image: {
  8113. source: "./media/characters/citrine/front.svg"
  8114. }
  8115. }
  8116. },
  8117. [
  8118. {
  8119. name: "Normal",
  8120. height: math.unit(3, "feet"),
  8121. default: true
  8122. }
  8123. ]
  8124. ))
  8125. characterMakers.push(() => makeCharacter(
  8126. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8127. {
  8128. front: {
  8129. height: math.unit(14, "feet"),
  8130. weight: math.unit(1450, "kg"),
  8131. capacity: math.unit(15, "people"),
  8132. name: "Front",
  8133. image: {
  8134. source: "./media/characters/aura-starwind/front.svg",
  8135. extra: 1455 / 1335
  8136. }
  8137. },
  8138. side: {
  8139. height: math.unit(14, "feet"),
  8140. weight: math.unit(1450, "kg"),
  8141. capacity: math.unit(15, "people"),
  8142. name: "Side",
  8143. image: {
  8144. source: "./media/characters/aura-starwind/side.svg",
  8145. extra: 1654 / 1497
  8146. }
  8147. },
  8148. taur: {
  8149. height: math.unit(18, "feet"),
  8150. weight: math.unit(5500, "kg"),
  8151. capacity: math.unit(50, "people"),
  8152. name: "Taur",
  8153. image: {
  8154. source: "./media/characters/aura-starwind/taur.svg",
  8155. extra: 1760 / 1650
  8156. }
  8157. },
  8158. feral: {
  8159. height: math.unit(46, "feet"),
  8160. weight: math.unit(25000, "kg"),
  8161. capacity: math.unit(120, "people"),
  8162. name: "Feral",
  8163. image: {
  8164. source: "./media/characters/aura-starwind/feral.svg"
  8165. }
  8166. },
  8167. },
  8168. [
  8169. {
  8170. name: "Normal",
  8171. height: math.unit(14, "feet"),
  8172. default: true
  8173. },
  8174. {
  8175. name: "Macro",
  8176. height: math.unit(50, "meters")
  8177. },
  8178. {
  8179. name: "Megamacro",
  8180. height: math.unit(5000, "meters")
  8181. },
  8182. {
  8183. name: "Gigamacro",
  8184. height: math.unit(100000, "kilometers")
  8185. },
  8186. ]
  8187. ))
  8188. characterMakers.push(() => makeCharacter(
  8189. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8190. {
  8191. front: {
  8192. height: math.unit(2 + 7 / 12, "feet"),
  8193. weight: math.unit(32, "lbs"),
  8194. name: "Front",
  8195. image: {
  8196. source: "./media/characters/rivet/front.svg",
  8197. extra: 1716 / 1658,
  8198. bottom: 0.03
  8199. }
  8200. },
  8201. foot: {
  8202. height: math.unit(0.551, "feet"),
  8203. name: "Rivet's Foot",
  8204. image: {
  8205. source: "./media/characters/rivet/foot.svg"
  8206. },
  8207. rename: true
  8208. }
  8209. },
  8210. [
  8211. {
  8212. name: "Micro",
  8213. height: math.unit(1.5, "inches"),
  8214. },
  8215. {
  8216. name: "Normal",
  8217. height: math.unit(2 + 7 / 12, "feet"),
  8218. default: true
  8219. },
  8220. {
  8221. name: "Macro",
  8222. height: math.unit(85, "feet")
  8223. },
  8224. {
  8225. name: "Megamacro",
  8226. height: math.unit(2.2, "km")
  8227. }
  8228. ]
  8229. ))
  8230. characterMakers.push(() => makeCharacter(
  8231. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8232. {
  8233. front: {
  8234. height: math.unit(5 + 9 / 12, "feet"),
  8235. weight: math.unit(150, "lbs"),
  8236. name: "Front",
  8237. image: {
  8238. source: "./media/characters/coffee/front.svg",
  8239. extra: 3666 / 3032,
  8240. bottom: 0.04
  8241. }
  8242. },
  8243. foot: {
  8244. height: math.unit(1.29, "feet"),
  8245. name: "Foot",
  8246. image: {
  8247. source: "./media/characters/coffee/foot.svg"
  8248. }
  8249. },
  8250. },
  8251. [
  8252. {
  8253. name: "Micro",
  8254. height: math.unit(2, "inches"),
  8255. },
  8256. {
  8257. name: "Normal",
  8258. height: math.unit(5 + 9 / 12, "feet"),
  8259. default: true
  8260. },
  8261. {
  8262. name: "Macro",
  8263. height: math.unit(800, "feet")
  8264. },
  8265. {
  8266. name: "Megamacro",
  8267. height: math.unit(25, "miles")
  8268. }
  8269. ]
  8270. ))
  8271. characterMakers.push(() => makeCharacter(
  8272. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8273. {
  8274. front: {
  8275. height: math.unit(6, "feet"),
  8276. weight: math.unit(200, "lbs"),
  8277. name: "Front",
  8278. image: {
  8279. source: "./media/characters/chari-gal/front.svg",
  8280. extra: 1568 / 1385,
  8281. bottom: 0.047
  8282. }
  8283. },
  8284. gigantamax: {
  8285. height: math.unit(6 * 16, "feet"),
  8286. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8287. name: "Gigantamax",
  8288. image: {
  8289. source: "./media/characters/chari-gal/gigantamax.svg",
  8290. extra: 1124 / 888,
  8291. bottom: 0.03
  8292. }
  8293. },
  8294. },
  8295. [
  8296. {
  8297. name: "Normal",
  8298. height: math.unit(5 + 7 / 12, "feet")
  8299. },
  8300. {
  8301. name: "Macro",
  8302. height: math.unit(200, "feet"),
  8303. default: true
  8304. }
  8305. ]
  8306. ))
  8307. characterMakers.push(() => makeCharacter(
  8308. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8309. {
  8310. front: {
  8311. height: math.unit(6, "feet"),
  8312. weight: math.unit(150, "lbs"),
  8313. name: "Front",
  8314. image: {
  8315. source: "./media/characters/nova/front.svg",
  8316. extra: 5000 / 4722,
  8317. bottom: 0.02
  8318. }
  8319. }
  8320. },
  8321. [
  8322. {
  8323. name: "Micro-",
  8324. height: math.unit(0.8, "inches")
  8325. },
  8326. {
  8327. name: "Micro",
  8328. height: math.unit(2, "inches"),
  8329. default: true
  8330. },
  8331. ]
  8332. ))
  8333. characterMakers.push(() => makeCharacter(
  8334. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8335. {
  8336. front: {
  8337. height: math.unit(3 + 1 / 12, "feet"),
  8338. weight: math.unit(21.7, "lbs"),
  8339. name: "Front",
  8340. image: {
  8341. source: "./media/characters/argent/front.svg",
  8342. extra: 1471 / 1331,
  8343. bottom: 100.8 / 1575.5
  8344. }
  8345. }
  8346. },
  8347. [
  8348. {
  8349. name: "Micro",
  8350. height: math.unit(2, "inches")
  8351. },
  8352. {
  8353. name: "Normal",
  8354. height: math.unit(3 + 1 / 12, "feet"),
  8355. default: true
  8356. },
  8357. {
  8358. name: "Macro",
  8359. height: math.unit(120, "feet")
  8360. },
  8361. ]
  8362. ))
  8363. characterMakers.push(() => makeCharacter(
  8364. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8365. {
  8366. lamp: {
  8367. height: math.unit(7 * 1559 / 989, "feet"),
  8368. name: "Magic Lamp",
  8369. image: {
  8370. source: "./media/characters/mira-al-cul/lamp.svg",
  8371. extra: 1617 / 1559
  8372. }
  8373. },
  8374. front: {
  8375. height: math.unit(7, "feet"),
  8376. name: "Front",
  8377. image: {
  8378. source: "./media/characters/mira-al-cul/front.svg",
  8379. extra: 1044 / 990
  8380. }
  8381. },
  8382. },
  8383. [
  8384. {
  8385. name: "Heavily Restricted",
  8386. height: math.unit(7 * 1559 / 989, "feet")
  8387. },
  8388. {
  8389. name: "Freshly Freed",
  8390. height: math.unit(50 * 1559 / 989, "feet")
  8391. },
  8392. {
  8393. name: "World Encompassing",
  8394. height: math.unit(10000 * 1559 / 989, "miles")
  8395. },
  8396. {
  8397. name: "Galactic",
  8398. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8399. },
  8400. {
  8401. name: "Palmed Universe",
  8402. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8403. default: true
  8404. },
  8405. {
  8406. name: "Multiversal Matriarch",
  8407. height: math.unit(8.87e10, "yottameters")
  8408. },
  8409. {
  8410. name: "Void Mother",
  8411. height: math.unit(3.14e110, "yottaparsecs")
  8412. },
  8413. {
  8414. name: "Toying with Transcendence",
  8415. height: math.unit(1e307, "meters")
  8416. },
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8421. {
  8422. front: {
  8423. height: math.unit(17 + 1 / 12, "feet"),
  8424. weight: math.unit(476.2 * 5, "lbs"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/kuro-shi-uchū/front.svg",
  8428. extra: 2329 / 1835,
  8429. bottom: 0.02
  8430. }
  8431. },
  8432. },
  8433. [
  8434. {
  8435. name: "Micro",
  8436. height: math.unit(2, "inches")
  8437. },
  8438. {
  8439. name: "Normal",
  8440. height: math.unit(12, "meters")
  8441. },
  8442. {
  8443. name: "Planetary",
  8444. height: math.unit(0.00929, "AU"),
  8445. default: true
  8446. },
  8447. {
  8448. name: "Universal",
  8449. height: math.unit(20, "gigaparsecs")
  8450. },
  8451. ]
  8452. ))
  8453. characterMakers.push(() => makeCharacter(
  8454. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8455. {
  8456. front: {
  8457. height: math.unit(5 + 2 / 12, "feet"),
  8458. weight: math.unit(120, "lbs"),
  8459. name: "Front",
  8460. image: {
  8461. source: "./media/characters/katherine/front.svg",
  8462. extra: 2075 / 1969
  8463. }
  8464. },
  8465. dress: {
  8466. height: math.unit(5 + 2 / 12, "feet"),
  8467. weight: math.unit(120, "lbs"),
  8468. name: "Dress",
  8469. image: {
  8470. source: "./media/characters/katherine/dress.svg",
  8471. extra: 2258 / 2064
  8472. }
  8473. },
  8474. },
  8475. [
  8476. {
  8477. name: "Micro",
  8478. height: math.unit(1, "inches"),
  8479. default: true
  8480. },
  8481. {
  8482. name: "Normal",
  8483. height: math.unit(5 + 2 / 12, "feet")
  8484. },
  8485. {
  8486. name: "Macro",
  8487. height: math.unit(100, "meters")
  8488. },
  8489. {
  8490. name: "Megamacro",
  8491. height: math.unit(80, "miles")
  8492. },
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8497. {
  8498. front: {
  8499. height: math.unit(7 + 8 / 12, "feet"),
  8500. weight: math.unit(250, "lbs"),
  8501. name: "Front",
  8502. image: {
  8503. source: "./media/characters/yevis/front.svg",
  8504. extra: 1938 / 1755
  8505. }
  8506. }
  8507. },
  8508. [
  8509. {
  8510. name: "Mortal",
  8511. height: math.unit(7 + 8 / 12, "feet")
  8512. },
  8513. {
  8514. name: "Battle",
  8515. height: math.unit(25 + 11 / 12, "feet")
  8516. },
  8517. {
  8518. name: "Wrath",
  8519. height: math.unit(1654 + 11 / 12, "feet")
  8520. },
  8521. {
  8522. name: "Planet Destroyer",
  8523. height: math.unit(12000, "miles")
  8524. },
  8525. {
  8526. name: "Galaxy Conqueror",
  8527. height: math.unit(1.45, "zettameters"),
  8528. default: true
  8529. },
  8530. {
  8531. name: "Universal War",
  8532. height: math.unit(184, "gigaparsecs")
  8533. },
  8534. {
  8535. name: "Eternity War",
  8536. height: math.unit(1.98e55, "yottaparsecs")
  8537. },
  8538. ]
  8539. ))
  8540. characterMakers.push(() => makeCharacter(
  8541. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8542. {
  8543. front: {
  8544. height: math.unit(5 + 8 / 12, "feet"),
  8545. weight: math.unit(63, "kg"),
  8546. name: "Front",
  8547. image: {
  8548. source: "./media/characters/xavier/front.svg",
  8549. extra: 944 / 883
  8550. }
  8551. },
  8552. frontStretch: {
  8553. height: math.unit(5 + 8 / 12, "feet"),
  8554. weight: math.unit(63, "kg"),
  8555. name: "Stretching",
  8556. image: {
  8557. source: "./media/characters/xavier/front-stretch.svg",
  8558. extra: 962 / 820
  8559. }
  8560. },
  8561. },
  8562. [
  8563. {
  8564. name: "Normal",
  8565. height: math.unit(5 + 8 / 12, "feet")
  8566. },
  8567. {
  8568. name: "Macro",
  8569. height: math.unit(100, "meters"),
  8570. default: true
  8571. },
  8572. {
  8573. name: "McLargeHuge",
  8574. height: math.unit(10, "miles")
  8575. },
  8576. ]
  8577. ))
  8578. characterMakers.push(() => makeCharacter(
  8579. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8580. {
  8581. front: {
  8582. height: math.unit(5 + 5 / 12, "feet"),
  8583. weight: math.unit(150, "lb"),
  8584. name: "Front",
  8585. image: {
  8586. source: "./media/characters/joshii/front.svg",
  8587. extra: 765 / 653,
  8588. bottom: 51 / 816
  8589. }
  8590. },
  8591. foot: {
  8592. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8593. name: "Foot",
  8594. image: {
  8595. source: "./media/characters/joshii/foot.svg"
  8596. }
  8597. },
  8598. },
  8599. [
  8600. {
  8601. name: "Micro",
  8602. height: math.unit(2, "inches"),
  8603. default: true
  8604. },
  8605. {
  8606. name: "Normal",
  8607. height: math.unit(5 + 5 / 12, "feet")
  8608. },
  8609. {
  8610. name: "Macro",
  8611. height: math.unit(785, "feet")
  8612. },
  8613. {
  8614. name: "Megamacro",
  8615. height: math.unit(24.5, "miles")
  8616. },
  8617. ]
  8618. ))
  8619. characterMakers.push(() => makeCharacter(
  8620. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8621. {
  8622. front: {
  8623. height: math.unit(6, "feet"),
  8624. weight: math.unit(150, "lb"),
  8625. name: "Front",
  8626. image: {
  8627. source: "./media/characters/goddess-elizabeth/front.svg",
  8628. extra: 1800 / 1525,
  8629. bottom: 0.005
  8630. }
  8631. },
  8632. foot: {
  8633. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8634. name: "Foot",
  8635. image: {
  8636. source: "./media/characters/goddess-elizabeth/foot.svg"
  8637. }
  8638. },
  8639. mouth: {
  8640. height: math.unit(6, "feet"),
  8641. name: "Mouth",
  8642. image: {
  8643. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8644. }
  8645. },
  8646. },
  8647. [
  8648. {
  8649. name: "Micro",
  8650. height: math.unit(12, "feet")
  8651. },
  8652. {
  8653. name: "Normal",
  8654. height: math.unit(80, "miles"),
  8655. default: true
  8656. },
  8657. {
  8658. name: "Macro",
  8659. height: math.unit(15000, "parsecs")
  8660. },
  8661. ]
  8662. ))
  8663. characterMakers.push(() => makeCharacter(
  8664. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8665. {
  8666. front: {
  8667. height: math.unit(5 + 9 / 12, "feet"),
  8668. weight: math.unit(144, "lb"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/kara/front.svg"
  8672. }
  8673. },
  8674. feet: {
  8675. height: math.unit(6 / 6.765, "feet"),
  8676. name: "Kara's Feet",
  8677. rename: true,
  8678. image: {
  8679. source: "./media/characters/kara/feet.svg"
  8680. }
  8681. },
  8682. },
  8683. [
  8684. {
  8685. name: "Normal",
  8686. height: math.unit(5 + 9 / 12, "feet")
  8687. },
  8688. {
  8689. name: "Macro",
  8690. height: math.unit(174, "feet"),
  8691. default: true
  8692. },
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8697. {
  8698. front: {
  8699. height: math.unit(18, "feet"),
  8700. weight: math.unit(4050, "lb"),
  8701. name: "Front",
  8702. image: {
  8703. source: "./media/characters/tyrone/front.svg",
  8704. extra: 2405 / 2270,
  8705. bottom: 182 / 2587
  8706. }
  8707. },
  8708. },
  8709. [
  8710. {
  8711. name: "Normal",
  8712. height: math.unit(18, "feet"),
  8713. default: true
  8714. },
  8715. {
  8716. name: "Macro",
  8717. height: math.unit(300, "feet")
  8718. },
  8719. {
  8720. name: "Megamacro",
  8721. height: math.unit(15, "km")
  8722. },
  8723. {
  8724. name: "Gigamacro",
  8725. height: math.unit(500, "km")
  8726. },
  8727. {
  8728. name: "Teramacro",
  8729. height: math.unit(0.5, "gigameters")
  8730. },
  8731. {
  8732. name: "Omnimacro",
  8733. height: math.unit(1e252, "yottauniverse")
  8734. },
  8735. ]
  8736. ))
  8737. characterMakers.push(() => makeCharacter(
  8738. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8739. {
  8740. front: {
  8741. height: math.unit(7 + 8 / 12, "feet"),
  8742. weight: math.unit(120, "lb"),
  8743. name: "Front",
  8744. image: {
  8745. source: "./media/characters/danny/front.svg",
  8746. extra: 1490 / 1350
  8747. }
  8748. },
  8749. back: {
  8750. height: math.unit(7 + 8 / 12, "feet"),
  8751. weight: math.unit(120, "lb"),
  8752. name: "Back",
  8753. image: {
  8754. source: "./media/characters/danny/back.svg",
  8755. extra: 1490 / 1350
  8756. }
  8757. },
  8758. },
  8759. [
  8760. {
  8761. name: "Normal",
  8762. height: math.unit(7 + 8 / 12, "feet"),
  8763. default: true
  8764. },
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8769. {
  8770. front: {
  8771. height: math.unit(3.5, "inches"),
  8772. weight: math.unit(19, "grams"),
  8773. name: "Front",
  8774. image: {
  8775. source: "./media/characters/mallow/front.svg",
  8776. extra: 471 / 431
  8777. }
  8778. },
  8779. back: {
  8780. height: math.unit(3.5, "inches"),
  8781. weight: math.unit(19, "grams"),
  8782. name: "Back",
  8783. image: {
  8784. source: "./media/characters/mallow/back.svg",
  8785. extra: 471 / 431
  8786. }
  8787. },
  8788. },
  8789. [
  8790. {
  8791. name: "Normal",
  8792. height: math.unit(3.5, "inches"),
  8793. default: true
  8794. },
  8795. ]
  8796. ))
  8797. characterMakers.push(() => makeCharacter(
  8798. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8799. {
  8800. front: {
  8801. height: math.unit(9, "feet"),
  8802. weight: math.unit(230, "kg"),
  8803. name: "Front",
  8804. image: {
  8805. source: "./media/characters/starry-aqua/front.svg"
  8806. }
  8807. },
  8808. back: {
  8809. height: math.unit(9, "feet"),
  8810. weight: math.unit(230, "kg"),
  8811. name: "Back",
  8812. image: {
  8813. source: "./media/characters/starry-aqua/back.svg"
  8814. }
  8815. },
  8816. hand: {
  8817. height: math.unit(9 * 0.1168, "feet"),
  8818. name: "Hand",
  8819. image: {
  8820. source: "./media/characters/starry-aqua/hand.svg"
  8821. }
  8822. },
  8823. foot: {
  8824. height: math.unit(9 * 0.18, "feet"),
  8825. name: "Foot",
  8826. image: {
  8827. source: "./media/characters/starry-aqua/foot.svg"
  8828. }
  8829. }
  8830. },
  8831. [
  8832. {
  8833. name: "Micro",
  8834. height: math.unit(3, "inches")
  8835. },
  8836. {
  8837. name: "Normal",
  8838. height: math.unit(9, "feet")
  8839. },
  8840. {
  8841. name: "Macro",
  8842. height: math.unit(300, "feet"),
  8843. default: true
  8844. },
  8845. {
  8846. name: "Megamacro",
  8847. height: math.unit(3200, "feet")
  8848. }
  8849. ]
  8850. ))
  8851. characterMakers.push(() => makeCharacter(
  8852. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8853. {
  8854. front: {
  8855. height: math.unit(6, "feet"),
  8856. weight: math.unit(230, "lb"),
  8857. name: "Front",
  8858. image: {
  8859. source: "./media/characters/luka/front.svg",
  8860. extra: 1,
  8861. bottom: 0.025
  8862. }
  8863. },
  8864. },
  8865. [
  8866. {
  8867. name: "Normal",
  8868. height: math.unit(12 + 8 / 12, "feet"),
  8869. default: true
  8870. },
  8871. {
  8872. name: "Minimacro",
  8873. height: math.unit(20, "feet")
  8874. },
  8875. {
  8876. name: "Macro",
  8877. height: math.unit(250, "feet")
  8878. },
  8879. {
  8880. name: "Megamacro",
  8881. height: math.unit(5, "miles")
  8882. },
  8883. {
  8884. name: "Gigamacro",
  8885. height: math.unit(8000, "miles")
  8886. },
  8887. ]
  8888. ))
  8889. characterMakers.push(() => makeCharacter(
  8890. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8891. {
  8892. front: {
  8893. height: math.unit(6, "feet"),
  8894. weight: math.unit(150, "lb"),
  8895. name: "Front",
  8896. image: {
  8897. source: "./media/characters/natalie-nightring/front.svg",
  8898. extra: 1,
  8899. bottom: 0.06
  8900. }
  8901. },
  8902. },
  8903. [
  8904. {
  8905. name: "Uh Oh",
  8906. height: math.unit(0.1, "mm")
  8907. },
  8908. {
  8909. name: "Small",
  8910. height: math.unit(3, "inches")
  8911. },
  8912. {
  8913. name: "Human Scale",
  8914. height: math.unit(6, "feet")
  8915. },
  8916. {
  8917. name: "Librarian",
  8918. height: math.unit(50, "feet"),
  8919. default: true
  8920. },
  8921. {
  8922. name: "Immense",
  8923. height: math.unit(200, "miles")
  8924. },
  8925. ]
  8926. ))
  8927. characterMakers.push(() => makeCharacter(
  8928. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8929. {
  8930. front: {
  8931. height: math.unit(6, "feet"),
  8932. weight: math.unit(180, "lbs"),
  8933. name: "Front",
  8934. image: {
  8935. source: "./media/characters/danni-rosie/front.svg",
  8936. extra: 1260 / 1128,
  8937. bottom: 0.022
  8938. }
  8939. },
  8940. },
  8941. [
  8942. {
  8943. name: "Micro",
  8944. height: math.unit(2, "inches"),
  8945. default: true
  8946. },
  8947. ]
  8948. ))
  8949. characterMakers.push(() => makeCharacter(
  8950. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8951. {
  8952. front: {
  8953. height: math.unit(5 + 9 / 12, "feet"),
  8954. weight: math.unit(220, "lb"),
  8955. name: "Front",
  8956. image: {
  8957. source: "./media/characters/samantha-kruse/front.svg",
  8958. extra: (985 / 935),
  8959. bottom: 0.03
  8960. }
  8961. },
  8962. frontUndressed: {
  8963. height: math.unit(5 + 9 / 12, "feet"),
  8964. weight: math.unit(220, "lb"),
  8965. name: "Front (Undressed)",
  8966. image: {
  8967. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8968. extra: (973 / 923),
  8969. bottom: 0.025
  8970. }
  8971. },
  8972. fat: {
  8973. height: math.unit(5 + 9 / 12, "feet"),
  8974. weight: math.unit(900, "lb"),
  8975. name: "Front (Fat)",
  8976. image: {
  8977. source: "./media/characters/samantha-kruse/fat.svg",
  8978. extra: 2688 / 2561
  8979. }
  8980. },
  8981. },
  8982. [
  8983. {
  8984. name: "Normal",
  8985. height: math.unit(5 + 9 / 12, "feet"),
  8986. default: true
  8987. }
  8988. ]
  8989. ))
  8990. characterMakers.push(() => makeCharacter(
  8991. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8992. {
  8993. back: {
  8994. height: math.unit(5 + 4 / 12, "feet"),
  8995. weight: math.unit(4963, "lb"),
  8996. name: "Back",
  8997. image: {
  8998. source: "./media/characters/amelia-rosie/back.svg",
  8999. extra: 1113 / 963,
  9000. bottom: 0.01
  9001. }
  9002. },
  9003. },
  9004. [
  9005. {
  9006. name: "Level 0",
  9007. height: math.unit(5 + 4 / 12, "feet")
  9008. },
  9009. {
  9010. name: "Level 1",
  9011. height: math.unit(164597, "feet"),
  9012. default: true
  9013. },
  9014. {
  9015. name: "Level 2",
  9016. height: math.unit(956243, "miles")
  9017. },
  9018. {
  9019. name: "Level 3",
  9020. height: math.unit(29421709423, "miles")
  9021. },
  9022. {
  9023. name: "Level 4",
  9024. height: math.unit(154, "lightyears")
  9025. },
  9026. {
  9027. name: "Level 5",
  9028. height: math.unit(4738272, "lightyears")
  9029. },
  9030. {
  9031. name: "Level 6",
  9032. height: math.unit(145787152896, "lightyears")
  9033. },
  9034. ]
  9035. ))
  9036. characterMakers.push(() => makeCharacter(
  9037. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9038. {
  9039. front: {
  9040. height: math.unit(5 + 11 / 12, "feet"),
  9041. weight: math.unit(65, "kg"),
  9042. name: "Front",
  9043. image: {
  9044. source: "./media/characters/rook-kitara/front.svg",
  9045. extra: 1347 / 1274,
  9046. bottom: 0.005
  9047. }
  9048. },
  9049. },
  9050. [
  9051. {
  9052. name: "Totally Unfair",
  9053. height: math.unit(1.8, "mm")
  9054. },
  9055. {
  9056. name: "Lap Rookie",
  9057. height: math.unit(1.4, "feet")
  9058. },
  9059. {
  9060. name: "Normal",
  9061. height: math.unit(5 + 11 / 12, "feet"),
  9062. default: true
  9063. },
  9064. {
  9065. name: "How Did This Happen",
  9066. height: math.unit(80, "miles")
  9067. }
  9068. ]
  9069. ))
  9070. characterMakers.push(() => makeCharacter(
  9071. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9072. {
  9073. front: {
  9074. height: math.unit(7, "feet"),
  9075. weight: math.unit(300, "lb"),
  9076. name: "Front",
  9077. image: {
  9078. source: "./media/characters/pisces/front.svg",
  9079. extra: 2255 / 2115,
  9080. bottom: 0.03
  9081. }
  9082. },
  9083. back: {
  9084. height: math.unit(7, "feet"),
  9085. weight: math.unit(300, "lb"),
  9086. name: "Back",
  9087. image: {
  9088. source: "./media/characters/pisces/back.svg",
  9089. extra: 2146 / 2055,
  9090. bottom: 0.04
  9091. }
  9092. },
  9093. },
  9094. [
  9095. {
  9096. name: "Normal",
  9097. height: math.unit(7, "feet"),
  9098. default: true
  9099. },
  9100. {
  9101. name: "Swimming Pool",
  9102. height: math.unit(12.2, "meters")
  9103. },
  9104. {
  9105. name: "Olympic Swimming Pool",
  9106. height: math.unit(56.3, "meters")
  9107. },
  9108. {
  9109. name: "Lake Superior",
  9110. height: math.unit(93900, "meters")
  9111. },
  9112. {
  9113. name: "Mediterranean Sea",
  9114. height: math.unit(644457, "meters")
  9115. },
  9116. {
  9117. name: "World's Oceans",
  9118. height: math.unit(4567491, "meters")
  9119. },
  9120. ]
  9121. ))
  9122. characterMakers.push(() => makeCharacter(
  9123. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9124. {
  9125. front: {
  9126. height: math.unit(2.3, "meters"),
  9127. weight: math.unit(120, "kg"),
  9128. name: "Front",
  9129. image: {
  9130. source: "./media/characters/zelas/front.svg"
  9131. }
  9132. },
  9133. side: {
  9134. height: math.unit(2.3, "meters"),
  9135. weight: math.unit(120, "kg"),
  9136. name: "Side",
  9137. image: {
  9138. source: "./media/characters/zelas/side.svg"
  9139. }
  9140. },
  9141. back: {
  9142. height: math.unit(2.3, "meters"),
  9143. weight: math.unit(120, "kg"),
  9144. name: "Back",
  9145. image: {
  9146. source: "./media/characters/zelas/back.svg"
  9147. }
  9148. },
  9149. foot: {
  9150. height: math.unit(1.116, "feet"),
  9151. name: "Foot",
  9152. image: {
  9153. source: "./media/characters/zelas/foot.svg"
  9154. }
  9155. },
  9156. },
  9157. [
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(2.3, "meters")
  9161. },
  9162. {
  9163. name: "Macro",
  9164. height: math.unit(30, "meters"),
  9165. default: true
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9171. {
  9172. front: {
  9173. height: math.unit(1, "inch"),
  9174. weight: math.unit(0.21, "grams"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/talbot/front.svg",
  9178. extra: 594 / 544
  9179. }
  9180. },
  9181. },
  9182. [
  9183. {
  9184. name: "Micro",
  9185. height: math.unit(1, "inch"),
  9186. default: true
  9187. },
  9188. ]
  9189. ))
  9190. characterMakers.push(() => makeCharacter(
  9191. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9192. {
  9193. front: {
  9194. height: math.unit(3 + 3 / 12, "feet"),
  9195. weight: math.unit(51.8, "lb"),
  9196. name: "Front",
  9197. image: {
  9198. source: "./media/characters/fliss/front.svg",
  9199. extra: 840 / 640
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Teeny Tiny",
  9206. height: math.unit(1, "mm")
  9207. },
  9208. {
  9209. name: "Small",
  9210. height: math.unit(1, "inch"),
  9211. default: true
  9212. },
  9213. {
  9214. name: "Standard Sylveon",
  9215. height: math.unit(3 + 3 / 12, "feet")
  9216. },
  9217. {
  9218. name: "Large Nuisance",
  9219. height: math.unit(33, "feet")
  9220. },
  9221. {
  9222. name: "City Filler",
  9223. height: math.unit(3000, "feet")
  9224. },
  9225. {
  9226. name: "New Horizon",
  9227. height: math.unit(6000, "miles")
  9228. },
  9229. ]
  9230. ))
  9231. characterMakers.push(() => makeCharacter(
  9232. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9233. {
  9234. front: {
  9235. height: math.unit(5, "cm"),
  9236. weight: math.unit(1.94, "g"),
  9237. name: "Front",
  9238. image: {
  9239. source: "./media/characters/fleta/front.svg",
  9240. extra: 835 / 803
  9241. }
  9242. },
  9243. back: {
  9244. height: math.unit(5, "cm"),
  9245. weight: math.unit(1.94, "g"),
  9246. name: "Back",
  9247. image: {
  9248. source: "./media/characters/fleta/back.svg",
  9249. extra: 835 / 803
  9250. }
  9251. },
  9252. },
  9253. [
  9254. {
  9255. name: "Micro",
  9256. height: math.unit(5, "cm"),
  9257. default: true
  9258. },
  9259. ]
  9260. ))
  9261. characterMakers.push(() => makeCharacter(
  9262. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9263. {
  9264. front: {
  9265. height: math.unit(6, "feet"),
  9266. weight: math.unit(225, "lb"),
  9267. name: "Front",
  9268. image: {
  9269. source: "./media/characters/dominic/front.svg",
  9270. extra: 1770 / 1620,
  9271. bottom: 0.025
  9272. }
  9273. },
  9274. back: {
  9275. height: math.unit(6, "feet"),
  9276. weight: math.unit(225, "lb"),
  9277. name: "Back",
  9278. image: {
  9279. source: "./media/characters/dominic/back.svg",
  9280. extra: 1745 / 1620,
  9281. bottom: 0.065
  9282. }
  9283. },
  9284. },
  9285. [
  9286. {
  9287. name: "Nano",
  9288. height: math.unit(0.1, "mm")
  9289. },
  9290. {
  9291. name: "Micro-",
  9292. height: math.unit(1, "mm")
  9293. },
  9294. {
  9295. name: "Micro",
  9296. height: math.unit(4, "inches")
  9297. },
  9298. {
  9299. name: "Normal",
  9300. height: math.unit(6 + 4 / 12, "feet"),
  9301. default: true
  9302. },
  9303. {
  9304. name: "Macro",
  9305. height: math.unit(115, "feet")
  9306. },
  9307. {
  9308. name: "Macro+",
  9309. height: math.unit(955, "feet")
  9310. },
  9311. {
  9312. name: "Megamacro",
  9313. height: math.unit(8990, "feet")
  9314. },
  9315. {
  9316. name: "Gigmacro",
  9317. height: math.unit(9310, "miles")
  9318. },
  9319. {
  9320. name: "Teramacro",
  9321. height: math.unit(1567005010, "miles")
  9322. },
  9323. {
  9324. name: "Examacro",
  9325. height: math.unit(1425, "parsecs")
  9326. },
  9327. ]
  9328. ))
  9329. characterMakers.push(() => makeCharacter(
  9330. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9331. {
  9332. front: {
  9333. height: math.unit(400, "feet"),
  9334. weight: math.unit(44444444, "lb"),
  9335. name: "Front",
  9336. image: {
  9337. source: "./media/characters/major-colonel/front.svg"
  9338. }
  9339. },
  9340. back: {
  9341. height: math.unit(400, "feet"),
  9342. weight: math.unit(44444444, "lb"),
  9343. name: "Back",
  9344. image: {
  9345. source: "./media/characters/major-colonel/back.svg"
  9346. }
  9347. },
  9348. },
  9349. [
  9350. {
  9351. name: "Macro",
  9352. height: math.unit(400, "feet"),
  9353. default: true
  9354. },
  9355. ]
  9356. ))
  9357. characterMakers.push(() => makeCharacter(
  9358. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9359. {
  9360. catFront: {
  9361. height: math.unit(6, "feet"),
  9362. weight: math.unit(120, "lb"),
  9363. name: "Front (Cat Side)",
  9364. image: {
  9365. source: "./media/characters/axel-lycan/cat-front.svg",
  9366. extra: 430 / 402,
  9367. bottom: 43 / 472.35
  9368. }
  9369. },
  9370. catBack: {
  9371. height: math.unit(6, "feet"),
  9372. weight: math.unit(120, "lb"),
  9373. name: "Back (Cat Side)",
  9374. image: {
  9375. source: "./media/characters/axel-lycan/cat-back.svg",
  9376. extra: 447 / 419,
  9377. bottom: 23.3 / 469
  9378. }
  9379. },
  9380. wolfFront: {
  9381. height: math.unit(6, "feet"),
  9382. weight: math.unit(120, "lb"),
  9383. name: "Front (Wolf Side)",
  9384. image: {
  9385. source: "./media/characters/axel-lycan/wolf-front.svg",
  9386. extra: 485 / 456,
  9387. bottom: 19 / 504
  9388. }
  9389. },
  9390. wolfBack: {
  9391. height: math.unit(6, "feet"),
  9392. weight: math.unit(120, "lb"),
  9393. name: "Back (Wolf Side)",
  9394. image: {
  9395. source: "./media/characters/axel-lycan/wolf-back.svg",
  9396. extra: 475 / 438,
  9397. bottom: 39.2 / 514
  9398. }
  9399. },
  9400. },
  9401. [
  9402. {
  9403. name: "Macro",
  9404. height: math.unit(1, "km"),
  9405. default: true
  9406. },
  9407. ]
  9408. ))
  9409. characterMakers.push(() => makeCharacter(
  9410. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9411. {
  9412. front: {
  9413. height: math.unit(5 + 9 / 12, "feet"),
  9414. weight: math.unit(175, "lb"),
  9415. name: "Front",
  9416. image: {
  9417. source: "./media/characters/vanrel-hyena/front.svg",
  9418. extra: 1086 / 1010,
  9419. bottom: 0.04
  9420. }
  9421. },
  9422. },
  9423. [
  9424. {
  9425. name: "Normal",
  9426. height: math.unit(5 + 9 / 12, "feet"),
  9427. default: true
  9428. },
  9429. ]
  9430. ))
  9431. characterMakers.push(() => makeCharacter(
  9432. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9433. {
  9434. front: {
  9435. height: math.unit(6, "feet"),
  9436. weight: math.unit(103, "lb"),
  9437. name: "Front",
  9438. image: {
  9439. source: "./media/characters/abbott-absol/front.svg",
  9440. extra: 2010 / 1842
  9441. }
  9442. },
  9443. },
  9444. [
  9445. {
  9446. name: "Megamicro",
  9447. height: math.unit(0.1, "mm")
  9448. },
  9449. {
  9450. name: "Micro",
  9451. height: math.unit(1, "inch")
  9452. },
  9453. {
  9454. name: "Normal",
  9455. height: math.unit(6, "feet"),
  9456. default: true
  9457. },
  9458. ]
  9459. ))
  9460. characterMakers.push(() => makeCharacter(
  9461. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9462. {
  9463. front: {
  9464. height: math.unit(6, "feet"),
  9465. weight: math.unit(264, "lb"),
  9466. name: "Front",
  9467. image: {
  9468. source: "./media/characters/hector/front.svg",
  9469. extra: 2280 / 2130,
  9470. bottom: 0.07
  9471. }
  9472. },
  9473. },
  9474. [
  9475. {
  9476. name: "Normal",
  9477. height: math.unit(12.25, "foot"),
  9478. default: true
  9479. },
  9480. {
  9481. name: "Macro",
  9482. height: math.unit(160, "feet")
  9483. },
  9484. ]
  9485. ))
  9486. characterMakers.push(() => makeCharacter(
  9487. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9488. {
  9489. front: {
  9490. height: math.unit(6, "feet"),
  9491. weight: math.unit(150, "lb"),
  9492. name: "Front",
  9493. image: {
  9494. source: "./media/characters/sal/front.svg",
  9495. extra: 1846 / 1699,
  9496. bottom: 0.04
  9497. }
  9498. },
  9499. },
  9500. [
  9501. {
  9502. name: "Megamacro",
  9503. height: math.unit(10, "miles"),
  9504. default: true
  9505. },
  9506. ]
  9507. ))
  9508. characterMakers.push(() => makeCharacter(
  9509. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9510. {
  9511. front: {
  9512. height: math.unit(3, "meters"),
  9513. weight: math.unit(450, "kg"),
  9514. name: "front",
  9515. image: {
  9516. source: "./media/characters/ranger/front.svg",
  9517. extra: 2401 / 2243,
  9518. bottom: 0.05
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Normal",
  9525. height: math.unit(3, "meters"),
  9526. default: true
  9527. },
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9532. {
  9533. front: {
  9534. height: math.unit(14, "feet"),
  9535. weight: math.unit(800, "kg"),
  9536. name: "Front",
  9537. image: {
  9538. source: "./media/characters/theresa/front.svg",
  9539. extra: 3575 / 3346,
  9540. bottom: 0.03
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Normal",
  9547. height: math.unit(14, "feet"),
  9548. default: true
  9549. },
  9550. ]
  9551. ))
  9552. characterMakers.push(() => makeCharacter(
  9553. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9554. {
  9555. front: {
  9556. height: math.unit(6, "feet"),
  9557. weight: math.unit(3, "kg"),
  9558. name: "Front",
  9559. image: {
  9560. source: "./media/characters/ine/front.svg",
  9561. extra: 678 / 539,
  9562. bottom: 0.023
  9563. }
  9564. },
  9565. },
  9566. [
  9567. {
  9568. name: "Normal",
  9569. height: math.unit(2.265, "feet"),
  9570. default: true
  9571. },
  9572. ]
  9573. ))
  9574. characterMakers.push(() => makeCharacter(
  9575. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9576. {
  9577. front: {
  9578. height: math.unit(5, "feet"),
  9579. weight: math.unit(30, "kg"),
  9580. name: "Front",
  9581. image: {
  9582. source: "./media/characters/vial/front.svg",
  9583. extra: 1365 / 1277,
  9584. bottom: 0.04
  9585. }
  9586. },
  9587. },
  9588. [
  9589. {
  9590. name: "Normal",
  9591. height: math.unit(5, "feet"),
  9592. default: true
  9593. },
  9594. ]
  9595. ))
  9596. characterMakers.push(() => makeCharacter(
  9597. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9598. {
  9599. side: {
  9600. height: math.unit(3.4, "meters"),
  9601. weight: math.unit(1000, "lb"),
  9602. name: "Side",
  9603. image: {
  9604. source: "./media/characters/rovoska/side.svg",
  9605. extra: 4403 / 1515
  9606. }
  9607. },
  9608. },
  9609. [
  9610. {
  9611. name: "Normal",
  9612. height: math.unit(3.4, "meters"),
  9613. default: true
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9619. {
  9620. front: {
  9621. height: math.unit(8, "feet"),
  9622. weight: math.unit(315, "lb"),
  9623. name: "Front",
  9624. image: {
  9625. source: "./media/characters/gunner-rotthbauer/front.svg"
  9626. }
  9627. },
  9628. back: {
  9629. height: math.unit(8, "feet"),
  9630. weight: math.unit(315, "lb"),
  9631. name: "Back",
  9632. image: {
  9633. source: "./media/characters/gunner-rotthbauer/back.svg"
  9634. }
  9635. },
  9636. },
  9637. [
  9638. {
  9639. name: "Micro",
  9640. height: math.unit(3.5, "inches")
  9641. },
  9642. {
  9643. name: "Normal",
  9644. height: math.unit(8, "feet"),
  9645. default: true
  9646. },
  9647. {
  9648. name: "Macro",
  9649. height: math.unit(250, "feet")
  9650. },
  9651. {
  9652. name: "Megamacro",
  9653. height: math.unit(1, "AU")
  9654. },
  9655. ]
  9656. ))
  9657. characterMakers.push(() => makeCharacter(
  9658. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9659. {
  9660. front: {
  9661. height: math.unit(5 + 5 / 12, "feet"),
  9662. weight: math.unit(140, "lb"),
  9663. name: "Front",
  9664. image: {
  9665. source: "./media/characters/allatia/front.svg",
  9666. extra: 1227 / 1180,
  9667. bottom: 0.027
  9668. }
  9669. },
  9670. },
  9671. [
  9672. {
  9673. name: "Normal",
  9674. height: math.unit(5 + 5 / 12, "feet")
  9675. },
  9676. {
  9677. name: "Macro",
  9678. height: math.unit(250, "feet"),
  9679. default: true
  9680. },
  9681. {
  9682. name: "Megamacro",
  9683. height: math.unit(8, "miles")
  9684. }
  9685. ]
  9686. ))
  9687. characterMakers.push(() => makeCharacter(
  9688. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9689. {
  9690. front: {
  9691. height: math.unit(6, "feet"),
  9692. weight: math.unit(120, "lb"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/tene/front.svg",
  9696. extra: 1728 / 1578,
  9697. bottom: 0.022
  9698. }
  9699. },
  9700. stomping: {
  9701. height: math.unit(2.025, "meters"),
  9702. weight: math.unit(120, "lb"),
  9703. name: "Stomping",
  9704. image: {
  9705. source: "./media/characters/tene/stomping.svg",
  9706. extra: 938 / 873,
  9707. bottom: 0.01
  9708. }
  9709. },
  9710. sitting: {
  9711. height: math.unit(1, "meter"),
  9712. weight: math.unit(120, "lb"),
  9713. name: "Sitting",
  9714. image: {
  9715. source: "./media/characters/tene/sitting.svg",
  9716. extra: 437 / 415,
  9717. bottom: 0.1
  9718. }
  9719. },
  9720. feral: {
  9721. height: math.unit(3.9, "feet"),
  9722. weight: math.unit(250, "lb"),
  9723. name: "Feral",
  9724. image: {
  9725. source: "./media/characters/tene/feral.svg",
  9726. extra: 717 / 458,
  9727. bottom: 0.179
  9728. }
  9729. },
  9730. },
  9731. [
  9732. {
  9733. name: "Normal",
  9734. height: math.unit(6, "feet")
  9735. },
  9736. {
  9737. name: "Macro",
  9738. height: math.unit(300, "feet"),
  9739. default: true
  9740. },
  9741. {
  9742. name: "Megamacro",
  9743. height: math.unit(5, "miles")
  9744. },
  9745. ]
  9746. ))
  9747. characterMakers.push(() => makeCharacter(
  9748. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9749. {
  9750. side: {
  9751. height: math.unit(6, "feet"),
  9752. name: "Side",
  9753. image: {
  9754. source: "./media/characters/evander/side.svg",
  9755. extra: 877 / 477
  9756. }
  9757. },
  9758. },
  9759. [
  9760. {
  9761. name: "Normal",
  9762. height: math.unit(0.83, "meters"),
  9763. default: true
  9764. },
  9765. ]
  9766. ))
  9767. characterMakers.push(() => makeCharacter(
  9768. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9769. {
  9770. front: {
  9771. height: math.unit(12, "feet"),
  9772. weight: math.unit(1000, "lb"),
  9773. name: "Front",
  9774. image: {
  9775. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9776. extra: 1762 / 1611
  9777. }
  9778. },
  9779. back: {
  9780. height: math.unit(12, "feet"),
  9781. weight: math.unit(1000, "lb"),
  9782. name: "Back",
  9783. image: {
  9784. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9785. extra: 1762 / 1611
  9786. }
  9787. },
  9788. },
  9789. [
  9790. {
  9791. name: "Normal",
  9792. height: math.unit(12, "feet"),
  9793. default: true
  9794. },
  9795. {
  9796. name: "Kaiju",
  9797. height: math.unit(150, "feet")
  9798. },
  9799. ]
  9800. ))
  9801. characterMakers.push(() => makeCharacter(
  9802. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9803. {
  9804. front: {
  9805. height: math.unit(6, "feet"),
  9806. weight: math.unit(150, "lb"),
  9807. name: "Front",
  9808. image: {
  9809. source: "./media/characters/zero-alurus/front.svg"
  9810. }
  9811. },
  9812. back: {
  9813. height: math.unit(6, "feet"),
  9814. weight: math.unit(150, "lb"),
  9815. name: "Back",
  9816. image: {
  9817. source: "./media/characters/zero-alurus/back.svg"
  9818. }
  9819. },
  9820. },
  9821. [
  9822. {
  9823. name: "Normal",
  9824. height: math.unit(5 + 10 / 12, "feet")
  9825. },
  9826. {
  9827. name: "Macro",
  9828. height: math.unit(60, "feet"),
  9829. default: true
  9830. },
  9831. {
  9832. name: "Macro+",
  9833. height: math.unit(450, "feet")
  9834. },
  9835. ]
  9836. ))
  9837. characterMakers.push(() => makeCharacter(
  9838. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9839. {
  9840. front: {
  9841. height: math.unit(6, "feet"),
  9842. weight: math.unit(200, "lb"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/mega-shi/front.svg",
  9846. extra: 1279 / 1250,
  9847. bottom: 0.02
  9848. }
  9849. },
  9850. back: {
  9851. height: math.unit(6, "feet"),
  9852. weight: math.unit(200, "lb"),
  9853. name: "Back",
  9854. image: {
  9855. source: "./media/characters/mega-shi/back.svg",
  9856. extra: 1279 / 1250,
  9857. bottom: 0.02
  9858. }
  9859. },
  9860. },
  9861. [
  9862. {
  9863. name: "Micro",
  9864. height: math.unit(16 + 6 / 12, "feet")
  9865. },
  9866. {
  9867. name: "Third Dimension",
  9868. height: math.unit(40, "meters")
  9869. },
  9870. {
  9871. name: "Normal",
  9872. height: math.unit(660, "feet"),
  9873. default: true
  9874. },
  9875. {
  9876. name: "Megamacro",
  9877. height: math.unit(10, "miles")
  9878. },
  9879. {
  9880. name: "Planetary Launch",
  9881. height: math.unit(500, "miles")
  9882. },
  9883. {
  9884. name: "Interstellar",
  9885. height: math.unit(1e9, "miles")
  9886. },
  9887. {
  9888. name: "Leaving the Universe",
  9889. height: math.unit(1, "gigaparsec")
  9890. },
  9891. {
  9892. name: "Travelling Universes",
  9893. height: math.unit(30e15, "parsecs")
  9894. },
  9895. ]
  9896. ))
  9897. characterMakers.push(() => makeCharacter(
  9898. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9899. {
  9900. front: {
  9901. height: math.unit(6, "feet"),
  9902. weight: math.unit(150, "lb"),
  9903. name: "Front",
  9904. image: {
  9905. source: "./media/characters/odyssey/front.svg",
  9906. extra: 1782 / 1582,
  9907. bottom: 0.01
  9908. }
  9909. },
  9910. side: {
  9911. height: math.unit(5.7, "feet"),
  9912. weight: math.unit(140, "lb"),
  9913. name: "Side",
  9914. image: {
  9915. source: "./media/characters/odyssey/side.svg",
  9916. extra: 6462 / 5700
  9917. }
  9918. },
  9919. },
  9920. [
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(5 + 4 / 12, "feet")
  9924. },
  9925. {
  9926. name: "Macro",
  9927. height: math.unit(1, "km")
  9928. },
  9929. {
  9930. name: "Megamacro",
  9931. height: math.unit(3000, "km")
  9932. },
  9933. {
  9934. name: "Gigamacro",
  9935. height: math.unit(1, "AU"),
  9936. default: true
  9937. },
  9938. {
  9939. name: "Omniversal",
  9940. height: math.unit(100e14, "lightyears")
  9941. },
  9942. ]
  9943. ))
  9944. characterMakers.push(() => makeCharacter(
  9945. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9946. {
  9947. front: {
  9948. height: math.unit(6, "feet"),
  9949. weight: math.unit(300, "lb"),
  9950. name: "Front",
  9951. image: {
  9952. source: "./media/characters/mekuto/front.svg",
  9953. extra: 921 / 832,
  9954. bottom: 0.03
  9955. }
  9956. },
  9957. hand: {
  9958. height: math.unit(6 / 10.24, "feet"),
  9959. name: "Hand",
  9960. image: {
  9961. source: "./media/characters/mekuto/hand.svg"
  9962. }
  9963. },
  9964. foot: {
  9965. height: math.unit(6 / 5.05, "feet"),
  9966. name: "Foot",
  9967. image: {
  9968. source: "./media/characters/mekuto/foot.svg"
  9969. }
  9970. },
  9971. },
  9972. [
  9973. {
  9974. name: "Minimicro",
  9975. height: math.unit(0.2, "inches")
  9976. },
  9977. {
  9978. name: "Micro",
  9979. height: math.unit(1.5, "inches")
  9980. },
  9981. {
  9982. name: "Normal",
  9983. height: math.unit(5 + 11 / 12, "feet"),
  9984. default: true
  9985. },
  9986. {
  9987. name: "Minimacro",
  9988. height: math.unit(17 + 9 / 12, "feet")
  9989. },
  9990. {
  9991. name: "Macro",
  9992. height: math.unit(177.5, "feet")
  9993. },
  9994. {
  9995. name: "Megamacro",
  9996. height: math.unit(152, "miles")
  9997. },
  9998. ]
  9999. ))
  10000. characterMakers.push(() => makeCharacter(
  10001. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10002. {
  10003. front: {
  10004. height: math.unit(6.5, "inches"),
  10005. weight: math.unit(13, "oz"),
  10006. name: "Front",
  10007. image: {
  10008. source: "./media/characters/dafydd-tomos/front.svg",
  10009. extra: 2990 / 2603,
  10010. bottom: 0.03
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Micro",
  10017. height: math.unit(6.5, "inches"),
  10018. default: true
  10019. },
  10020. ]
  10021. ))
  10022. characterMakers.push(() => makeCharacter(
  10023. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10024. {
  10025. front: {
  10026. height: math.unit(6, "feet"),
  10027. weight: math.unit(150, "lb"),
  10028. name: "Front",
  10029. image: {
  10030. source: "./media/characters/splinter/front.svg",
  10031. extra: 2990 / 2882,
  10032. bottom: 0.04
  10033. }
  10034. },
  10035. back: {
  10036. height: math.unit(6, "feet"),
  10037. weight: math.unit(150, "lb"),
  10038. name: "Back",
  10039. image: {
  10040. source: "./media/characters/splinter/back.svg",
  10041. extra: 2990 / 2882,
  10042. bottom: 0.04
  10043. }
  10044. },
  10045. },
  10046. [
  10047. {
  10048. name: "Normal",
  10049. height: math.unit(6, "feet")
  10050. },
  10051. {
  10052. name: "Macro",
  10053. height: math.unit(230, "meters"),
  10054. default: true
  10055. },
  10056. ]
  10057. ))
  10058. characterMakers.push(() => makeCharacter(
  10059. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10060. {
  10061. front: {
  10062. height: math.unit(4 + 10 / 12, "feet"),
  10063. weight: math.unit(480, "lb"),
  10064. name: "Front",
  10065. image: {
  10066. source: "./media/characters/snow-gabumon/front.svg",
  10067. extra: 1140 / 963,
  10068. bottom: 0.058
  10069. }
  10070. },
  10071. back: {
  10072. height: math.unit(4 + 10 / 12, "feet"),
  10073. weight: math.unit(480, "lb"),
  10074. name: "Back",
  10075. image: {
  10076. source: "./media/characters/snow-gabumon/back.svg",
  10077. extra: 1115 / 962,
  10078. bottom: 0.041
  10079. }
  10080. },
  10081. frontUndresed: {
  10082. height: math.unit(4 + 10 / 12, "feet"),
  10083. weight: math.unit(480, "lb"),
  10084. name: "Front (Undressed)",
  10085. image: {
  10086. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10087. extra: 1061 / 960,
  10088. bottom: 0.045
  10089. }
  10090. },
  10091. },
  10092. [
  10093. {
  10094. name: "Micro",
  10095. height: math.unit(1, "inch")
  10096. },
  10097. {
  10098. name: "Normal",
  10099. height: math.unit(4 + 10 / 12, "feet"),
  10100. default: true
  10101. },
  10102. {
  10103. name: "Macro",
  10104. height: math.unit(200, "feet")
  10105. },
  10106. {
  10107. name: "Megamacro",
  10108. height: math.unit(120, "miles")
  10109. },
  10110. {
  10111. name: "Gigamacro",
  10112. height: math.unit(9800, "miles")
  10113. },
  10114. ]
  10115. ))
  10116. characterMakers.push(() => makeCharacter(
  10117. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10118. {
  10119. front: {
  10120. height: math.unit(1.7, "meters"),
  10121. weight: math.unit(140, "lb"),
  10122. name: "Front",
  10123. image: {
  10124. source: "./media/characters/moody/front.svg",
  10125. extra: 3226 / 3007,
  10126. bottom: 0.087
  10127. }
  10128. },
  10129. },
  10130. [
  10131. {
  10132. name: "Micro",
  10133. height: math.unit(1, "mm")
  10134. },
  10135. {
  10136. name: "Normal",
  10137. height: math.unit(1.7, "meters"),
  10138. default: true
  10139. },
  10140. {
  10141. name: "Macro",
  10142. height: math.unit(80, "meters")
  10143. },
  10144. {
  10145. name: "Macro+",
  10146. height: math.unit(500, "meters")
  10147. },
  10148. ]
  10149. ))
  10150. characterMakers.push(() => makeCharacter(
  10151. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10152. {
  10153. front: {
  10154. height: math.unit(6, "feet"),
  10155. weight: math.unit(150, "lb"),
  10156. name: "Front",
  10157. image: {
  10158. source: "./media/characters/zyas/front.svg",
  10159. extra: 1180 / 1120,
  10160. bottom: 0.045
  10161. }
  10162. },
  10163. },
  10164. [
  10165. {
  10166. name: "Normal",
  10167. height: math.unit(10, "feet"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "Macro",
  10172. height: math.unit(500, "feet")
  10173. },
  10174. {
  10175. name: "Megamacro",
  10176. height: math.unit(5, "miles")
  10177. },
  10178. {
  10179. name: "Teramacro",
  10180. height: math.unit(150000, "miles")
  10181. },
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10186. {
  10187. front: {
  10188. height: math.unit(6, "feet"),
  10189. weight: math.unit(150, "lb"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/cuon/front.svg",
  10193. extra: 1390 / 1320,
  10194. bottom: 0.008
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Micro",
  10201. height: math.unit(3, "inches")
  10202. },
  10203. {
  10204. name: "Normal",
  10205. height: math.unit(18 + 9 / 12, "feet"),
  10206. default: true
  10207. },
  10208. {
  10209. name: "Macro",
  10210. height: math.unit(360, "feet")
  10211. },
  10212. {
  10213. name: "Megamacro",
  10214. height: math.unit(360, "miles")
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(2.4, "meters"),
  10223. weight: math.unit(70, "kg"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/nyanuxk/front.svg",
  10227. extra: 1172 / 1084,
  10228. bottom: 0.065
  10229. }
  10230. },
  10231. side: {
  10232. height: math.unit(2.4, "meters"),
  10233. weight: math.unit(70, "kg"),
  10234. name: "Side",
  10235. image: {
  10236. source: "./media/characters/nyanuxk/side.svg",
  10237. extra: 1190 / 1132,
  10238. bottom: 0.007
  10239. }
  10240. },
  10241. back: {
  10242. height: math.unit(2.4, "meters"),
  10243. weight: math.unit(70, "kg"),
  10244. name: "Back",
  10245. image: {
  10246. source: "./media/characters/nyanuxk/back.svg",
  10247. extra: 1200 / 1141,
  10248. bottom: 0.015
  10249. }
  10250. },
  10251. foot: {
  10252. height: math.unit(0.52, "meters"),
  10253. name: "Foot",
  10254. image: {
  10255. source: "./media/characters/nyanuxk/foot.svg"
  10256. }
  10257. },
  10258. },
  10259. [
  10260. {
  10261. name: "Micro",
  10262. height: math.unit(2, "cm")
  10263. },
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(2.4, "meters"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "Smaller Macro",
  10271. height: math.unit(120, "meters")
  10272. },
  10273. {
  10274. name: "Bigger Macro",
  10275. height: math.unit(1.2, "km")
  10276. },
  10277. {
  10278. name: "Megamacro",
  10279. height: math.unit(15, "kilometers")
  10280. },
  10281. {
  10282. name: "Gigamacro",
  10283. height: math.unit(2000, "km")
  10284. },
  10285. {
  10286. name: "Teramacro",
  10287. height: math.unit(500000, "km")
  10288. },
  10289. ]
  10290. ))
  10291. characterMakers.push(() => makeCharacter(
  10292. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10293. {
  10294. side: {
  10295. height: math.unit(6, "feet"),
  10296. name: "Side",
  10297. image: {
  10298. source: "./media/characters/ailbhe/side.svg",
  10299. extra: 757 / 464,
  10300. bottom: 0.041
  10301. }
  10302. },
  10303. },
  10304. [
  10305. {
  10306. name: "Normal",
  10307. height: math.unit(1.07, "meters"),
  10308. default: true
  10309. },
  10310. ]
  10311. ))
  10312. characterMakers.push(() => makeCharacter(
  10313. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10314. {
  10315. front: {
  10316. height: math.unit(6, "feet"),
  10317. weight: math.unit(120, "kg"),
  10318. name: "Front",
  10319. image: {
  10320. source: "./media/characters/zevulfius/front.svg",
  10321. extra: 965 / 903
  10322. }
  10323. },
  10324. side: {
  10325. height: math.unit(6, "feet"),
  10326. weight: math.unit(120, "kg"),
  10327. name: "Side",
  10328. image: {
  10329. source: "./media/characters/zevulfius/side.svg",
  10330. extra: 939 / 900
  10331. }
  10332. },
  10333. back: {
  10334. height: math.unit(6, "feet"),
  10335. weight: math.unit(120, "kg"),
  10336. name: "Back",
  10337. image: {
  10338. source: "./media/characters/zevulfius/back.svg",
  10339. extra: 918 / 854,
  10340. bottom: 0.005
  10341. }
  10342. },
  10343. foot: {
  10344. height: math.unit(6 / 3.72, "feet"),
  10345. name: "Foot",
  10346. image: {
  10347. source: "./media/characters/zevulfius/foot.svg"
  10348. }
  10349. },
  10350. },
  10351. [
  10352. {
  10353. name: "Macro",
  10354. height: math.unit(750, "meters")
  10355. },
  10356. {
  10357. name: "Megamacro",
  10358. height: math.unit(20, "km"),
  10359. default: true
  10360. },
  10361. {
  10362. name: "Gigamacro",
  10363. height: math.unit(2000, "km")
  10364. },
  10365. {
  10366. name: "Teramacro",
  10367. height: math.unit(250000, "km")
  10368. },
  10369. ]
  10370. ))
  10371. characterMakers.push(() => makeCharacter(
  10372. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10373. {
  10374. front: {
  10375. height: math.unit(100, "feet"),
  10376. weight: math.unit(350, "kg"),
  10377. name: "Front",
  10378. image: {
  10379. source: "./media/characters/rikes/front.svg",
  10380. extra: 1565 / 1483,
  10381. bottom: 0.017
  10382. }
  10383. },
  10384. },
  10385. [
  10386. {
  10387. name: "Macro",
  10388. height: math.unit(100, "feet"),
  10389. default: true
  10390. },
  10391. ]
  10392. ))
  10393. characterMakers.push(() => makeCharacter(
  10394. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10395. {
  10396. anthro: {
  10397. height: math.unit(8, "feet"),
  10398. weight: math.unit(120, "kg"),
  10399. name: "Anthro",
  10400. image: {
  10401. source: "./media/characters/adam-silver-mane/anthro.svg",
  10402. extra: 5743 / 5339,
  10403. bottom: 0.07
  10404. }
  10405. },
  10406. taur: {
  10407. height: math.unit(16, "feet"),
  10408. weight: math.unit(1500, "kg"),
  10409. name: "Taur",
  10410. image: {
  10411. source: "./media/characters/adam-silver-mane/taur.svg",
  10412. extra: 1713 / 1571,
  10413. bottom: 0.01
  10414. }
  10415. },
  10416. },
  10417. [
  10418. {
  10419. name: "Normal",
  10420. height: math.unit(8, "feet")
  10421. },
  10422. {
  10423. name: "Minimacro",
  10424. height: math.unit(80, "feet")
  10425. },
  10426. {
  10427. name: "Macro",
  10428. height: math.unit(800, "feet"),
  10429. default: true
  10430. },
  10431. {
  10432. name: "Megamacro",
  10433. height: math.unit(8000, "feet")
  10434. },
  10435. {
  10436. name: "Gigamacro",
  10437. height: math.unit(800, "miles")
  10438. },
  10439. {
  10440. name: "Teramacro",
  10441. height: math.unit(80000, "miles")
  10442. },
  10443. {
  10444. name: "Celestial",
  10445. height: math.unit(8e6, "miles")
  10446. },
  10447. {
  10448. name: "Star Dragon",
  10449. height: math.unit(800000, "parsecs")
  10450. },
  10451. {
  10452. name: "Godly",
  10453. height: math.unit(800, "teraparsecs")
  10454. },
  10455. ]
  10456. ))
  10457. characterMakers.push(() => makeCharacter(
  10458. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10459. {
  10460. front: {
  10461. height: math.unit(6, "feet"),
  10462. weight: math.unit(150, "lb"),
  10463. name: "Front",
  10464. image: {
  10465. source: "./media/characters/ky'owin/front.svg",
  10466. extra: 3888 / 3068,
  10467. bottom: 0.015
  10468. }
  10469. },
  10470. },
  10471. [
  10472. {
  10473. name: "Normal",
  10474. height: math.unit(6 + 8 / 12, "feet")
  10475. },
  10476. {
  10477. name: "Large",
  10478. height: math.unit(68, "feet")
  10479. },
  10480. {
  10481. name: "Macro",
  10482. height: math.unit(132, "feet")
  10483. },
  10484. {
  10485. name: "Macro+",
  10486. height: math.unit(340, "feet")
  10487. },
  10488. {
  10489. name: "Macro++",
  10490. height: math.unit(680, "feet"),
  10491. default: true
  10492. },
  10493. {
  10494. name: "Megamacro",
  10495. height: math.unit(1, "mile")
  10496. },
  10497. {
  10498. name: "Megamacro+",
  10499. height: math.unit(10, "miles")
  10500. },
  10501. ]
  10502. ))
  10503. characterMakers.push(() => makeCharacter(
  10504. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10505. {
  10506. front: {
  10507. height: math.unit(4, "feet"),
  10508. weight: math.unit(50, "lb"),
  10509. name: "Front",
  10510. image: {
  10511. source: "./media/characters/mal/front.svg",
  10512. extra: 785 / 724,
  10513. bottom: 0.07
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Micro",
  10520. height: math.unit(4, "inches")
  10521. },
  10522. {
  10523. name: "Normal",
  10524. height: math.unit(4, "feet"),
  10525. default: true
  10526. },
  10527. {
  10528. name: "Macro",
  10529. height: math.unit(200, "feet")
  10530. },
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10535. {
  10536. front: {
  10537. height: math.unit(6, "feet"),
  10538. weight: math.unit(150, "lb"),
  10539. name: "Front",
  10540. image: {
  10541. source: "./media/characters/jordan-deware/front.svg",
  10542. extra: 1191 / 1012
  10543. }
  10544. },
  10545. },
  10546. [
  10547. {
  10548. name: "Nano",
  10549. height: math.unit(0.01, "mm")
  10550. },
  10551. {
  10552. name: "Minimicro",
  10553. height: math.unit(1, "mm")
  10554. },
  10555. {
  10556. name: "Micro",
  10557. height: math.unit(0.5, "inches")
  10558. },
  10559. {
  10560. name: "Normal",
  10561. height: math.unit(4, "feet"),
  10562. default: true
  10563. },
  10564. {
  10565. name: "Minimacro",
  10566. height: math.unit(40, "meters")
  10567. },
  10568. {
  10569. name: "Small Macro",
  10570. height: math.unit(400, "meters")
  10571. },
  10572. {
  10573. name: "Macro",
  10574. height: math.unit(4, "miles")
  10575. },
  10576. {
  10577. name: "Megamacro",
  10578. height: math.unit(40, "miles")
  10579. },
  10580. {
  10581. name: "Megamacro+",
  10582. height: math.unit(400, "miles")
  10583. },
  10584. {
  10585. name: "Gigamacro",
  10586. height: math.unit(400000, "miles")
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10592. {
  10593. side: {
  10594. height: math.unit(6, "feet"),
  10595. weight: math.unit(150, "lb"),
  10596. name: "Side",
  10597. image: {
  10598. source: "./media/characters/kimiko/side.svg",
  10599. extra: 600 / 358
  10600. }
  10601. },
  10602. },
  10603. [
  10604. {
  10605. name: "Normal",
  10606. height: math.unit(15, "feet"),
  10607. default: true
  10608. },
  10609. {
  10610. name: "Macro",
  10611. height: math.unit(220, "feet")
  10612. },
  10613. {
  10614. name: "Macro+",
  10615. height: math.unit(1450, "feet")
  10616. },
  10617. {
  10618. name: "Megamacro",
  10619. height: math.unit(11500, "feet")
  10620. },
  10621. {
  10622. name: "Gigamacro",
  10623. height: math.unit(9500, "miles")
  10624. },
  10625. {
  10626. name: "Teramacro",
  10627. height: math.unit(2208005005, "miles")
  10628. },
  10629. {
  10630. name: "Examacro",
  10631. height: math.unit(2750, "parsecs")
  10632. },
  10633. {
  10634. name: "Zettamacro",
  10635. height: math.unit(101500, "parsecs")
  10636. },
  10637. ]
  10638. ))
  10639. characterMakers.push(() => makeCharacter(
  10640. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10641. {
  10642. front: {
  10643. height: math.unit(6, "feet"),
  10644. weight: math.unit(70, "kg"),
  10645. name: "Front",
  10646. image: {
  10647. source: "./media/characters/andrew-sleepy/front.svg"
  10648. }
  10649. },
  10650. side: {
  10651. height: math.unit(6, "feet"),
  10652. weight: math.unit(70, "kg"),
  10653. name: "Side",
  10654. image: {
  10655. source: "./media/characters/andrew-sleepy/side.svg"
  10656. }
  10657. },
  10658. },
  10659. [
  10660. {
  10661. name: "Micro",
  10662. height: math.unit(1, "mm"),
  10663. default: true
  10664. },
  10665. ]
  10666. ))
  10667. characterMakers.push(() => makeCharacter(
  10668. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10669. {
  10670. front: {
  10671. height: math.unit(6, "feet"),
  10672. weight: math.unit(150, "lb"),
  10673. name: "Front",
  10674. image: {
  10675. source: "./media/characters/judio/front.svg",
  10676. extra: 1258 / 1110
  10677. }
  10678. },
  10679. },
  10680. [
  10681. {
  10682. name: "Normal",
  10683. height: math.unit(5 + 6 / 12, "feet")
  10684. },
  10685. {
  10686. name: "Macro",
  10687. height: math.unit(1000, "feet"),
  10688. default: true
  10689. },
  10690. {
  10691. name: "Megamacro",
  10692. height: math.unit(10, "miles")
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10698. {
  10699. front: {
  10700. height: math.unit(6, "feet"),
  10701. weight: math.unit(68, "kg"),
  10702. name: "Front",
  10703. image: {
  10704. source: "./media/characters/nomaxice/front.svg",
  10705. extra: 1498 / 1073,
  10706. bottom: 0.075
  10707. }
  10708. },
  10709. foot: {
  10710. height: math.unit(1.1, "feet"),
  10711. name: "Foot",
  10712. image: {
  10713. source: "./media/characters/nomaxice/foot.svg"
  10714. }
  10715. },
  10716. },
  10717. [
  10718. {
  10719. name: "Micro",
  10720. height: math.unit(8, "cm")
  10721. },
  10722. {
  10723. name: "Norm",
  10724. height: math.unit(1.82, "m")
  10725. },
  10726. {
  10727. name: "Norm+",
  10728. height: math.unit(8.8, "feet")
  10729. },
  10730. {
  10731. name: "Big",
  10732. height: math.unit(8, "meters"),
  10733. default: true
  10734. },
  10735. {
  10736. name: "Macro",
  10737. height: math.unit(18, "meters")
  10738. },
  10739. {
  10740. name: "Macro+",
  10741. height: math.unit(88, "meters")
  10742. },
  10743. ]
  10744. ))
  10745. characterMakers.push(() => makeCharacter(
  10746. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10747. {
  10748. front: {
  10749. height: math.unit(12, "feet"),
  10750. weight: math.unit(1.5, "tons"),
  10751. name: "Front",
  10752. image: {
  10753. source: "./media/characters/dydros/front.svg",
  10754. extra: 863 / 800,
  10755. bottom: 0.015
  10756. }
  10757. },
  10758. back: {
  10759. height: math.unit(12, "feet"),
  10760. weight: math.unit(1.5, "tons"),
  10761. name: "Back",
  10762. image: {
  10763. source: "./media/characters/dydros/back.svg",
  10764. extra: 900 / 843,
  10765. bottom: 0.005
  10766. }
  10767. },
  10768. },
  10769. [
  10770. {
  10771. name: "Normal",
  10772. height: math.unit(12, "feet"),
  10773. default: true
  10774. },
  10775. ]
  10776. ))
  10777. characterMakers.push(() => makeCharacter(
  10778. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10779. {
  10780. front: {
  10781. height: math.unit(6, "feet"),
  10782. weight: math.unit(100, "kg"),
  10783. name: "Front",
  10784. image: {
  10785. source: "./media/characters/riggi/front.svg",
  10786. extra: 5787 / 5303
  10787. }
  10788. },
  10789. hyper: {
  10790. height: math.unit(6 * 5 / 3, "feet"),
  10791. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10792. name: "Hyper",
  10793. image: {
  10794. source: "./media/characters/riggi/hyper.svg",
  10795. extra: 3595 / 3485
  10796. }
  10797. },
  10798. },
  10799. [
  10800. {
  10801. name: "Small Macro",
  10802. height: math.unit(50, "feet")
  10803. },
  10804. {
  10805. name: "Default",
  10806. height: math.unit(200, "feet"),
  10807. default: true
  10808. },
  10809. {
  10810. name: "Loom",
  10811. height: math.unit(10000, "feet")
  10812. },
  10813. {
  10814. name: "Cruising Altitude",
  10815. height: math.unit(30000, "feet")
  10816. },
  10817. {
  10818. name: "Megamacro",
  10819. height: math.unit(100, "miles")
  10820. },
  10821. {
  10822. name: "Continent Sized",
  10823. height: math.unit(2800, "miles")
  10824. },
  10825. {
  10826. name: "Earth Sized",
  10827. height: math.unit(8000, "miles")
  10828. },
  10829. ]
  10830. ))
  10831. characterMakers.push(() => makeCharacter(
  10832. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10833. {
  10834. front: {
  10835. height: math.unit(6, "feet"),
  10836. weight: math.unit(250, "lb"),
  10837. name: "Front",
  10838. image: {
  10839. source: "./media/characters/alexi/front.svg",
  10840. extra: 3483 / 3291,
  10841. bottom: 0.04
  10842. }
  10843. },
  10844. back: {
  10845. height: math.unit(6, "feet"),
  10846. weight: math.unit(250, "lb"),
  10847. name: "Back",
  10848. image: {
  10849. source: "./media/characters/alexi/back.svg",
  10850. extra: 3533 / 3356,
  10851. bottom: 0.021
  10852. }
  10853. },
  10854. frontTransforming: {
  10855. height: math.unit(8.58, "feet"),
  10856. weight: math.unit(1300, "lb"),
  10857. name: "Transforming",
  10858. image: {
  10859. source: "./media/characters/alexi/front-transforming.svg",
  10860. extra: 437 / 409,
  10861. bottom: 19 / 458.66
  10862. }
  10863. },
  10864. frontTransformed: {
  10865. height: math.unit(12.5, "feet"),
  10866. weight: math.unit(4000, "lb"),
  10867. name: "Transformed",
  10868. image: {
  10869. source: "./media/characters/alexi/front-transformed.svg",
  10870. extra: 639 / 614,
  10871. bottom: 30.55 / 671
  10872. }
  10873. },
  10874. },
  10875. [
  10876. {
  10877. name: "Normal",
  10878. height: math.unit(14, "feet"),
  10879. default: true
  10880. },
  10881. {
  10882. name: "Minimacro",
  10883. height: math.unit(30, "meters")
  10884. },
  10885. {
  10886. name: "Macro",
  10887. height: math.unit(500, "meters")
  10888. },
  10889. {
  10890. name: "Megamacro",
  10891. height: math.unit(9000, "km")
  10892. },
  10893. {
  10894. name: "Teramacro",
  10895. height: math.unit(384000, "km")
  10896. },
  10897. ]
  10898. ))
  10899. characterMakers.push(() => makeCharacter(
  10900. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10901. {
  10902. front: {
  10903. height: math.unit(6, "feet"),
  10904. weight: math.unit(150, "lb"),
  10905. name: "Front",
  10906. image: {
  10907. source: "./media/characters/kayroo/front.svg",
  10908. extra: 1153 / 1038,
  10909. bottom: 0.06
  10910. }
  10911. },
  10912. foot: {
  10913. height: math.unit(6, "feet"),
  10914. weight: math.unit(150, "lb"),
  10915. name: "Foot",
  10916. image: {
  10917. source: "./media/characters/kayroo/foot.svg"
  10918. }
  10919. },
  10920. },
  10921. [
  10922. {
  10923. name: "Normal",
  10924. height: math.unit(8, "feet"),
  10925. default: true
  10926. },
  10927. {
  10928. name: "Minimacro",
  10929. height: math.unit(250, "feet")
  10930. },
  10931. {
  10932. name: "Macro",
  10933. height: math.unit(2800, "feet")
  10934. },
  10935. {
  10936. name: "Megamacro",
  10937. height: math.unit(5200, "feet")
  10938. },
  10939. {
  10940. name: "Gigamacro",
  10941. height: math.unit(27000, "feet")
  10942. },
  10943. {
  10944. name: "Omega",
  10945. height: math.unit(45000, "feet")
  10946. },
  10947. ]
  10948. ))
  10949. characterMakers.push(() => makeCharacter(
  10950. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10951. {
  10952. front: {
  10953. height: math.unit(18, "feet"),
  10954. weight: math.unit(5800, "lb"),
  10955. name: "Front",
  10956. image: {
  10957. source: "./media/characters/rhys/front.svg",
  10958. extra: 3386 / 3090,
  10959. bottom: 0.07
  10960. }
  10961. },
  10962. },
  10963. [
  10964. {
  10965. name: "Normal",
  10966. height: math.unit(18, "feet"),
  10967. default: true
  10968. },
  10969. {
  10970. name: "Working Size",
  10971. height: math.unit(200, "feet")
  10972. },
  10973. {
  10974. name: "Demolition Size",
  10975. height: math.unit(2000, "feet")
  10976. },
  10977. {
  10978. name: "Maximum Licensed Size",
  10979. height: math.unit(5, "miles")
  10980. },
  10981. {
  10982. name: "Maximum Observed Size",
  10983. height: math.unit(10, "yottameters")
  10984. },
  10985. ]
  10986. ))
  10987. characterMakers.push(() => makeCharacter(
  10988. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10989. {
  10990. front: {
  10991. height: math.unit(6, "feet"),
  10992. weight: math.unit(250, "lb"),
  10993. name: "Front",
  10994. image: {
  10995. source: "./media/characters/toto/front.svg",
  10996. extra: 527 / 479,
  10997. bottom: 0.05
  10998. }
  10999. },
  11000. },
  11001. [
  11002. {
  11003. name: "Micro",
  11004. height: math.unit(3, "feet")
  11005. },
  11006. {
  11007. name: "Normal",
  11008. height: math.unit(10, "feet")
  11009. },
  11010. {
  11011. name: "Macro",
  11012. height: math.unit(150, "feet"),
  11013. default: true
  11014. },
  11015. {
  11016. name: "Megamacro",
  11017. height: math.unit(1200, "feet")
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "King", species: ["lion"], tags: ["anthro"] },
  11023. {
  11024. back: {
  11025. height: math.unit(6, "feet"),
  11026. weight: math.unit(150, "lb"),
  11027. name: "Back",
  11028. image: {
  11029. source: "./media/characters/king/back.svg"
  11030. }
  11031. },
  11032. },
  11033. [
  11034. {
  11035. name: "Micro",
  11036. height: math.unit(2, "inches")
  11037. },
  11038. {
  11039. name: "Normal",
  11040. height: math.unit(8, "feet")
  11041. },
  11042. {
  11043. name: "Macro",
  11044. height: math.unit(200, "feet"),
  11045. default: true
  11046. },
  11047. {
  11048. name: "Megamacro",
  11049. height: math.unit(50, "miles")
  11050. },
  11051. ]
  11052. ))
  11053. characterMakers.push(() => makeCharacter(
  11054. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11055. {
  11056. anthro: {
  11057. height: math.unit(6 + 5 / 12, "feet"),
  11058. weight: math.unit(280, "lb"),
  11059. name: "Anthro",
  11060. image: {
  11061. source: "./media/characters/cordite/anthro.svg",
  11062. extra: 1986 / 1905,
  11063. bottom: 0.025
  11064. }
  11065. },
  11066. feral: {
  11067. height: math.unit(2, "feet"),
  11068. weight: math.unit(90, "lb"),
  11069. name: "Feral",
  11070. image: {
  11071. source: "./media/characters/cordite/feral.svg",
  11072. extra: 1260 / 755,
  11073. bottom: 0.05
  11074. }
  11075. },
  11076. },
  11077. [
  11078. {
  11079. name: "Normal",
  11080. height: math.unit(6 + 5 / 12, "feet"),
  11081. default: true
  11082. },
  11083. ]
  11084. ))
  11085. characterMakers.push(() => makeCharacter(
  11086. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11087. {
  11088. front: {
  11089. height: math.unit(6, "feet"),
  11090. weight: math.unit(150, "lb"),
  11091. name: "Front",
  11092. image: {
  11093. source: "./media/characters/pianostrong/front.svg",
  11094. extra: 6577 / 6254,
  11095. bottom: 0.02
  11096. }
  11097. },
  11098. side: {
  11099. height: math.unit(6, "feet"),
  11100. weight: math.unit(150, "lb"),
  11101. name: "Side",
  11102. image: {
  11103. source: "./media/characters/pianostrong/side.svg",
  11104. extra: 6106 / 5730
  11105. }
  11106. },
  11107. back: {
  11108. height: math.unit(6, "feet"),
  11109. weight: math.unit(150, "lb"),
  11110. name: "Back",
  11111. image: {
  11112. source: "./media/characters/pianostrong/back.svg",
  11113. extra: 6085 / 5733,
  11114. bottom: 0.01
  11115. }
  11116. },
  11117. },
  11118. [
  11119. {
  11120. name: "Macro",
  11121. height: math.unit(100, "feet")
  11122. },
  11123. {
  11124. name: "Macro+",
  11125. height: math.unit(300, "feet"),
  11126. default: true
  11127. },
  11128. {
  11129. name: "Macro++",
  11130. height: math.unit(1000, "feet")
  11131. },
  11132. ]
  11133. ))
  11134. characterMakers.push(() => makeCharacter(
  11135. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11136. {
  11137. front: {
  11138. height: math.unit(6, "feet"),
  11139. weight: math.unit(150, "lb"),
  11140. name: "Front",
  11141. image: {
  11142. source: "./media/characters/kona/front.svg",
  11143. extra: 2960 / 2629,
  11144. bottom: 0.005
  11145. }
  11146. },
  11147. },
  11148. [
  11149. {
  11150. name: "Normal",
  11151. height: math.unit(11 + 8 / 12, "feet")
  11152. },
  11153. {
  11154. name: "Macro",
  11155. height: math.unit(850, "feet"),
  11156. default: true
  11157. },
  11158. {
  11159. name: "Macro+",
  11160. height: math.unit(1.5, "km"),
  11161. default: true
  11162. },
  11163. {
  11164. name: "Megamacro",
  11165. height: math.unit(80, "miles")
  11166. },
  11167. {
  11168. name: "Gigamacro",
  11169. height: math.unit(3500, "miles")
  11170. },
  11171. ]
  11172. ))
  11173. characterMakers.push(() => makeCharacter(
  11174. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11175. {
  11176. side: {
  11177. height: math.unit(1.9, "meters"),
  11178. weight: math.unit(326, "kg"),
  11179. name: "Side",
  11180. image: {
  11181. source: "./media/characters/levi/side.svg",
  11182. extra: 1704 / 1334,
  11183. bottom: 0.02
  11184. }
  11185. },
  11186. },
  11187. [
  11188. {
  11189. name: "Normal",
  11190. height: math.unit(1.9, "meters"),
  11191. default: true
  11192. },
  11193. {
  11194. name: "Macro",
  11195. height: math.unit(20, "meters")
  11196. },
  11197. {
  11198. name: "Macro+",
  11199. height: math.unit(200, "meters")
  11200. },
  11201. {
  11202. name: "Megamacro",
  11203. height: math.unit(2, "km")
  11204. },
  11205. {
  11206. name: "Megamacro+",
  11207. height: math.unit(20, "km")
  11208. },
  11209. {
  11210. name: "Gigamacro",
  11211. height: math.unit(2500, "km")
  11212. },
  11213. {
  11214. name: "Gigamacro+",
  11215. height: math.unit(120000, "km")
  11216. },
  11217. {
  11218. name: "Teramacro",
  11219. height: math.unit(7.77e6, "km")
  11220. },
  11221. ]
  11222. ))
  11223. characterMakers.push(() => makeCharacter(
  11224. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11225. {
  11226. front: {
  11227. height: math.unit(6 + 4/12, "feet"),
  11228. weight: math.unit(190, "lb"),
  11229. name: "Front",
  11230. image: {
  11231. source: "./media/characters/bmc/front.svg",
  11232. extra: 1626/1472,
  11233. bottom: 79/1705
  11234. }
  11235. },
  11236. back: {
  11237. height: math.unit(6 + 4/12, "feet"),
  11238. weight: math.unit(190, "lb"),
  11239. name: "Back",
  11240. image: {
  11241. source: "./media/characters/bmc/back.svg",
  11242. extra: 1640/1479,
  11243. bottom: 45/1685
  11244. }
  11245. },
  11246. frontArmor: {
  11247. height: math.unit(6 + 4/12, "feet"),
  11248. weight: math.unit(190, "lb"),
  11249. name: "Front-armor",
  11250. image: {
  11251. source: "./media/characters/bmc/front-armor.svg",
  11252. extra: 1538/1468,
  11253. bottom: 79/1617
  11254. }
  11255. },
  11256. },
  11257. [
  11258. {
  11259. name: "Human-sized",
  11260. height: math.unit(6 + 4 / 12, "feet")
  11261. },
  11262. {
  11263. name: "Interactive Size",
  11264. height: math.unit(25, "feet")
  11265. },
  11266. {
  11267. name: "Small",
  11268. height: math.unit(250, "feet")
  11269. },
  11270. {
  11271. name: "Normal",
  11272. height: math.unit(1250, "feet"),
  11273. default: true
  11274. },
  11275. {
  11276. name: "Good Day",
  11277. height: math.unit(88, "miles")
  11278. },
  11279. {
  11280. name: "Largest Measured Size",
  11281. height: math.unit(105.960, "galaxies")
  11282. },
  11283. ]
  11284. ))
  11285. characterMakers.push(() => makeCharacter(
  11286. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11287. {
  11288. front: {
  11289. height: math.unit(20, "feet"),
  11290. weight: math.unit(2016, "kg"),
  11291. name: "Front",
  11292. image: {
  11293. source: "./media/characters/sven-the-kaiju/front.svg",
  11294. extra: 1277/1250,
  11295. bottom: 35/1312
  11296. }
  11297. },
  11298. mouth: {
  11299. height: math.unit(1.85, "feet"),
  11300. name: "Mouth",
  11301. image: {
  11302. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11303. }
  11304. },
  11305. },
  11306. [
  11307. {
  11308. name: "Fairy",
  11309. height: math.unit(6, "inches")
  11310. },
  11311. {
  11312. name: "Normal",
  11313. height: math.unit(20, "feet"),
  11314. default: true
  11315. },
  11316. {
  11317. name: "Rampage",
  11318. height: math.unit(200, "feet")
  11319. },
  11320. {
  11321. name: "Archfey Forest Guardian",
  11322. height: math.unit(1, "mile")
  11323. },
  11324. ]
  11325. ))
  11326. characterMakers.push(() => makeCharacter(
  11327. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11328. {
  11329. front: {
  11330. height: math.unit(4, "meters"),
  11331. weight: math.unit(2, "tons"),
  11332. name: "Front",
  11333. image: {
  11334. source: "./media/characters/marik/front.svg",
  11335. extra: 1057 / 1003,
  11336. bottom: 0.08
  11337. }
  11338. },
  11339. },
  11340. [
  11341. {
  11342. name: "Normal",
  11343. height: math.unit(4, "meters"),
  11344. default: true
  11345. },
  11346. {
  11347. name: "Macro",
  11348. height: math.unit(20, "meters")
  11349. },
  11350. {
  11351. name: "Megamacro",
  11352. height: math.unit(50, "km")
  11353. },
  11354. {
  11355. name: "Gigamacro",
  11356. height: math.unit(100, "km")
  11357. },
  11358. {
  11359. name: "Alpha Macro",
  11360. height: math.unit(7.88e7, "yottameters")
  11361. },
  11362. ]
  11363. ))
  11364. characterMakers.push(() => makeCharacter(
  11365. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11366. {
  11367. front: {
  11368. height: math.unit(6, "feet"),
  11369. weight: math.unit(110, "lb"),
  11370. name: "Front",
  11371. image: {
  11372. source: "./media/characters/mel/front.svg",
  11373. extra: 736 / 617,
  11374. bottom: 0.017
  11375. }
  11376. },
  11377. },
  11378. [
  11379. {
  11380. name: "Pico",
  11381. height: math.unit(3, "pm")
  11382. },
  11383. {
  11384. name: "Nano",
  11385. height: math.unit(3, "nm")
  11386. },
  11387. {
  11388. name: "Micro",
  11389. height: math.unit(0.3, "mm"),
  11390. default: true
  11391. },
  11392. {
  11393. name: "Micro+",
  11394. height: math.unit(3, "mm")
  11395. },
  11396. {
  11397. name: "Normal",
  11398. height: math.unit(5 + 10.5 / 12, "feet")
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11404. {
  11405. kaiju: {
  11406. height: math.unit(1.75, "meters"),
  11407. weight: math.unit(55, "kg"),
  11408. name: "Kaiju",
  11409. image: {
  11410. source: "./media/characters/lykonous/kaiju.svg",
  11411. extra: 1055 / 946,
  11412. bottom: 0.135
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Normal",
  11419. height: math.unit(2.5, "meters"),
  11420. default: true
  11421. },
  11422. {
  11423. name: "Kaiju Dragon",
  11424. height: math.unit(60, "meters")
  11425. },
  11426. {
  11427. name: "Mega Kaiju",
  11428. height: math.unit(120, "km")
  11429. },
  11430. {
  11431. name: "Giga Kaiju",
  11432. height: math.unit(200, "megameters")
  11433. },
  11434. {
  11435. name: "Terra Kaiju",
  11436. height: math.unit(400, "gigameters")
  11437. },
  11438. {
  11439. name: "Kaiju Dragon God",
  11440. height: math.unit(13000, "exaparsecs")
  11441. },
  11442. ]
  11443. ))
  11444. characterMakers.push(() => makeCharacter(
  11445. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11446. {
  11447. front: {
  11448. height: math.unit(6, "feet"),
  11449. weight: math.unit(150, "lb"),
  11450. name: "Front",
  11451. image: {
  11452. source: "./media/characters/blü/front.svg",
  11453. extra: 1883 / 1564,
  11454. bottom: 0.031
  11455. }
  11456. },
  11457. },
  11458. [
  11459. {
  11460. name: "Normal",
  11461. height: math.unit(13, "feet"),
  11462. default: true
  11463. },
  11464. {
  11465. name: "Big Boi",
  11466. height: math.unit(150, "meters")
  11467. },
  11468. {
  11469. name: "Mini Stomper",
  11470. height: math.unit(300, "meters")
  11471. },
  11472. {
  11473. name: "Macro",
  11474. height: math.unit(1000, "meters")
  11475. },
  11476. {
  11477. name: "Megamacro",
  11478. height: math.unit(11000, "meters")
  11479. },
  11480. {
  11481. name: "Gigamacro",
  11482. height: math.unit(11000, "km")
  11483. },
  11484. {
  11485. name: "Teramacro",
  11486. height: math.unit(420000, "km")
  11487. },
  11488. {
  11489. name: "Examacro",
  11490. height: math.unit(120, "parsecs")
  11491. },
  11492. {
  11493. name: "God Tho",
  11494. height: math.unit(98000000000, "parsecs")
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11500. {
  11501. taurFront: {
  11502. height: math.unit(6, "feet"),
  11503. weight: math.unit(200, "lb"),
  11504. name: "Taur (Front)",
  11505. image: {
  11506. source: "./media/characters/scales/taur-front.svg",
  11507. extra: 1,
  11508. bottom: 0.05
  11509. }
  11510. },
  11511. taurBack: {
  11512. height: math.unit(6, "feet"),
  11513. weight: math.unit(200, "lb"),
  11514. name: "Taur (Back)",
  11515. image: {
  11516. source: "./media/characters/scales/taur-back.svg",
  11517. extra: 1,
  11518. bottom: 0.08
  11519. }
  11520. },
  11521. anthro: {
  11522. height: math.unit(6 * 7 / 12, "feet"),
  11523. weight: math.unit(100, "lb"),
  11524. name: "Anthro",
  11525. image: {
  11526. source: "./media/characters/scales/anthro.svg",
  11527. extra: 1,
  11528. bottom: 0.06
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(12, "feet"),
  11536. default: true
  11537. },
  11538. ]
  11539. ))
  11540. characterMakers.push(() => makeCharacter(
  11541. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11542. {
  11543. front: {
  11544. height: math.unit(6, "feet"),
  11545. weight: math.unit(150, "lb"),
  11546. name: "Front",
  11547. image: {
  11548. source: "./media/characters/koragos/front.svg",
  11549. extra: 841 / 794,
  11550. bottom: 0.035
  11551. }
  11552. },
  11553. back: {
  11554. height: math.unit(6, "feet"),
  11555. weight: math.unit(150, "lb"),
  11556. name: "Back",
  11557. image: {
  11558. source: "./media/characters/koragos/back.svg",
  11559. extra: 841 / 810,
  11560. bottom: 0.022
  11561. }
  11562. },
  11563. },
  11564. [
  11565. {
  11566. name: "Normal",
  11567. height: math.unit(6 + 11 / 12, "feet"),
  11568. default: true
  11569. },
  11570. {
  11571. name: "Macro",
  11572. height: math.unit(490, "feet")
  11573. },
  11574. {
  11575. name: "Megamacro",
  11576. height: math.unit(10, "miles")
  11577. },
  11578. {
  11579. name: "Gigamacro",
  11580. height: math.unit(50, "miles")
  11581. },
  11582. ]
  11583. ))
  11584. characterMakers.push(() => makeCharacter(
  11585. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11586. {
  11587. front: {
  11588. height: math.unit(6, "feet"),
  11589. weight: math.unit(250, "lb"),
  11590. name: "Front",
  11591. image: {
  11592. source: "./media/characters/xylrem/front.svg",
  11593. extra: 3323 / 3050,
  11594. bottom: 0.065
  11595. }
  11596. },
  11597. },
  11598. [
  11599. {
  11600. name: "Micro",
  11601. height: math.unit(4, "feet")
  11602. },
  11603. {
  11604. name: "Normal",
  11605. height: math.unit(16, "feet"),
  11606. default: true
  11607. },
  11608. {
  11609. name: "Macro",
  11610. height: math.unit(2720, "feet")
  11611. },
  11612. {
  11613. name: "Megamacro",
  11614. height: math.unit(25000, "miles")
  11615. },
  11616. ]
  11617. ))
  11618. characterMakers.push(() => makeCharacter(
  11619. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11620. {
  11621. front: {
  11622. height: math.unit(8, "feet"),
  11623. weight: math.unit(250, "kg"),
  11624. name: "Front",
  11625. image: {
  11626. source: "./media/characters/ikideru/front.svg",
  11627. extra: 930 / 870,
  11628. bottom: 0.087
  11629. }
  11630. },
  11631. back: {
  11632. height: math.unit(8, "feet"),
  11633. weight: math.unit(250, "kg"),
  11634. name: "Back",
  11635. image: {
  11636. source: "./media/characters/ikideru/back.svg",
  11637. extra: 919 / 852,
  11638. bottom: 0.055
  11639. }
  11640. },
  11641. },
  11642. [
  11643. {
  11644. name: "Rare",
  11645. height: math.unit(8, "feet"),
  11646. default: true
  11647. },
  11648. {
  11649. name: "Playful Loom",
  11650. height: math.unit(80, "feet")
  11651. },
  11652. {
  11653. name: "City Leaner",
  11654. height: math.unit(230, "feet")
  11655. },
  11656. {
  11657. name: "Megamacro",
  11658. height: math.unit(2500, "feet")
  11659. },
  11660. {
  11661. name: "Gigamacro",
  11662. height: math.unit(26400, "feet")
  11663. },
  11664. {
  11665. name: "Tectonic Shifter",
  11666. height: math.unit(1.7, "megameters")
  11667. },
  11668. {
  11669. name: "Planet Carer",
  11670. height: math.unit(21, "megameters")
  11671. },
  11672. {
  11673. name: "God",
  11674. height: math.unit(11157.22, "parsecs")
  11675. },
  11676. ]
  11677. ))
  11678. characterMakers.push(() => makeCharacter(
  11679. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11680. {
  11681. front: {
  11682. height: math.unit(6, "feet"),
  11683. weight: math.unit(120, "lb"),
  11684. name: "Front",
  11685. image: {
  11686. source: "./media/characters/neo/front.svg"
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "Micro",
  11693. height: math.unit(2, "inches"),
  11694. default: true
  11695. },
  11696. {
  11697. name: "Human Size",
  11698. height: math.unit(5 + 8 / 12, "feet")
  11699. },
  11700. ]
  11701. ))
  11702. characterMakers.push(() => makeCharacter(
  11703. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11704. {
  11705. front: {
  11706. height: math.unit(13 + 10 / 12, "feet"),
  11707. weight: math.unit(5320, "lb"),
  11708. name: "Front",
  11709. image: {
  11710. source: "./media/characters/chauncey-chantz/front.svg",
  11711. extra: 1587 / 1435,
  11712. bottom: 0.02
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Normal",
  11719. height: math.unit(13 + 10 / 12, "feet"),
  11720. default: true
  11721. },
  11722. {
  11723. name: "Macro",
  11724. height: math.unit(45, "feet")
  11725. },
  11726. {
  11727. name: "Megamacro",
  11728. height: math.unit(250, "miles")
  11729. },
  11730. {
  11731. name: "Planetary",
  11732. height: math.unit(10000, "miles")
  11733. },
  11734. {
  11735. name: "Galactic",
  11736. height: math.unit(40000, "parsecs")
  11737. },
  11738. {
  11739. name: "Universal",
  11740. height: math.unit(1, "yottameter")
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11746. {
  11747. front: {
  11748. height: math.unit(6, "feet"),
  11749. weight: math.unit(150, "lb"),
  11750. name: "Front",
  11751. image: {
  11752. source: "./media/characters/epifox/front.svg",
  11753. extra: 1,
  11754. bottom: 0.075
  11755. }
  11756. },
  11757. },
  11758. [
  11759. {
  11760. name: "Micro",
  11761. height: math.unit(6, "inches")
  11762. },
  11763. {
  11764. name: "Normal",
  11765. height: math.unit(12, "feet"),
  11766. default: true
  11767. },
  11768. {
  11769. name: "Macro",
  11770. height: math.unit(3810, "feet")
  11771. },
  11772. {
  11773. name: "Megamacro",
  11774. height: math.unit(500, "miles")
  11775. },
  11776. ]
  11777. ))
  11778. characterMakers.push(() => makeCharacter(
  11779. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11780. {
  11781. front: {
  11782. height: math.unit(1.8796, "m"),
  11783. weight: math.unit(230, "lb"),
  11784. name: "Front",
  11785. image: {
  11786. source: "./media/characters/colin-t/front.svg",
  11787. extra: 1272 / 1193,
  11788. bottom: 0.07
  11789. }
  11790. },
  11791. },
  11792. [
  11793. {
  11794. name: "Micro",
  11795. height: math.unit(0.571, "meters")
  11796. },
  11797. {
  11798. name: "Normal",
  11799. height: math.unit(1.8796, "meters"),
  11800. default: true
  11801. },
  11802. {
  11803. name: "Tall",
  11804. height: math.unit(4, "meters")
  11805. },
  11806. {
  11807. name: "Macro",
  11808. height: math.unit(67.241, "meters")
  11809. },
  11810. {
  11811. name: "Megamacro",
  11812. height: math.unit(371.856, "meters")
  11813. },
  11814. {
  11815. name: "Planetary",
  11816. height: math.unit(12631.5689, "km")
  11817. },
  11818. ]
  11819. ))
  11820. characterMakers.push(() => makeCharacter(
  11821. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11822. {
  11823. front: {
  11824. height: math.unit(1.85, "meters"),
  11825. weight: math.unit(80, "kg"),
  11826. name: "Front",
  11827. image: {
  11828. source: "./media/characters/matvei/front.svg",
  11829. extra: 614 / 594,
  11830. bottom: 0.01
  11831. }
  11832. },
  11833. },
  11834. [
  11835. {
  11836. name: "Normal",
  11837. height: math.unit(1.85, "meters"),
  11838. default: true
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11844. {
  11845. front: {
  11846. height: math.unit(5 + 9 / 12, "feet"),
  11847. weight: math.unit(70, "lb"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/quincy/front.svg",
  11851. extra: 3041 / 2751
  11852. }
  11853. },
  11854. back: {
  11855. height: math.unit(5 + 9 / 12, "feet"),
  11856. weight: math.unit(70, "lb"),
  11857. name: "Back",
  11858. image: {
  11859. source: "./media/characters/quincy/back.svg",
  11860. extra: 3041 / 2751
  11861. }
  11862. },
  11863. flying: {
  11864. height: math.unit(5 + 4 / 12, "feet"),
  11865. weight: math.unit(70, "lb"),
  11866. name: "Flying",
  11867. image: {
  11868. source: "./media/characters/quincy/flying.svg",
  11869. extra: 1044 / 930
  11870. }
  11871. },
  11872. },
  11873. [
  11874. {
  11875. name: "Micro",
  11876. height: math.unit(3, "cm")
  11877. },
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(5 + 9 / 12, "feet")
  11881. },
  11882. {
  11883. name: "Macro",
  11884. height: math.unit(200, "meters"),
  11885. default: true
  11886. },
  11887. {
  11888. name: "Megamacro",
  11889. height: math.unit(1000, "meters")
  11890. },
  11891. ]
  11892. ))
  11893. characterMakers.push(() => makeCharacter(
  11894. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11895. {
  11896. front: {
  11897. height: math.unit(3 + 11/12, "feet"),
  11898. weight: math.unit(50, "lb"),
  11899. name: "Front",
  11900. image: {
  11901. source: "./media/characters/vanrel/front.svg",
  11902. extra: 1104/949,
  11903. bottom: 52/1156
  11904. }
  11905. },
  11906. back: {
  11907. height: math.unit(3 + 11/12, "feet"),
  11908. weight: math.unit(50, "lb"),
  11909. name: "Back",
  11910. image: {
  11911. source: "./media/characters/vanrel/back.svg",
  11912. extra: 1119/976,
  11913. bottom: 37/1156
  11914. }
  11915. },
  11916. tome: {
  11917. height: math.unit(1.35, "feet"),
  11918. weight: math.unit(10, "lb"),
  11919. name: "Vanrel's Tome",
  11920. rename: true,
  11921. image: {
  11922. source: "./media/characters/vanrel/tome.svg"
  11923. }
  11924. },
  11925. beans: {
  11926. height: math.unit(0.89, "feet"),
  11927. name: "Beans",
  11928. image: {
  11929. source: "./media/characters/vanrel/beans.svg"
  11930. }
  11931. },
  11932. },
  11933. [
  11934. {
  11935. name: "Normal",
  11936. height: math.unit(3 + 11/12, "feet"),
  11937. default: true
  11938. },
  11939. ]
  11940. ))
  11941. characterMakers.push(() => makeCharacter(
  11942. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11943. {
  11944. front: {
  11945. height: math.unit(7 + 5 / 12, "feet"),
  11946. name: "Front",
  11947. image: {
  11948. source: "./media/characters/kuiper-vanrel/front.svg",
  11949. extra: 1219/1169,
  11950. bottom: 69/1288
  11951. }
  11952. },
  11953. back: {
  11954. height: math.unit(7 + 5 / 12, "feet"),
  11955. name: "Back",
  11956. image: {
  11957. source: "./media/characters/kuiper-vanrel/back.svg",
  11958. extra: 1236/1193,
  11959. bottom: 27/1263
  11960. }
  11961. },
  11962. foot: {
  11963. height: math.unit(0.55, "meters"),
  11964. name: "Foot",
  11965. image: {
  11966. source: "./media/characters/kuiper-vanrel/foot.svg",
  11967. }
  11968. },
  11969. battle: {
  11970. height: math.unit(6.824, "feet"),
  11971. name: "Battle",
  11972. image: {
  11973. source: "./media/characters/kuiper-vanrel/battle.svg",
  11974. extra: 1466 / 1327,
  11975. bottom: 29 / 1492.5
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Normal",
  11982. height: math.unit(7 + 5 / 12, "feet"),
  11983. default: true
  11984. },
  11985. ]
  11986. ))
  11987. characterMakers.push(() => makeCharacter(
  11988. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11989. {
  11990. front: {
  11991. height: math.unit(8 + 5 / 12, "feet"),
  11992. name: "Front",
  11993. image: {
  11994. source: "./media/characters/keset-vanrel/front.svg",
  11995. extra: 1231/1148,
  11996. bottom: 82/1313
  11997. }
  11998. },
  11999. back: {
  12000. height: math.unit(8 + 5 / 12, "feet"),
  12001. name: "Back",
  12002. image: {
  12003. source: "./media/characters/keset-vanrel/back.svg",
  12004. extra: 1240/1174,
  12005. bottom: 33/1273
  12006. }
  12007. },
  12008. hand: {
  12009. height: math.unit(0.6, "meters"),
  12010. name: "Hand",
  12011. image: {
  12012. source: "./media/characters/keset-vanrel/hand.svg"
  12013. }
  12014. },
  12015. foot: {
  12016. height: math.unit(0.94978, "meters"),
  12017. name: "Foot",
  12018. image: {
  12019. source: "./media/characters/keset-vanrel/foot.svg"
  12020. }
  12021. },
  12022. battle: {
  12023. height: math.unit(7.408, "feet"),
  12024. name: "Battle",
  12025. image: {
  12026. source: "./media/characters/keset-vanrel/battle.svg",
  12027. extra: 1890 / 1386,
  12028. bottom: 73.28 / 1970
  12029. }
  12030. },
  12031. },
  12032. [
  12033. {
  12034. name: "Normal",
  12035. height: math.unit(8 + 5 / 12, "feet"),
  12036. default: true
  12037. },
  12038. ]
  12039. ))
  12040. characterMakers.push(() => makeCharacter(
  12041. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12042. {
  12043. front: {
  12044. height: math.unit(6, "feet"),
  12045. weight: math.unit(150, "lb"),
  12046. name: "Front",
  12047. image: {
  12048. source: "./media/characters/neos/front.svg",
  12049. extra: 1696 / 992,
  12050. bottom: 0.14
  12051. }
  12052. },
  12053. },
  12054. [
  12055. {
  12056. name: "Normal",
  12057. height: math.unit(54, "cm"),
  12058. default: true
  12059. },
  12060. {
  12061. name: "Macro",
  12062. height: math.unit(100, "m")
  12063. },
  12064. {
  12065. name: "Megamacro",
  12066. height: math.unit(10, "km")
  12067. },
  12068. {
  12069. name: "Megamacro+",
  12070. height: math.unit(100, "km")
  12071. },
  12072. {
  12073. name: "Gigamacro",
  12074. height: math.unit(100, "Mm")
  12075. },
  12076. {
  12077. name: "Teramacro",
  12078. height: math.unit(100, "Gm")
  12079. },
  12080. {
  12081. name: "Examacro",
  12082. height: math.unit(100, "Em")
  12083. },
  12084. {
  12085. name: "Godly",
  12086. height: math.unit(10000, "Ym")
  12087. },
  12088. {
  12089. name: "Beyond Godly",
  12090. height: math.unit(25, "multiverses")
  12091. },
  12092. ]
  12093. ))
  12094. characterMakers.push(() => makeCharacter(
  12095. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12096. {
  12097. feminine: {
  12098. height: math.unit(5, "feet"),
  12099. weight: math.unit(100, "lb"),
  12100. name: "Feminine",
  12101. image: {
  12102. source: "./media/characters/sammy-mouse/feminine.svg",
  12103. extra: 2526 / 2425,
  12104. bottom: 0.123
  12105. }
  12106. },
  12107. masculine: {
  12108. height: math.unit(5, "feet"),
  12109. weight: math.unit(100, "lb"),
  12110. name: "Masculine",
  12111. image: {
  12112. source: "./media/characters/sammy-mouse/masculine.svg",
  12113. extra: 2526 / 2425,
  12114. bottom: 0.123
  12115. }
  12116. },
  12117. },
  12118. [
  12119. {
  12120. name: "Micro",
  12121. height: math.unit(5, "inches")
  12122. },
  12123. {
  12124. name: "Normal",
  12125. height: math.unit(5, "feet"),
  12126. default: true
  12127. },
  12128. {
  12129. name: "Macro",
  12130. height: math.unit(60, "feet")
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12136. {
  12137. front: {
  12138. height: math.unit(4, "feet"),
  12139. weight: math.unit(50, "lb"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/kole/front.svg",
  12143. extra: 1423 / 1303,
  12144. bottom: 0.025
  12145. }
  12146. },
  12147. back: {
  12148. height: math.unit(4, "feet"),
  12149. weight: math.unit(50, "lb"),
  12150. name: "Back",
  12151. image: {
  12152. source: "./media/characters/kole/back.svg",
  12153. extra: 1426 / 1280,
  12154. bottom: 0.02
  12155. }
  12156. },
  12157. },
  12158. [
  12159. {
  12160. name: "Normal",
  12161. height: math.unit(4, "feet"),
  12162. default: true
  12163. },
  12164. ]
  12165. ))
  12166. characterMakers.push(() => makeCharacter(
  12167. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12168. {
  12169. front: {
  12170. height: math.unit(2.5, "feet"),
  12171. weight: math.unit(32, "lb"),
  12172. name: "Front",
  12173. image: {
  12174. source: "./media/characters/rufran/front.svg",
  12175. extra: 1313/885,
  12176. bottom: 94/1407
  12177. }
  12178. },
  12179. side: {
  12180. height: math.unit(2.5, "feet"),
  12181. weight: math.unit(32, "lb"),
  12182. name: "Side",
  12183. image: {
  12184. source: "./media/characters/rufran/side.svg",
  12185. extra: 1109/852,
  12186. bottom: 118/1227
  12187. }
  12188. },
  12189. back: {
  12190. height: math.unit(2.5, "feet"),
  12191. weight: math.unit(32, "lb"),
  12192. name: "Back",
  12193. image: {
  12194. source: "./media/characters/rufran/back.svg",
  12195. extra: 1280/878,
  12196. bottom: 131/1411
  12197. }
  12198. },
  12199. mouth: {
  12200. height: math.unit(1.13, "feet"),
  12201. name: "Mouth",
  12202. image: {
  12203. source: "./media/characters/rufran/mouth.svg"
  12204. }
  12205. },
  12206. foot: {
  12207. height: math.unit(1.33, "feet"),
  12208. name: "Foot",
  12209. image: {
  12210. source: "./media/characters/rufran/foot.svg"
  12211. }
  12212. },
  12213. koboldFront: {
  12214. height: math.unit(2 + 6 / 12, "feet"),
  12215. weight: math.unit(20, "lb"),
  12216. name: "Front (Kobold)",
  12217. image: {
  12218. source: "./media/characters/rufran/kobold-front.svg",
  12219. extra: 2041 / 1839,
  12220. bottom: 0.055
  12221. }
  12222. },
  12223. koboldBack: {
  12224. height: math.unit(2 + 6 / 12, "feet"),
  12225. weight: math.unit(20, "lb"),
  12226. name: "Back (Kobold)",
  12227. image: {
  12228. source: "./media/characters/rufran/kobold-back.svg",
  12229. extra: 2054 / 1839,
  12230. bottom: 0.01
  12231. }
  12232. },
  12233. koboldHand: {
  12234. height: math.unit(0.2166, "meters"),
  12235. name: "Hand (Kobold)",
  12236. image: {
  12237. source: "./media/characters/rufran/kobold-hand.svg"
  12238. }
  12239. },
  12240. koboldFoot: {
  12241. height: math.unit(0.185, "meters"),
  12242. name: "Foot (Kobold)",
  12243. image: {
  12244. source: "./media/characters/rufran/kobold-foot.svg"
  12245. }
  12246. },
  12247. },
  12248. [
  12249. {
  12250. name: "Micro",
  12251. height: math.unit(1, "inch")
  12252. },
  12253. {
  12254. name: "Normal",
  12255. height: math.unit(2 + 6 / 12, "feet"),
  12256. default: true
  12257. },
  12258. {
  12259. name: "Big",
  12260. height: math.unit(60, "feet")
  12261. },
  12262. {
  12263. name: "Macro",
  12264. height: math.unit(325, "feet")
  12265. },
  12266. ]
  12267. ))
  12268. characterMakers.push(() => makeCharacter(
  12269. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12270. {
  12271. front: {
  12272. height: math.unit(0.3, "meters"),
  12273. weight: math.unit(3.5, "kg"),
  12274. name: "Front",
  12275. image: {
  12276. source: "./media/characters/chip/front.svg",
  12277. extra: 748 / 674
  12278. }
  12279. },
  12280. },
  12281. [
  12282. {
  12283. name: "Micro",
  12284. height: math.unit(1, "inch"),
  12285. default: true
  12286. },
  12287. ]
  12288. ))
  12289. characterMakers.push(() => makeCharacter(
  12290. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12291. {
  12292. side: {
  12293. height: math.unit(2.3, "meters"),
  12294. weight: math.unit(3500, "lb"),
  12295. name: "Side",
  12296. image: {
  12297. source: "./media/characters/torvid/side.svg",
  12298. extra: 1972 / 722,
  12299. bottom: 0.035
  12300. }
  12301. },
  12302. },
  12303. [
  12304. {
  12305. name: "Normal",
  12306. height: math.unit(2.3, "meters"),
  12307. default: true
  12308. },
  12309. ]
  12310. ))
  12311. characterMakers.push(() => makeCharacter(
  12312. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12313. {
  12314. front: {
  12315. height: math.unit(2, "meters"),
  12316. weight: math.unit(150.5, "kg"),
  12317. name: "Front",
  12318. image: {
  12319. source: "./media/characters/susan/front.svg",
  12320. extra: 693 / 635,
  12321. bottom: 0.05
  12322. }
  12323. },
  12324. },
  12325. [
  12326. {
  12327. name: "Megamacro",
  12328. height: math.unit(505, "miles"),
  12329. default: true
  12330. },
  12331. ]
  12332. ))
  12333. characterMakers.push(() => makeCharacter(
  12334. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12335. {
  12336. front: {
  12337. height: math.unit(6, "feet"),
  12338. weight: math.unit(150, "lb"),
  12339. name: "Front",
  12340. image: {
  12341. source: "./media/characters/raindrops/front.svg",
  12342. extra: 2655 / 2461,
  12343. bottom: 49 / 2705
  12344. }
  12345. },
  12346. back: {
  12347. height: math.unit(6, "feet"),
  12348. weight: math.unit(150, "lb"),
  12349. name: "Back",
  12350. image: {
  12351. source: "./media/characters/raindrops/back.svg",
  12352. extra: 2574 / 2400,
  12353. bottom: 65 / 2634
  12354. }
  12355. },
  12356. },
  12357. [
  12358. {
  12359. name: "Micro",
  12360. height: math.unit(6, "inches")
  12361. },
  12362. {
  12363. name: "Normal",
  12364. height: math.unit(6 + 2 / 12, "feet")
  12365. },
  12366. {
  12367. name: "Macro",
  12368. height: math.unit(131, "feet"),
  12369. default: true
  12370. },
  12371. {
  12372. name: "Megamacro",
  12373. height: math.unit(15, "miles")
  12374. },
  12375. {
  12376. name: "Gigamacro",
  12377. height: math.unit(4000, "miles")
  12378. },
  12379. {
  12380. name: "Teramacro",
  12381. height: math.unit(315000, "miles")
  12382. },
  12383. ]
  12384. ))
  12385. characterMakers.push(() => makeCharacter(
  12386. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12387. {
  12388. front: {
  12389. height: math.unit(2.794, "meters"),
  12390. weight: math.unit(325, "kg"),
  12391. name: "Front",
  12392. image: {
  12393. source: "./media/characters/tezwa/front.svg",
  12394. extra: 2083 / 1906,
  12395. bottom: 0.031
  12396. }
  12397. },
  12398. foot: {
  12399. height: math.unit(0.687, "meters"),
  12400. name: "Foot",
  12401. image: {
  12402. source: "./media/characters/tezwa/foot.svg"
  12403. }
  12404. },
  12405. },
  12406. [
  12407. {
  12408. name: "Normal",
  12409. height: math.unit(9 + 2 / 12, "feet"),
  12410. default: true
  12411. },
  12412. ]
  12413. ))
  12414. characterMakers.push(() => makeCharacter(
  12415. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12416. {
  12417. front: {
  12418. height: math.unit(58, "feet"),
  12419. weight: math.unit(89000, "lb"),
  12420. name: "Front",
  12421. image: {
  12422. source: "./media/characters/typhus/front.svg",
  12423. extra: 816 / 800,
  12424. bottom: 0.065
  12425. }
  12426. },
  12427. },
  12428. [
  12429. {
  12430. name: "Macro",
  12431. height: math.unit(58, "feet"),
  12432. default: true
  12433. },
  12434. ]
  12435. ))
  12436. characterMakers.push(() => makeCharacter(
  12437. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12438. {
  12439. front: {
  12440. height: math.unit(12, "feet"),
  12441. weight: math.unit(6, "tonnes"),
  12442. name: "Front",
  12443. image: {
  12444. source: "./media/characters/lyra-von-wulf/front.svg",
  12445. extra: 1,
  12446. bottom: 0.10
  12447. }
  12448. },
  12449. frontMecha: {
  12450. height: math.unit(12, "feet"),
  12451. weight: math.unit(12, "tonnes"),
  12452. name: "Front (Mecha)",
  12453. image: {
  12454. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12455. extra: 1,
  12456. bottom: 0.042
  12457. }
  12458. },
  12459. maw: {
  12460. height: math.unit(2.2, "feet"),
  12461. name: "Maw",
  12462. image: {
  12463. source: "./media/characters/lyra-von-wulf/maw.svg"
  12464. }
  12465. },
  12466. },
  12467. [
  12468. {
  12469. name: "Normal",
  12470. height: math.unit(12, "feet"),
  12471. default: true
  12472. },
  12473. {
  12474. name: "Classic",
  12475. height: math.unit(50, "feet")
  12476. },
  12477. {
  12478. name: "Macro",
  12479. height: math.unit(500, "feet")
  12480. },
  12481. {
  12482. name: "Megamacro",
  12483. height: math.unit(1, "mile")
  12484. },
  12485. {
  12486. name: "Gigamacro",
  12487. height: math.unit(400, "miles")
  12488. },
  12489. {
  12490. name: "Teramacro",
  12491. height: math.unit(22000, "miles")
  12492. },
  12493. {
  12494. name: "Solarmacro",
  12495. height: math.unit(8600000, "miles")
  12496. },
  12497. {
  12498. name: "Galactic",
  12499. height: math.unit(1057000, "lightyears")
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12505. {
  12506. front: {
  12507. height: math.unit(6 + 10 / 12, "feet"),
  12508. weight: math.unit(150, "lb"),
  12509. name: "Front",
  12510. image: {
  12511. source: "./media/characters/dixon/front.svg",
  12512. extra: 3361 / 3209,
  12513. bottom: 0.01
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Normal",
  12520. height: math.unit(6 + 10 / 12, "feet"),
  12521. default: true
  12522. },
  12523. {
  12524. name: "Big",
  12525. height: math.unit(12, "meters")
  12526. },
  12527. {
  12528. name: "Macro",
  12529. height: math.unit(500, "meters")
  12530. },
  12531. {
  12532. name: "Megamacro",
  12533. height: math.unit(2, "km")
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12539. {
  12540. front: {
  12541. height: math.unit(185, "cm"),
  12542. weight: math.unit(68, "kg"),
  12543. name: "Front",
  12544. image: {
  12545. source: "./media/characters/kauko/front.svg",
  12546. extra: 1455 / 1421,
  12547. bottom: 0.03
  12548. }
  12549. },
  12550. back: {
  12551. height: math.unit(185, "cm"),
  12552. weight: math.unit(68, "kg"),
  12553. name: "Back",
  12554. image: {
  12555. source: "./media/characters/kauko/back.svg",
  12556. extra: 1455 / 1421,
  12557. bottom: 0.004
  12558. }
  12559. },
  12560. },
  12561. [
  12562. {
  12563. name: "Normal",
  12564. height: math.unit(185, "cm"),
  12565. default: true
  12566. },
  12567. ]
  12568. ))
  12569. characterMakers.push(() => makeCharacter(
  12570. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12571. {
  12572. front: {
  12573. height: math.unit(6, "feet"),
  12574. weight: math.unit(150, "kg"),
  12575. name: "Front",
  12576. image: {
  12577. source: "./media/characters/varg/front.svg",
  12578. extra: 1108 / 1018,
  12579. bottom: 0.0375
  12580. }
  12581. },
  12582. },
  12583. [
  12584. {
  12585. name: "Normal",
  12586. height: math.unit(5, "meters")
  12587. },
  12588. {
  12589. name: "Macro",
  12590. height: math.unit(200, "meters")
  12591. },
  12592. {
  12593. name: "Megamacro",
  12594. height: math.unit(20, "kilometers")
  12595. },
  12596. {
  12597. name: "True Size",
  12598. height: math.unit(211, "km"),
  12599. default: true
  12600. },
  12601. {
  12602. name: "Gigamacro",
  12603. height: math.unit(1000, "km")
  12604. },
  12605. {
  12606. name: "Gigamacro+",
  12607. height: math.unit(8000, "km")
  12608. },
  12609. {
  12610. name: "Teramacro",
  12611. height: math.unit(1000000, "km")
  12612. },
  12613. ]
  12614. ))
  12615. characterMakers.push(() => makeCharacter(
  12616. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12617. {
  12618. front: {
  12619. height: math.unit(7 + 7 / 12, "feet"),
  12620. weight: math.unit(267, "lb"),
  12621. name: "Front",
  12622. image: {
  12623. source: "./media/characters/dayza/front.svg",
  12624. extra: 1262 / 1200,
  12625. bottom: 0.035
  12626. }
  12627. },
  12628. side: {
  12629. height: math.unit(7 + 7 / 12, "feet"),
  12630. weight: math.unit(267, "lb"),
  12631. name: "Side",
  12632. image: {
  12633. source: "./media/characters/dayza/side.svg",
  12634. extra: 1295 / 1245,
  12635. bottom: 0.05
  12636. }
  12637. },
  12638. back: {
  12639. height: math.unit(7 + 7 / 12, "feet"),
  12640. weight: math.unit(267, "lb"),
  12641. name: "Back",
  12642. image: {
  12643. source: "./media/characters/dayza/back.svg",
  12644. extra: 1241 / 1170
  12645. }
  12646. },
  12647. },
  12648. [
  12649. {
  12650. name: "Normal",
  12651. height: math.unit(7 + 7 / 12, "feet"),
  12652. default: true
  12653. },
  12654. {
  12655. name: "Macro",
  12656. height: math.unit(155, "feet")
  12657. },
  12658. ]
  12659. ))
  12660. characterMakers.push(() => makeCharacter(
  12661. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12662. {
  12663. front: {
  12664. height: math.unit(6 + 5 / 12, "feet"),
  12665. weight: math.unit(160, "lb"),
  12666. name: "Front",
  12667. image: {
  12668. source: "./media/characters/xanthos/front.svg",
  12669. extra: 1,
  12670. bottom: 0.04
  12671. }
  12672. },
  12673. back: {
  12674. height: math.unit(6 + 5 / 12, "feet"),
  12675. weight: math.unit(160, "lb"),
  12676. name: "Back",
  12677. image: {
  12678. source: "./media/characters/xanthos/back.svg",
  12679. extra: 1,
  12680. bottom: 0.03
  12681. }
  12682. },
  12683. hand: {
  12684. height: math.unit(0.928, "feet"),
  12685. name: "Hand",
  12686. image: {
  12687. source: "./media/characters/xanthos/hand.svg"
  12688. }
  12689. },
  12690. foot: {
  12691. height: math.unit(1.286, "feet"),
  12692. name: "Foot",
  12693. image: {
  12694. source: "./media/characters/xanthos/foot.svg"
  12695. }
  12696. },
  12697. },
  12698. [
  12699. {
  12700. name: "Normal",
  12701. height: math.unit(6 + 5 / 12, "feet"),
  12702. default: true
  12703. },
  12704. {
  12705. name: "Normal+",
  12706. height: math.unit(6, "meters")
  12707. },
  12708. {
  12709. name: "Macro",
  12710. height: math.unit(40, "feet")
  12711. },
  12712. {
  12713. name: "Macro+",
  12714. height: math.unit(200, "meters")
  12715. },
  12716. {
  12717. name: "Megamacro",
  12718. height: math.unit(20, "km")
  12719. },
  12720. {
  12721. name: "Megamacro+",
  12722. height: math.unit(100, "km")
  12723. },
  12724. ]
  12725. ))
  12726. characterMakers.push(() => makeCharacter(
  12727. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12728. {
  12729. front: {
  12730. height: math.unit(6 + 3 / 12, "feet"),
  12731. weight: math.unit(215, "lb"),
  12732. name: "Front",
  12733. image: {
  12734. source: "./media/characters/grynn/front.svg",
  12735. extra: 4627 / 4209,
  12736. bottom: 0.047
  12737. }
  12738. },
  12739. },
  12740. [
  12741. {
  12742. name: "Micro",
  12743. height: math.unit(6, "inches")
  12744. },
  12745. {
  12746. name: "Normal",
  12747. height: math.unit(6 + 3 / 12, "feet"),
  12748. default: true
  12749. },
  12750. {
  12751. name: "Big",
  12752. height: math.unit(104, "feet")
  12753. },
  12754. {
  12755. name: "Macro",
  12756. height: math.unit(944, "feet")
  12757. },
  12758. {
  12759. name: "Macro+",
  12760. height: math.unit(9480, "feet")
  12761. },
  12762. {
  12763. name: "Megamacro",
  12764. height: math.unit(78752, "feet")
  12765. },
  12766. {
  12767. name: "Megamacro+",
  12768. height: math.unit(630128, "feet")
  12769. },
  12770. {
  12771. name: "Megamacro++",
  12772. height: math.unit(3150695, "feet")
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12778. {
  12779. front: {
  12780. height: math.unit(7 + 5 / 12, "feet"),
  12781. weight: math.unit(450, "lb"),
  12782. name: "Front",
  12783. image: {
  12784. source: "./media/characters/mocha-aura/front.svg",
  12785. extra: 1907 / 1817,
  12786. bottom: 0.04
  12787. }
  12788. },
  12789. back: {
  12790. height: math.unit(7 + 5 / 12, "feet"),
  12791. weight: math.unit(450, "lb"),
  12792. name: "Back",
  12793. image: {
  12794. source: "./media/characters/mocha-aura/back.svg",
  12795. extra: 1900 / 1825,
  12796. bottom: 0.045
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Nano",
  12803. height: math.unit(1, "nm")
  12804. },
  12805. {
  12806. name: "Megamicro",
  12807. height: math.unit(1, "mm")
  12808. },
  12809. {
  12810. name: "Micro",
  12811. height: math.unit(3, "inches")
  12812. },
  12813. {
  12814. name: "Normal",
  12815. height: math.unit(7 + 5 / 12, "feet"),
  12816. default: true
  12817. },
  12818. {
  12819. name: "Macro",
  12820. height: math.unit(30, "feet")
  12821. },
  12822. {
  12823. name: "Megamacro",
  12824. height: math.unit(3500, "feet")
  12825. },
  12826. {
  12827. name: "Teramacro",
  12828. height: math.unit(500000, "miles")
  12829. },
  12830. {
  12831. name: "Petamacro",
  12832. height: math.unit(50000000000000000, "parsecs")
  12833. },
  12834. ]
  12835. ))
  12836. characterMakers.push(() => makeCharacter(
  12837. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12838. {
  12839. front: {
  12840. height: math.unit(6, "feet"),
  12841. weight: math.unit(150, "lb"),
  12842. name: "Front",
  12843. image: {
  12844. source: "./media/characters/ilisha-devya/front.svg",
  12845. extra: 1,
  12846. bottom: 0.175
  12847. }
  12848. },
  12849. back: {
  12850. height: math.unit(6, "feet"),
  12851. weight: math.unit(150, "lb"),
  12852. name: "Back",
  12853. image: {
  12854. source: "./media/characters/ilisha-devya/back.svg",
  12855. extra: 1,
  12856. bottom: 0.015
  12857. }
  12858. },
  12859. },
  12860. [
  12861. {
  12862. name: "Macro",
  12863. height: math.unit(500, "feet"),
  12864. default: true
  12865. },
  12866. {
  12867. name: "Megamacro",
  12868. height: math.unit(10, "miles")
  12869. },
  12870. {
  12871. name: "Gigamacro",
  12872. height: math.unit(100000, "miles")
  12873. },
  12874. {
  12875. name: "Examacro",
  12876. height: math.unit(1e9, "lightyears")
  12877. },
  12878. {
  12879. name: "Omniversal",
  12880. height: math.unit(1e33, "lightyears")
  12881. },
  12882. {
  12883. name: "Beyond Infinite",
  12884. height: math.unit(1e100, "lightyears")
  12885. },
  12886. ]
  12887. ))
  12888. characterMakers.push(() => makeCharacter(
  12889. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12890. {
  12891. Side: {
  12892. height: math.unit(6, "feet"),
  12893. weight: math.unit(150, "lb"),
  12894. name: "Side",
  12895. image: {
  12896. source: "./media/characters/mira/side.svg",
  12897. extra: 900 / 799,
  12898. bottom: 0.02
  12899. }
  12900. },
  12901. },
  12902. [
  12903. {
  12904. name: "Human Size",
  12905. height: math.unit(6, "feet")
  12906. },
  12907. {
  12908. name: "Macro",
  12909. height: math.unit(100, "feet"),
  12910. default: true
  12911. },
  12912. {
  12913. name: "Megamacro",
  12914. height: math.unit(10, "miles")
  12915. },
  12916. {
  12917. name: "Gigamacro",
  12918. height: math.unit(25000, "miles")
  12919. },
  12920. {
  12921. name: "Teramacro",
  12922. height: math.unit(300, "AU")
  12923. },
  12924. {
  12925. name: "Full Size",
  12926. height: math.unit(4.5e10, "lightyears")
  12927. },
  12928. ]
  12929. ))
  12930. characterMakers.push(() => makeCharacter(
  12931. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12932. {
  12933. front: {
  12934. height: math.unit(6, "feet"),
  12935. weight: math.unit(150, "lb"),
  12936. name: "Front",
  12937. image: {
  12938. source: "./media/characters/holly/front.svg",
  12939. extra: 639 / 606
  12940. }
  12941. },
  12942. back: {
  12943. height: math.unit(6, "feet"),
  12944. weight: math.unit(150, "lb"),
  12945. name: "Back",
  12946. image: {
  12947. source: "./media/characters/holly/back.svg",
  12948. extra: 623 / 598
  12949. }
  12950. },
  12951. frontWorking: {
  12952. height: math.unit(6, "feet"),
  12953. weight: math.unit(150, "lb"),
  12954. name: "Front (Working)",
  12955. image: {
  12956. source: "./media/characters/holly/front-working.svg",
  12957. extra: 607 / 577,
  12958. bottom: 0.048
  12959. }
  12960. },
  12961. },
  12962. [
  12963. {
  12964. name: "Normal",
  12965. height: math.unit(12 + 3 / 12, "feet"),
  12966. default: true
  12967. },
  12968. ]
  12969. ))
  12970. characterMakers.push(() => makeCharacter(
  12971. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12972. {
  12973. front: {
  12974. height: math.unit(6, "feet"),
  12975. weight: math.unit(150, "lb"),
  12976. name: "Front",
  12977. image: {
  12978. source: "./media/characters/porter/front.svg",
  12979. extra: 1,
  12980. bottom: 0.01
  12981. }
  12982. },
  12983. frontRobes: {
  12984. height: math.unit(6, "feet"),
  12985. weight: math.unit(150, "lb"),
  12986. name: "Front (Robes)",
  12987. image: {
  12988. source: "./media/characters/porter/front-robes.svg",
  12989. extra: 1.01,
  12990. bottom: 0.01
  12991. }
  12992. },
  12993. },
  12994. [
  12995. {
  12996. name: "Normal",
  12997. height: math.unit(11 + 9 / 12, "feet"),
  12998. default: true
  12999. },
  13000. ]
  13001. ))
  13002. characterMakers.push(() => makeCharacter(
  13003. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13004. {
  13005. legendary: {
  13006. height: math.unit(6, "feet"),
  13007. weight: math.unit(150, "lb"),
  13008. name: "Legendary",
  13009. image: {
  13010. source: "./media/characters/lucy/legendary.svg",
  13011. extra: 1355 / 1100,
  13012. bottom: 0.045
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Legendary",
  13019. height: math.unit(86882 * 2, "miles"),
  13020. default: true
  13021. },
  13022. ]
  13023. ))
  13024. characterMakers.push(() => makeCharacter(
  13025. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13026. {
  13027. front: {
  13028. height: math.unit(6, "feet"),
  13029. weight: math.unit(150, "lb"),
  13030. name: "Front",
  13031. image: {
  13032. source: "./media/characters/drusilla/front.svg",
  13033. extra: 678 / 635,
  13034. bottom: 0.03
  13035. }
  13036. },
  13037. back: {
  13038. height: math.unit(6, "feet"),
  13039. weight: math.unit(150, "lb"),
  13040. name: "Back",
  13041. image: {
  13042. source: "./media/characters/drusilla/back.svg",
  13043. extra: 678 / 635,
  13044. bottom: 0.005
  13045. }
  13046. },
  13047. },
  13048. [
  13049. {
  13050. name: "Macro",
  13051. height: math.unit(100, "feet")
  13052. },
  13053. {
  13054. name: "Canon Height",
  13055. height: math.unit(2000, "feet"),
  13056. default: true
  13057. },
  13058. ]
  13059. ))
  13060. characterMakers.push(() => makeCharacter(
  13061. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13062. {
  13063. front: {
  13064. height: math.unit(6, "feet"),
  13065. weight: math.unit(180, "lb"),
  13066. name: "Front",
  13067. image: {
  13068. source: "./media/characters/renard-thatch/front.svg",
  13069. extra: 2411 / 2275,
  13070. bottom: 0.01
  13071. }
  13072. },
  13073. frontPosing: {
  13074. height: math.unit(6, "feet"),
  13075. weight: math.unit(180, "lb"),
  13076. name: "Front (Posing)",
  13077. image: {
  13078. source: "./media/characters/renard-thatch/front-posing.svg",
  13079. extra: 2381 / 2261,
  13080. bottom: 0.01
  13081. }
  13082. },
  13083. back: {
  13084. height: math.unit(6, "feet"),
  13085. weight: math.unit(180, "lb"),
  13086. name: "Back",
  13087. image: {
  13088. source: "./media/characters/renard-thatch/back.svg",
  13089. extra: 2428 / 2288
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Micro",
  13096. height: math.unit(3, "inches")
  13097. },
  13098. {
  13099. name: "Default",
  13100. height: math.unit(6, "feet"),
  13101. default: true
  13102. },
  13103. {
  13104. name: "Macro",
  13105. height: math.unit(75, "feet")
  13106. },
  13107. ]
  13108. ))
  13109. characterMakers.push(() => makeCharacter(
  13110. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13111. {
  13112. front: {
  13113. height: math.unit(1450, "feet"),
  13114. weight: math.unit(1.21e6, "tons"),
  13115. name: "Front",
  13116. image: {
  13117. source: "./media/characters/sekvra/front.svg",
  13118. extra: 1,
  13119. bottom: 0.03
  13120. }
  13121. },
  13122. frontClothed: {
  13123. height: math.unit(1450, "feet"),
  13124. weight: math.unit(1.21e6, "tons"),
  13125. name: "Front (Clothed)",
  13126. image: {
  13127. source: "./media/characters/sekvra/front-clothed.svg",
  13128. extra: 1,
  13129. bottom: 0.03
  13130. }
  13131. },
  13132. side: {
  13133. height: math.unit(1450, "feet"),
  13134. weight: math.unit(1.21e6, "tons"),
  13135. name: "Side",
  13136. image: {
  13137. source: "./media/characters/sekvra/side.svg",
  13138. extra: 1,
  13139. bottom: 0.025
  13140. }
  13141. },
  13142. back: {
  13143. height: math.unit(1450, "feet"),
  13144. weight: math.unit(1.21e6, "tons"),
  13145. name: "Back",
  13146. image: {
  13147. source: "./media/characters/sekvra/back.svg",
  13148. extra: 1,
  13149. bottom: 0.005
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Macro",
  13156. height: math.unit(1450, "feet"),
  13157. default: true
  13158. },
  13159. {
  13160. name: "Megamacro",
  13161. height: math.unit(15000, "feet")
  13162. },
  13163. ]
  13164. ))
  13165. characterMakers.push(() => makeCharacter(
  13166. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13167. {
  13168. front: {
  13169. height: math.unit(6, "feet"),
  13170. weight: math.unit(150, "lb"),
  13171. name: "Front",
  13172. image: {
  13173. source: "./media/characters/carmine/front.svg",
  13174. extra: 1,
  13175. bottom: 0.035
  13176. }
  13177. },
  13178. frontArmor: {
  13179. height: math.unit(6, "feet"),
  13180. weight: math.unit(150, "lb"),
  13181. name: "Front (Armor)",
  13182. image: {
  13183. source: "./media/characters/carmine/front-armor.svg",
  13184. extra: 1,
  13185. bottom: 0.035
  13186. }
  13187. },
  13188. },
  13189. [
  13190. {
  13191. name: "Large",
  13192. height: math.unit(1, "mile")
  13193. },
  13194. {
  13195. name: "Huge",
  13196. height: math.unit(40, "miles"),
  13197. default: true
  13198. },
  13199. {
  13200. name: "Colossal",
  13201. height: math.unit(2500, "miles")
  13202. },
  13203. ]
  13204. ))
  13205. characterMakers.push(() => makeCharacter(
  13206. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13207. {
  13208. front: {
  13209. height: math.unit(6, "feet"),
  13210. weight: math.unit(150, "lb"),
  13211. name: "Front",
  13212. image: {
  13213. source: "./media/characters/elyssia/front.svg",
  13214. extra: 2201 / 2035,
  13215. bottom: 0.05
  13216. }
  13217. },
  13218. frontClothed: {
  13219. height: math.unit(6, "feet"),
  13220. weight: math.unit(150, "lb"),
  13221. name: "Front (Clothed)",
  13222. image: {
  13223. source: "./media/characters/elyssia/front-clothed.svg",
  13224. extra: 2201 / 2035,
  13225. bottom: 0.05
  13226. }
  13227. },
  13228. back: {
  13229. height: math.unit(6, "feet"),
  13230. weight: math.unit(150, "lb"),
  13231. name: "Back",
  13232. image: {
  13233. source: "./media/characters/elyssia/back.svg",
  13234. extra: 2201 / 2035,
  13235. bottom: 0.013
  13236. }
  13237. },
  13238. },
  13239. [
  13240. {
  13241. name: "Smaller",
  13242. height: math.unit(150, "feet")
  13243. },
  13244. {
  13245. name: "Standard",
  13246. height: math.unit(1400, "feet"),
  13247. default: true
  13248. },
  13249. {
  13250. name: "Distracted",
  13251. height: math.unit(15000, "feet")
  13252. },
  13253. ]
  13254. ))
  13255. characterMakers.push(() => makeCharacter(
  13256. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13257. {
  13258. front: {
  13259. height: math.unit(7 + 4 / 12, "feet"),
  13260. weight: math.unit(500, "lb"),
  13261. name: "Front",
  13262. image: {
  13263. source: "./media/characters/geno-maxwell/front.svg",
  13264. extra: 2207 / 2040,
  13265. bottom: 0.015
  13266. }
  13267. },
  13268. },
  13269. [
  13270. {
  13271. name: "Micro",
  13272. height: math.unit(3, "inches")
  13273. },
  13274. {
  13275. name: "Normal",
  13276. height: math.unit(7 + 4 / 12, "feet"),
  13277. default: true
  13278. },
  13279. {
  13280. name: "Macro",
  13281. height: math.unit(220, "feet")
  13282. },
  13283. {
  13284. name: "Megamacro",
  13285. height: math.unit(11, "miles")
  13286. },
  13287. ]
  13288. ))
  13289. characterMakers.push(() => makeCharacter(
  13290. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13291. {
  13292. front: {
  13293. height: math.unit(7 + 4 / 12, "feet"),
  13294. weight: math.unit(500, "lb"),
  13295. name: "Front",
  13296. image: {
  13297. source: "./media/characters/regena-maxwell/front.svg",
  13298. extra: 3115 / 2770,
  13299. bottom: 0.02
  13300. }
  13301. },
  13302. },
  13303. [
  13304. {
  13305. name: "Normal",
  13306. height: math.unit(7 + 4 / 12, "feet"),
  13307. default: true
  13308. },
  13309. {
  13310. name: "Macro",
  13311. height: math.unit(220, "feet")
  13312. },
  13313. {
  13314. name: "Megamacro",
  13315. height: math.unit(11, "miles")
  13316. },
  13317. ]
  13318. ))
  13319. characterMakers.push(() => makeCharacter(
  13320. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13321. {
  13322. front: {
  13323. height: math.unit(6, "feet"),
  13324. weight: math.unit(150, "lb"),
  13325. name: "Front",
  13326. image: {
  13327. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13328. extra: 860 / 690,
  13329. bottom: 0.03
  13330. }
  13331. },
  13332. },
  13333. [
  13334. {
  13335. name: "Normal",
  13336. height: math.unit(1.7, "meters"),
  13337. default: true
  13338. },
  13339. ]
  13340. ))
  13341. characterMakers.push(() => makeCharacter(
  13342. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13343. {
  13344. front: {
  13345. height: math.unit(6, "feet"),
  13346. weight: math.unit(150, "lb"),
  13347. name: "Front",
  13348. image: {
  13349. source: "./media/characters/quilly/front.svg",
  13350. extra: 890 / 776
  13351. }
  13352. },
  13353. },
  13354. [
  13355. {
  13356. name: "Gigamacro",
  13357. height: math.unit(404090, "miles"),
  13358. default: true
  13359. },
  13360. ]
  13361. ))
  13362. characterMakers.push(() => makeCharacter(
  13363. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13364. {
  13365. front: {
  13366. height: math.unit(7 + 8 / 12, "feet"),
  13367. weight: math.unit(350, "lb"),
  13368. name: "Front",
  13369. image: {
  13370. source: "./media/characters/tempest/front.svg",
  13371. extra: 1175 / 1086,
  13372. bottom: 0.02
  13373. }
  13374. },
  13375. },
  13376. [
  13377. {
  13378. name: "Normal",
  13379. height: math.unit(7 + 8 / 12, "feet"),
  13380. default: true
  13381. },
  13382. ]
  13383. ))
  13384. characterMakers.push(() => makeCharacter(
  13385. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13386. {
  13387. side: {
  13388. height: math.unit(4 + 5 / 12, "feet"),
  13389. weight: math.unit(80, "lb"),
  13390. name: "Side",
  13391. image: {
  13392. source: "./media/characters/rodger/side.svg",
  13393. extra: 1235 / 1118
  13394. }
  13395. },
  13396. },
  13397. [
  13398. {
  13399. name: "Micro",
  13400. height: math.unit(1, "inch")
  13401. },
  13402. {
  13403. name: "Normal",
  13404. height: math.unit(4 + 5 / 12, "feet"),
  13405. default: true
  13406. },
  13407. {
  13408. name: "Macro",
  13409. height: math.unit(120, "feet")
  13410. },
  13411. ]
  13412. ))
  13413. characterMakers.push(() => makeCharacter(
  13414. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13415. {
  13416. front: {
  13417. height: math.unit(6, "feet"),
  13418. weight: math.unit(150, "lb"),
  13419. name: "Front",
  13420. image: {
  13421. source: "./media/characters/danyel/front.svg",
  13422. extra: 1185 / 1123,
  13423. bottom: 0.05
  13424. }
  13425. },
  13426. },
  13427. [
  13428. {
  13429. name: "Shrunken",
  13430. height: math.unit(0.5, "mm")
  13431. },
  13432. {
  13433. name: "Micro",
  13434. height: math.unit(1, "mm"),
  13435. default: true
  13436. },
  13437. {
  13438. name: "Upsized",
  13439. height: math.unit(5 + 5 / 12, "feet")
  13440. },
  13441. ]
  13442. ))
  13443. characterMakers.push(() => makeCharacter(
  13444. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13445. {
  13446. front: {
  13447. height: math.unit(5 + 6 / 12, "feet"),
  13448. weight: math.unit(200, "lb"),
  13449. name: "Front",
  13450. image: {
  13451. source: "./media/characters/vivian-bijoux/front.svg",
  13452. extra: 1,
  13453. bottom: 0.072
  13454. }
  13455. },
  13456. },
  13457. [
  13458. {
  13459. name: "Normal",
  13460. height: math.unit(5 + 6 / 12, "feet"),
  13461. default: true
  13462. },
  13463. {
  13464. name: "Bad Dream",
  13465. height: math.unit(500, "feet")
  13466. },
  13467. {
  13468. name: "Nightmare",
  13469. height: math.unit(500, "miles")
  13470. },
  13471. ]
  13472. ))
  13473. characterMakers.push(() => makeCharacter(
  13474. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13475. {
  13476. front: {
  13477. height: math.unit(6 + 1 / 12, "feet"),
  13478. weight: math.unit(260, "lb"),
  13479. name: "Front",
  13480. image: {
  13481. source: "./media/characters/zeta/front.svg",
  13482. extra: 1968 / 1889,
  13483. bottom: 0.06
  13484. }
  13485. },
  13486. back: {
  13487. height: math.unit(6 + 1 / 12, "feet"),
  13488. weight: math.unit(260, "lb"),
  13489. name: "Back",
  13490. image: {
  13491. source: "./media/characters/zeta/back.svg",
  13492. extra: 1944 / 1858,
  13493. bottom: 0.03
  13494. }
  13495. },
  13496. hand: {
  13497. height: math.unit(1.112, "feet"),
  13498. name: "Hand",
  13499. image: {
  13500. source: "./media/characters/zeta/hand.svg"
  13501. }
  13502. },
  13503. foot: {
  13504. height: math.unit(1.48, "feet"),
  13505. name: "Foot",
  13506. image: {
  13507. source: "./media/characters/zeta/foot.svg"
  13508. }
  13509. },
  13510. },
  13511. [
  13512. {
  13513. name: "Micro",
  13514. height: math.unit(6, "inches")
  13515. },
  13516. {
  13517. name: "Normal",
  13518. height: math.unit(6 + 1 / 12, "feet"),
  13519. default: true
  13520. },
  13521. {
  13522. name: "Macro",
  13523. height: math.unit(20, "feet")
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13529. {
  13530. front: {
  13531. height: math.unit(6, "feet"),
  13532. weight: math.unit(150, "lb"),
  13533. name: "Front",
  13534. image: {
  13535. source: "./media/characters/jamie-larsen/front.svg",
  13536. extra: 962 / 933,
  13537. bottom: 0.02
  13538. }
  13539. },
  13540. back: {
  13541. height: math.unit(6, "feet"),
  13542. weight: math.unit(150, "lb"),
  13543. name: "Back",
  13544. image: {
  13545. source: "./media/characters/jamie-larsen/back.svg",
  13546. extra: 997 / 946
  13547. }
  13548. },
  13549. },
  13550. [
  13551. {
  13552. name: "Macro",
  13553. height: math.unit(28 + 7 / 12, "feet"),
  13554. default: true
  13555. },
  13556. {
  13557. name: "Macro+",
  13558. height: math.unit(180, "feet")
  13559. },
  13560. {
  13561. name: "Megamacro",
  13562. height: math.unit(10, "miles")
  13563. },
  13564. {
  13565. name: "Gigamacro",
  13566. height: math.unit(200000, "miles")
  13567. },
  13568. ]
  13569. ))
  13570. characterMakers.push(() => makeCharacter(
  13571. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13572. {
  13573. front: {
  13574. height: math.unit(6, "feet"),
  13575. weight: math.unit(120, "lb"),
  13576. name: "Front",
  13577. image: {
  13578. source: "./media/characters/vance/front.svg",
  13579. extra: 1980 / 1890,
  13580. bottom: 0.09
  13581. }
  13582. },
  13583. back: {
  13584. height: math.unit(6, "feet"),
  13585. weight: math.unit(120, "lb"),
  13586. name: "Back",
  13587. image: {
  13588. source: "./media/characters/vance/back.svg",
  13589. extra: 2081 / 1994,
  13590. bottom: 0.014
  13591. }
  13592. },
  13593. hand: {
  13594. height: math.unit(0.88, "feet"),
  13595. name: "Hand",
  13596. image: {
  13597. source: "./media/characters/vance/hand.svg"
  13598. }
  13599. },
  13600. foot: {
  13601. height: math.unit(0.64, "feet"),
  13602. name: "Foot",
  13603. image: {
  13604. source: "./media/characters/vance/foot.svg"
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Small",
  13611. height: math.unit(90, "feet"),
  13612. default: true
  13613. },
  13614. {
  13615. name: "Macro",
  13616. height: math.unit(100, "meters")
  13617. },
  13618. {
  13619. name: "Megamacro",
  13620. height: math.unit(15, "miles")
  13621. },
  13622. ]
  13623. ))
  13624. characterMakers.push(() => makeCharacter(
  13625. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13626. {
  13627. front: {
  13628. height: math.unit(6, "feet"),
  13629. weight: math.unit(180, "lb"),
  13630. name: "Front",
  13631. image: {
  13632. source: "./media/characters/xochitl/front.svg",
  13633. extra: 2297 / 2261,
  13634. bottom: 0.065
  13635. }
  13636. },
  13637. back: {
  13638. height: math.unit(6, "feet"),
  13639. weight: math.unit(180, "lb"),
  13640. name: "Back",
  13641. image: {
  13642. source: "./media/characters/xochitl/back.svg",
  13643. extra: 2386 / 2354,
  13644. bottom: 0.01
  13645. }
  13646. },
  13647. foot: {
  13648. height: math.unit(6 / 5 * 1.15, "feet"),
  13649. weight: math.unit(150, "lb"),
  13650. name: "Foot",
  13651. image: {
  13652. source: "./media/characters/xochitl/foot.svg"
  13653. }
  13654. },
  13655. },
  13656. [
  13657. {
  13658. name: "Macro",
  13659. height: math.unit(80, "feet")
  13660. },
  13661. {
  13662. name: "Macro+",
  13663. height: math.unit(400, "feet"),
  13664. default: true
  13665. },
  13666. {
  13667. name: "Gigamacro",
  13668. height: math.unit(80000, "miles")
  13669. },
  13670. {
  13671. name: "Gigamacro+",
  13672. height: math.unit(400000, "miles")
  13673. },
  13674. {
  13675. name: "Teramacro",
  13676. height: math.unit(300, "AU")
  13677. },
  13678. ]
  13679. ))
  13680. characterMakers.push(() => makeCharacter(
  13681. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13682. {
  13683. front: {
  13684. height: math.unit(6, "feet"),
  13685. weight: math.unit(150, "lb"),
  13686. name: "Front",
  13687. image: {
  13688. source: "./media/characters/vincent/front.svg",
  13689. extra: 1130 / 1080,
  13690. bottom: 0.055
  13691. }
  13692. },
  13693. beak: {
  13694. height: math.unit(6 * 0.1, "feet"),
  13695. name: "Beak",
  13696. image: {
  13697. source: "./media/characters/vincent/beak.svg"
  13698. }
  13699. },
  13700. hand: {
  13701. height: math.unit(6 * 0.85, "feet"),
  13702. weight: math.unit(150, "lb"),
  13703. name: "Hand",
  13704. image: {
  13705. source: "./media/characters/vincent/hand.svg"
  13706. }
  13707. },
  13708. foot: {
  13709. height: math.unit(6 * 0.19, "feet"),
  13710. weight: math.unit(150, "lb"),
  13711. name: "Foot",
  13712. image: {
  13713. source: "./media/characters/vincent/foot.svg"
  13714. }
  13715. },
  13716. },
  13717. [
  13718. {
  13719. name: "Base",
  13720. height: math.unit(6 + 5 / 12, "feet"),
  13721. default: true
  13722. },
  13723. {
  13724. name: "Macro",
  13725. height: math.unit(300, "feet")
  13726. },
  13727. {
  13728. name: "Megamacro",
  13729. height: math.unit(2, "miles")
  13730. },
  13731. {
  13732. name: "Gigamacro",
  13733. height: math.unit(1000, "miles")
  13734. },
  13735. ]
  13736. ))
  13737. characterMakers.push(() => makeCharacter(
  13738. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13739. {
  13740. front: {
  13741. height: math.unit(2, "meters"),
  13742. weight: math.unit(500, "kg"),
  13743. name: "Front",
  13744. image: {
  13745. source: "./media/characters/coatl/front.svg",
  13746. extra: 3948 / 3500,
  13747. bottom: 0.082
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "Normal",
  13754. height: math.unit(4, "meters")
  13755. },
  13756. {
  13757. name: "Macro",
  13758. height: math.unit(100, "meters"),
  13759. default: true
  13760. },
  13761. {
  13762. name: "Macro+",
  13763. height: math.unit(300, "meters")
  13764. },
  13765. {
  13766. name: "Megamacro",
  13767. height: math.unit(3, "gigameters")
  13768. },
  13769. {
  13770. name: "Megamacro+",
  13771. height: math.unit(300, "terameters")
  13772. },
  13773. {
  13774. name: "Megamacro++",
  13775. height: math.unit(3, "lightyears")
  13776. },
  13777. ]
  13778. ))
  13779. characterMakers.push(() => makeCharacter(
  13780. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13781. {
  13782. front: {
  13783. height: math.unit(6, "feet"),
  13784. weight: math.unit(50, "kg"),
  13785. name: "front",
  13786. image: {
  13787. source: "./media/characters/shiroryu/front.svg",
  13788. extra: 1990 / 1935
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Mortal Mingling",
  13795. height: math.unit(3, "meters")
  13796. },
  13797. {
  13798. name: "Kaiju-ish",
  13799. height: math.unit(250, "meters")
  13800. },
  13801. {
  13802. name: "Somewhat Godly",
  13803. height: math.unit(400, "km"),
  13804. default: true
  13805. },
  13806. {
  13807. name: "Planetary",
  13808. height: math.unit(300, "megameters")
  13809. },
  13810. {
  13811. name: "Galaxy-dwarfing",
  13812. height: math.unit(450, "kiloparsecs")
  13813. },
  13814. {
  13815. name: "Universe Eater",
  13816. height: math.unit(150, "gigaparsecs")
  13817. },
  13818. {
  13819. name: "Almost Immeasurable",
  13820. height: math.unit(1.3e266, "yottaparsecs")
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13826. {
  13827. front: {
  13828. height: math.unit(6, "feet"),
  13829. weight: math.unit(150, "lb"),
  13830. name: "Front",
  13831. image: {
  13832. source: "./media/characters/umeko/front.svg",
  13833. extra: 1,
  13834. bottom: 0.019
  13835. }
  13836. },
  13837. frontArmored: {
  13838. height: math.unit(6, "feet"),
  13839. weight: math.unit(150, "lb"),
  13840. name: "Front (Armored)",
  13841. image: {
  13842. source: "./media/characters/umeko/front-armored.svg",
  13843. extra: 1,
  13844. bottom: 0.021
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Macro",
  13851. height: math.unit(220, "feet"),
  13852. default: true
  13853. },
  13854. {
  13855. name: "Guardian Dragon",
  13856. height: math.unit(50, "miles")
  13857. },
  13858. {
  13859. name: "Cosmic",
  13860. height: math.unit(800000, "miles")
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13866. {
  13867. front: {
  13868. height: math.unit(6, "feet"),
  13869. weight: math.unit(150, "lb"),
  13870. name: "Front",
  13871. image: {
  13872. source: "./media/characters/cassidy/front.svg",
  13873. extra: 1,
  13874. bottom: 0.043
  13875. }
  13876. },
  13877. },
  13878. [
  13879. {
  13880. name: "Canon Height",
  13881. height: math.unit(120, "feet"),
  13882. default: true
  13883. },
  13884. {
  13885. name: "Macro+",
  13886. height: math.unit(400, "feet")
  13887. },
  13888. {
  13889. name: "Macro++",
  13890. height: math.unit(4000, "feet")
  13891. },
  13892. {
  13893. name: "Megamacro",
  13894. height: math.unit(3, "miles")
  13895. },
  13896. ]
  13897. ))
  13898. characterMakers.push(() => makeCharacter(
  13899. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13900. {
  13901. front: {
  13902. height: math.unit(6, "feet"),
  13903. weight: math.unit(150, "lb"),
  13904. name: "Front",
  13905. image: {
  13906. source: "./media/characters/isaac/front.svg",
  13907. extra: 896 / 815,
  13908. bottom: 0.11
  13909. }
  13910. },
  13911. },
  13912. [
  13913. {
  13914. name: "Human Size",
  13915. height: math.unit(8, "feet"),
  13916. default: true
  13917. },
  13918. {
  13919. name: "Macro",
  13920. height: math.unit(400, "feet")
  13921. },
  13922. {
  13923. name: "Megamacro",
  13924. height: math.unit(50, "miles")
  13925. },
  13926. {
  13927. name: "Canon Height",
  13928. height: math.unit(200, "AU")
  13929. },
  13930. ]
  13931. ))
  13932. characterMakers.push(() => makeCharacter(
  13933. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13934. {
  13935. front: {
  13936. height: math.unit(6, "feet"),
  13937. weight: math.unit(72, "kg"),
  13938. name: "Front",
  13939. image: {
  13940. source: "./media/characters/sleekit/front.svg",
  13941. extra: 4693 / 4487,
  13942. bottom: 0.012
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Minimum Height",
  13949. height: math.unit(10, "meters")
  13950. },
  13951. {
  13952. name: "Smaller",
  13953. height: math.unit(25, "meters")
  13954. },
  13955. {
  13956. name: "Larger",
  13957. height: math.unit(38, "meters"),
  13958. default: true
  13959. },
  13960. {
  13961. name: "Maximum height",
  13962. height: math.unit(100, "meters")
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13968. {
  13969. front: {
  13970. height: math.unit(6, "feet"),
  13971. weight: math.unit(150, "lb"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/nillia/front.svg",
  13975. extra: 2195 / 2037,
  13976. bottom: 0.005
  13977. }
  13978. },
  13979. back: {
  13980. height: math.unit(6, "feet"),
  13981. weight: math.unit(150, "lb"),
  13982. name: "Back",
  13983. image: {
  13984. source: "./media/characters/nillia/back.svg",
  13985. extra: 2195 / 2037,
  13986. bottom: 0.005
  13987. }
  13988. },
  13989. },
  13990. [
  13991. {
  13992. name: "Canon Height",
  13993. height: math.unit(489, "feet"),
  13994. default: true
  13995. }
  13996. ]
  13997. ))
  13998. characterMakers.push(() => makeCharacter(
  13999. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14000. {
  14001. front: {
  14002. height: math.unit(6, "feet"),
  14003. weight: math.unit(150, "lb"),
  14004. name: "Front",
  14005. image: {
  14006. source: "./media/characters/mesmyriza/front.svg",
  14007. extra: 2067 / 1784,
  14008. bottom: 0.035
  14009. }
  14010. },
  14011. foot: {
  14012. height: math.unit(6 / (250 / 35), "feet"),
  14013. name: "Foot",
  14014. image: {
  14015. source: "./media/characters/mesmyriza/foot.svg"
  14016. }
  14017. },
  14018. },
  14019. [
  14020. {
  14021. name: "Macro",
  14022. height: math.unit(457, "meters"),
  14023. default: true
  14024. },
  14025. {
  14026. name: "Megamacro",
  14027. height: math.unit(8, "megameters")
  14028. },
  14029. ]
  14030. ))
  14031. characterMakers.push(() => makeCharacter(
  14032. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14033. {
  14034. front: {
  14035. height: math.unit(6, "feet"),
  14036. weight: math.unit(250, "lb"),
  14037. name: "Front",
  14038. image: {
  14039. source: "./media/characters/saudade/front.svg",
  14040. extra: 1172 / 1139,
  14041. bottom: 0.035
  14042. }
  14043. },
  14044. },
  14045. [
  14046. {
  14047. name: "Micro",
  14048. height: math.unit(3, "inches")
  14049. },
  14050. {
  14051. name: "Normal",
  14052. height: math.unit(6, "feet"),
  14053. default: true
  14054. },
  14055. {
  14056. name: "Macro",
  14057. height: math.unit(50, "feet")
  14058. },
  14059. {
  14060. name: "Megamacro",
  14061. height: math.unit(2800, "feet")
  14062. },
  14063. ]
  14064. ))
  14065. characterMakers.push(() => makeCharacter(
  14066. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14067. {
  14068. front: {
  14069. height: math.unit(5 + 4 / 12, "feet"),
  14070. weight: math.unit(100, "lb"),
  14071. name: "Front",
  14072. image: {
  14073. source: "./media/characters/keireer/front.svg",
  14074. extra: 716 / 666,
  14075. bottom: 0.05
  14076. }
  14077. },
  14078. },
  14079. [
  14080. {
  14081. name: "Normal",
  14082. height: math.unit(5 + 4 / 12, "feet"),
  14083. default: true
  14084. },
  14085. ]
  14086. ))
  14087. characterMakers.push(() => makeCharacter(
  14088. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14089. {
  14090. front: {
  14091. height: math.unit(6, "feet"),
  14092. weight: math.unit(90, "kg"),
  14093. name: "Front",
  14094. image: {
  14095. source: "./media/characters/mirja/front.svg",
  14096. extra: 1789 / 1683,
  14097. bottom: 0.05
  14098. }
  14099. },
  14100. frontDressed: {
  14101. height: math.unit(6, "feet"),
  14102. weight: math.unit(90, "lb"),
  14103. name: "Front (Dressed)",
  14104. image: {
  14105. source: "./media/characters/mirja/front-dressed.svg",
  14106. extra: 1789 / 1683,
  14107. bottom: 0.05
  14108. }
  14109. },
  14110. back: {
  14111. height: math.unit(6, "feet"),
  14112. weight: math.unit(90, "lb"),
  14113. name: "Back",
  14114. image: {
  14115. source: "./media/characters/mirja/back.svg",
  14116. extra: 953 / 917,
  14117. bottom: 0.017
  14118. }
  14119. },
  14120. },
  14121. [
  14122. {
  14123. name: "\"Incognito\"",
  14124. height: math.unit(3, "meters")
  14125. },
  14126. {
  14127. name: "Strolling Size",
  14128. height: math.unit(15, "km")
  14129. },
  14130. {
  14131. name: "Larger Strolling Size",
  14132. height: math.unit(400, "km")
  14133. },
  14134. {
  14135. name: "Preferred Size",
  14136. height: math.unit(5000, "km")
  14137. },
  14138. {
  14139. name: "True Size",
  14140. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14141. default: true
  14142. },
  14143. ]
  14144. ))
  14145. characterMakers.push(() => makeCharacter(
  14146. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14147. {
  14148. front: {
  14149. height: math.unit(15, "feet"),
  14150. weight: math.unit(880, "kg"),
  14151. name: "Front",
  14152. image: {
  14153. source: "./media/characters/nightraver/front.svg",
  14154. extra: 2444 / 2160,
  14155. bottom: 0.027
  14156. }
  14157. },
  14158. back: {
  14159. height: math.unit(15, "feet"),
  14160. weight: math.unit(880, "kg"),
  14161. name: "Back",
  14162. image: {
  14163. source: "./media/characters/nightraver/back.svg",
  14164. extra: 2309 / 2180,
  14165. bottom: 0.005
  14166. }
  14167. },
  14168. sole: {
  14169. height: math.unit(2.878, "feet"),
  14170. name: "Sole",
  14171. image: {
  14172. source: "./media/characters/nightraver/sole.svg"
  14173. }
  14174. },
  14175. foot: {
  14176. height: math.unit(2.285, "feet"),
  14177. name: "Foot",
  14178. image: {
  14179. source: "./media/characters/nightraver/foot.svg"
  14180. }
  14181. },
  14182. maw: {
  14183. height: math.unit(2.67, "feet"),
  14184. name: "Maw",
  14185. image: {
  14186. source: "./media/characters/nightraver/maw.svg"
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Micro",
  14193. height: math.unit(1, "cm")
  14194. },
  14195. {
  14196. name: "Normal",
  14197. height: math.unit(15, "feet"),
  14198. default: true
  14199. },
  14200. {
  14201. name: "Macro",
  14202. height: math.unit(300, "feet")
  14203. },
  14204. {
  14205. name: "Megamacro",
  14206. height: math.unit(300, "miles")
  14207. },
  14208. {
  14209. name: "Gigamacro",
  14210. height: math.unit(10000, "miles")
  14211. },
  14212. ]
  14213. ))
  14214. characterMakers.push(() => makeCharacter(
  14215. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14216. {
  14217. side: {
  14218. height: math.unit(2, "inches"),
  14219. weight: math.unit(5, "grams"),
  14220. name: "Side",
  14221. image: {
  14222. source: "./media/characters/arc/side.svg"
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Micro",
  14229. height: math.unit(2, "inches"),
  14230. default: true
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14236. {
  14237. front: {
  14238. height: math.unit(1.1938, "meters"),
  14239. weight: math.unit(54, "kg"),
  14240. name: "Front",
  14241. image: {
  14242. source: "./media/characters/nebula-shahar/front.svg",
  14243. extra: 1642 / 1436,
  14244. bottom: 0.06
  14245. }
  14246. },
  14247. },
  14248. [
  14249. {
  14250. name: "Megamicro",
  14251. height: math.unit(0.3, "mm")
  14252. },
  14253. {
  14254. name: "Micro",
  14255. height: math.unit(3, "cm")
  14256. },
  14257. {
  14258. name: "Normal",
  14259. height: math.unit(138, "cm"),
  14260. default: true
  14261. },
  14262. {
  14263. name: "Macro",
  14264. height: math.unit(30, "m")
  14265. },
  14266. ]
  14267. ))
  14268. characterMakers.push(() => makeCharacter(
  14269. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14270. {
  14271. front: {
  14272. height: math.unit(5.24, "feet"),
  14273. weight: math.unit(150, "lb"),
  14274. name: "Front",
  14275. image: {
  14276. source: "./media/characters/shayla/front.svg",
  14277. extra: 1512 / 1414,
  14278. bottom: 0.01
  14279. }
  14280. },
  14281. back: {
  14282. height: math.unit(5.24, "feet"),
  14283. weight: math.unit(150, "lb"),
  14284. name: "Back",
  14285. image: {
  14286. source: "./media/characters/shayla/back.svg",
  14287. extra: 1512 / 1414
  14288. }
  14289. },
  14290. hand: {
  14291. height: math.unit(0.7781496062992126, "feet"),
  14292. name: "Hand",
  14293. image: {
  14294. source: "./media/characters/shayla/hand.svg"
  14295. }
  14296. },
  14297. foot: {
  14298. height: math.unit(1.4206036745406823, "feet"),
  14299. name: "Foot",
  14300. image: {
  14301. source: "./media/characters/shayla/foot.svg"
  14302. }
  14303. },
  14304. },
  14305. [
  14306. {
  14307. name: "Micro",
  14308. height: math.unit(0.32, "feet")
  14309. },
  14310. {
  14311. name: "Normal",
  14312. height: math.unit(5.24, "feet"),
  14313. default: true
  14314. },
  14315. {
  14316. name: "Macro",
  14317. height: math.unit(492.12, "feet")
  14318. },
  14319. {
  14320. name: "Megamacro",
  14321. height: math.unit(186.41, "miles")
  14322. },
  14323. ]
  14324. ))
  14325. characterMakers.push(() => makeCharacter(
  14326. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14327. {
  14328. front: {
  14329. height: math.unit(2.2, "m"),
  14330. weight: math.unit(120, "kg"),
  14331. name: "Front",
  14332. image: {
  14333. source: "./media/characters/pia-jr/front.svg",
  14334. extra: 1000 / 970,
  14335. bottom: 0.035
  14336. }
  14337. },
  14338. hand: {
  14339. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14340. name: "Hand",
  14341. image: {
  14342. source: "./media/characters/pia-jr/hand.svg"
  14343. }
  14344. },
  14345. paw: {
  14346. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14347. name: "Paw",
  14348. image: {
  14349. source: "./media/characters/pia-jr/paw.svg"
  14350. }
  14351. },
  14352. },
  14353. [
  14354. {
  14355. name: "Micro",
  14356. height: math.unit(1.2, "cm")
  14357. },
  14358. {
  14359. name: "Normal",
  14360. height: math.unit(2.2, "m"),
  14361. default: true
  14362. },
  14363. {
  14364. name: "Macro",
  14365. height: math.unit(180, "m")
  14366. },
  14367. {
  14368. name: "Megamacro",
  14369. height: math.unit(420, "km")
  14370. },
  14371. ]
  14372. ))
  14373. characterMakers.push(() => makeCharacter(
  14374. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14375. {
  14376. front: {
  14377. height: math.unit(2, "m"),
  14378. weight: math.unit(115, "kg"),
  14379. name: "Front",
  14380. image: {
  14381. source: "./media/characters/pia-sr/front.svg",
  14382. extra: 760 / 730,
  14383. bottom: 0.015
  14384. }
  14385. },
  14386. back: {
  14387. height: math.unit(2, "m"),
  14388. weight: math.unit(115, "kg"),
  14389. name: "Back",
  14390. image: {
  14391. source: "./media/characters/pia-sr/back.svg",
  14392. extra: 760 / 730,
  14393. bottom: 0.01
  14394. }
  14395. },
  14396. hand: {
  14397. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14398. name: "Hand",
  14399. image: {
  14400. source: "./media/characters/pia-sr/hand.svg"
  14401. }
  14402. },
  14403. foot: {
  14404. height: math.unit(1.83, "feet"),
  14405. name: "Foot",
  14406. image: {
  14407. source: "./media/characters/pia-sr/foot.svg"
  14408. }
  14409. },
  14410. },
  14411. [
  14412. {
  14413. name: "Micro",
  14414. height: math.unit(88, "mm")
  14415. },
  14416. {
  14417. name: "Normal",
  14418. height: math.unit(2, "m"),
  14419. default: true
  14420. },
  14421. {
  14422. name: "Macro",
  14423. height: math.unit(200, "m")
  14424. },
  14425. {
  14426. name: "Megamacro",
  14427. height: math.unit(420, "km")
  14428. },
  14429. ]
  14430. ))
  14431. characterMakers.push(() => makeCharacter(
  14432. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14433. {
  14434. front: {
  14435. height: math.unit(8 + 2 / 12, "feet"),
  14436. weight: math.unit(300, "lb"),
  14437. name: "Front",
  14438. image: {
  14439. source: "./media/characters/kibibyte/front.svg",
  14440. extra: 2221 / 2098,
  14441. bottom: 0.04
  14442. }
  14443. },
  14444. },
  14445. [
  14446. {
  14447. name: "Normal",
  14448. height: math.unit(8 + 2 / 12, "feet"),
  14449. default: true
  14450. },
  14451. {
  14452. name: "Socialable Macro",
  14453. height: math.unit(50, "feet")
  14454. },
  14455. {
  14456. name: "Macro",
  14457. height: math.unit(300, "feet")
  14458. },
  14459. {
  14460. name: "Megamacro",
  14461. height: math.unit(500, "miles")
  14462. },
  14463. ]
  14464. ))
  14465. characterMakers.push(() => makeCharacter(
  14466. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14467. {
  14468. front: {
  14469. height: math.unit(6, "feet"),
  14470. weight: math.unit(150, "lb"),
  14471. name: "Front",
  14472. image: {
  14473. source: "./media/characters/felix/front.svg",
  14474. extra: 762 / 722,
  14475. bottom: 0.02
  14476. }
  14477. },
  14478. frontClothed: {
  14479. height: math.unit(6, "feet"),
  14480. weight: math.unit(150, "lb"),
  14481. name: "Front (Clothed)",
  14482. image: {
  14483. source: "./media/characters/felix/front-clothed.svg",
  14484. extra: 762 / 722,
  14485. bottom: 0.02
  14486. }
  14487. },
  14488. },
  14489. [
  14490. {
  14491. name: "Normal",
  14492. height: math.unit(6 + 8 / 12, "feet"),
  14493. default: true
  14494. },
  14495. {
  14496. name: "Macro",
  14497. height: math.unit(2600, "feet")
  14498. },
  14499. {
  14500. name: "Megamacro",
  14501. height: math.unit(450, "miles")
  14502. },
  14503. ]
  14504. ))
  14505. characterMakers.push(() => makeCharacter(
  14506. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14507. {
  14508. front: {
  14509. height: math.unit(6 + 1 / 12, "feet"),
  14510. weight: math.unit(250, "lb"),
  14511. name: "Front",
  14512. image: {
  14513. source: "./media/characters/tobo/front.svg",
  14514. extra: 608 / 586,
  14515. bottom: 0.023
  14516. }
  14517. },
  14518. back: {
  14519. height: math.unit(6 + 1 / 12, "feet"),
  14520. weight: math.unit(250, "lb"),
  14521. name: "Back",
  14522. image: {
  14523. source: "./media/characters/tobo/back.svg",
  14524. extra: 608 / 586
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Nano",
  14531. height: math.unit(2, "nm")
  14532. },
  14533. {
  14534. name: "Megamicro",
  14535. height: math.unit(0.1, "mm")
  14536. },
  14537. {
  14538. name: "Micro",
  14539. height: math.unit(1, "inch"),
  14540. default: true
  14541. },
  14542. {
  14543. name: "Human-sized",
  14544. height: math.unit(6 + 1 / 12, "feet")
  14545. },
  14546. {
  14547. name: "Macro",
  14548. height: math.unit(250, "feet")
  14549. },
  14550. {
  14551. name: "Megamacro",
  14552. height: math.unit(75, "miles")
  14553. },
  14554. {
  14555. name: "Texas-sized",
  14556. height: math.unit(750, "miles")
  14557. },
  14558. {
  14559. name: "Teramacro",
  14560. height: math.unit(50000, "miles")
  14561. },
  14562. ]
  14563. ))
  14564. characterMakers.push(() => makeCharacter(
  14565. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14566. {
  14567. front: {
  14568. height: math.unit(6, "feet"),
  14569. weight: math.unit(269, "lb"),
  14570. name: "Front",
  14571. image: {
  14572. source: "./media/characters/danny-kapowsky/front.svg",
  14573. extra: 766 / 736,
  14574. bottom: 0.044
  14575. }
  14576. },
  14577. back: {
  14578. height: math.unit(6, "feet"),
  14579. weight: math.unit(269, "lb"),
  14580. name: "Back",
  14581. image: {
  14582. source: "./media/characters/danny-kapowsky/back.svg",
  14583. extra: 797 / 760,
  14584. bottom: 0.025
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Macro",
  14591. height: math.unit(150, "feet"),
  14592. default: true
  14593. },
  14594. {
  14595. name: "Macro+",
  14596. height: math.unit(200, "feet")
  14597. },
  14598. {
  14599. name: "Macro++",
  14600. height: math.unit(300, "feet")
  14601. },
  14602. {
  14603. name: "Macro+++",
  14604. height: math.unit(400, "feet")
  14605. },
  14606. ]
  14607. ))
  14608. characterMakers.push(() => makeCharacter(
  14609. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14610. {
  14611. side: {
  14612. height: math.unit(6, "feet"),
  14613. weight: math.unit(170, "lb"),
  14614. name: "Side",
  14615. image: {
  14616. source: "./media/characters/finn/side.svg",
  14617. extra: 1953 / 1807,
  14618. bottom: 0.057
  14619. }
  14620. },
  14621. },
  14622. [
  14623. {
  14624. name: "Megamacro",
  14625. height: math.unit(14445, "feet"),
  14626. default: true
  14627. },
  14628. ]
  14629. ))
  14630. characterMakers.push(() => makeCharacter(
  14631. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14632. {
  14633. front: {
  14634. height: math.unit(5 + 6 / 12, "feet"),
  14635. weight: math.unit(125, "lb"),
  14636. name: "Front",
  14637. image: {
  14638. source: "./media/characters/roy/front.svg",
  14639. extra: 1,
  14640. bottom: 0.11
  14641. }
  14642. },
  14643. },
  14644. [
  14645. {
  14646. name: "Micro",
  14647. height: math.unit(3, "inches"),
  14648. default: true
  14649. },
  14650. {
  14651. name: "Normal",
  14652. height: math.unit(5 + 6 / 12, "feet")
  14653. },
  14654. {
  14655. name: "Lesser Macro",
  14656. height: math.unit(60, "feet")
  14657. },
  14658. {
  14659. name: "Greater Macro",
  14660. height: math.unit(120, "feet")
  14661. },
  14662. ]
  14663. ))
  14664. characterMakers.push(() => makeCharacter(
  14665. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14666. {
  14667. front: {
  14668. height: math.unit(6, "feet"),
  14669. weight: math.unit(100, "lb"),
  14670. name: "Front",
  14671. image: {
  14672. source: "./media/characters/aevsivs/front.svg",
  14673. extra: 1,
  14674. bottom: 0.03
  14675. }
  14676. },
  14677. back: {
  14678. height: math.unit(6, "feet"),
  14679. weight: math.unit(100, "lb"),
  14680. name: "Back",
  14681. image: {
  14682. source: "./media/characters/aevsivs/back.svg"
  14683. }
  14684. },
  14685. },
  14686. [
  14687. {
  14688. name: "Micro",
  14689. height: math.unit(2, "inches"),
  14690. default: true
  14691. },
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(5, "feet")
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14700. {
  14701. front: {
  14702. height: math.unit(5 + 7 / 12, "feet"),
  14703. weight: math.unit(159, "lb"),
  14704. name: "Front",
  14705. image: {
  14706. source: "./media/characters/hildegard/front.svg",
  14707. extra: 289 / 269,
  14708. bottom: 7.63 / 297.8
  14709. }
  14710. },
  14711. back: {
  14712. height: math.unit(5 + 7 / 12, "feet"),
  14713. weight: math.unit(159, "lb"),
  14714. name: "Back",
  14715. image: {
  14716. source: "./media/characters/hildegard/back.svg",
  14717. extra: 280 / 260,
  14718. bottom: 2.3 / 282
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(5 + 7 / 12, "feet"),
  14726. default: true
  14727. },
  14728. ]
  14729. ))
  14730. characterMakers.push(() => makeCharacter(
  14731. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14732. {
  14733. bernard: {
  14734. height: math.unit(2 + 7 / 12, "feet"),
  14735. weight: math.unit(66, "lb"),
  14736. name: "Bernard",
  14737. rename: true,
  14738. image: {
  14739. source: "./media/characters/bernard-wilder/bernard.svg",
  14740. extra: 192 / 128,
  14741. bottom: 0.05
  14742. }
  14743. },
  14744. wilder: {
  14745. height: math.unit(5 + 8 / 12, "feet"),
  14746. weight: math.unit(143, "lb"),
  14747. name: "Wilder",
  14748. rename: true,
  14749. image: {
  14750. source: "./media/characters/bernard-wilder/wilder.svg",
  14751. extra: 361 / 312,
  14752. bottom: 0.02
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(2 + 7 / 12, "feet"),
  14760. default: true
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14766. {
  14767. anthro: {
  14768. height: math.unit(6 + 1 / 12, "feet"),
  14769. weight: math.unit(155, "lb"),
  14770. name: "Anthro",
  14771. image: {
  14772. source: "./media/characters/hearth/anthro.svg",
  14773. extra: 260 / 250,
  14774. bottom: 0.02
  14775. }
  14776. },
  14777. feral: {
  14778. height: math.unit(3.78, "feet"),
  14779. weight: math.unit(35, "kg"),
  14780. name: "Feral",
  14781. image: {
  14782. source: "./media/characters/hearth/feral.svg",
  14783. extra: 153 / 135,
  14784. bottom: 0.03
  14785. }
  14786. },
  14787. },
  14788. [
  14789. {
  14790. name: "Normal",
  14791. height: math.unit(6 + 1 / 12, "feet"),
  14792. default: true
  14793. },
  14794. ]
  14795. ))
  14796. characterMakers.push(() => makeCharacter(
  14797. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14798. {
  14799. front: {
  14800. height: math.unit(6, "feet"),
  14801. weight: math.unit(182, "lb"),
  14802. name: "Front",
  14803. image: {
  14804. source: "./media/characters/ingrid/front.svg",
  14805. extra: 294 / 268,
  14806. bottom: 0.027
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Normal",
  14813. height: math.unit(6, "feet"),
  14814. default: true
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14820. {
  14821. eevee: {
  14822. height: math.unit(2 + 10 / 12, "feet"),
  14823. weight: math.unit(86, "lb"),
  14824. name: "Malgam",
  14825. image: {
  14826. source: "./media/characters/malgam/eevee.svg",
  14827. extra: 218 / 180,
  14828. bottom: 0.2
  14829. }
  14830. },
  14831. sylveon: {
  14832. height: math.unit(4, "feet"),
  14833. weight: math.unit(101, "lb"),
  14834. name: "Future Malgam",
  14835. rename: true,
  14836. image: {
  14837. source: "./media/characters/malgam/sylveon.svg",
  14838. extra: 371 / 325,
  14839. bottom: 0.015
  14840. }
  14841. },
  14842. gigantamax: {
  14843. height: math.unit(50, "feet"),
  14844. name: "Gigantamax Malgam",
  14845. rename: true,
  14846. image: {
  14847. source: "./media/characters/malgam/gigantamax.svg"
  14848. }
  14849. },
  14850. },
  14851. [
  14852. {
  14853. name: "Normal",
  14854. height: math.unit(2 + 10 / 12, "feet"),
  14855. default: true
  14856. },
  14857. ]
  14858. ))
  14859. characterMakers.push(() => makeCharacter(
  14860. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14861. {
  14862. front: {
  14863. height: math.unit(5 + 11 / 12, "feet"),
  14864. weight: math.unit(188, "lb"),
  14865. name: "Front",
  14866. image: {
  14867. source: "./media/characters/fleur/front.svg",
  14868. extra: 309 / 283,
  14869. bottom: 0.007
  14870. }
  14871. },
  14872. },
  14873. [
  14874. {
  14875. name: "Normal",
  14876. height: math.unit(5 + 11 / 12, "feet"),
  14877. default: true
  14878. },
  14879. ]
  14880. ))
  14881. characterMakers.push(() => makeCharacter(
  14882. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14883. {
  14884. front: {
  14885. height: math.unit(5 + 4 / 12, "feet"),
  14886. weight: math.unit(122, "lb"),
  14887. name: "Front",
  14888. image: {
  14889. source: "./media/characters/jude/front.svg",
  14890. extra: 288 / 273,
  14891. bottom: 0.03
  14892. }
  14893. },
  14894. },
  14895. [
  14896. {
  14897. name: "Normal",
  14898. height: math.unit(5 + 4 / 12, "feet"),
  14899. default: true
  14900. },
  14901. ]
  14902. ))
  14903. characterMakers.push(() => makeCharacter(
  14904. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14905. {
  14906. front: {
  14907. height: math.unit(5 + 11 / 12, "feet"),
  14908. weight: math.unit(190, "lb"),
  14909. name: "Front",
  14910. image: {
  14911. source: "./media/characters/seara/front.svg",
  14912. extra: 1,
  14913. bottom: 0.05
  14914. }
  14915. },
  14916. },
  14917. [
  14918. {
  14919. name: "Normal",
  14920. height: math.unit(5 + 11 / 12, "feet"),
  14921. default: true
  14922. },
  14923. ]
  14924. ))
  14925. characterMakers.push(() => makeCharacter(
  14926. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14927. {
  14928. front: {
  14929. height: math.unit(16 + 5 / 12, "feet"),
  14930. weight: math.unit(524, "lb"),
  14931. name: "Front",
  14932. image: {
  14933. source: "./media/characters/caspian/front.svg",
  14934. extra: 1,
  14935. bottom: 0.04
  14936. }
  14937. },
  14938. },
  14939. [
  14940. {
  14941. name: "Normal",
  14942. height: math.unit(16 + 5 / 12, "feet"),
  14943. default: true
  14944. },
  14945. ]
  14946. ))
  14947. characterMakers.push(() => makeCharacter(
  14948. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14949. {
  14950. front: {
  14951. height: math.unit(5 + 7 / 12, "feet"),
  14952. weight: math.unit(170, "lb"),
  14953. name: "Front",
  14954. image: {
  14955. source: "./media/characters/mika/front.svg",
  14956. extra: 1,
  14957. bottom: 0.016
  14958. }
  14959. },
  14960. },
  14961. [
  14962. {
  14963. name: "Normal",
  14964. height: math.unit(5 + 7 / 12, "feet"),
  14965. default: true
  14966. },
  14967. ]
  14968. ))
  14969. characterMakers.push(() => makeCharacter(
  14970. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14971. {
  14972. front: {
  14973. height: math.unit(6 + 2 / 12, "feet"),
  14974. weight: math.unit(268, "lb"),
  14975. name: "Front",
  14976. image: {
  14977. source: "./media/characters/sol/front.svg",
  14978. extra: 247 / 231,
  14979. bottom: 0.05
  14980. }
  14981. },
  14982. },
  14983. [
  14984. {
  14985. name: "Normal",
  14986. height: math.unit(6 + 2 / 12, "feet"),
  14987. default: true
  14988. },
  14989. ]
  14990. ))
  14991. characterMakers.push(() => makeCharacter(
  14992. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14993. {
  14994. buizel: {
  14995. height: math.unit(2 + 5 / 12, "feet"),
  14996. weight: math.unit(87, "lb"),
  14997. name: "Buizel",
  14998. image: {
  14999. source: "./media/characters/umiko/buizel.svg",
  15000. extra: 172 / 157,
  15001. bottom: 0.01
  15002. }
  15003. },
  15004. floatzel: {
  15005. height: math.unit(5 + 9 / 12, "feet"),
  15006. weight: math.unit(250, "lb"),
  15007. name: "Floatzel",
  15008. image: {
  15009. source: "./media/characters/umiko/floatzel.svg",
  15010. extra: 262 / 248
  15011. }
  15012. },
  15013. },
  15014. [
  15015. {
  15016. name: "Normal",
  15017. height: math.unit(2 + 5 / 12, "feet"),
  15018. default: true
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6 + 2 / 12, "feet"),
  15027. weight: math.unit(146, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/iliac/front.svg",
  15031. extra: 389 / 365,
  15032. bottom: 0.035
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Normal",
  15039. height: math.unit(6 + 2 / 12, "feet"),
  15040. default: true
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15046. {
  15047. front: {
  15048. height: math.unit(6, "feet"),
  15049. weight: math.unit(170, "lb"),
  15050. name: "Front",
  15051. image: {
  15052. source: "./media/characters/topaz/front.svg",
  15053. extra: 317 / 303,
  15054. bottom: 0.055
  15055. }
  15056. },
  15057. },
  15058. [
  15059. {
  15060. name: "Normal",
  15061. height: math.unit(6, "feet"),
  15062. default: true
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15068. {
  15069. front: {
  15070. height: math.unit(5 + 11 / 12, "feet"),
  15071. weight: math.unit(144, "lb"),
  15072. name: "Front",
  15073. image: {
  15074. source: "./media/characters/gabriel/front.svg",
  15075. extra: 285 / 262,
  15076. bottom: 0.004
  15077. }
  15078. },
  15079. },
  15080. [
  15081. {
  15082. name: "Normal",
  15083. height: math.unit(5 + 11 / 12, "feet"),
  15084. default: true
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15090. {
  15091. side: {
  15092. height: math.unit(6 + 5 / 12, "feet"),
  15093. weight: math.unit(300, "lb"),
  15094. name: "Side",
  15095. image: {
  15096. source: "./media/characters/tempest-suicune/side.svg",
  15097. extra: 195 / 154,
  15098. bottom: 0.04
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Normal",
  15105. height: math.unit(6 + 5 / 12, "feet"),
  15106. default: true
  15107. },
  15108. ]
  15109. ))
  15110. characterMakers.push(() => makeCharacter(
  15111. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15112. {
  15113. front: {
  15114. height: math.unit(7 + 2 / 12, "feet"),
  15115. weight: math.unit(322, "lb"),
  15116. name: "Front",
  15117. image: {
  15118. source: "./media/characters/vulcan/front.svg",
  15119. extra: 154 / 147,
  15120. bottom: 0.04
  15121. }
  15122. },
  15123. },
  15124. [
  15125. {
  15126. name: "Normal",
  15127. height: math.unit(7 + 2 / 12, "feet"),
  15128. default: true
  15129. },
  15130. ]
  15131. ))
  15132. characterMakers.push(() => makeCharacter(
  15133. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15134. {
  15135. front: {
  15136. height: math.unit(5 + 10 / 12, "feet"),
  15137. weight: math.unit(264, "lb"),
  15138. name: "Front",
  15139. image: {
  15140. source: "./media/characters/gault/front.svg",
  15141. extra: 161 / 140,
  15142. bottom: 0.028
  15143. }
  15144. },
  15145. },
  15146. [
  15147. {
  15148. name: "Normal",
  15149. height: math.unit(5 + 10 / 12, "feet"),
  15150. default: true
  15151. },
  15152. ]
  15153. ))
  15154. characterMakers.push(() => makeCharacter(
  15155. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15156. {
  15157. front: {
  15158. height: math.unit(6, "feet"),
  15159. weight: math.unit(150, "lb"),
  15160. name: "Front",
  15161. image: {
  15162. source: "./media/characters/shard/front.svg",
  15163. extra: 273 / 238,
  15164. bottom: 0.02
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Normal",
  15171. height: math.unit(3 + 6 / 12, "feet"),
  15172. default: true
  15173. },
  15174. ]
  15175. ))
  15176. characterMakers.push(() => makeCharacter(
  15177. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15178. {
  15179. front: {
  15180. height: math.unit(5 + 11 / 12, "feet"),
  15181. weight: math.unit(146, "lb"),
  15182. name: "Front",
  15183. image: {
  15184. source: "./media/characters/ashe/front.svg",
  15185. extra: 400 / 373,
  15186. bottom: 0.01
  15187. }
  15188. },
  15189. },
  15190. [
  15191. {
  15192. name: "Normal",
  15193. height: math.unit(5 + 11 / 12, "feet"),
  15194. default: true
  15195. },
  15196. ]
  15197. ))
  15198. characterMakers.push(() => makeCharacter(
  15199. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15200. {
  15201. front: {
  15202. height: math.unit(5 + 5 / 12, "feet"),
  15203. weight: math.unit(135, "lb"),
  15204. name: "Front",
  15205. image: {
  15206. source: "./media/characters/beatrix/front.svg",
  15207. extra: 392 / 379,
  15208. bottom: 0.01
  15209. }
  15210. },
  15211. },
  15212. [
  15213. {
  15214. name: "Normal",
  15215. height: math.unit(6, "feet"),
  15216. default: true
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15222. {
  15223. front: {
  15224. height: math.unit(6, "feet"),
  15225. weight: math.unit(150, "lb"),
  15226. name: "Front",
  15227. image: {
  15228. source: "./media/characters/ignatius/front.svg",
  15229. extra: 245 / 222,
  15230. bottom: 0.01
  15231. }
  15232. },
  15233. },
  15234. [
  15235. {
  15236. name: "Normal",
  15237. height: math.unit(5 + 5 / 12, "feet"),
  15238. default: true
  15239. },
  15240. ]
  15241. ))
  15242. characterMakers.push(() => makeCharacter(
  15243. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15244. {
  15245. front: {
  15246. height: math.unit(6 + 2 / 12, "feet"),
  15247. weight: math.unit(138, "lb"),
  15248. name: "Front",
  15249. image: {
  15250. source: "./media/characters/mei-li/front.svg",
  15251. extra: 237 / 229,
  15252. bottom: 0.03
  15253. }
  15254. },
  15255. },
  15256. [
  15257. {
  15258. name: "Normal",
  15259. height: math.unit(6 + 2 / 12, "feet"),
  15260. default: true
  15261. },
  15262. ]
  15263. ))
  15264. characterMakers.push(() => makeCharacter(
  15265. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15266. {
  15267. front: {
  15268. height: math.unit(2 + 4 / 12, "feet"),
  15269. weight: math.unit(62, "lb"),
  15270. name: "Front",
  15271. image: {
  15272. source: "./media/characters/puru/front.svg",
  15273. extra: 206 / 149,
  15274. bottom: 0.06
  15275. }
  15276. },
  15277. },
  15278. [
  15279. {
  15280. name: "Normal",
  15281. height: math.unit(2 + 4 / 12, "feet"),
  15282. default: true
  15283. },
  15284. ]
  15285. ))
  15286. characterMakers.push(() => makeCharacter(
  15287. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15288. {
  15289. anthro: {
  15290. height: math.unit(5 + 8/12, "feet"),
  15291. weight: math.unit(200, "lb"),
  15292. energyNeed: math.unit(2000, "kcal"),
  15293. name: "Anthro",
  15294. image: {
  15295. source: "./media/characters/kee/anthro.svg",
  15296. extra: 3251/3184,
  15297. bottom: 250/3501
  15298. }
  15299. },
  15300. taur: {
  15301. height: math.unit(11, "feet"),
  15302. weight: math.unit(500, "lb"),
  15303. energyNeed: math.unit(5000, "kcal"),
  15304. name: "Taur",
  15305. image: {
  15306. source: "./media/characters/kee/taur.svg",
  15307. extra: 1362/1320,
  15308. bottom: 83/1445
  15309. }
  15310. },
  15311. },
  15312. [
  15313. {
  15314. name: "Normal",
  15315. height: math.unit(5 + 8/12, "feet"),
  15316. default: true
  15317. },
  15318. {
  15319. name: "Macro",
  15320. height: math.unit(35, "feet")
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15326. {
  15327. anthro: {
  15328. height: math.unit(7, "feet"),
  15329. weight: math.unit(190, "lb"),
  15330. name: "Anthro",
  15331. image: {
  15332. source: "./media/characters/cobalt-dracha/anthro.svg",
  15333. extra: 231 / 225,
  15334. bottom: 0.04
  15335. }
  15336. },
  15337. feral: {
  15338. height: math.unit(9 + 7 / 12, "feet"),
  15339. weight: math.unit(294, "lb"),
  15340. name: "Feral",
  15341. image: {
  15342. source: "./media/characters/cobalt-dracha/feral.svg",
  15343. extra: 692 / 633,
  15344. bottom: 0.05
  15345. }
  15346. },
  15347. },
  15348. [
  15349. {
  15350. name: "Normal",
  15351. height: math.unit(7, "feet"),
  15352. default: true
  15353. },
  15354. ]
  15355. ))
  15356. characterMakers.push(() => makeCharacter(
  15357. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15358. {
  15359. fallen: {
  15360. height: math.unit(11 + 8 / 12, "feet"),
  15361. weight: math.unit(485, "lb"),
  15362. name: "Java (Fallen)",
  15363. rename: true,
  15364. image: {
  15365. source: "./media/characters/java/fallen.svg",
  15366. extra: 226 / 208,
  15367. bottom: 0.005
  15368. }
  15369. },
  15370. godkin: {
  15371. height: math.unit(10 + 6 / 12, "feet"),
  15372. weight: math.unit(328, "lb"),
  15373. name: "Java (Godkin)",
  15374. rename: true,
  15375. image: {
  15376. source: "./media/characters/java/godkin.svg",
  15377. extra: 270 / 262,
  15378. bottom: 0.02
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Normal",
  15385. height: math.unit(11 + 8 / 12, "feet"),
  15386. default: true
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15392. {
  15393. front: {
  15394. height: math.unit(7 + 8 / 12, "feet"),
  15395. weight: math.unit(320, "lb"),
  15396. name: "Front",
  15397. image: {
  15398. source: "./media/characters/skoll/front.svg",
  15399. extra: 232 / 220,
  15400. bottom: 0.02
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Normal",
  15407. height: math.unit(7 + 8 / 12, "feet"),
  15408. default: true
  15409. },
  15410. ]
  15411. ))
  15412. characterMakers.push(() => makeCharacter(
  15413. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15414. {
  15415. front: {
  15416. height: math.unit(5 + 9 / 12, "feet"),
  15417. weight: math.unit(170, "lb"),
  15418. name: "Front",
  15419. image: {
  15420. source: "./media/characters/purna/front.svg",
  15421. extra: 239 / 229,
  15422. bottom: 0.01
  15423. }
  15424. },
  15425. },
  15426. [
  15427. {
  15428. name: "Normal",
  15429. height: math.unit(5 + 9 / 12, "feet"),
  15430. default: true
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(5 + 9 / 12, "feet"),
  15439. weight: math.unit(142, "lb"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/kuva/front.svg",
  15443. extra: 281 / 271,
  15444. bottom: 0.006
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Normal",
  15451. height: math.unit(5 + 9 / 12, "feet"),
  15452. default: true
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15458. {
  15459. anthro: {
  15460. height: math.unit(9 + 2 / 12, "feet"),
  15461. weight: math.unit(270, "lb"),
  15462. name: "Anthro",
  15463. image: {
  15464. source: "./media/characters/embra/anthro.svg",
  15465. extra: 200 / 187,
  15466. bottom: 0.02
  15467. }
  15468. },
  15469. feral: {
  15470. height: math.unit(18 + 8 / 12, "feet"),
  15471. weight: math.unit(576, "lb"),
  15472. name: "Feral",
  15473. image: {
  15474. source: "./media/characters/embra/feral.svg",
  15475. extra: 152 / 137,
  15476. bottom: 0.037
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(9 + 2 / 12, "feet"),
  15484. default: true
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15490. {
  15491. anthro: {
  15492. height: math.unit(10 + 9 / 12, "feet"),
  15493. weight: math.unit(224, "lb"),
  15494. name: "Anthro",
  15495. image: {
  15496. source: "./media/characters/grottos/anthro.svg",
  15497. extra: 350 / 332,
  15498. bottom: 0.045
  15499. }
  15500. },
  15501. feral: {
  15502. height: math.unit(20 + 7 / 12, "feet"),
  15503. weight: math.unit(629, "lb"),
  15504. name: "Feral",
  15505. image: {
  15506. source: "./media/characters/grottos/feral.svg",
  15507. extra: 207 / 190,
  15508. bottom: 0.05
  15509. }
  15510. },
  15511. },
  15512. [
  15513. {
  15514. name: "Normal",
  15515. height: math.unit(10 + 9 / 12, "feet"),
  15516. default: true
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15522. {
  15523. anthro: {
  15524. height: math.unit(9 + 6 / 12, "feet"),
  15525. weight: math.unit(298, "lb"),
  15526. name: "Anthro",
  15527. image: {
  15528. source: "./media/characters/frifna/anthro.svg",
  15529. extra: 282 / 269,
  15530. bottom: 0.015
  15531. }
  15532. },
  15533. feral: {
  15534. height: math.unit(16 + 2 / 12, "feet"),
  15535. weight: math.unit(624, "lb"),
  15536. name: "Feral",
  15537. image: {
  15538. source: "./media/characters/frifna/feral.svg"
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Normal",
  15545. height: math.unit(9 + 6 / 12, "feet"),
  15546. default: true
  15547. },
  15548. ]
  15549. ))
  15550. characterMakers.push(() => makeCharacter(
  15551. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15552. {
  15553. front: {
  15554. height: math.unit(6 + 2 / 12, "feet"),
  15555. weight: math.unit(168, "lb"),
  15556. name: "Front",
  15557. image: {
  15558. source: "./media/characters/elise/front.svg",
  15559. extra: 276 / 271
  15560. }
  15561. },
  15562. },
  15563. [
  15564. {
  15565. name: "Normal",
  15566. height: math.unit(6 + 2 / 12, "feet"),
  15567. default: true
  15568. },
  15569. ]
  15570. ))
  15571. characterMakers.push(() => makeCharacter(
  15572. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15573. {
  15574. front: {
  15575. height: math.unit(5 + 10 / 12, "feet"),
  15576. weight: math.unit(210, "lb"),
  15577. name: "Front",
  15578. image: {
  15579. source: "./media/characters/glade/front.svg",
  15580. extra: 258 / 247,
  15581. bottom: 0.008
  15582. }
  15583. },
  15584. },
  15585. [
  15586. {
  15587. name: "Normal",
  15588. height: math.unit(5 + 10 / 12, "feet"),
  15589. default: true
  15590. },
  15591. ]
  15592. ))
  15593. characterMakers.push(() => makeCharacter(
  15594. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15595. {
  15596. front: {
  15597. height: math.unit(5 + 10 / 12, "feet"),
  15598. weight: math.unit(129, "lb"),
  15599. name: "Front",
  15600. image: {
  15601. source: "./media/characters/rina/front.svg",
  15602. extra: 266 / 255,
  15603. bottom: 0.005
  15604. }
  15605. },
  15606. },
  15607. [
  15608. {
  15609. name: "Normal",
  15610. height: math.unit(5 + 10 / 12, "feet"),
  15611. default: true
  15612. },
  15613. ]
  15614. ))
  15615. characterMakers.push(() => makeCharacter(
  15616. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15617. {
  15618. front: {
  15619. height: math.unit(6 + 1 / 12, "feet"),
  15620. weight: math.unit(192, "lb"),
  15621. name: "Front",
  15622. image: {
  15623. source: "./media/characters/veronica/front.svg",
  15624. extra: 319 / 309,
  15625. bottom: 0.005
  15626. }
  15627. },
  15628. },
  15629. [
  15630. {
  15631. name: "Normal",
  15632. height: math.unit(6 + 1 / 12, "feet"),
  15633. default: true
  15634. },
  15635. ]
  15636. ))
  15637. characterMakers.push(() => makeCharacter(
  15638. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15639. {
  15640. front: {
  15641. height: math.unit(9 + 3 / 12, "feet"),
  15642. weight: math.unit(1100, "lb"),
  15643. name: "Front",
  15644. image: {
  15645. source: "./media/characters/braxton/front.svg",
  15646. extra: 1057 / 984,
  15647. bottom: 0.05
  15648. }
  15649. },
  15650. },
  15651. [
  15652. {
  15653. name: "Normal",
  15654. height: math.unit(9 + 3 / 12, "feet")
  15655. },
  15656. {
  15657. name: "Giant",
  15658. height: math.unit(300, "feet"),
  15659. default: true
  15660. },
  15661. {
  15662. name: "Macro",
  15663. height: math.unit(700, "feet")
  15664. },
  15665. {
  15666. name: "Megamacro",
  15667. height: math.unit(6000, "feet")
  15668. },
  15669. ]
  15670. ))
  15671. characterMakers.push(() => makeCharacter(
  15672. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15673. {
  15674. front: {
  15675. height: math.unit(6 + 7 / 12, "feet"),
  15676. weight: math.unit(150, "lb"),
  15677. name: "Front",
  15678. image: {
  15679. source: "./media/characters/blue-feyonics/front.svg",
  15680. extra: 1403 / 1306,
  15681. bottom: 0.047
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(6 + 7 / 12, "feet"),
  15689. default: true
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15695. {
  15696. front: {
  15697. height: math.unit(1.8, "meters"),
  15698. weight: math.unit(60, "kg"),
  15699. name: "Front",
  15700. image: {
  15701. source: "./media/characters/maxwell/front.svg",
  15702. extra: 2060 / 1873
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Micro",
  15709. height: math.unit(1, "mm")
  15710. },
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(1.8, "meter"),
  15714. default: true
  15715. },
  15716. {
  15717. name: "Macro",
  15718. height: math.unit(30, "meters")
  15719. },
  15720. {
  15721. name: "Megamacro",
  15722. height: math.unit(10, "km")
  15723. },
  15724. ]
  15725. ))
  15726. characterMakers.push(() => makeCharacter(
  15727. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15728. {
  15729. front: {
  15730. height: math.unit(6, "feet"),
  15731. weight: math.unit(150, "lb"),
  15732. name: "Front",
  15733. image: {
  15734. source: "./media/characters/jack/front.svg",
  15735. extra: 1754 / 1640,
  15736. bottom: 0.01
  15737. }
  15738. },
  15739. },
  15740. [
  15741. {
  15742. name: "Normal",
  15743. height: math.unit(80000, "feet"),
  15744. default: true
  15745. },
  15746. {
  15747. name: "Max size",
  15748. height: math.unit(10, "lightyears")
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15754. {
  15755. urban: {
  15756. height: math.unit(5, "feet"),
  15757. weight: math.unit(240, "lb"),
  15758. name: "Urban",
  15759. image: {
  15760. source: "./media/characters/cafat/urban.svg",
  15761. extra: 1223/1126,
  15762. bottom: 205/1428
  15763. }
  15764. },
  15765. summer: {
  15766. height: math.unit(5, "feet"),
  15767. weight: math.unit(240, "lb"),
  15768. name: "Summer",
  15769. image: {
  15770. source: "./media/characters/cafat/summer.svg",
  15771. extra: 1223/1126,
  15772. bottom: 205/1428
  15773. }
  15774. },
  15775. winter: {
  15776. height: math.unit(5, "feet"),
  15777. weight: math.unit(240, "lb"),
  15778. name: "Winter",
  15779. image: {
  15780. source: "./media/characters/cafat/winter.svg",
  15781. extra: 1223/1126,
  15782. bottom: 205/1428
  15783. }
  15784. },
  15785. lingerie: {
  15786. height: math.unit(5, "feet"),
  15787. weight: math.unit(240, "lb"),
  15788. name: "Lingerie",
  15789. image: {
  15790. source: "./media/characters/cafat/lingerie.svg",
  15791. extra: 1223/1126,
  15792. bottom: 205/1428
  15793. }
  15794. },
  15795. upright: {
  15796. height: math.unit(6.3, "feet"),
  15797. weight: math.unit(240, "lb"),
  15798. name: "Upright",
  15799. image: {
  15800. source: "./media/characters/cafat/upright.svg",
  15801. bottom: 0.01
  15802. }
  15803. },
  15804. uprightFull: {
  15805. height: math.unit(6.3, "feet"),
  15806. weight: math.unit(240, "lb"),
  15807. name: "Upright (Full)",
  15808. image: {
  15809. source: "./media/characters/cafat/upright-full.svg",
  15810. bottom: 0.01
  15811. }
  15812. },
  15813. },
  15814. [
  15815. {
  15816. name: "Small",
  15817. height: math.unit(5, "feet"),
  15818. default: true
  15819. },
  15820. {
  15821. name: "Large",
  15822. height: math.unit(13, "feet")
  15823. },
  15824. ]
  15825. ))
  15826. characterMakers.push(() => makeCharacter(
  15827. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15828. {
  15829. front: {
  15830. height: math.unit(6, "feet"),
  15831. weight: math.unit(150, "lb"),
  15832. name: "Front",
  15833. image: {
  15834. source: "./media/characters/verin-raharra/front.svg",
  15835. extra: 5019 / 4835,
  15836. bottom: 0.023
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Normal",
  15843. height: math.unit(7 + 5 / 12, "feet"),
  15844. default: true
  15845. },
  15846. {
  15847. name: "Upsized",
  15848. height: math.unit(20, "feet")
  15849. },
  15850. ]
  15851. ))
  15852. characterMakers.push(() => makeCharacter(
  15853. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15854. {
  15855. front: {
  15856. height: math.unit(7, "feet"),
  15857. weight: math.unit(230, "lb"),
  15858. name: "Front",
  15859. image: {
  15860. source: "./media/characters/nakata/front.svg",
  15861. extra: 1.005,
  15862. bottom: 0.01
  15863. }
  15864. },
  15865. },
  15866. [
  15867. {
  15868. name: "Normal",
  15869. height: math.unit(7, "feet"),
  15870. default: true
  15871. },
  15872. {
  15873. name: "Big",
  15874. height: math.unit(14, "feet")
  15875. },
  15876. {
  15877. name: "Macro",
  15878. height: math.unit(400, "feet")
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15884. {
  15885. front: {
  15886. height: math.unit(4.91, "feet"),
  15887. weight: math.unit(100, "lb"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/lily/front.svg",
  15891. extra: 1585 / 1415,
  15892. bottom: 0.02
  15893. }
  15894. },
  15895. },
  15896. [
  15897. {
  15898. name: "Normal",
  15899. height: math.unit(4.91, "feet"),
  15900. default: true
  15901. },
  15902. ]
  15903. ))
  15904. characterMakers.push(() => makeCharacter(
  15905. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15906. {
  15907. laying: {
  15908. height: math.unit(4 + 4 / 12, "feet"),
  15909. weight: math.unit(600, "lb"),
  15910. name: "Laying",
  15911. image: {
  15912. source: "./media/characters/sheila/laying.svg",
  15913. extra: 1333 / 1265,
  15914. bottom: 0.16
  15915. }
  15916. },
  15917. },
  15918. [
  15919. {
  15920. name: "Normal",
  15921. height: math.unit(4 + 4 / 12, "feet"),
  15922. default: true
  15923. },
  15924. ]
  15925. ))
  15926. characterMakers.push(() => makeCharacter(
  15927. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15928. {
  15929. front: {
  15930. height: math.unit(6, "feet"),
  15931. weight: math.unit(190, "lb"),
  15932. name: "Front",
  15933. image: {
  15934. source: "./media/characters/sax/front.svg",
  15935. extra: 1187 / 973,
  15936. bottom: 0.042
  15937. }
  15938. },
  15939. },
  15940. [
  15941. {
  15942. name: "Micro",
  15943. height: math.unit(4, "inches"),
  15944. default: true
  15945. },
  15946. ]
  15947. ))
  15948. characterMakers.push(() => makeCharacter(
  15949. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15950. {
  15951. front: {
  15952. height: math.unit(6, "feet"),
  15953. weight: math.unit(150, "lb"),
  15954. name: "Front",
  15955. image: {
  15956. source: "./media/characters/pandora/front.svg",
  15957. extra: 2720 / 2556,
  15958. bottom: 0.015
  15959. }
  15960. },
  15961. back: {
  15962. height: math.unit(6, "feet"),
  15963. weight: math.unit(150, "lb"),
  15964. name: "Back",
  15965. image: {
  15966. source: "./media/characters/pandora/back.svg",
  15967. extra: 2720 / 2556,
  15968. bottom: 0.01
  15969. }
  15970. },
  15971. beans: {
  15972. height: math.unit(6 / 8, "feet"),
  15973. name: "Beans",
  15974. image: {
  15975. source: "./media/characters/pandora/beans.svg"
  15976. }
  15977. },
  15978. collar: {
  15979. height: math.unit(0.31, "feet"),
  15980. name: "Collar",
  15981. image: {
  15982. source: "./media/characters/pandora/collar.svg"
  15983. }
  15984. },
  15985. skirt: {
  15986. height: math.unit(6, "feet"),
  15987. weight: math.unit(150, "lb"),
  15988. name: "Skirt",
  15989. image: {
  15990. source: "./media/characters/pandora/skirt.svg",
  15991. extra: 1622 / 1525,
  15992. bottom: 0.015
  15993. }
  15994. },
  15995. hoodie: {
  15996. height: math.unit(6, "feet"),
  15997. weight: math.unit(150, "lb"),
  15998. name: "Hoodie",
  15999. image: {
  16000. source: "./media/characters/pandora/hoodie.svg",
  16001. extra: 1622 / 1525,
  16002. bottom: 0.015
  16003. }
  16004. },
  16005. casual: {
  16006. height: math.unit(6, "feet"),
  16007. weight: math.unit(150, "lb"),
  16008. name: "Casual",
  16009. image: {
  16010. source: "./media/characters/pandora/casual.svg",
  16011. extra: 1622 / 1525,
  16012. bottom: 0.015
  16013. }
  16014. },
  16015. },
  16016. [
  16017. {
  16018. name: "Normal",
  16019. height: math.unit(6, "feet")
  16020. },
  16021. {
  16022. name: "Big Steppy",
  16023. height: math.unit(1, "km"),
  16024. default: true
  16025. },
  16026. {
  16027. name: "Galactic Steppy",
  16028. height: math.unit(2, "gigameters")
  16029. },
  16030. ]
  16031. ))
  16032. characterMakers.push(() => makeCharacter(
  16033. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16034. {
  16035. side: {
  16036. height: math.unit(10, "feet"),
  16037. weight: math.unit(800, "kg"),
  16038. name: "Side",
  16039. image: {
  16040. source: "./media/characters/venio-darcony/side.svg",
  16041. extra: 1373 / 1003,
  16042. bottom: 0.037
  16043. }
  16044. },
  16045. front: {
  16046. height: math.unit(19, "feet"),
  16047. weight: math.unit(800, "kg"),
  16048. name: "Front",
  16049. image: {
  16050. source: "./media/characters/venio-darcony/front.svg"
  16051. }
  16052. },
  16053. back: {
  16054. height: math.unit(19, "feet"),
  16055. weight: math.unit(800, "kg"),
  16056. name: "Back",
  16057. image: {
  16058. source: "./media/characters/venio-darcony/back.svg"
  16059. }
  16060. },
  16061. sideNsfw: {
  16062. height: math.unit(10, "feet"),
  16063. weight: math.unit(800, "kg"),
  16064. name: "Side (NSFW)",
  16065. image: {
  16066. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16067. extra: 1373 / 1003,
  16068. bottom: 0.037
  16069. }
  16070. },
  16071. frontNsfw: {
  16072. height: math.unit(19, "feet"),
  16073. weight: math.unit(800, "kg"),
  16074. name: "Front (NSFW)",
  16075. image: {
  16076. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16077. }
  16078. },
  16079. backNsfw: {
  16080. height: math.unit(19, "feet"),
  16081. weight: math.unit(800, "kg"),
  16082. name: "Back (NSFW)",
  16083. image: {
  16084. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16085. }
  16086. },
  16087. sideArmored: {
  16088. height: math.unit(10, "feet"),
  16089. weight: math.unit(800, "kg"),
  16090. name: "Side (Armored)",
  16091. image: {
  16092. source: "./media/characters/venio-darcony/side-armored.svg",
  16093. extra: 1373 / 1003,
  16094. bottom: 0.037
  16095. }
  16096. },
  16097. frontArmored: {
  16098. height: math.unit(19, "feet"),
  16099. weight: math.unit(900, "kg"),
  16100. name: "Front (Armored)",
  16101. image: {
  16102. source: "./media/characters/venio-darcony/front-armored.svg"
  16103. }
  16104. },
  16105. backArmored: {
  16106. height: math.unit(19, "feet"),
  16107. weight: math.unit(900, "kg"),
  16108. name: "Back (Armored)",
  16109. image: {
  16110. source: "./media/characters/venio-darcony/back-armored.svg"
  16111. }
  16112. },
  16113. sword: {
  16114. height: math.unit(10, "feet"),
  16115. weight: math.unit(50, "lb"),
  16116. name: "Sword",
  16117. image: {
  16118. source: "./media/characters/venio-darcony/sword.svg"
  16119. }
  16120. },
  16121. },
  16122. [
  16123. {
  16124. name: "Normal",
  16125. height: math.unit(10, "feet")
  16126. },
  16127. {
  16128. name: "Macro",
  16129. height: math.unit(130, "feet"),
  16130. default: true
  16131. },
  16132. {
  16133. name: "Macro+",
  16134. height: math.unit(240, "feet")
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(6, "feet"),
  16143. weight: math.unit(150, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/veski/front.svg",
  16147. extra: 1299 / 1225,
  16148. bottom: 0.04
  16149. }
  16150. },
  16151. back: {
  16152. height: math.unit(6, "feet"),
  16153. weight: math.unit(150, "lb"),
  16154. name: "Back",
  16155. image: {
  16156. source: "./media/characters/veski/back.svg",
  16157. extra: 1299 / 1225,
  16158. bottom: 0.008
  16159. }
  16160. },
  16161. maw: {
  16162. height: math.unit(1.5 * 1.21, "feet"),
  16163. name: "Maw",
  16164. image: {
  16165. source: "./media/characters/veski/maw.svg"
  16166. }
  16167. },
  16168. },
  16169. [
  16170. {
  16171. name: "Macro",
  16172. height: math.unit(2, "km"),
  16173. default: true
  16174. },
  16175. ]
  16176. ))
  16177. characterMakers.push(() => makeCharacter(
  16178. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16179. {
  16180. front: {
  16181. height: math.unit(5 + 7 / 12, "feet"),
  16182. name: "Front",
  16183. image: {
  16184. source: "./media/characters/isabelle/front.svg",
  16185. extra: 2130 / 1976,
  16186. bottom: 0.05
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Supermicro",
  16193. height: math.unit(10, "micrometers")
  16194. },
  16195. {
  16196. name: "Micro",
  16197. height: math.unit(1, "inch")
  16198. },
  16199. {
  16200. name: "Tiny",
  16201. height: math.unit(5, "inches")
  16202. },
  16203. {
  16204. name: "Standard",
  16205. height: math.unit(5 + 7 / 12, "inches")
  16206. },
  16207. {
  16208. name: "Macro",
  16209. height: math.unit(80, "meters"),
  16210. default: true
  16211. },
  16212. {
  16213. name: "Megamacro",
  16214. height: math.unit(250, "meters")
  16215. },
  16216. {
  16217. name: "Gigamacro",
  16218. height: math.unit(5, "km")
  16219. },
  16220. {
  16221. name: "Cosmic",
  16222. height: math.unit(2.5e6, "miles")
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16228. {
  16229. front: {
  16230. height: math.unit(6, "feet"),
  16231. weight: math.unit(150, "lb"),
  16232. name: "Front",
  16233. image: {
  16234. source: "./media/characters/hanzo/front.svg",
  16235. extra: 374 / 344,
  16236. bottom: 0.02
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Normal",
  16243. height: math.unit(8, "feet"),
  16244. default: true
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16250. {
  16251. front: {
  16252. height: math.unit(7, "feet"),
  16253. weight: math.unit(130, "lb"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/anna/front.svg",
  16257. extra: 169 / 145,
  16258. bottom: 0.06
  16259. }
  16260. },
  16261. full: {
  16262. height: math.unit(4.96, "feet"),
  16263. weight: math.unit(220, "lb"),
  16264. name: "Full",
  16265. image: {
  16266. source: "./media/characters/anna/full.svg",
  16267. extra: 138 / 114,
  16268. bottom: 0.15
  16269. }
  16270. },
  16271. tongue: {
  16272. height: math.unit(2.53, "feet"),
  16273. name: "Tongue",
  16274. image: {
  16275. source: "./media/characters/anna/tongue.svg"
  16276. }
  16277. },
  16278. },
  16279. [
  16280. {
  16281. name: "Normal",
  16282. height: math.unit(7, "feet"),
  16283. default: true
  16284. },
  16285. ]
  16286. ))
  16287. characterMakers.push(() => makeCharacter(
  16288. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16289. {
  16290. front: {
  16291. height: math.unit(7, "feet"),
  16292. weight: math.unit(150, "lb"),
  16293. name: "Front",
  16294. image: {
  16295. source: "./media/characters/ian-corvid/front.svg",
  16296. extra: 150 / 142,
  16297. bottom: 0.02
  16298. }
  16299. },
  16300. back: {
  16301. height: math.unit(7, "feet"),
  16302. weight: math.unit(150, "lb"),
  16303. name: "Back",
  16304. image: {
  16305. source: "./media/characters/ian-corvid/back.svg",
  16306. extra: 150 / 143,
  16307. bottom: 0.01
  16308. }
  16309. },
  16310. stomping: {
  16311. height: math.unit(7, "feet"),
  16312. weight: math.unit(150, "lb"),
  16313. name: "Stomping",
  16314. image: {
  16315. source: "./media/characters/ian-corvid/stomping.svg",
  16316. extra: 76 / 72
  16317. }
  16318. },
  16319. sitting: {
  16320. height: math.unit(7 / 1.8, "feet"),
  16321. weight: math.unit(150, "lb"),
  16322. name: "Sitting",
  16323. image: {
  16324. source: "./media/characters/ian-corvid/sitting.svg",
  16325. extra: 1400 / 1269,
  16326. bottom: 0.15
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Tiny Microw",
  16333. height: math.unit(1, "inch")
  16334. },
  16335. {
  16336. name: "Microw",
  16337. height: math.unit(6, "inches")
  16338. },
  16339. {
  16340. name: "Crow",
  16341. height: math.unit(7 + 1 / 12, "feet"),
  16342. default: true
  16343. },
  16344. {
  16345. name: "Macrow",
  16346. height: math.unit(176, "feet")
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16352. {
  16353. front: {
  16354. height: math.unit(5 + 7 / 12, "feet"),
  16355. weight: math.unit(147, "lb"),
  16356. name: "Front",
  16357. image: {
  16358. source: "./media/characters/natalie-kellon/front.svg",
  16359. extra: 1214 / 1141,
  16360. bottom: 0.02
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Micro",
  16367. height: math.unit(1 / 16, "inch")
  16368. },
  16369. {
  16370. name: "Tiny",
  16371. height: math.unit(4, "inches")
  16372. },
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(5 + 7 / 12, "feet"),
  16376. default: true
  16377. },
  16378. {
  16379. name: "Amazon",
  16380. height: math.unit(12, "feet")
  16381. },
  16382. {
  16383. name: "Giantess",
  16384. height: math.unit(160, "meters")
  16385. },
  16386. {
  16387. name: "Titaness",
  16388. height: math.unit(800, "meters")
  16389. },
  16390. ]
  16391. ))
  16392. characterMakers.push(() => makeCharacter(
  16393. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16394. {
  16395. front: {
  16396. height: math.unit(6, "feet"),
  16397. weight: math.unit(150, "lb"),
  16398. name: "Front",
  16399. image: {
  16400. source: "./media/characters/alluria/front.svg",
  16401. extra: 806 / 738,
  16402. bottom: 0.01
  16403. }
  16404. },
  16405. side: {
  16406. height: math.unit(6, "feet"),
  16407. weight: math.unit(150, "lb"),
  16408. name: "Side",
  16409. image: {
  16410. source: "./media/characters/alluria/side.svg",
  16411. extra: 800 / 750,
  16412. }
  16413. },
  16414. back: {
  16415. height: math.unit(6, "feet"),
  16416. weight: math.unit(150, "lb"),
  16417. name: "Back",
  16418. image: {
  16419. source: "./media/characters/alluria/back.svg",
  16420. extra: 806 / 738,
  16421. }
  16422. },
  16423. frontMaid: {
  16424. height: math.unit(6, "feet"),
  16425. weight: math.unit(150, "lb"),
  16426. name: "Front (Maid)",
  16427. image: {
  16428. source: "./media/characters/alluria/front-maid.svg",
  16429. extra: 806 / 738,
  16430. bottom: 0.01
  16431. }
  16432. },
  16433. sideMaid: {
  16434. height: math.unit(6, "feet"),
  16435. weight: math.unit(150, "lb"),
  16436. name: "Side (Maid)",
  16437. image: {
  16438. source: "./media/characters/alluria/side-maid.svg",
  16439. extra: 800 / 750,
  16440. bottom: 0.005
  16441. }
  16442. },
  16443. backMaid: {
  16444. height: math.unit(6, "feet"),
  16445. weight: math.unit(150, "lb"),
  16446. name: "Back (Maid)",
  16447. image: {
  16448. source: "./media/characters/alluria/back-maid.svg",
  16449. extra: 806 / 738,
  16450. }
  16451. },
  16452. },
  16453. [
  16454. {
  16455. name: "Micro",
  16456. height: math.unit(6, "inches"),
  16457. default: true
  16458. },
  16459. ]
  16460. ))
  16461. characterMakers.push(() => makeCharacter(
  16462. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16463. {
  16464. front: {
  16465. height: math.unit(6, "feet"),
  16466. weight: math.unit(150, "lb"),
  16467. name: "Front",
  16468. image: {
  16469. source: "./media/characters/kyle/front.svg",
  16470. extra: 1069 / 962,
  16471. bottom: 77.228 / 1727.45
  16472. }
  16473. },
  16474. },
  16475. [
  16476. {
  16477. name: "Macro",
  16478. height: math.unit(150, "feet"),
  16479. default: true
  16480. },
  16481. ]
  16482. ))
  16483. characterMakers.push(() => makeCharacter(
  16484. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16485. {
  16486. front: {
  16487. height: math.unit(6, "feet"),
  16488. weight: math.unit(300, "lb"),
  16489. name: "Front",
  16490. image: {
  16491. source: "./media/characters/duncan/front.svg",
  16492. extra: 1650 / 1482,
  16493. bottom: 0.05
  16494. }
  16495. },
  16496. },
  16497. [
  16498. {
  16499. name: "Macro",
  16500. height: math.unit(100, "feet"),
  16501. default: true
  16502. },
  16503. ]
  16504. ))
  16505. characterMakers.push(() => makeCharacter(
  16506. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16507. {
  16508. front: {
  16509. height: math.unit(5 + 4 / 12, "feet"),
  16510. weight: math.unit(220, "lb"),
  16511. name: "Front",
  16512. image: {
  16513. source: "./media/characters/memory/front.svg",
  16514. extra: 3641 / 3545,
  16515. bottom: 0.03
  16516. }
  16517. },
  16518. back: {
  16519. height: math.unit(5 + 4 / 12, "feet"),
  16520. weight: math.unit(220, "lb"),
  16521. name: "Back",
  16522. image: {
  16523. source: "./media/characters/memory/back.svg",
  16524. extra: 3641 / 3545,
  16525. bottom: 0.025
  16526. }
  16527. },
  16528. frontSkirt: {
  16529. height: math.unit(5 + 4 / 12, "feet"),
  16530. weight: math.unit(220, "lb"),
  16531. name: "Front (Skirt)",
  16532. image: {
  16533. source: "./media/characters/memory/front-skirt.svg",
  16534. extra: 3641 / 3545,
  16535. bottom: 0.03
  16536. }
  16537. },
  16538. frontDress: {
  16539. height: math.unit(5 + 4 / 12, "feet"),
  16540. weight: math.unit(220, "lb"),
  16541. name: "Front (Dress)",
  16542. image: {
  16543. source: "./media/characters/memory/front-dress.svg",
  16544. extra: 3641 / 3545,
  16545. bottom: 0.03
  16546. }
  16547. },
  16548. },
  16549. [
  16550. {
  16551. name: "Micro",
  16552. height: math.unit(6, "inches"),
  16553. default: true
  16554. },
  16555. {
  16556. name: "Normal",
  16557. height: math.unit(5 + 4 / 12, "feet")
  16558. },
  16559. ]
  16560. ))
  16561. characterMakers.push(() => makeCharacter(
  16562. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16563. {
  16564. front: {
  16565. height: math.unit(4 + 11 / 12, "feet"),
  16566. weight: math.unit(100, "lb"),
  16567. name: "Front",
  16568. image: {
  16569. source: "./media/characters/luno/front.svg",
  16570. extra: 1535 / 1487,
  16571. bottom: 0.03
  16572. }
  16573. },
  16574. },
  16575. [
  16576. {
  16577. name: "Micro",
  16578. height: math.unit(3, "inches")
  16579. },
  16580. {
  16581. name: "Normal",
  16582. height: math.unit(4 + 11 / 12, "feet"),
  16583. default: true
  16584. },
  16585. {
  16586. name: "Macro",
  16587. height: math.unit(300, "feet")
  16588. },
  16589. {
  16590. name: "Megamacro",
  16591. height: math.unit(700, "miles")
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16597. {
  16598. front: {
  16599. height: math.unit(6 + 2 / 12, "feet"),
  16600. weight: math.unit(170, "lb"),
  16601. name: "Front",
  16602. image: {
  16603. source: "./media/characters/jamesy/front.svg",
  16604. extra: 440 / 382,
  16605. bottom: 0.005
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Micro",
  16612. height: math.unit(3, "inches")
  16613. },
  16614. {
  16615. name: "Normal",
  16616. height: math.unit(6 + 2 / 12, "feet"),
  16617. default: true
  16618. },
  16619. {
  16620. name: "Macro",
  16621. height: math.unit(300, "feet")
  16622. },
  16623. {
  16624. name: "Megamacro",
  16625. height: math.unit(700, "miles")
  16626. },
  16627. ]
  16628. ))
  16629. characterMakers.push(() => makeCharacter(
  16630. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16631. {
  16632. front: {
  16633. height: math.unit(6, "feet"),
  16634. weight: math.unit(160, "lb"),
  16635. name: "Front",
  16636. image: {
  16637. source: "./media/characters/mark/front.svg",
  16638. extra: 3300 / 3100,
  16639. bottom: 136.42 / 3440.47
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Macro",
  16646. height: math.unit(120, "meters")
  16647. },
  16648. {
  16649. name: "Bigger Macro",
  16650. height: math.unit(350, "meters")
  16651. },
  16652. {
  16653. name: "Megamacro",
  16654. height: math.unit(8, "km"),
  16655. default: true
  16656. },
  16657. {
  16658. name: "Continental",
  16659. height: math.unit(4550, "km")
  16660. },
  16661. {
  16662. name: "Planetary",
  16663. height: math.unit(65000, "km")
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16669. {
  16670. front: {
  16671. height: math.unit(6, "feet"),
  16672. weight: math.unit(400, "lb"),
  16673. name: "Front",
  16674. image: {
  16675. source: "./media/characters/mac/front.svg",
  16676. extra: 1048 / 987.7,
  16677. bottom: 60 / 1107.6,
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Macro",
  16684. height: math.unit(500, "feet"),
  16685. default: true
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16691. {
  16692. front: {
  16693. height: math.unit(5 + 2 / 12, "feet"),
  16694. weight: math.unit(190, "lb"),
  16695. name: "Front",
  16696. image: {
  16697. source: "./media/characters/bari/front.svg",
  16698. extra: 3156 / 2880,
  16699. bottom: 0.03
  16700. }
  16701. },
  16702. back: {
  16703. height: math.unit(5 + 2 / 12, "feet"),
  16704. weight: math.unit(190, "lb"),
  16705. name: "Back",
  16706. image: {
  16707. source: "./media/characters/bari/back.svg",
  16708. extra: 3260 / 2834,
  16709. bottom: 0.025
  16710. }
  16711. },
  16712. frontPlush: {
  16713. height: math.unit(5 + 2 / 12, "feet"),
  16714. weight: math.unit(190, "lb"),
  16715. name: "Front (Plush)",
  16716. image: {
  16717. source: "./media/characters/bari/front-plush.svg",
  16718. extra: 1112 / 1061,
  16719. bottom: 0.002
  16720. }
  16721. },
  16722. },
  16723. [
  16724. {
  16725. name: "Micro",
  16726. height: math.unit(3, "inches")
  16727. },
  16728. {
  16729. name: "Normal",
  16730. height: math.unit(5 + 2 / 12, "feet"),
  16731. default: true
  16732. },
  16733. {
  16734. name: "Macro",
  16735. height: math.unit(20, "feet")
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16741. {
  16742. front: {
  16743. height: math.unit(6 + 1 / 12, "feet"),
  16744. weight: math.unit(275, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/hunter-misha-raven/front.svg"
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Mortal",
  16754. height: math.unit(6 + 1 / 12, "feet")
  16755. },
  16756. {
  16757. name: "Divine",
  16758. height: math.unit(1.12134e34, "parsecs"),
  16759. default: true
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(6 + 3 / 12, "feet"),
  16768. weight: math.unit(220, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/max-calore/front.svg",
  16772. extra: 1700 / 1648,
  16773. bottom: 0.01
  16774. }
  16775. },
  16776. back: {
  16777. height: math.unit(6 + 3 / 12, "feet"),
  16778. weight: math.unit(220, "lb"),
  16779. name: "Back",
  16780. image: {
  16781. source: "./media/characters/max-calore/back.svg",
  16782. extra: 1700 / 1648,
  16783. bottom: 0.01
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Normal",
  16790. height: math.unit(6 + 3 / 12, "feet"),
  16791. default: true
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16797. {
  16798. side: {
  16799. height: math.unit(2 + 8 / 12, "feet"),
  16800. weight: math.unit(99, "lb"),
  16801. name: "Side",
  16802. image: {
  16803. source: "./media/characters/aspen/side.svg",
  16804. extra: 152 / 138,
  16805. bottom: 0.032
  16806. }
  16807. },
  16808. },
  16809. [
  16810. {
  16811. name: "Normal",
  16812. height: math.unit(2 + 8 / 12, "feet"),
  16813. default: true
  16814. },
  16815. ]
  16816. ))
  16817. characterMakers.push(() => makeCharacter(
  16818. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16819. {
  16820. side: {
  16821. height: math.unit(3 + 2 / 12, "feet"),
  16822. weight: math.unit(224, "lb"),
  16823. name: "Side",
  16824. image: {
  16825. source: "./media/characters/sheila-feral-wolf/side.svg",
  16826. extra: 179 / 166,
  16827. bottom: 0.03
  16828. }
  16829. },
  16830. },
  16831. [
  16832. {
  16833. name: "Normal",
  16834. height: math.unit(3 + 2 / 12, "feet"),
  16835. default: true
  16836. },
  16837. ]
  16838. ))
  16839. characterMakers.push(() => makeCharacter(
  16840. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16841. {
  16842. side: {
  16843. height: math.unit(1 + 9 / 12, "feet"),
  16844. weight: math.unit(38, "lb"),
  16845. name: "Side",
  16846. image: {
  16847. source: "./media/characters/michelle/side.svg",
  16848. extra: 147 / 136.7,
  16849. bottom: 0.03
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Normal",
  16856. height: math.unit(1 + 9 / 12, "feet"),
  16857. default: true
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16863. {
  16864. front: {
  16865. height: math.unit(1 + 1 / 12, "feet"),
  16866. weight: math.unit(18, "lb"),
  16867. name: "Front",
  16868. image: {
  16869. source: "./media/characters/nino/front.svg"
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Normal",
  16876. height: math.unit(1 + 1 / 12, "feet"),
  16877. default: true
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16883. {
  16884. front: {
  16885. height: math.unit(1, "feet"),
  16886. weight: math.unit(16, "lb"),
  16887. name: "Front",
  16888. image: {
  16889. source: "./media/characters/viola/front.svg"
  16890. }
  16891. },
  16892. },
  16893. [
  16894. {
  16895. name: "Normal",
  16896. height: math.unit(1, "feet"),
  16897. default: true
  16898. },
  16899. ]
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16903. {
  16904. front: {
  16905. height: math.unit(6 + 5 / 12, "feet"),
  16906. weight: math.unit(580, "lb"),
  16907. name: "Front",
  16908. image: {
  16909. source: "./media/characters/atlas/front.svg",
  16910. extra: 298.5 / 290,
  16911. bottom: 0.015
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Normal",
  16918. height: math.unit(6 + 5 / 12, "feet"),
  16919. default: true
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16925. {
  16926. side: {
  16927. height: math.unit(1 + 10 / 12, "feet"),
  16928. weight: math.unit(25, "lb"),
  16929. name: "Side",
  16930. image: {
  16931. source: "./media/characters/davy/side.svg",
  16932. extra: 200 / 170,
  16933. bottom: 0.01
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(1 + 10 / 12, "feet"),
  16941. default: true
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16947. {
  16948. side: {
  16949. height: math.unit(4 + 8 / 12, "feet"),
  16950. weight: math.unit(166, "lb"),
  16951. name: "Side",
  16952. image: {
  16953. source: "./media/characters/fiona/side.svg",
  16954. extra: 232 / 220,
  16955. bottom: 0.03
  16956. }
  16957. },
  16958. },
  16959. [
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(4 + 8 / 12, "feet"),
  16963. default: true
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16969. {
  16970. front: {
  16971. height: math.unit(2, "feet"),
  16972. weight: math.unit(62, "lb"),
  16973. name: "Front",
  16974. image: {
  16975. source: "./media/characters/lyla/front.svg",
  16976. bottom: 0.1
  16977. }
  16978. },
  16979. },
  16980. [
  16981. {
  16982. name: "Normal",
  16983. height: math.unit(2, "feet"),
  16984. default: true
  16985. },
  16986. ]
  16987. ))
  16988. characterMakers.push(() => makeCharacter(
  16989. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16990. {
  16991. side: {
  16992. height: math.unit(1.8, "feet"),
  16993. weight: math.unit(44, "lb"),
  16994. name: "Side",
  16995. image: {
  16996. source: "./media/characters/perseus/side.svg",
  16997. bottom: 0.21
  16998. }
  16999. },
  17000. },
  17001. [
  17002. {
  17003. name: "Normal",
  17004. height: math.unit(1.8, "feet"),
  17005. default: true
  17006. },
  17007. ]
  17008. ))
  17009. characterMakers.push(() => makeCharacter(
  17010. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17011. {
  17012. side: {
  17013. height: math.unit(4 + 2 / 12, "feet"),
  17014. weight: math.unit(20, "lb"),
  17015. name: "Side",
  17016. image: {
  17017. source: "./media/characters/remus/side.svg"
  17018. }
  17019. },
  17020. },
  17021. [
  17022. {
  17023. name: "Normal",
  17024. height: math.unit(4 + 2 / 12, "feet"),
  17025. default: true
  17026. },
  17027. ]
  17028. ))
  17029. characterMakers.push(() => makeCharacter(
  17030. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17031. {
  17032. front: {
  17033. height: math.unit(4 + 11 / 12, "feet"),
  17034. weight: math.unit(114, "lb"),
  17035. name: "Front",
  17036. image: {
  17037. source: "./media/characters/raf/front.svg",
  17038. bottom: 20.5 / 1863
  17039. }
  17040. },
  17041. side: {
  17042. height: math.unit(4 + 11 / 12, "feet"),
  17043. weight: math.unit(114, "lb"),
  17044. name: "Side",
  17045. image: {
  17046. source: "./media/characters/raf/side.svg",
  17047. bottom: 22 / 1822
  17048. }
  17049. },
  17050. },
  17051. [
  17052. {
  17053. name: "Micro",
  17054. height: math.unit(2, "inches")
  17055. },
  17056. {
  17057. name: "Normal",
  17058. height: math.unit(4 + 11 / 12, "feet"),
  17059. default: true
  17060. },
  17061. {
  17062. name: "Macro",
  17063. height: math.unit(70, "feet")
  17064. },
  17065. ]
  17066. ))
  17067. characterMakers.push(() => makeCharacter(
  17068. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17069. {
  17070. front: {
  17071. height: math.unit(1.5, "meters"),
  17072. weight: math.unit(68, "kg"),
  17073. name: "Front",
  17074. image: {
  17075. source: "./media/characters/liam-einarr/front.svg",
  17076. extra: 2822 / 2666
  17077. }
  17078. },
  17079. back: {
  17080. height: math.unit(1.5, "meters"),
  17081. weight: math.unit(68, "kg"),
  17082. name: "Back",
  17083. image: {
  17084. source: "./media/characters/liam-einarr/back.svg",
  17085. extra: 2822 / 2666,
  17086. bottom: 0.015
  17087. }
  17088. },
  17089. },
  17090. [
  17091. {
  17092. name: "Normal",
  17093. height: math.unit(1.5, "meters"),
  17094. default: true
  17095. },
  17096. {
  17097. name: "Macro",
  17098. height: math.unit(150, "meters")
  17099. },
  17100. {
  17101. name: "Megamacro",
  17102. height: math.unit(35, "km")
  17103. },
  17104. ]
  17105. ))
  17106. characterMakers.push(() => makeCharacter(
  17107. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17108. {
  17109. front: {
  17110. height: math.unit(6, "feet"),
  17111. weight: math.unit(75, "kg"),
  17112. name: "Front",
  17113. image: {
  17114. source: "./media/characters/linda/front.svg",
  17115. extra: 930 / 874,
  17116. bottom: 0.004
  17117. }
  17118. },
  17119. },
  17120. [
  17121. {
  17122. name: "Normal",
  17123. height: math.unit(6, "feet"),
  17124. default: true
  17125. },
  17126. ]
  17127. ))
  17128. characterMakers.push(() => makeCharacter(
  17129. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17130. {
  17131. front: {
  17132. height: math.unit(6 + 8 / 12, "feet"),
  17133. weight: math.unit(220, "lb"),
  17134. name: "Front",
  17135. image: {
  17136. source: "./media/characters/caylex/front.svg",
  17137. extra: 821 / 772,
  17138. bottom: 0.07
  17139. }
  17140. },
  17141. back: {
  17142. height: math.unit(6 + 8 / 12, "feet"),
  17143. weight: math.unit(220, "lb"),
  17144. name: "Back",
  17145. image: {
  17146. source: "./media/characters/caylex/back.svg",
  17147. extra: 821 / 772,
  17148. bottom: 0.022
  17149. }
  17150. },
  17151. hand: {
  17152. height: math.unit(1.25, "feet"),
  17153. name: "Hand",
  17154. image: {
  17155. source: "./media/characters/caylex/hand.svg"
  17156. }
  17157. },
  17158. foot: {
  17159. height: math.unit(1.6, "feet"),
  17160. name: "Foot",
  17161. image: {
  17162. source: "./media/characters/caylex/foot.svg"
  17163. }
  17164. },
  17165. armored: {
  17166. height: math.unit(6 + 8 / 12, "feet"),
  17167. weight: math.unit(250, "lb"),
  17168. name: "Armored",
  17169. image: {
  17170. source: "./media/characters/caylex/armored.svg",
  17171. extra: 1420 / 1310,
  17172. bottom: 0.045
  17173. }
  17174. },
  17175. },
  17176. [
  17177. {
  17178. name: "Normal",
  17179. height: math.unit(6 + 8 / 12, "feet"),
  17180. default: true
  17181. },
  17182. {
  17183. name: "Normal+",
  17184. height: math.unit(12, "feet")
  17185. },
  17186. ]
  17187. ))
  17188. characterMakers.push(() => makeCharacter(
  17189. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17190. {
  17191. front: {
  17192. height: math.unit(7 + 6 / 12, "feet"),
  17193. weight: math.unit(288, "lb"),
  17194. name: "Front",
  17195. image: {
  17196. source: "./media/characters/alana/front.svg",
  17197. extra: 679 / 653,
  17198. bottom: 22.5 / 701
  17199. }
  17200. },
  17201. },
  17202. [
  17203. {
  17204. name: "Normal",
  17205. height: math.unit(7 + 6 / 12, "feet")
  17206. },
  17207. {
  17208. name: "Large",
  17209. height: math.unit(50, "feet")
  17210. },
  17211. {
  17212. name: "Macro",
  17213. height: math.unit(100, "feet"),
  17214. default: true
  17215. },
  17216. {
  17217. name: "Macro+",
  17218. height: math.unit(200, "feet")
  17219. },
  17220. ]
  17221. ))
  17222. characterMakers.push(() => makeCharacter(
  17223. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17224. {
  17225. front: {
  17226. height: math.unit(6 + 1 / 12, "feet"),
  17227. weight: math.unit(210, "lb"),
  17228. name: "Front",
  17229. image: {
  17230. source: "./media/characters/hasani/front.svg",
  17231. extra: 244 / 232,
  17232. bottom: 0.01
  17233. }
  17234. },
  17235. back: {
  17236. height: math.unit(6 + 1 / 12, "feet"),
  17237. weight: math.unit(210, "lb"),
  17238. name: "Back",
  17239. image: {
  17240. source: "./media/characters/hasani/back.svg",
  17241. extra: 244 / 232,
  17242. bottom: 0.01
  17243. }
  17244. },
  17245. },
  17246. [
  17247. {
  17248. name: "Normal",
  17249. height: math.unit(6 + 1 / 12, "feet")
  17250. },
  17251. {
  17252. name: "Macro",
  17253. height: math.unit(175, "feet"),
  17254. default: true
  17255. },
  17256. ]
  17257. ))
  17258. characterMakers.push(() => makeCharacter(
  17259. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17260. {
  17261. front: {
  17262. height: math.unit(1.82, "meters"),
  17263. weight: math.unit(140, "lb"),
  17264. name: "Front",
  17265. image: {
  17266. source: "./media/characters/nita/front.svg",
  17267. extra: 2473 / 2363,
  17268. bottom: 0.01
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(1.82, "m")
  17276. },
  17277. {
  17278. name: "Macro",
  17279. height: math.unit(300, "m")
  17280. },
  17281. {
  17282. name: "Mistake Canon",
  17283. height: math.unit(0.5, "miles"),
  17284. default: true
  17285. },
  17286. {
  17287. name: "Big Mistake",
  17288. height: math.unit(13, "miles")
  17289. },
  17290. {
  17291. name: "Playing God",
  17292. height: math.unit(2450, "miles")
  17293. },
  17294. ]
  17295. ))
  17296. characterMakers.push(() => makeCharacter(
  17297. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17298. {
  17299. front: {
  17300. height: math.unit(4, "feet"),
  17301. weight: math.unit(120, "lb"),
  17302. name: "Front",
  17303. image: {
  17304. source: "./media/characters/shiriko/front.svg",
  17305. extra: 970/934,
  17306. bottom: 5/975
  17307. }
  17308. },
  17309. },
  17310. [
  17311. {
  17312. name: "Normal",
  17313. height: math.unit(4, "feet"),
  17314. default: true
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17320. {
  17321. front: {
  17322. height: math.unit(6, "feet"),
  17323. name: "front",
  17324. image: {
  17325. source: "./media/characters/deja/front.svg",
  17326. extra: 926 / 840,
  17327. bottom: 0.07
  17328. }
  17329. },
  17330. },
  17331. [
  17332. {
  17333. name: "Planck Length",
  17334. height: math.unit(1.6e-35, "meters")
  17335. },
  17336. {
  17337. name: "Normal",
  17338. height: math.unit(30.48, "meters"),
  17339. default: true
  17340. },
  17341. {
  17342. name: "Universal",
  17343. height: math.unit(8.8e26, "meters")
  17344. },
  17345. ]
  17346. ))
  17347. characterMakers.push(() => makeCharacter(
  17348. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17349. {
  17350. side: {
  17351. height: math.unit(8, "feet"),
  17352. weight: math.unit(6300, "lb"),
  17353. name: "Side",
  17354. image: {
  17355. source: "./media/characters/anima/side.svg",
  17356. bottom: 0.035
  17357. }
  17358. },
  17359. },
  17360. [
  17361. {
  17362. name: "Normal",
  17363. height: math.unit(8, "feet"),
  17364. default: true
  17365. },
  17366. ]
  17367. ))
  17368. characterMakers.push(() => makeCharacter(
  17369. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17370. {
  17371. front: {
  17372. height: math.unit(8, "feet"),
  17373. weight: math.unit(350, "lb"),
  17374. name: "Front",
  17375. image: {
  17376. source: "./media/characters/bianca/front.svg",
  17377. extra: 234 / 225,
  17378. bottom: 0.03
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(8, "feet"),
  17386. default: true
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17392. {
  17393. front: {
  17394. height: math.unit(6, "feet"),
  17395. weight: math.unit(150, "lb"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/adinia/front.svg",
  17399. extra: 1845 / 1672,
  17400. bottom: 0.02
  17401. }
  17402. },
  17403. back: {
  17404. height: math.unit(6, "feet"),
  17405. weight: math.unit(150, "lb"),
  17406. name: "Back",
  17407. image: {
  17408. source: "./media/characters/adinia/back.svg",
  17409. extra: 1845 / 1672,
  17410. bottom: 0.002
  17411. }
  17412. },
  17413. },
  17414. [
  17415. {
  17416. name: "Normal",
  17417. height: math.unit(11 + 5 / 12, "feet"),
  17418. default: true
  17419. },
  17420. ]
  17421. ))
  17422. characterMakers.push(() => makeCharacter(
  17423. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17424. {
  17425. front: {
  17426. height: math.unit(3, "meters"),
  17427. weight: math.unit(200, "kg"),
  17428. name: "Front",
  17429. image: {
  17430. source: "./media/characters/lykasa/front.svg",
  17431. extra: 1076 / 976,
  17432. bottom: 0.06
  17433. }
  17434. },
  17435. },
  17436. [
  17437. {
  17438. name: "Normal",
  17439. height: math.unit(3, "meters")
  17440. },
  17441. {
  17442. name: "Kaiju",
  17443. height: math.unit(120, "meters"),
  17444. default: true
  17445. },
  17446. {
  17447. name: "Mega Kaiju",
  17448. height: math.unit(240, "km")
  17449. },
  17450. {
  17451. name: "Giga Kaiju",
  17452. height: math.unit(400, "megameters")
  17453. },
  17454. {
  17455. name: "Tera Kaiju",
  17456. height: math.unit(800, "gigameters")
  17457. },
  17458. {
  17459. name: "Kaiju Dragon Goddess",
  17460. height: math.unit(26, "zettaparsecs")
  17461. },
  17462. ]
  17463. ))
  17464. characterMakers.push(() => makeCharacter(
  17465. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17466. {
  17467. side: {
  17468. height: math.unit(283 / 124 * 6, "feet"),
  17469. weight: math.unit(35000, "lb"),
  17470. name: "Side",
  17471. image: {
  17472. source: "./media/characters/malfaren/side.svg",
  17473. extra: 2500 / 1010,
  17474. bottom: 0.01
  17475. }
  17476. },
  17477. front: {
  17478. height: math.unit(22.36, "feet"),
  17479. weight: math.unit(35000, "lb"),
  17480. name: "Front",
  17481. image: {
  17482. source: "./media/characters/malfaren/front.svg",
  17483. extra: 1631 / 1476,
  17484. bottom: 0.01
  17485. }
  17486. },
  17487. maw: {
  17488. height: math.unit(6.9, "feet"),
  17489. name: "Maw",
  17490. image: {
  17491. source: "./media/characters/malfaren/maw.svg"
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Big",
  17498. height: math.unit(283 / 162 * 6, "feet"),
  17499. },
  17500. {
  17501. name: "Bigger",
  17502. height: math.unit(283 / 124 * 6, "feet")
  17503. },
  17504. {
  17505. name: "Massive",
  17506. height: math.unit(283 / 92 * 6, "feet"),
  17507. default: true
  17508. },
  17509. {
  17510. name: "👀💦",
  17511. height: math.unit(283 / 73 * 6, "feet"),
  17512. },
  17513. ]
  17514. ))
  17515. characterMakers.push(() => makeCharacter(
  17516. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17517. {
  17518. front: {
  17519. height: math.unit(1.7, "m"),
  17520. weight: math.unit(70, "kg"),
  17521. name: "Front",
  17522. image: {
  17523. source: "./media/characters/kernel/front.svg",
  17524. extra: 222 / 210,
  17525. bottom: 0.007
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Nano",
  17532. height: math.unit(17, "micrometers")
  17533. },
  17534. {
  17535. name: "Micro",
  17536. height: math.unit(1.7, "mm")
  17537. },
  17538. {
  17539. name: "Small",
  17540. height: math.unit(1.7, "cm")
  17541. },
  17542. {
  17543. name: "Normal",
  17544. height: math.unit(1.7, "m"),
  17545. default: true
  17546. },
  17547. ]
  17548. ))
  17549. characterMakers.push(() => makeCharacter(
  17550. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17551. {
  17552. front: {
  17553. height: math.unit(1.75, "meters"),
  17554. weight: math.unit(65, "kg"),
  17555. name: "Front",
  17556. image: {
  17557. source: "./media/characters/jayne-folest/front.svg",
  17558. extra: 2115 / 2007,
  17559. bottom: 0.02
  17560. }
  17561. },
  17562. back: {
  17563. height: math.unit(1.75, "meters"),
  17564. weight: math.unit(65, "kg"),
  17565. name: "Back",
  17566. image: {
  17567. source: "./media/characters/jayne-folest/back.svg",
  17568. extra: 2115 / 2007,
  17569. bottom: 0.005
  17570. }
  17571. },
  17572. frontClothed: {
  17573. height: math.unit(1.75, "meters"),
  17574. weight: math.unit(65, "kg"),
  17575. name: "Front (Clothed)",
  17576. image: {
  17577. source: "./media/characters/jayne-folest/front-clothed.svg",
  17578. extra: 2115 / 2007,
  17579. bottom: 0.035
  17580. }
  17581. },
  17582. hand: {
  17583. height: math.unit(1 / 1.260, "feet"),
  17584. name: "Hand",
  17585. image: {
  17586. source: "./media/characters/jayne-folest/hand.svg"
  17587. }
  17588. },
  17589. foot: {
  17590. height: math.unit(1 / 0.918, "feet"),
  17591. name: "Foot",
  17592. image: {
  17593. source: "./media/characters/jayne-folest/foot.svg"
  17594. }
  17595. },
  17596. },
  17597. [
  17598. {
  17599. name: "Micro",
  17600. height: math.unit(4, "cm")
  17601. },
  17602. {
  17603. name: "Normal",
  17604. height: math.unit(1.75, "meters")
  17605. },
  17606. {
  17607. name: "Macro",
  17608. height: math.unit(47.5, "meters"),
  17609. default: true
  17610. },
  17611. ]
  17612. ))
  17613. characterMakers.push(() => makeCharacter(
  17614. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17615. {
  17616. front: {
  17617. height: math.unit(180, "cm"),
  17618. weight: math.unit(70, "kg"),
  17619. name: "Front",
  17620. image: {
  17621. source: "./media/characters/algier/front.svg",
  17622. extra: 596 / 572,
  17623. bottom: 0.04
  17624. }
  17625. },
  17626. back: {
  17627. height: math.unit(180, "cm"),
  17628. weight: math.unit(70, "kg"),
  17629. name: "Back",
  17630. image: {
  17631. source: "./media/characters/algier/back.svg",
  17632. extra: 596 / 572,
  17633. bottom: 0.025
  17634. }
  17635. },
  17636. frontdressed: {
  17637. height: math.unit(180, "cm"),
  17638. weight: math.unit(150, "kg"),
  17639. name: "Front-dressed",
  17640. image: {
  17641. source: "./media/characters/algier/front-dressed.svg",
  17642. extra: 596 / 572,
  17643. bottom: 0.038
  17644. }
  17645. },
  17646. },
  17647. [
  17648. {
  17649. name: "Micro",
  17650. height: math.unit(5, "cm")
  17651. },
  17652. {
  17653. name: "Normal",
  17654. height: math.unit(180, "cm"),
  17655. default: true
  17656. },
  17657. {
  17658. name: "Macro",
  17659. height: math.unit(64, "m")
  17660. },
  17661. ]
  17662. ))
  17663. characterMakers.push(() => makeCharacter(
  17664. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17665. {
  17666. upright: {
  17667. height: math.unit(7, "feet"),
  17668. weight: math.unit(300, "lb"),
  17669. name: "Upright",
  17670. image: {
  17671. source: "./media/characters/pretzel/upright.svg",
  17672. extra: 534 / 522,
  17673. bottom: 0.065
  17674. }
  17675. },
  17676. sprawling: {
  17677. height: math.unit(3.75, "feet"),
  17678. weight: math.unit(300, "lb"),
  17679. name: "Sprawling",
  17680. image: {
  17681. source: "./media/characters/pretzel/sprawling.svg",
  17682. extra: 314 / 281,
  17683. bottom: 0.1
  17684. }
  17685. },
  17686. tongue: {
  17687. height: math.unit(2, "feet"),
  17688. name: "Tongue",
  17689. image: {
  17690. source: "./media/characters/pretzel/tongue.svg"
  17691. }
  17692. },
  17693. },
  17694. [
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(7, "feet"),
  17698. default: true
  17699. },
  17700. {
  17701. name: "Oversized",
  17702. height: math.unit(15, "feet")
  17703. },
  17704. {
  17705. name: "Huge",
  17706. height: math.unit(30, "feet")
  17707. },
  17708. {
  17709. name: "Macro",
  17710. height: math.unit(250, "feet")
  17711. },
  17712. ]
  17713. ))
  17714. characterMakers.push(() => makeCharacter(
  17715. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17716. {
  17717. sideFront: {
  17718. height: math.unit(5 + 2 / 12, "feet"),
  17719. weight: math.unit(120, "lb"),
  17720. name: "Front Side",
  17721. image: {
  17722. source: "./media/characters/roxi/side-front.svg",
  17723. extra: 2924 / 2717,
  17724. bottom: 0.08
  17725. }
  17726. },
  17727. sideBack: {
  17728. height: math.unit(5 + 2 / 12, "feet"),
  17729. weight: math.unit(120, "lb"),
  17730. name: "Back Side",
  17731. image: {
  17732. source: "./media/characters/roxi/side-back.svg",
  17733. extra: 2904 / 2693,
  17734. bottom: 0.06
  17735. }
  17736. },
  17737. front: {
  17738. height: math.unit(5 + 2 / 12, "feet"),
  17739. weight: math.unit(120, "lb"),
  17740. name: "Front",
  17741. image: {
  17742. source: "./media/characters/roxi/front.svg",
  17743. extra: 2028 / 1907,
  17744. bottom: 0.01
  17745. }
  17746. },
  17747. frontAlt: {
  17748. height: math.unit(5 + 2 / 12, "feet"),
  17749. weight: math.unit(120, "lb"),
  17750. name: "Front (Alt)",
  17751. image: {
  17752. source: "./media/characters/roxi/front-alt.svg",
  17753. extra: 1828 / 1798,
  17754. bottom: 0.01
  17755. }
  17756. },
  17757. sitting: {
  17758. height: math.unit(2.8, "feet"),
  17759. weight: math.unit(120, "lb"),
  17760. name: "Sitting",
  17761. image: {
  17762. source: "./media/characters/roxi/sitting.svg",
  17763. extra: 2660 / 2462,
  17764. bottom: 0.1
  17765. }
  17766. },
  17767. },
  17768. [
  17769. {
  17770. name: "Normal",
  17771. height: math.unit(5 + 2 / 12, "feet"),
  17772. default: true
  17773. },
  17774. ]
  17775. ))
  17776. characterMakers.push(() => makeCharacter(
  17777. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17778. {
  17779. side: {
  17780. height: math.unit(55, "feet"),
  17781. weight: math.unit(153, "tons"),
  17782. name: "Side",
  17783. image: {
  17784. source: "./media/characters/shadow/side.svg",
  17785. extra: 701 / 628,
  17786. bottom: 0.02
  17787. }
  17788. },
  17789. flying: {
  17790. height: math.unit(145, "feet"),
  17791. weight: math.unit(153, "tons"),
  17792. name: "Flying",
  17793. image: {
  17794. source: "./media/characters/shadow/flying.svg"
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Normal",
  17801. height: math.unit(55, "feet"),
  17802. default: true
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17808. {
  17809. front: {
  17810. height: math.unit(6, "feet"),
  17811. weight: math.unit(200, "lb"),
  17812. name: "Front",
  17813. image: {
  17814. source: "./media/characters/marcie/front.svg",
  17815. extra: 960 / 876,
  17816. bottom: 58 / 1017.87
  17817. }
  17818. },
  17819. },
  17820. [
  17821. {
  17822. name: "Macro",
  17823. height: math.unit(1, "mile"),
  17824. default: true
  17825. },
  17826. ]
  17827. ))
  17828. characterMakers.push(() => makeCharacter(
  17829. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17830. {
  17831. front: {
  17832. height: math.unit(7, "feet"),
  17833. weight: math.unit(200, "lb"),
  17834. name: "Front",
  17835. image: {
  17836. source: "./media/characters/kachina/front.svg",
  17837. extra: 1290.68 / 1119,
  17838. bottom: 36.5 / 1327.18
  17839. }
  17840. },
  17841. },
  17842. [
  17843. {
  17844. name: "Normal",
  17845. height: math.unit(7, "feet"),
  17846. default: true
  17847. },
  17848. ]
  17849. ))
  17850. characterMakers.push(() => makeCharacter(
  17851. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17852. {
  17853. looking: {
  17854. height: math.unit(2, "meters"),
  17855. weight: math.unit(300, "kg"),
  17856. name: "Looking",
  17857. image: {
  17858. source: "./media/characters/kash/looking.svg",
  17859. extra: 474 / 344,
  17860. bottom: 0.03
  17861. }
  17862. },
  17863. side: {
  17864. height: math.unit(2, "meters"),
  17865. weight: math.unit(300, "kg"),
  17866. name: "Side",
  17867. image: {
  17868. source: "./media/characters/kash/side.svg",
  17869. extra: 302 / 251,
  17870. bottom: 0.03
  17871. }
  17872. },
  17873. front: {
  17874. height: math.unit(2, "meters"),
  17875. weight: math.unit(300, "kg"),
  17876. name: "Front",
  17877. image: {
  17878. source: "./media/characters/kash/front.svg",
  17879. extra: 495 / 360,
  17880. bottom: 0.015
  17881. }
  17882. },
  17883. },
  17884. [
  17885. {
  17886. name: "Normal",
  17887. height: math.unit(2, "meters"),
  17888. default: true
  17889. },
  17890. {
  17891. name: "Big",
  17892. height: math.unit(3, "meters")
  17893. },
  17894. {
  17895. name: "Large",
  17896. height: math.unit(5, "meters")
  17897. },
  17898. ]
  17899. ))
  17900. characterMakers.push(() => makeCharacter(
  17901. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17902. {
  17903. feeding: {
  17904. height: math.unit(6.7, "feet"),
  17905. weight: math.unit(350, "lb"),
  17906. name: "Feeding",
  17907. image: {
  17908. source: "./media/characters/lalim/feeding.svg",
  17909. }
  17910. },
  17911. },
  17912. [
  17913. {
  17914. name: "Normal",
  17915. height: math.unit(6.7, "feet"),
  17916. default: true
  17917. },
  17918. ]
  17919. ))
  17920. characterMakers.push(() => makeCharacter(
  17921. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17922. {
  17923. front: {
  17924. height: math.unit(9.5, "feet"),
  17925. weight: math.unit(600, "lb"),
  17926. name: "Front",
  17927. image: {
  17928. source: "./media/characters/de'vout/front.svg",
  17929. extra: 1443 / 1328,
  17930. bottom: 0.025
  17931. }
  17932. },
  17933. back: {
  17934. height: math.unit(9.5, "feet"),
  17935. weight: math.unit(600, "lb"),
  17936. name: "Back",
  17937. image: {
  17938. source: "./media/characters/de'vout/back.svg",
  17939. extra: 1443 / 1328
  17940. }
  17941. },
  17942. frontDressed: {
  17943. height: math.unit(9.5, "feet"),
  17944. weight: math.unit(600, "lb"),
  17945. name: "Front (Dressed",
  17946. image: {
  17947. source: "./media/characters/de'vout/front-dressed.svg",
  17948. extra: 1443 / 1328,
  17949. bottom: 0.025
  17950. }
  17951. },
  17952. backDressed: {
  17953. height: math.unit(9.5, "feet"),
  17954. weight: math.unit(600, "lb"),
  17955. name: "Back (Dressed",
  17956. image: {
  17957. source: "./media/characters/de'vout/back-dressed.svg",
  17958. extra: 1443 / 1328
  17959. }
  17960. },
  17961. },
  17962. [
  17963. {
  17964. name: "Normal",
  17965. height: math.unit(9.5, "feet"),
  17966. default: true
  17967. },
  17968. ]
  17969. ))
  17970. characterMakers.push(() => makeCharacter(
  17971. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17972. {
  17973. front: {
  17974. height: math.unit(8, "feet"),
  17975. weight: math.unit(225, "lb"),
  17976. name: "Front",
  17977. image: {
  17978. source: "./media/characters/talana/front.svg",
  17979. extra: 1410 / 1300,
  17980. bottom: 0.015
  17981. }
  17982. },
  17983. frontDressed: {
  17984. height: math.unit(8, "feet"),
  17985. weight: math.unit(225, "lb"),
  17986. name: "Front (Dressed",
  17987. image: {
  17988. source: "./media/characters/talana/front-dressed.svg",
  17989. extra: 1410 / 1300,
  17990. bottom: 0.015
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Normal",
  17997. height: math.unit(8, "feet"),
  17998. default: true
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18004. {
  18005. side: {
  18006. height: math.unit(7.2, "feet"),
  18007. weight: math.unit(150, "lb"),
  18008. name: "Side",
  18009. image: {
  18010. source: "./media/characters/xeauvok/side.svg",
  18011. extra: 1975 / 1523,
  18012. bottom: 0.07
  18013. }
  18014. },
  18015. },
  18016. [
  18017. {
  18018. name: "Normal",
  18019. height: math.unit(7.2, "feet"),
  18020. default: true
  18021. },
  18022. ]
  18023. ))
  18024. characterMakers.push(() => makeCharacter(
  18025. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18026. {
  18027. side: {
  18028. height: math.unit(10, "feet"),
  18029. weight: math.unit(900, "kg"),
  18030. name: "Side",
  18031. image: {
  18032. source: "./media/characters/zara/side.svg",
  18033. extra: 504 / 498
  18034. }
  18035. },
  18036. },
  18037. [
  18038. {
  18039. name: "Normal",
  18040. height: math.unit(10, "feet"),
  18041. default: true
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18047. {
  18048. side: {
  18049. height: math.unit(6, "feet"),
  18050. weight: math.unit(150, "lb"),
  18051. name: "Side",
  18052. image: {
  18053. source: "./media/characters/richard-dragon/side.svg",
  18054. extra: 845 / 340,
  18055. bottom: 0.017
  18056. }
  18057. },
  18058. maw: {
  18059. height: math.unit(2.97, "feet"),
  18060. name: "Maw",
  18061. image: {
  18062. source: "./media/characters/richard-dragon/maw.svg"
  18063. }
  18064. },
  18065. },
  18066. [
  18067. ]
  18068. ))
  18069. characterMakers.push(() => makeCharacter(
  18070. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18071. {
  18072. front: {
  18073. height: math.unit(4, "feet"),
  18074. weight: math.unit(100, "lb"),
  18075. name: "Front",
  18076. image: {
  18077. source: "./media/characters/richard-smeargle/front.svg",
  18078. extra: 2952 / 2820,
  18079. bottom: 0.028
  18080. }
  18081. },
  18082. },
  18083. [
  18084. {
  18085. name: "Normal",
  18086. height: math.unit(4, "feet"),
  18087. default: true
  18088. },
  18089. {
  18090. name: "Dynamax",
  18091. height: math.unit(20, "meters")
  18092. },
  18093. ]
  18094. ))
  18095. characterMakers.push(() => makeCharacter(
  18096. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18097. {
  18098. front: {
  18099. height: math.unit(6, "feet"),
  18100. weight: math.unit(110, "lb"),
  18101. name: "Front",
  18102. image: {
  18103. source: "./media/characters/klay/front.svg",
  18104. extra: 962 / 883,
  18105. bottom: 0.04
  18106. }
  18107. },
  18108. back: {
  18109. height: math.unit(6, "feet"),
  18110. weight: math.unit(110, "lb"),
  18111. name: "Back",
  18112. image: {
  18113. source: "./media/characters/klay/back.svg",
  18114. extra: 962 / 883
  18115. }
  18116. },
  18117. beans: {
  18118. height: math.unit(1.15, "feet"),
  18119. name: "Beans",
  18120. image: {
  18121. source: "./media/characters/klay/beans.svg"
  18122. }
  18123. },
  18124. },
  18125. [
  18126. {
  18127. name: "Micro",
  18128. height: math.unit(6, "inches")
  18129. },
  18130. {
  18131. name: "Mini",
  18132. height: math.unit(3, "feet")
  18133. },
  18134. {
  18135. name: "Normal",
  18136. height: math.unit(6, "feet"),
  18137. default: true
  18138. },
  18139. {
  18140. name: "Big",
  18141. height: math.unit(25, "feet")
  18142. },
  18143. {
  18144. name: "Macro",
  18145. height: math.unit(100, "feet")
  18146. },
  18147. {
  18148. name: "Megamacro",
  18149. height: math.unit(400, "feet")
  18150. },
  18151. ]
  18152. ))
  18153. characterMakers.push(() => makeCharacter(
  18154. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18155. {
  18156. front: {
  18157. height: math.unit(6, "feet"),
  18158. weight: math.unit(160, "lb"),
  18159. name: "Front",
  18160. image: {
  18161. source: "./media/characters/marcus/front.svg",
  18162. extra: 734 / 676,
  18163. bottom: 0.03
  18164. }
  18165. },
  18166. },
  18167. [
  18168. {
  18169. name: "Little",
  18170. height: math.unit(6, "feet")
  18171. },
  18172. {
  18173. name: "Normal",
  18174. height: math.unit(110, "feet"),
  18175. default: true
  18176. },
  18177. {
  18178. name: "Macro",
  18179. height: math.unit(250, "feet")
  18180. },
  18181. {
  18182. name: "Megamacro",
  18183. height: math.unit(1000, "feet")
  18184. },
  18185. ]
  18186. ))
  18187. characterMakers.push(() => makeCharacter(
  18188. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18189. {
  18190. front: {
  18191. height: math.unit(7, "feet"),
  18192. weight: math.unit(275, "lb"),
  18193. name: "Front",
  18194. image: {
  18195. source: "./media/characters/claude-delroute/front.svg",
  18196. extra: 230 / 214,
  18197. bottom: 0.007
  18198. }
  18199. },
  18200. side: {
  18201. height: math.unit(7, "feet"),
  18202. weight: math.unit(275, "lb"),
  18203. name: "Side",
  18204. image: {
  18205. source: "./media/characters/claude-delroute/side.svg",
  18206. extra: 222 / 214,
  18207. bottom: 0.01
  18208. }
  18209. },
  18210. back: {
  18211. height: math.unit(7, "feet"),
  18212. weight: math.unit(275, "lb"),
  18213. name: "Back",
  18214. image: {
  18215. source: "./media/characters/claude-delroute/back.svg",
  18216. extra: 230 / 214,
  18217. bottom: 0.015
  18218. }
  18219. },
  18220. maw: {
  18221. height: math.unit(0.6407, "meters"),
  18222. name: "Maw",
  18223. image: {
  18224. source: "./media/characters/claude-delroute/maw.svg"
  18225. }
  18226. },
  18227. },
  18228. [
  18229. {
  18230. name: "Normal",
  18231. height: math.unit(7, "feet"),
  18232. default: true
  18233. },
  18234. {
  18235. name: "Lorge",
  18236. height: math.unit(20, "feet")
  18237. },
  18238. ]
  18239. ))
  18240. characterMakers.push(() => makeCharacter(
  18241. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18242. {
  18243. front: {
  18244. height: math.unit(8 + 4 / 12, "feet"),
  18245. weight: math.unit(600, "lb"),
  18246. name: "Front",
  18247. image: {
  18248. source: "./media/characters/dragonien/front.svg",
  18249. extra: 100 / 94,
  18250. bottom: 3.3 / 103.3445
  18251. }
  18252. },
  18253. back: {
  18254. height: math.unit(8 + 4 / 12, "feet"),
  18255. weight: math.unit(600, "lb"),
  18256. name: "Back",
  18257. image: {
  18258. source: "./media/characters/dragonien/back.svg",
  18259. extra: 776 / 746,
  18260. bottom: 6.4 / 782.0616
  18261. }
  18262. },
  18263. foot: {
  18264. height: math.unit(1.54, "feet"),
  18265. name: "Foot",
  18266. image: {
  18267. source: "./media/characters/dragonien/foot.svg",
  18268. }
  18269. },
  18270. },
  18271. [
  18272. {
  18273. name: "Normal",
  18274. height: math.unit(8 + 4 / 12, "feet"),
  18275. default: true
  18276. },
  18277. {
  18278. name: "Macro",
  18279. height: math.unit(200, "feet")
  18280. },
  18281. {
  18282. name: "Megamacro",
  18283. height: math.unit(1, "mile")
  18284. },
  18285. {
  18286. name: "Gigamacro",
  18287. height: math.unit(1000, "miles")
  18288. },
  18289. ]
  18290. ))
  18291. characterMakers.push(() => makeCharacter(
  18292. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18293. {
  18294. front: {
  18295. height: math.unit(5 + 2 / 12, "feet"),
  18296. weight: math.unit(110, "lb"),
  18297. name: "Front",
  18298. image: {
  18299. source: "./media/characters/desta/front.svg",
  18300. extra: 767 / 726,
  18301. bottom: 11.7 / 779
  18302. }
  18303. },
  18304. back: {
  18305. height: math.unit(5 + 2 / 12, "feet"),
  18306. weight: math.unit(110, "lb"),
  18307. name: "Back",
  18308. image: {
  18309. source: "./media/characters/desta/back.svg",
  18310. extra: 777 / 728,
  18311. bottom: 6 / 784
  18312. }
  18313. },
  18314. frontAlt: {
  18315. height: math.unit(5 + 2 / 12, "feet"),
  18316. weight: math.unit(110, "lb"),
  18317. name: "Front",
  18318. image: {
  18319. source: "./media/characters/desta/front-alt.svg",
  18320. extra: 1482 / 1417
  18321. }
  18322. },
  18323. side: {
  18324. height: math.unit(5 + 2 / 12, "feet"),
  18325. weight: math.unit(110, "lb"),
  18326. name: "Side",
  18327. image: {
  18328. source: "./media/characters/desta/side.svg",
  18329. extra: 2579 / 2491,
  18330. bottom: 0.053
  18331. }
  18332. },
  18333. },
  18334. [
  18335. {
  18336. name: "Micro",
  18337. height: math.unit(6, "inches")
  18338. },
  18339. {
  18340. name: "Normal",
  18341. height: math.unit(5 + 2 / 12, "feet"),
  18342. default: true
  18343. },
  18344. {
  18345. name: "Macro",
  18346. height: math.unit(62, "feet")
  18347. },
  18348. {
  18349. name: "Megamacro",
  18350. height: math.unit(1800, "feet")
  18351. },
  18352. ]
  18353. ))
  18354. characterMakers.push(() => makeCharacter(
  18355. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18356. {
  18357. front: {
  18358. height: math.unit(10, "feet"),
  18359. weight: math.unit(700, "lb"),
  18360. name: "Front",
  18361. image: {
  18362. source: "./media/characters/storm-alystar/front.svg",
  18363. extra: 2112 / 1898,
  18364. bottom: 0.034
  18365. }
  18366. },
  18367. },
  18368. [
  18369. {
  18370. name: "Micro",
  18371. height: math.unit(3.5, "inches")
  18372. },
  18373. {
  18374. name: "Normal",
  18375. height: math.unit(10, "feet"),
  18376. default: true
  18377. },
  18378. {
  18379. name: "Macro",
  18380. height: math.unit(400, "feet")
  18381. },
  18382. {
  18383. name: "Deific",
  18384. height: math.unit(60, "miles")
  18385. },
  18386. ]
  18387. ))
  18388. characterMakers.push(() => makeCharacter(
  18389. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18390. {
  18391. front: {
  18392. height: math.unit(2.35, "meters"),
  18393. weight: math.unit(119, "kg"),
  18394. name: "Front",
  18395. image: {
  18396. source: "./media/characters/ilia/front.svg",
  18397. extra: 1285 / 1255,
  18398. bottom: 0.06
  18399. }
  18400. },
  18401. },
  18402. [
  18403. {
  18404. name: "Normal",
  18405. height: math.unit(2.35, "meters")
  18406. },
  18407. {
  18408. name: "Macro",
  18409. height: math.unit(140, "meters"),
  18410. default: true
  18411. },
  18412. {
  18413. name: "Megamacro",
  18414. height: math.unit(100, "miles")
  18415. },
  18416. ]
  18417. ))
  18418. characterMakers.push(() => makeCharacter(
  18419. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18420. {
  18421. front: {
  18422. height: math.unit(6 + 5 / 12, "feet"),
  18423. weight: math.unit(190, "lb"),
  18424. name: "Front",
  18425. image: {
  18426. source: "./media/characters/kingdead/front.svg",
  18427. extra: 1228 / 1177
  18428. }
  18429. },
  18430. },
  18431. [
  18432. {
  18433. name: "Micro",
  18434. height: math.unit(7, "inches")
  18435. },
  18436. {
  18437. name: "Normal",
  18438. height: math.unit(6 + 5 / 12, "feet")
  18439. },
  18440. {
  18441. name: "Macro",
  18442. height: math.unit(150, "feet"),
  18443. default: true
  18444. },
  18445. {
  18446. name: "Megamacro",
  18447. height: math.unit(200, "miles")
  18448. },
  18449. ]
  18450. ))
  18451. characterMakers.push(() => makeCharacter(
  18452. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18453. {
  18454. front: {
  18455. height: math.unit(8, "feet"),
  18456. weight: math.unit(600, "lb"),
  18457. name: "Front",
  18458. image: {
  18459. source: "./media/characters/kyrehx/front.svg",
  18460. extra: 1195 / 1095,
  18461. bottom: 0.034
  18462. }
  18463. },
  18464. },
  18465. [
  18466. {
  18467. name: "Micro",
  18468. height: math.unit(2, "inches")
  18469. },
  18470. {
  18471. name: "Normal",
  18472. height: math.unit(8, "feet"),
  18473. default: true
  18474. },
  18475. {
  18476. name: "Macro",
  18477. height: math.unit(255, "feet")
  18478. },
  18479. ]
  18480. ))
  18481. characterMakers.push(() => makeCharacter(
  18482. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18483. {
  18484. front: {
  18485. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18486. weight: math.unit(184, "lb"),
  18487. name: "Front",
  18488. image: {
  18489. source: "./media/characters/xang/front.svg",
  18490. extra: 845 / 755
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Normal",
  18497. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18498. default: true
  18499. },
  18500. {
  18501. name: "Macro",
  18502. height: math.unit(0.935 * 146, "feet")
  18503. },
  18504. {
  18505. name: "Megamacro",
  18506. height: math.unit(0.935 * 3, "miles")
  18507. },
  18508. ]
  18509. ))
  18510. characterMakers.push(() => makeCharacter(
  18511. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18512. {
  18513. frontDressed: {
  18514. height: math.unit(5 + 7 / 12, "feet"),
  18515. weight: math.unit(140, "lb"),
  18516. name: "Front (Dressed)",
  18517. image: {
  18518. source: "./media/characters/doc-weardno/front-dressed.svg",
  18519. extra: 263 / 234
  18520. }
  18521. },
  18522. backDressed: {
  18523. height: math.unit(5 + 7 / 12, "feet"),
  18524. weight: math.unit(140, "lb"),
  18525. name: "Back (Dressed)",
  18526. image: {
  18527. source: "./media/characters/doc-weardno/back-dressed.svg",
  18528. extra: 266 / 238
  18529. }
  18530. },
  18531. front: {
  18532. height: math.unit(5 + 7 / 12, "feet"),
  18533. weight: math.unit(140, "lb"),
  18534. name: "Front",
  18535. image: {
  18536. source: "./media/characters/doc-weardno/front.svg",
  18537. extra: 254 / 233
  18538. }
  18539. },
  18540. },
  18541. [
  18542. {
  18543. name: "Micro",
  18544. height: math.unit(3, "inches")
  18545. },
  18546. {
  18547. name: "Normal",
  18548. height: math.unit(5 + 7 / 12, "feet"),
  18549. default: true
  18550. },
  18551. {
  18552. name: "Macro",
  18553. height: math.unit(25, "feet")
  18554. },
  18555. {
  18556. name: "Megamacro",
  18557. height: math.unit(2, "miles")
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18563. {
  18564. front: {
  18565. height: math.unit(6 + 2 / 12, "feet"),
  18566. weight: math.unit(153, "lb"),
  18567. name: "Front",
  18568. image: {
  18569. source: "./media/characters/seth-whilst/front.svg",
  18570. bottom: 0.07
  18571. }
  18572. },
  18573. },
  18574. [
  18575. {
  18576. name: "Micro",
  18577. height: math.unit(5, "inches")
  18578. },
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(6 + 2 / 12, "feet"),
  18582. default: true
  18583. },
  18584. ]
  18585. ))
  18586. characterMakers.push(() => makeCharacter(
  18587. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18588. {
  18589. front: {
  18590. height: math.unit(3, "inches"),
  18591. weight: math.unit(8, "grams"),
  18592. name: "Front",
  18593. image: {
  18594. source: "./media/characters/pocket-jabari/front.svg",
  18595. extra: 1024 / 974,
  18596. bottom: 0.039
  18597. }
  18598. },
  18599. },
  18600. [
  18601. {
  18602. name: "Minimicro",
  18603. height: math.unit(8, "mm")
  18604. },
  18605. {
  18606. name: "Micro",
  18607. height: math.unit(3, "inches"),
  18608. default: true
  18609. },
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(3, "feet")
  18613. },
  18614. ]
  18615. ))
  18616. characterMakers.push(() => makeCharacter(
  18617. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18618. {
  18619. front: {
  18620. height: math.unit(15, "feet"),
  18621. weight: math.unit(3280, "lb"),
  18622. name: "Front",
  18623. image: {
  18624. source: "./media/characters/sapphy/front.svg",
  18625. extra: 671 / 577,
  18626. bottom: 0.085
  18627. }
  18628. },
  18629. back: {
  18630. height: math.unit(15, "feet"),
  18631. weight: math.unit(3280, "lb"),
  18632. name: "Back",
  18633. image: {
  18634. source: "./media/characters/sapphy/back.svg",
  18635. extra: 631 / 607,
  18636. bottom: 0.045
  18637. }
  18638. },
  18639. },
  18640. [
  18641. {
  18642. name: "Normal",
  18643. height: math.unit(15, "feet")
  18644. },
  18645. {
  18646. name: "Casual Macro",
  18647. height: math.unit(120, "feet")
  18648. },
  18649. {
  18650. name: "Macro",
  18651. height: math.unit(2150, "feet"),
  18652. default: true
  18653. },
  18654. {
  18655. name: "Megamacro",
  18656. height: math.unit(8, "miles")
  18657. },
  18658. {
  18659. name: "Galaxy Mom",
  18660. height: math.unit(6, "megalightyears")
  18661. },
  18662. ]
  18663. ))
  18664. characterMakers.push(() => makeCharacter(
  18665. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18666. {
  18667. front: {
  18668. height: math.unit(6, "feet"),
  18669. weight: math.unit(170, "lb"),
  18670. name: "Front",
  18671. image: {
  18672. source: "./media/characters/kiro/front.svg",
  18673. extra: 1064 / 1012,
  18674. bottom: 0.052
  18675. }
  18676. },
  18677. },
  18678. [
  18679. {
  18680. name: "Micro",
  18681. height: math.unit(6, "inches")
  18682. },
  18683. {
  18684. name: "Normal",
  18685. height: math.unit(6, "feet"),
  18686. default: true
  18687. },
  18688. {
  18689. name: "Macro",
  18690. height: math.unit(72, "feet")
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18696. {
  18697. front: {
  18698. height: math.unit(5 + 9 / 12, "feet"),
  18699. weight: math.unit(175, "lb"),
  18700. name: "Front",
  18701. image: {
  18702. source: "./media/characters/irishfox/front.svg",
  18703. extra: 1912 / 1680,
  18704. bottom: 0.02
  18705. }
  18706. },
  18707. },
  18708. [
  18709. {
  18710. name: "Nano",
  18711. height: math.unit(1, "mm")
  18712. },
  18713. {
  18714. name: "Micro",
  18715. height: math.unit(2, "inches")
  18716. },
  18717. {
  18718. name: "Normal",
  18719. height: math.unit(5 + 9 / 12, "feet"),
  18720. default: true
  18721. },
  18722. {
  18723. name: "Macro",
  18724. height: math.unit(45, "feet")
  18725. },
  18726. ]
  18727. ))
  18728. characterMakers.push(() => makeCharacter(
  18729. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18730. {
  18731. front: {
  18732. height: math.unit(6 + 1 / 12, "feet"),
  18733. weight: math.unit(75, "lb"),
  18734. name: "Front",
  18735. image: {
  18736. source: "./media/characters/aronai-sieyes/front.svg",
  18737. extra: 1556 / 1480,
  18738. bottom: 0.015
  18739. }
  18740. },
  18741. side: {
  18742. height: math.unit(6 + 1 / 12, "feet"),
  18743. weight: math.unit(75, "lb"),
  18744. name: "Side",
  18745. image: {
  18746. source: "./media/characters/aronai-sieyes/side.svg",
  18747. extra: 1433 / 1390,
  18748. bottom: 0.0393
  18749. }
  18750. },
  18751. back: {
  18752. height: math.unit(6 + 1 / 12, "feet"),
  18753. weight: math.unit(75, "lb"),
  18754. name: "Back",
  18755. image: {
  18756. source: "./media/characters/aronai-sieyes/back.svg",
  18757. extra: 1544 / 1494,
  18758. bottom: 0.02
  18759. }
  18760. },
  18761. frontClothed: {
  18762. height: math.unit(6 + 1 / 12, "feet"),
  18763. weight: math.unit(75, "lb"),
  18764. name: "Front (Clothed)",
  18765. image: {
  18766. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18767. extra: 1582 / 1527
  18768. }
  18769. },
  18770. feral: {
  18771. height: math.unit(18, "feet"),
  18772. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18773. name: "Feral",
  18774. image: {
  18775. source: "./media/characters/aronai-sieyes/feral.svg",
  18776. extra: 1530 / 1240,
  18777. bottom: 0.035
  18778. }
  18779. },
  18780. },
  18781. [
  18782. {
  18783. name: "Micro",
  18784. height: math.unit(2, "inches")
  18785. },
  18786. {
  18787. name: "Normal",
  18788. height: math.unit(6 + 1 / 12, "feet"),
  18789. default: true
  18790. }
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18795. {
  18796. front: {
  18797. height: math.unit(12, "feet"),
  18798. weight: math.unit(410, "kg"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/xuna/front.svg",
  18802. extra: 2184 / 1980
  18803. }
  18804. },
  18805. side: {
  18806. height: math.unit(12, "feet"),
  18807. weight: math.unit(410, "kg"),
  18808. name: "Side",
  18809. image: {
  18810. source: "./media/characters/xuna/side.svg",
  18811. extra: 2184 / 1980
  18812. }
  18813. },
  18814. back: {
  18815. height: math.unit(12, "feet"),
  18816. weight: math.unit(410, "kg"),
  18817. name: "Back",
  18818. image: {
  18819. source: "./media/characters/xuna/back.svg",
  18820. extra: 2184 / 1980
  18821. }
  18822. },
  18823. },
  18824. [
  18825. {
  18826. name: "Nano glow",
  18827. height: math.unit(10, "nm")
  18828. },
  18829. {
  18830. name: "Micro floof",
  18831. height: math.unit(0.3, "m")
  18832. },
  18833. {
  18834. name: "Huggable softy boi",
  18835. height: math.unit(3.6576, "m"),
  18836. default: true
  18837. },
  18838. {
  18839. name: "Admirable floof",
  18840. height: math.unit(80, "meters")
  18841. },
  18842. {
  18843. name: "Gentle macro",
  18844. height: math.unit(300, "meters")
  18845. },
  18846. {
  18847. name: "Very careful floof",
  18848. height: math.unit(3200, "meters")
  18849. },
  18850. {
  18851. name: "The mega floof",
  18852. height: math.unit(36000, "meters")
  18853. },
  18854. {
  18855. name: "Giga-fur-Wicker",
  18856. height: math.unit(4800000, "meters")
  18857. },
  18858. {
  18859. name: "Licky world",
  18860. height: math.unit(20000000, "meters")
  18861. },
  18862. {
  18863. name: "Floofy cyan sun",
  18864. height: math.unit(1500000000, "meters")
  18865. },
  18866. {
  18867. name: "Milky Wicker",
  18868. height: math.unit(1000000000000000000000, "meters")
  18869. },
  18870. {
  18871. name: "The observing Wicker",
  18872. height: math.unit(999999999999999999999999999, "meters")
  18873. },
  18874. ]
  18875. ))
  18876. characterMakers.push(() => makeCharacter(
  18877. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18878. {
  18879. front: {
  18880. height: math.unit(5 + 9 / 12, "feet"),
  18881. weight: math.unit(150, "lb"),
  18882. name: "Front",
  18883. image: {
  18884. source: "./media/characters/arokha-sieyes/front.svg",
  18885. extra: 1425 / 1284,
  18886. bottom: 0.05
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(5 + 9 / 12, "feet")
  18894. },
  18895. {
  18896. name: "Macro",
  18897. height: math.unit(30, "meters"),
  18898. default: true
  18899. },
  18900. ]
  18901. ))
  18902. characterMakers.push(() => makeCharacter(
  18903. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18904. {
  18905. front: {
  18906. height: math.unit(6, "feet"),
  18907. weight: math.unit(180, "lb"),
  18908. name: "Front",
  18909. image: {
  18910. source: "./media/characters/arokh-sieyes/front.svg",
  18911. extra: 1830 / 1769,
  18912. bottom: 0.01
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Normal",
  18919. height: math.unit(6, "feet")
  18920. },
  18921. {
  18922. name: "Macro",
  18923. height: math.unit(30, "meters"),
  18924. default: true
  18925. },
  18926. ]
  18927. ))
  18928. characterMakers.push(() => makeCharacter(
  18929. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18930. {
  18931. side: {
  18932. height: math.unit(13 + 1 / 12, "feet"),
  18933. weight: math.unit(8.5, "tonnes"),
  18934. name: "Side",
  18935. image: {
  18936. source: "./media/characters/goldeneye/side.svg",
  18937. extra: 1182 / 778,
  18938. bottom: 0.067
  18939. }
  18940. },
  18941. paw: {
  18942. height: math.unit(3.4, "feet"),
  18943. name: "Paw",
  18944. image: {
  18945. source: "./media/characters/goldeneye/paw.svg"
  18946. }
  18947. },
  18948. },
  18949. [
  18950. {
  18951. name: "Normal",
  18952. height: math.unit(13 + 1 / 12, "feet"),
  18953. default: true
  18954. },
  18955. ]
  18956. ))
  18957. characterMakers.push(() => makeCharacter(
  18958. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  18959. {
  18960. front: {
  18961. height: math.unit(6 + 1 / 12, "feet"),
  18962. weight: math.unit(210, "lb"),
  18963. name: "Front",
  18964. image: {
  18965. source: "./media/characters/leonardo-lycheborne/front.svg",
  18966. extra: 390 / 365,
  18967. bottom: 0.032
  18968. }
  18969. },
  18970. side: {
  18971. height: math.unit(6 + 1 / 12, "feet"),
  18972. weight: math.unit(210, "lb"),
  18973. name: "Side",
  18974. image: {
  18975. source: "./media/characters/leonardo-lycheborne/side.svg",
  18976. extra: 390 / 365,
  18977. bottom: 0.005
  18978. }
  18979. },
  18980. back: {
  18981. height: math.unit(6 + 1 / 12, "feet"),
  18982. weight: math.unit(210, "lb"),
  18983. name: "Back",
  18984. image: {
  18985. source: "./media/characters/leonardo-lycheborne/back.svg",
  18986. extra: 392 / 366,
  18987. bottom: 0.01
  18988. }
  18989. },
  18990. hand: {
  18991. height: math.unit(1.08, "feet"),
  18992. name: "Hand",
  18993. image: {
  18994. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18995. }
  18996. },
  18997. foot: {
  18998. height: math.unit(1.32, "feet"),
  18999. name: "Foot",
  19000. image: {
  19001. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19002. }
  19003. },
  19004. were: {
  19005. height: math.unit(20, "feet"),
  19006. weight: math.unit(7800, "lb"),
  19007. name: "Were",
  19008. image: {
  19009. source: "./media/characters/leonardo-lycheborne/were.svg",
  19010. extra: 308 / 294,
  19011. bottom: 0.048
  19012. }
  19013. },
  19014. feral: {
  19015. height: math.unit(7.5, "feet"),
  19016. weight: math.unit(600, "lb"),
  19017. name: "Feral",
  19018. image: {
  19019. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19020. extra: 210 / 186,
  19021. bottom: 0.108
  19022. }
  19023. },
  19024. taur: {
  19025. height: math.unit(11, "feet"),
  19026. weight: math.unit(3300, "lb"),
  19027. name: "Taur",
  19028. image: {
  19029. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19030. extra: 320 / 303,
  19031. bottom: 0.025
  19032. }
  19033. },
  19034. barghest: {
  19035. height: math.unit(11, "feet"),
  19036. weight: math.unit(1300, "lb"),
  19037. name: "Barghest",
  19038. image: {
  19039. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19040. extra: 323 / 302,
  19041. bottom: 0.027
  19042. }
  19043. },
  19044. dick: {
  19045. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19046. name: "Dick",
  19047. image: {
  19048. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19049. }
  19050. },
  19051. dickWere: {
  19052. height: math.unit((20) / 3.8, "feet"),
  19053. name: "Dick (Were)",
  19054. image: {
  19055. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19056. }
  19057. },
  19058. },
  19059. [
  19060. {
  19061. name: "Normal",
  19062. height: math.unit(6 + 1 / 12, "feet"),
  19063. default: true
  19064. },
  19065. ]
  19066. ))
  19067. characterMakers.push(() => makeCharacter(
  19068. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19069. {
  19070. front: {
  19071. height: math.unit(10, "feet"),
  19072. weight: math.unit(350, "lb"),
  19073. name: "Front",
  19074. image: {
  19075. source: "./media/characters/jet/front.svg",
  19076. extra: 2050 / 1980,
  19077. bottom: 0.013
  19078. }
  19079. },
  19080. back: {
  19081. height: math.unit(10, "feet"),
  19082. weight: math.unit(350, "lb"),
  19083. name: "Back",
  19084. image: {
  19085. source: "./media/characters/jet/back.svg",
  19086. extra: 2050 / 1980,
  19087. bottom: 0.013
  19088. }
  19089. },
  19090. },
  19091. [
  19092. {
  19093. name: "Micro",
  19094. height: math.unit(6, "inches")
  19095. },
  19096. {
  19097. name: "Normal",
  19098. height: math.unit(10, "feet"),
  19099. default: true
  19100. },
  19101. {
  19102. name: "Macro",
  19103. height: math.unit(100, "feet")
  19104. },
  19105. ]
  19106. ))
  19107. characterMakers.push(() => makeCharacter(
  19108. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19109. {
  19110. front: {
  19111. height: math.unit(15, "feet"),
  19112. weight: math.unit(2800, "lb"),
  19113. name: "Front",
  19114. image: {
  19115. source: "./media/characters/tanarath/front.svg",
  19116. extra: 2392 / 2220,
  19117. bottom: 0.03
  19118. }
  19119. },
  19120. back: {
  19121. height: math.unit(15, "feet"),
  19122. weight: math.unit(2800, "lb"),
  19123. name: "Back",
  19124. image: {
  19125. source: "./media/characters/tanarath/back.svg",
  19126. extra: 2392 / 2220,
  19127. bottom: 0.03
  19128. }
  19129. },
  19130. },
  19131. [
  19132. {
  19133. name: "Normal",
  19134. height: math.unit(15, "feet"),
  19135. default: true
  19136. },
  19137. ]
  19138. ))
  19139. characterMakers.push(() => makeCharacter(
  19140. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19141. {
  19142. front: {
  19143. height: math.unit(7 + 1 / 12, "feet"),
  19144. weight: math.unit(175, "lb"),
  19145. name: "Front",
  19146. image: {
  19147. source: "./media/characters/patty-cattybatty/front.svg",
  19148. extra: 908 / 874,
  19149. bottom: 0.025
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Micro",
  19156. height: math.unit(1, "inch")
  19157. },
  19158. {
  19159. name: "Normal",
  19160. height: math.unit(7 + 1 / 12, "feet")
  19161. },
  19162. {
  19163. name: "Mini Macro",
  19164. height: math.unit(155, "feet")
  19165. },
  19166. {
  19167. name: "Macro",
  19168. height: math.unit(1077, "feet")
  19169. },
  19170. {
  19171. name: "Mega Macro",
  19172. height: math.unit(47650, "feet"),
  19173. default: true
  19174. },
  19175. {
  19176. name: "Giga Macro",
  19177. height: math.unit(440, "miles")
  19178. },
  19179. {
  19180. name: "Tera Macro",
  19181. height: math.unit(8700, "miles")
  19182. },
  19183. {
  19184. name: "Planetary Macro",
  19185. height: math.unit(32700, "miles")
  19186. },
  19187. {
  19188. name: "Solar Macro",
  19189. height: math.unit(550000, "miles")
  19190. },
  19191. {
  19192. name: "Celestial Macro",
  19193. height: math.unit(2.5, "AU")
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19199. {
  19200. front: {
  19201. height: math.unit(4 + 5 / 12, "feet"),
  19202. weight: math.unit(90, "lb"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/cappu/front.svg",
  19206. extra: 1247 / 1152,
  19207. bottom: 0.012
  19208. }
  19209. },
  19210. },
  19211. [
  19212. {
  19213. name: "Normal",
  19214. height: math.unit(4 + 5 / 12, "feet"),
  19215. default: true
  19216. },
  19217. ]
  19218. ))
  19219. characterMakers.push(() => makeCharacter(
  19220. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19221. {
  19222. frontDressed: {
  19223. height: math.unit(70, "cm"),
  19224. weight: math.unit(6, "kg"),
  19225. name: "Front (Dressed)",
  19226. image: {
  19227. source: "./media/characters/sebi/front-dressed.svg",
  19228. extra: 713.5 / 686.5,
  19229. bottom: 0.003
  19230. }
  19231. },
  19232. front: {
  19233. height: math.unit(70, "cm"),
  19234. weight: math.unit(5, "kg"),
  19235. name: "Front",
  19236. image: {
  19237. source: "./media/characters/sebi/front.svg",
  19238. extra: 713.5 / 686.5,
  19239. bottom: 0.003
  19240. }
  19241. }
  19242. },
  19243. [
  19244. {
  19245. name: "Normal",
  19246. height: math.unit(70, "cm"),
  19247. default: true
  19248. },
  19249. {
  19250. name: "Macro",
  19251. height: math.unit(8, "meters")
  19252. },
  19253. ]
  19254. ))
  19255. characterMakers.push(() => makeCharacter(
  19256. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19257. {
  19258. front: {
  19259. height: math.unit(6, "feet"),
  19260. weight: math.unit(150, "lb"),
  19261. name: "Front",
  19262. image: {
  19263. source: "./media/characters/typhek/front.svg",
  19264. extra: 1948 / 1929,
  19265. bottom: 0.025
  19266. }
  19267. },
  19268. side: {
  19269. height: math.unit(6, "feet"),
  19270. weight: math.unit(150, "lb"),
  19271. name: "Side",
  19272. image: {
  19273. source: "./media/characters/typhek/side.svg",
  19274. extra: 2034 / 2010,
  19275. bottom: 0.003
  19276. }
  19277. },
  19278. back: {
  19279. height: math.unit(6, "feet"),
  19280. weight: math.unit(150, "lb"),
  19281. name: "Back",
  19282. image: {
  19283. source: "./media/characters/typhek/back.svg",
  19284. extra: 2005 / 1978,
  19285. bottom: 0.004
  19286. }
  19287. },
  19288. palm: {
  19289. height: math.unit(1.2, "feet"),
  19290. name: "Palm",
  19291. image: {
  19292. source: "./media/characters/typhek/palm.svg"
  19293. }
  19294. },
  19295. fist: {
  19296. height: math.unit(1.1, "feet"),
  19297. name: "Fist",
  19298. image: {
  19299. source: "./media/characters/typhek/fist.svg"
  19300. }
  19301. },
  19302. foot: {
  19303. height: math.unit(1.57, "feet"),
  19304. name: "Foot",
  19305. image: {
  19306. source: "./media/characters/typhek/foot.svg"
  19307. }
  19308. },
  19309. sole: {
  19310. height: math.unit(2.05, "feet"),
  19311. name: "Sole",
  19312. image: {
  19313. source: "./media/characters/typhek/sole.svg"
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Macro",
  19320. height: math.unit(40, "stories"),
  19321. default: true
  19322. },
  19323. {
  19324. name: "Megamacro",
  19325. height: math.unit(1, "mile")
  19326. },
  19327. {
  19328. name: "Gigamacro",
  19329. height: math.unit(4000, "solarradii")
  19330. },
  19331. {
  19332. name: "Universal",
  19333. height: math.unit(1.1, "universes")
  19334. }
  19335. ]
  19336. ))
  19337. characterMakers.push(() => makeCharacter(
  19338. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19339. {
  19340. side: {
  19341. height: math.unit(5 + 7 / 12, "feet"),
  19342. weight: math.unit(150, "lb"),
  19343. name: "Side",
  19344. image: {
  19345. source: "./media/characters/kassy/side.svg",
  19346. extra: 1280 / 1225,
  19347. bottom: 0.002
  19348. }
  19349. },
  19350. front: {
  19351. height: math.unit(5 + 7 / 12, "feet"),
  19352. weight: math.unit(150, "lb"),
  19353. name: "Front",
  19354. image: {
  19355. source: "./media/characters/kassy/front.svg",
  19356. extra: 1280 / 1225,
  19357. bottom: 0.025
  19358. }
  19359. },
  19360. back: {
  19361. height: math.unit(5 + 7 / 12, "feet"),
  19362. weight: math.unit(150, "lb"),
  19363. name: "Back",
  19364. image: {
  19365. source: "./media/characters/kassy/back.svg",
  19366. extra: 1280 / 1225,
  19367. bottom: 0.002
  19368. }
  19369. },
  19370. foot: {
  19371. height: math.unit(1.266, "feet"),
  19372. name: "Foot",
  19373. image: {
  19374. source: "./media/characters/kassy/foot.svg"
  19375. }
  19376. },
  19377. },
  19378. [
  19379. {
  19380. name: "Normal",
  19381. height: math.unit(5 + 7 / 12, "feet")
  19382. },
  19383. {
  19384. name: "Macro",
  19385. height: math.unit(137, "feet"),
  19386. default: true
  19387. },
  19388. {
  19389. name: "Megamacro",
  19390. height: math.unit(1, "mile")
  19391. },
  19392. ]
  19393. ))
  19394. characterMakers.push(() => makeCharacter(
  19395. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19396. {
  19397. front: {
  19398. height: math.unit(6 + 1 / 12, "feet"),
  19399. weight: math.unit(200, "lb"),
  19400. name: "Front",
  19401. image: {
  19402. source: "./media/characters/neil/front.svg",
  19403. extra: 1326 / 1250,
  19404. bottom: 0.023
  19405. }
  19406. },
  19407. },
  19408. [
  19409. {
  19410. name: "Normal",
  19411. height: math.unit(6 + 1 / 12, "feet"),
  19412. default: true
  19413. },
  19414. {
  19415. name: "Macro",
  19416. height: math.unit(200, "feet")
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19422. {
  19423. front: {
  19424. height: math.unit(5 + 9 / 12, "feet"),
  19425. weight: math.unit(190, "lb"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/atticus/front.svg",
  19429. extra: 2934 / 2785,
  19430. bottom: 0.025
  19431. }
  19432. },
  19433. },
  19434. [
  19435. {
  19436. name: "Normal",
  19437. height: math.unit(5 + 9 / 12, "feet"),
  19438. default: true
  19439. },
  19440. {
  19441. name: "Macro",
  19442. height: math.unit(180, "feet")
  19443. },
  19444. ]
  19445. ))
  19446. characterMakers.push(() => makeCharacter(
  19447. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19448. {
  19449. side: {
  19450. height: math.unit(9, "feet"),
  19451. weight: math.unit(650, "lb"),
  19452. name: "Side",
  19453. image: {
  19454. source: "./media/characters/milo/side.svg",
  19455. extra: 2644 / 2310,
  19456. bottom: 0.032
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Normal",
  19463. height: math.unit(9, "feet"),
  19464. default: true
  19465. },
  19466. {
  19467. name: "Macro",
  19468. height: math.unit(300, "feet")
  19469. },
  19470. ]
  19471. ))
  19472. characterMakers.push(() => makeCharacter(
  19473. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19474. {
  19475. side: {
  19476. height: math.unit(8, "meters"),
  19477. weight: math.unit(90000, "kg"),
  19478. name: "Side",
  19479. image: {
  19480. source: "./media/characters/ijzer/side.svg",
  19481. extra: 2756 / 1600,
  19482. bottom: 0.01
  19483. }
  19484. },
  19485. },
  19486. [
  19487. {
  19488. name: "Small",
  19489. height: math.unit(3, "meters")
  19490. },
  19491. {
  19492. name: "Normal",
  19493. height: math.unit(8, "meters"),
  19494. default: true
  19495. },
  19496. {
  19497. name: "Normal+",
  19498. height: math.unit(10, "meters")
  19499. },
  19500. {
  19501. name: "Bigger",
  19502. height: math.unit(24, "meters")
  19503. },
  19504. {
  19505. name: "Huge",
  19506. height: math.unit(80, "meters")
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19512. {
  19513. front: {
  19514. height: math.unit(6 + 2 / 12, "feet"),
  19515. weight: math.unit(153, "lb"),
  19516. name: "Front",
  19517. image: {
  19518. source: "./media/characters/luca-cervicum/front.svg",
  19519. extra: 370 / 327,
  19520. bottom: 0.015
  19521. }
  19522. },
  19523. back: {
  19524. height: math.unit(6 + 2 / 12, "feet"),
  19525. weight: math.unit(153, "lb"),
  19526. name: "Back",
  19527. image: {
  19528. source: "./media/characters/luca-cervicum/back.svg",
  19529. extra: 367 / 333,
  19530. bottom: 0.005
  19531. }
  19532. },
  19533. frontGear: {
  19534. height: math.unit(6 + 2 / 12, "feet"),
  19535. weight: math.unit(173, "lb"),
  19536. name: "Front (Gear)",
  19537. image: {
  19538. source: "./media/characters/luca-cervicum/front-gear.svg",
  19539. extra: 377 / 333,
  19540. bottom: 0.006
  19541. }
  19542. },
  19543. },
  19544. [
  19545. {
  19546. name: "Normal",
  19547. height: math.unit(6 + 2 / 12, "feet"),
  19548. default: true
  19549. },
  19550. ]
  19551. ))
  19552. characterMakers.push(() => makeCharacter(
  19553. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19554. {
  19555. front: {
  19556. height: math.unit(6 + 1 / 12, "feet"),
  19557. weight: math.unit(304, "lb"),
  19558. name: "Front",
  19559. image: {
  19560. source: "./media/characters/oliver/front.svg",
  19561. extra: 157 / 143,
  19562. bottom: 0.08
  19563. }
  19564. },
  19565. },
  19566. [
  19567. {
  19568. name: "Normal",
  19569. height: math.unit(6 + 1 / 12, "feet"),
  19570. default: true
  19571. },
  19572. ]
  19573. ))
  19574. characterMakers.push(() => makeCharacter(
  19575. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19576. {
  19577. front: {
  19578. height: math.unit(5 + 7 / 12, "feet"),
  19579. weight: math.unit(140, "lb"),
  19580. name: "Front",
  19581. image: {
  19582. source: "./media/characters/shane/front.svg",
  19583. extra: 304 / 289,
  19584. bottom: 0.005
  19585. }
  19586. },
  19587. },
  19588. [
  19589. {
  19590. name: "Normal",
  19591. height: math.unit(5 + 7 / 12, "feet"),
  19592. default: true
  19593. },
  19594. ]
  19595. ))
  19596. characterMakers.push(() => makeCharacter(
  19597. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19598. {
  19599. front: {
  19600. height: math.unit(5 + 9 / 12, "feet"),
  19601. weight: math.unit(178, "lb"),
  19602. name: "Front",
  19603. image: {
  19604. source: "./media/characters/shin/front.svg",
  19605. extra: 159 / 151,
  19606. bottom: 0.015
  19607. }
  19608. },
  19609. },
  19610. [
  19611. {
  19612. name: "Normal",
  19613. height: math.unit(5 + 9 / 12, "feet"),
  19614. default: true
  19615. },
  19616. ]
  19617. ))
  19618. characterMakers.push(() => makeCharacter(
  19619. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19620. {
  19621. front: {
  19622. height: math.unit(5 + 10 / 12, "feet"),
  19623. weight: math.unit(168, "lb"),
  19624. name: "Front",
  19625. image: {
  19626. source: "./media/characters/xerxes/front.svg",
  19627. extra: 282 / 260,
  19628. bottom: 0.045
  19629. }
  19630. },
  19631. },
  19632. [
  19633. {
  19634. name: "Normal",
  19635. height: math.unit(5 + 10 / 12, "feet"),
  19636. default: true
  19637. },
  19638. ]
  19639. ))
  19640. characterMakers.push(() => makeCharacter(
  19641. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19642. {
  19643. front: {
  19644. height: math.unit(6 + 7 / 12, "feet"),
  19645. weight: math.unit(208, "lb"),
  19646. name: "Front",
  19647. image: {
  19648. source: "./media/characters/chaska/front.svg",
  19649. extra: 332 / 319,
  19650. bottom: 0.015
  19651. }
  19652. },
  19653. },
  19654. [
  19655. {
  19656. name: "Normal",
  19657. height: math.unit(6 + 7 / 12, "feet"),
  19658. default: true
  19659. },
  19660. ]
  19661. ))
  19662. characterMakers.push(() => makeCharacter(
  19663. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19664. {
  19665. front: {
  19666. height: math.unit(5 + 8 / 12, "feet"),
  19667. weight: math.unit(208, "lb"),
  19668. name: "Front",
  19669. image: {
  19670. source: "./media/characters/enuk/front.svg",
  19671. extra: 437 / 406,
  19672. bottom: 0.02
  19673. }
  19674. },
  19675. },
  19676. [
  19677. {
  19678. name: "Normal",
  19679. height: math.unit(5 + 8 / 12, "feet"),
  19680. default: true
  19681. },
  19682. ]
  19683. ))
  19684. characterMakers.push(() => makeCharacter(
  19685. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19686. {
  19687. front: {
  19688. height: math.unit(5 + 10 / 12, "feet"),
  19689. weight: math.unit(252, "lb"),
  19690. name: "Front",
  19691. image: {
  19692. source: "./media/characters/bruun/front.svg",
  19693. extra: 197 / 187,
  19694. bottom: 0.012
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(5 + 10 / 12, "feet"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(6 + 10 / 12, "feet"),
  19711. weight: math.unit(255, "lb"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/alexeev/front.svg",
  19715. extra: 213 / 200,
  19716. bottom: 0.05
  19717. }
  19718. },
  19719. },
  19720. [
  19721. {
  19722. name: "Normal",
  19723. height: math.unit(6 + 10 / 12, "feet"),
  19724. default: true
  19725. },
  19726. ]
  19727. ))
  19728. characterMakers.push(() => makeCharacter(
  19729. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19730. {
  19731. front: {
  19732. height: math.unit(2 + 8 / 12, "feet"),
  19733. weight: math.unit(22, "lb"),
  19734. name: "Front",
  19735. image: {
  19736. source: "./media/characters/evelyn/front.svg",
  19737. extra: 208 / 180
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(2 + 8 / 12, "feet"),
  19745. default: true
  19746. },
  19747. ]
  19748. ))
  19749. characterMakers.push(() => makeCharacter(
  19750. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19751. {
  19752. front: {
  19753. height: math.unit(5 + 9 / 12, "feet"),
  19754. weight: math.unit(139, "lb"),
  19755. name: "Front",
  19756. image: {
  19757. source: "./media/characters/inca/front.svg",
  19758. extra: 294 / 291,
  19759. bottom: 0.03
  19760. }
  19761. },
  19762. },
  19763. [
  19764. {
  19765. name: "Normal",
  19766. height: math.unit(5 + 9 / 12, "feet"),
  19767. default: true
  19768. },
  19769. ]
  19770. ))
  19771. characterMakers.push(() => makeCharacter(
  19772. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19773. {
  19774. front: {
  19775. height: math.unit(5 + 1 / 12, "feet"),
  19776. weight: math.unit(84, "lb"),
  19777. name: "Front",
  19778. image: {
  19779. source: "./media/characters/magdalene/front.svg",
  19780. extra: 293 / 273
  19781. }
  19782. },
  19783. },
  19784. [
  19785. {
  19786. name: "Normal",
  19787. height: math.unit(5 + 1 / 12, "feet"),
  19788. default: true
  19789. },
  19790. ]
  19791. ))
  19792. characterMakers.push(() => makeCharacter(
  19793. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19794. {
  19795. front: {
  19796. height: math.unit(6 + 3 / 12, "feet"),
  19797. weight: math.unit(185, "lb"),
  19798. name: "Front",
  19799. image: {
  19800. source: "./media/characters/mera/front.svg",
  19801. extra: 291 / 277,
  19802. bottom: 0.03
  19803. }
  19804. },
  19805. },
  19806. [
  19807. {
  19808. name: "Normal",
  19809. height: math.unit(6 + 3 / 12, "feet"),
  19810. default: true
  19811. },
  19812. ]
  19813. ))
  19814. characterMakers.push(() => makeCharacter(
  19815. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19816. {
  19817. front: {
  19818. height: math.unit(6 + 7 / 12, "feet"),
  19819. weight: math.unit(160, "lb"),
  19820. name: "Front",
  19821. image: {
  19822. source: "./media/characters/ceres/front.svg",
  19823. extra: 1023 / 950,
  19824. bottom: 0.027
  19825. }
  19826. },
  19827. back: {
  19828. height: math.unit(6 + 7 / 12, "feet"),
  19829. weight: math.unit(160, "lb"),
  19830. name: "Back",
  19831. image: {
  19832. source: "./media/characters/ceres/back.svg",
  19833. extra: 1023 / 950
  19834. }
  19835. },
  19836. },
  19837. [
  19838. {
  19839. name: "Normal",
  19840. height: math.unit(6 + 7 / 12, "feet"),
  19841. default: true
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19847. {
  19848. front: {
  19849. height: math.unit(5 + 10 / 12, "feet"),
  19850. weight: math.unit(150, "lb"),
  19851. name: "Front",
  19852. image: {
  19853. source: "./media/characters/kris/front.svg",
  19854. extra: 885 / 803,
  19855. bottom: 0.03
  19856. }
  19857. },
  19858. },
  19859. [
  19860. {
  19861. name: "Normal",
  19862. height: math.unit(5 + 10 / 12, "feet"),
  19863. default: true
  19864. },
  19865. ]
  19866. ))
  19867. characterMakers.push(() => makeCharacter(
  19868. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19869. {
  19870. front: {
  19871. height: math.unit(7, "feet"),
  19872. weight: math.unit(120, "kg"),
  19873. name: "Front",
  19874. image: {
  19875. source: "./media/characters/taluthus/front.svg",
  19876. extra: 903 / 833,
  19877. bottom: 0.015
  19878. }
  19879. },
  19880. },
  19881. [
  19882. {
  19883. name: "Normal",
  19884. height: math.unit(7, "feet"),
  19885. default: true
  19886. },
  19887. {
  19888. name: "Macro",
  19889. height: math.unit(300, "feet")
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19895. {
  19896. front: {
  19897. height: math.unit(5 + 9 / 12, "feet"),
  19898. weight: math.unit(145, "lb"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/dawn/front.svg",
  19902. extra: 2094 / 2016,
  19903. bottom: 0.025
  19904. }
  19905. },
  19906. back: {
  19907. height: math.unit(5 + 9 / 12, "feet"),
  19908. weight: math.unit(160, "lb"),
  19909. name: "Back",
  19910. image: {
  19911. source: "./media/characters/dawn/back.svg",
  19912. extra: 2112 / 2080,
  19913. bottom: 0.005
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(6 + 7 / 12, "feet"),
  19921. default: true
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19927. {
  19928. anthro: {
  19929. height: math.unit(8 + 3 / 12, "feet"),
  19930. weight: math.unit(450, "lb"),
  19931. name: "Anthro",
  19932. image: {
  19933. source: "./media/characters/arador/anthro.svg",
  19934. extra: 1835 / 1718,
  19935. bottom: 0.025
  19936. }
  19937. },
  19938. feral: {
  19939. height: math.unit(4, "feet"),
  19940. weight: math.unit(200, "lb"),
  19941. name: "Feral",
  19942. image: {
  19943. source: "./media/characters/arador/feral.svg",
  19944. extra: 1683 / 1514,
  19945. bottom: 0.07
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(8 + 3 / 12, "feet")
  19953. },
  19954. {
  19955. name: "Macro",
  19956. height: math.unit(82.5, "feet"),
  19957. default: true
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19963. {
  19964. front: {
  19965. height: math.unit(5 + 10 / 12, "feet"),
  19966. weight: math.unit(125, "lb"),
  19967. name: "Front",
  19968. image: {
  19969. source: "./media/characters/dharsi/front.svg",
  19970. extra: 716 / 630,
  19971. bottom: 0.035
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Nano",
  19978. height: math.unit(100, "nm")
  19979. },
  19980. {
  19981. name: "Micro",
  19982. height: math.unit(2, "inches")
  19983. },
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(5 + 10 / 12, "feet"),
  19987. default: true
  19988. },
  19989. {
  19990. name: "Macro",
  19991. height: math.unit(1000, "feet")
  19992. },
  19993. {
  19994. name: "Megamacro",
  19995. height: math.unit(10, "miles")
  19996. },
  19997. {
  19998. name: "Gigamacro",
  19999. height: math.unit(3000, "miles")
  20000. },
  20001. {
  20002. name: "Teramacro",
  20003. height: math.unit(500000, "miles")
  20004. },
  20005. {
  20006. name: "Teramacro+",
  20007. height: math.unit(30, "galaxies")
  20008. },
  20009. ]
  20010. ))
  20011. characterMakers.push(() => makeCharacter(
  20012. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20013. {
  20014. front: {
  20015. height: math.unit(6, "feet"),
  20016. weight: math.unit(150, "lb"),
  20017. name: "Front",
  20018. image: {
  20019. source: "./media/characters/deathy/front.svg",
  20020. extra: 1552 / 1463,
  20021. bottom: 0.025
  20022. }
  20023. },
  20024. side: {
  20025. height: math.unit(6, "feet"),
  20026. weight: math.unit(150, "lb"),
  20027. name: "Side",
  20028. image: {
  20029. source: "./media/characters/deathy/side.svg",
  20030. extra: 1604 / 1455,
  20031. bottom: 0.025
  20032. }
  20033. },
  20034. back: {
  20035. height: math.unit(6, "feet"),
  20036. weight: math.unit(150, "lb"),
  20037. name: "Back",
  20038. image: {
  20039. source: "./media/characters/deathy/back.svg",
  20040. extra: 1580 / 1463,
  20041. bottom: 0.005
  20042. }
  20043. },
  20044. },
  20045. [
  20046. {
  20047. name: "Micro",
  20048. height: math.unit(5, "millimeters")
  20049. },
  20050. {
  20051. name: "Normal",
  20052. height: math.unit(6 + 5 / 12, "feet"),
  20053. default: true
  20054. },
  20055. ]
  20056. ))
  20057. characterMakers.push(() => makeCharacter(
  20058. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20059. {
  20060. front: {
  20061. height: math.unit(16, "feet"),
  20062. weight: math.unit(4000, "lb"),
  20063. name: "Front",
  20064. image: {
  20065. source: "./media/characters/juniper/front.svg",
  20066. bottom: 0.04
  20067. }
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Normal",
  20073. height: math.unit(16, "feet"),
  20074. default: true
  20075. },
  20076. ]
  20077. ))
  20078. characterMakers.push(() => makeCharacter(
  20079. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20080. {
  20081. front: {
  20082. height: math.unit(6, "feet"),
  20083. weight: math.unit(150, "lb"),
  20084. name: "Front",
  20085. image: {
  20086. source: "./media/characters/hipster/front.svg",
  20087. extra: 1312 / 1209,
  20088. bottom: 0.025
  20089. }
  20090. },
  20091. back: {
  20092. height: math.unit(6, "feet"),
  20093. weight: math.unit(150, "lb"),
  20094. name: "Back",
  20095. image: {
  20096. source: "./media/characters/hipster/back.svg",
  20097. extra: 1281 / 1196,
  20098. bottom: 0.01
  20099. }
  20100. },
  20101. },
  20102. [
  20103. {
  20104. name: "Micro",
  20105. height: math.unit(1, "mm")
  20106. },
  20107. {
  20108. name: "Normal",
  20109. height: math.unit(4, "inches"),
  20110. default: true
  20111. },
  20112. {
  20113. name: "Macro",
  20114. height: math.unit(500, "feet")
  20115. },
  20116. {
  20117. name: "Megamacro",
  20118. height: math.unit(1000, "miles")
  20119. },
  20120. ]
  20121. ))
  20122. characterMakers.push(() => makeCharacter(
  20123. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20124. {
  20125. front: {
  20126. height: math.unit(6, "feet"),
  20127. weight: math.unit(150, "lb"),
  20128. name: "Front",
  20129. image: {
  20130. source: "./media/characters/tendirmuldr/front.svg",
  20131. extra: 1878 / 1772,
  20132. bottom: 0.015
  20133. }
  20134. },
  20135. },
  20136. [
  20137. {
  20138. name: "Megamacro",
  20139. height: math.unit(1500, "miles"),
  20140. default: true
  20141. },
  20142. ]
  20143. ))
  20144. characterMakers.push(() => makeCharacter(
  20145. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20146. {
  20147. front: {
  20148. height: math.unit(14, "feet"),
  20149. weight: math.unit(12000, "lb"),
  20150. name: "Front",
  20151. image: {
  20152. source: "./media/characters/mort/front.svg",
  20153. extra: 365 / 318,
  20154. bottom: 0.01
  20155. }
  20156. },
  20157. side: {
  20158. height: math.unit(14, "feet"),
  20159. weight: math.unit(12000, "lb"),
  20160. name: "Side",
  20161. image: {
  20162. source: "./media/characters/mort/side.svg",
  20163. extra: 365 / 318,
  20164. bottom: 0.052
  20165. },
  20166. default: true
  20167. },
  20168. back: {
  20169. height: math.unit(14, "feet"),
  20170. weight: math.unit(12000, "lb"),
  20171. name: "Back",
  20172. image: {
  20173. source: "./media/characters/mort/back.svg",
  20174. extra: 371 / 332,
  20175. bottom: 0.18
  20176. }
  20177. },
  20178. },
  20179. [
  20180. {
  20181. name: "Normal",
  20182. height: math.unit(14, "feet"),
  20183. default: true
  20184. },
  20185. ]
  20186. ))
  20187. characterMakers.push(() => makeCharacter(
  20188. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20189. {
  20190. front: {
  20191. height: math.unit(8, "feet"),
  20192. weight: math.unit(1, "ton"),
  20193. name: "Front",
  20194. image: {
  20195. source: "./media/characters/lycoa/front.svg",
  20196. extra: 1875 / 1789,
  20197. bottom: 0.022
  20198. }
  20199. },
  20200. back: {
  20201. height: math.unit(8, "feet"),
  20202. weight: math.unit(1, "ton"),
  20203. name: "Back",
  20204. image: {
  20205. source: "./media/characters/lycoa/back.svg",
  20206. extra: 1835 / 1781,
  20207. bottom: 0.03
  20208. }
  20209. },
  20210. head: {
  20211. height: math.unit(2.1, "feet"),
  20212. name: "Head",
  20213. image: {
  20214. source: "./media/characters/lycoa/head.svg"
  20215. }
  20216. },
  20217. tailmaw: {
  20218. height: math.unit(1.9, "feet"),
  20219. name: "Tailmaw",
  20220. image: {
  20221. source: "./media/characters/lycoa/tailmaw.svg"
  20222. }
  20223. },
  20224. tentacles: {
  20225. height: math.unit(2.1, "feet"),
  20226. name: "Tentacles",
  20227. image: {
  20228. source: "./media/characters/lycoa/tentacles.svg"
  20229. }
  20230. },
  20231. dick: {
  20232. height: math.unit(1.73, "feet"),
  20233. name: "Dick",
  20234. image: {
  20235. source: "./media/characters/lycoa/dick.svg"
  20236. }
  20237. },
  20238. },
  20239. [
  20240. {
  20241. name: "Normal",
  20242. height: math.unit(8, "feet"),
  20243. default: true
  20244. },
  20245. {
  20246. name: "Macro",
  20247. height: math.unit(30, "feet")
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20253. {
  20254. front: {
  20255. height: math.unit(4 + 2 / 12, "feet"),
  20256. weight: math.unit(70, "lb"),
  20257. name: "Front",
  20258. image: {
  20259. source: "./media/characters/naldara/front.svg",
  20260. extra: 841 / 720,
  20261. bottom: 0.04
  20262. }
  20263. },
  20264. naga: {
  20265. height: math.unit(23, "feet"),
  20266. weight: math.unit(15000, "kg"),
  20267. name: "Naga",
  20268. image: {
  20269. source: "./media/characters/naldara/naga.svg",
  20270. extra: 3290 / 2959,
  20271. bottom: 124 / 3432
  20272. }
  20273. },
  20274. },
  20275. [
  20276. {
  20277. name: "Normal",
  20278. height: math.unit(4 + 2 / 12, "feet"),
  20279. default: true
  20280. },
  20281. ]
  20282. ))
  20283. characterMakers.push(() => makeCharacter(
  20284. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20285. {
  20286. front: {
  20287. height: math.unit(13 + 7 / 12, "feet"),
  20288. weight: math.unit(1500, "lb"),
  20289. name: "Front",
  20290. image: {
  20291. source: "./media/characters/briar/front.svg",
  20292. extra: 626 / 596,
  20293. bottom: 0.08
  20294. }
  20295. },
  20296. },
  20297. [
  20298. {
  20299. name: "Normal",
  20300. height: math.unit(13 + 7 / 12, "feet"),
  20301. default: true
  20302. },
  20303. ]
  20304. ))
  20305. characterMakers.push(() => makeCharacter(
  20306. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20307. {
  20308. side: {
  20309. height: math.unit(10, "feet"),
  20310. weight: math.unit(500, "lb"),
  20311. name: "Side",
  20312. image: {
  20313. source: "./media/characters/vanguard/side.svg",
  20314. extra: 502 / 425,
  20315. bottom: 0.087
  20316. }
  20317. },
  20318. },
  20319. [
  20320. {
  20321. name: "Normal",
  20322. height: math.unit(10, "feet"),
  20323. default: true
  20324. },
  20325. ]
  20326. ))
  20327. characterMakers.push(() => makeCharacter(
  20328. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20329. {
  20330. front: {
  20331. height: math.unit(7.5, "feet"),
  20332. weight: math.unit(2, "lb"),
  20333. name: "Front",
  20334. image: {
  20335. source: "./media/characters/artemis/front.svg",
  20336. extra: 1192 / 1075,
  20337. bottom: 0.07
  20338. }
  20339. },
  20340. frontNsfw: {
  20341. height: math.unit(7.5, "feet"),
  20342. weight: math.unit(2, "lb"),
  20343. name: "Front (NSFW)",
  20344. image: {
  20345. source: "./media/characters/artemis/front-nsfw.svg",
  20346. extra: 1192 / 1075,
  20347. bottom: 0.07
  20348. }
  20349. },
  20350. frontNsfwer: {
  20351. height: math.unit(7.5, "feet"),
  20352. weight: math.unit(2, "lb"),
  20353. name: "Front (NSFW-er)",
  20354. image: {
  20355. source: "./media/characters/artemis/front-nsfwer.svg",
  20356. extra: 1192 / 1075,
  20357. bottom: 0.07
  20358. }
  20359. },
  20360. side: {
  20361. height: math.unit(7.5, "feet"),
  20362. weight: math.unit(2, "lb"),
  20363. name: "Side",
  20364. image: {
  20365. source: "./media/characters/artemis/side.svg",
  20366. extra: 1192 / 1075,
  20367. bottom: 0.07
  20368. }
  20369. },
  20370. sideNsfw: {
  20371. height: math.unit(7.5, "feet"),
  20372. weight: math.unit(2, "lb"),
  20373. name: "Side (NSFW)",
  20374. image: {
  20375. source: "./media/characters/artemis/side-nsfw.svg",
  20376. extra: 1192 / 1075,
  20377. bottom: 0.07
  20378. }
  20379. },
  20380. sideNsfwer: {
  20381. height: math.unit(7.5, "feet"),
  20382. weight: math.unit(2, "lb"),
  20383. name: "Side (NSFW-er)",
  20384. image: {
  20385. source: "./media/characters/artemis/side-nsfwer.svg",
  20386. extra: 1192 / 1075,
  20387. bottom: 0.07
  20388. }
  20389. },
  20390. maw: {
  20391. height: math.unit(1.1, "feet"),
  20392. name: "Maw",
  20393. image: {
  20394. source: "./media/characters/artemis/maw.svg"
  20395. }
  20396. },
  20397. stomach: {
  20398. height: math.unit(0.95, "feet"),
  20399. name: "Stomach",
  20400. image: {
  20401. source: "./media/characters/artemis/stomach.svg"
  20402. }
  20403. },
  20404. dickCanine: {
  20405. height: math.unit(1, "feet"),
  20406. name: "Dick (Canine)",
  20407. image: {
  20408. source: "./media/characters/artemis/dick-canine.svg"
  20409. }
  20410. },
  20411. dickEquine: {
  20412. height: math.unit(0.85, "feet"),
  20413. name: "Dick (Equine)",
  20414. image: {
  20415. source: "./media/characters/artemis/dick-equine.svg"
  20416. }
  20417. },
  20418. dickExotic: {
  20419. height: math.unit(0.85, "feet"),
  20420. name: "Dick (Exotic)",
  20421. image: {
  20422. source: "./media/characters/artemis/dick-exotic.svg"
  20423. }
  20424. },
  20425. },
  20426. [
  20427. {
  20428. name: "Normal",
  20429. height: math.unit(7.5, "feet"),
  20430. default: true
  20431. },
  20432. {
  20433. name: "Enlarged",
  20434. height: math.unit(12, "feet")
  20435. },
  20436. ]
  20437. ))
  20438. characterMakers.push(() => makeCharacter(
  20439. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20440. {
  20441. front: {
  20442. height: math.unit(5 + 3 / 12, "feet"),
  20443. weight: math.unit(160, "lb"),
  20444. name: "Front",
  20445. image: {
  20446. source: "./media/characters/kira/front.svg",
  20447. extra: 906 / 786,
  20448. bottom: 0.01
  20449. }
  20450. },
  20451. back: {
  20452. height: math.unit(5 + 3 / 12, "feet"),
  20453. weight: math.unit(160, "lb"),
  20454. name: "Back",
  20455. image: {
  20456. source: "./media/characters/kira/back.svg",
  20457. extra: 882 / 757,
  20458. bottom: 0.005
  20459. }
  20460. },
  20461. frontDressed: {
  20462. height: math.unit(5 + 3 / 12, "feet"),
  20463. weight: math.unit(160, "lb"),
  20464. name: "Front (Dressed)",
  20465. image: {
  20466. source: "./media/characters/kira/front-dressed.svg",
  20467. extra: 906 / 786,
  20468. bottom: 0.01
  20469. }
  20470. },
  20471. beans: {
  20472. height: math.unit(0.92, "feet"),
  20473. name: "Beans",
  20474. image: {
  20475. source: "./media/characters/kira/beans.svg"
  20476. }
  20477. },
  20478. },
  20479. [
  20480. {
  20481. name: "Normal",
  20482. height: math.unit(5 + 3 / 12, "feet"),
  20483. default: true
  20484. },
  20485. ]
  20486. ))
  20487. characterMakers.push(() => makeCharacter(
  20488. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20489. {
  20490. front: {
  20491. height: math.unit(5 + 4 / 12, "feet"),
  20492. weight: math.unit(145, "lb"),
  20493. name: "Front",
  20494. image: {
  20495. source: "./media/characters/scramble/front.svg",
  20496. extra: 763 / 727,
  20497. bottom: 0.05
  20498. }
  20499. },
  20500. back: {
  20501. height: math.unit(5 + 4 / 12, "feet"),
  20502. weight: math.unit(145, "lb"),
  20503. name: "Back",
  20504. image: {
  20505. source: "./media/characters/scramble/back.svg",
  20506. extra: 826 / 737,
  20507. bottom: 0.002
  20508. }
  20509. },
  20510. },
  20511. [
  20512. {
  20513. name: "Normal",
  20514. height: math.unit(5 + 4 / 12, "feet"),
  20515. default: true
  20516. },
  20517. ]
  20518. ))
  20519. characterMakers.push(() => makeCharacter(
  20520. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20521. {
  20522. side: {
  20523. height: math.unit(6 + 2 / 12, "feet"),
  20524. weight: math.unit(190, "lb"),
  20525. name: "Side",
  20526. image: {
  20527. source: "./media/characters/biscuit/side.svg",
  20528. extra: 858 / 791,
  20529. bottom: 0.044
  20530. }
  20531. },
  20532. },
  20533. [
  20534. {
  20535. name: "Normal",
  20536. height: math.unit(6 + 2 / 12, "feet"),
  20537. default: true
  20538. },
  20539. ]
  20540. ))
  20541. characterMakers.push(() => makeCharacter(
  20542. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20543. {
  20544. front: {
  20545. height: math.unit(5 + 2 / 12, "feet"),
  20546. weight: math.unit(120, "lb"),
  20547. name: "Front",
  20548. image: {
  20549. source: "./media/characters/poffin/front.svg",
  20550. extra: 786 / 680,
  20551. bottom: 0.005
  20552. }
  20553. },
  20554. },
  20555. [
  20556. {
  20557. name: "Normal",
  20558. height: math.unit(5 + 2 / 12, "feet"),
  20559. default: true
  20560. },
  20561. ]
  20562. ))
  20563. characterMakers.push(() => makeCharacter(
  20564. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20565. {
  20566. front: {
  20567. height: math.unit(6 + 3 / 12, "feet"),
  20568. weight: math.unit(519, "lb"),
  20569. name: "Front",
  20570. image: {
  20571. source: "./media/characters/dhari/front.svg",
  20572. extra: 1048 / 946,
  20573. bottom: 0.015
  20574. }
  20575. },
  20576. back: {
  20577. height: math.unit(6 + 3 / 12, "feet"),
  20578. weight: math.unit(519, "lb"),
  20579. name: "Back",
  20580. image: {
  20581. source: "./media/characters/dhari/back.svg",
  20582. extra: 1048 / 931,
  20583. bottom: 0.005
  20584. }
  20585. },
  20586. frontDressed: {
  20587. height: math.unit(6 + 3 / 12, "feet"),
  20588. weight: math.unit(519, "lb"),
  20589. name: "Front (Dressed)",
  20590. image: {
  20591. source: "./media/characters/dhari/front-dressed.svg",
  20592. extra: 1713 / 1546,
  20593. bottom: 0.02
  20594. }
  20595. },
  20596. backDressed: {
  20597. height: math.unit(6 + 3 / 12, "feet"),
  20598. weight: math.unit(519, "lb"),
  20599. name: "Back (Dressed)",
  20600. image: {
  20601. source: "./media/characters/dhari/back-dressed.svg",
  20602. extra: 1699 / 1537,
  20603. bottom: 0.01
  20604. }
  20605. },
  20606. maw: {
  20607. height: math.unit(0.95, "feet"),
  20608. name: "Maw",
  20609. image: {
  20610. source: "./media/characters/dhari/maw.svg"
  20611. }
  20612. },
  20613. wereFront: {
  20614. height: math.unit(12 + 8 / 12, "feet"),
  20615. weight: math.unit(4000, "lb"),
  20616. name: "Front (Were)",
  20617. image: {
  20618. source: "./media/characters/dhari/were-front.svg",
  20619. extra: 1065 / 969,
  20620. bottom: 0.015
  20621. }
  20622. },
  20623. wereBack: {
  20624. height: math.unit(12 + 8 / 12, "feet"),
  20625. weight: math.unit(4000, "lb"),
  20626. name: "Back (Were)",
  20627. image: {
  20628. source: "./media/characters/dhari/were-back.svg",
  20629. extra: 1065 / 969,
  20630. bottom: 0.012
  20631. }
  20632. },
  20633. wereMaw: {
  20634. height: math.unit(0.625, "meters"),
  20635. name: "Maw (Were)",
  20636. image: {
  20637. source: "./media/characters/dhari/were-maw.svg"
  20638. }
  20639. },
  20640. },
  20641. [
  20642. {
  20643. name: "Normal",
  20644. height: math.unit(6 + 3 / 12, "feet"),
  20645. default: true
  20646. },
  20647. ]
  20648. ))
  20649. characterMakers.push(() => makeCharacter(
  20650. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20651. {
  20652. anthro: {
  20653. height: math.unit(5 + 7 / 12, "feet"),
  20654. weight: math.unit(175, "lb"),
  20655. name: "Anthro",
  20656. image: {
  20657. source: "./media/characters/rena-dyne/anthro.svg",
  20658. extra: 1849 / 1785,
  20659. bottom: 0.005
  20660. }
  20661. },
  20662. taur: {
  20663. height: math.unit(15 + 6 / 12, "feet"),
  20664. weight: math.unit(8000, "lb"),
  20665. name: "Taur",
  20666. image: {
  20667. source: "./media/characters/rena-dyne/taur.svg",
  20668. extra: 2315 / 2234,
  20669. bottom: 0.033
  20670. }
  20671. },
  20672. },
  20673. [
  20674. {
  20675. name: "Normal",
  20676. height: math.unit(5 + 7 / 12, "feet"),
  20677. default: true
  20678. },
  20679. ]
  20680. ))
  20681. characterMakers.push(() => makeCharacter(
  20682. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20683. {
  20684. front: {
  20685. height: math.unit(8, "feet"),
  20686. weight: math.unit(600, "lb"),
  20687. name: "Front",
  20688. image: {
  20689. source: "./media/characters/weremeep/front.svg",
  20690. extra: 967 / 862,
  20691. bottom: 0.01
  20692. }
  20693. },
  20694. },
  20695. [
  20696. {
  20697. name: "Normal",
  20698. height: math.unit(8, "feet"),
  20699. default: true
  20700. },
  20701. {
  20702. name: "Lorg",
  20703. height: math.unit(12, "feet")
  20704. },
  20705. {
  20706. name: "Oh Lawd She Comin'",
  20707. height: math.unit(20, "feet")
  20708. },
  20709. ]
  20710. ))
  20711. characterMakers.push(() => makeCharacter(
  20712. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20713. {
  20714. front: {
  20715. height: math.unit(4, "feet"),
  20716. weight: math.unit(90, "lb"),
  20717. name: "Front",
  20718. image: {
  20719. source: "./media/characters/reza/front.svg",
  20720. extra: 1183 / 1111,
  20721. bottom: 0.017
  20722. }
  20723. },
  20724. back: {
  20725. height: math.unit(4, "feet"),
  20726. weight: math.unit(90, "lb"),
  20727. name: "Back",
  20728. image: {
  20729. source: "./media/characters/reza/back.svg",
  20730. extra: 1183 / 1111,
  20731. bottom: 0.01
  20732. }
  20733. },
  20734. drake: {
  20735. height: math.unit(30, "feet"),
  20736. weight: math.unit(246960, "lb"),
  20737. name: "Drake",
  20738. image: {
  20739. source: "./media/characters/reza/drake.svg",
  20740. extra: 2350 / 2024,
  20741. bottom: 60.7 / 2403
  20742. }
  20743. },
  20744. },
  20745. [
  20746. {
  20747. name: "Normal",
  20748. height: math.unit(4, "feet"),
  20749. default: true
  20750. },
  20751. ]
  20752. ))
  20753. characterMakers.push(() => makeCharacter(
  20754. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20755. {
  20756. side: {
  20757. height: math.unit(15, "feet"),
  20758. weight: math.unit(14, "tons"),
  20759. name: "Side",
  20760. image: {
  20761. source: "./media/characters/athea/side.svg",
  20762. extra: 960 / 540,
  20763. bottom: 0.003
  20764. }
  20765. },
  20766. sitting: {
  20767. height: math.unit(6 * 2.85, "feet"),
  20768. weight: math.unit(14, "tons"),
  20769. name: "Sitting",
  20770. image: {
  20771. source: "./media/characters/athea/sitting.svg",
  20772. extra: 621 / 581,
  20773. bottom: 0.075
  20774. }
  20775. },
  20776. maw: {
  20777. height: math.unit(7.59498031496063, "feet"),
  20778. name: "Maw",
  20779. image: {
  20780. source: "./media/characters/athea/maw.svg"
  20781. }
  20782. },
  20783. },
  20784. [
  20785. {
  20786. name: "Lap Cat",
  20787. height: math.unit(2.5, "feet")
  20788. },
  20789. {
  20790. name: "Minimacro",
  20791. height: math.unit(15, "feet"),
  20792. default: true
  20793. },
  20794. {
  20795. name: "Macro",
  20796. height: math.unit(120, "feet")
  20797. },
  20798. {
  20799. name: "Macro+",
  20800. height: math.unit(640, "feet")
  20801. },
  20802. {
  20803. name: "Colossus",
  20804. height: math.unit(2.2, "miles")
  20805. },
  20806. ]
  20807. ))
  20808. characterMakers.push(() => makeCharacter(
  20809. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20810. {
  20811. front: {
  20812. height: math.unit(8 + 8 / 12, "feet"),
  20813. weight: math.unit(130, "kg"),
  20814. name: "Front",
  20815. image: {
  20816. source: "./media/characters/seroko/front.svg",
  20817. extra: 1385 / 1280,
  20818. bottom: 0.025
  20819. }
  20820. },
  20821. back: {
  20822. height: math.unit(8 + 8 / 12, "feet"),
  20823. weight: math.unit(130, "kg"),
  20824. name: "Back",
  20825. image: {
  20826. source: "./media/characters/seroko/back.svg",
  20827. extra: 1369 / 1238,
  20828. bottom: 0.018
  20829. }
  20830. },
  20831. frontDressed: {
  20832. height: math.unit(8 + 8 / 12, "feet"),
  20833. weight: math.unit(130, "kg"),
  20834. name: "Front (Dressed)",
  20835. image: {
  20836. source: "./media/characters/seroko/front-dressed.svg",
  20837. extra: 1366 / 1275,
  20838. bottom: 0.03
  20839. }
  20840. },
  20841. },
  20842. [
  20843. {
  20844. name: "Normal",
  20845. height: math.unit(8 + 8 / 12, "feet"),
  20846. default: true
  20847. },
  20848. ]
  20849. ))
  20850. characterMakers.push(() => makeCharacter(
  20851. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20852. {
  20853. front: {
  20854. height: math.unit(5.5, "feet"),
  20855. weight: math.unit(160, "lb"),
  20856. name: "Front",
  20857. image: {
  20858. source: "./media/characters/quatzi/front.svg",
  20859. extra: 2346 / 2242,
  20860. bottom: 0.015
  20861. }
  20862. },
  20863. },
  20864. [
  20865. {
  20866. name: "Normal",
  20867. height: math.unit(5.5, "feet"),
  20868. default: true
  20869. },
  20870. {
  20871. name: "Big",
  20872. height: math.unit(7.7, "feet")
  20873. },
  20874. ]
  20875. ))
  20876. characterMakers.push(() => makeCharacter(
  20877. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20878. {
  20879. front: {
  20880. height: math.unit(5 + 11 / 12, "feet"),
  20881. weight: math.unit(180, "lb"),
  20882. name: "Front",
  20883. image: {
  20884. source: "./media/characters/sen/front.svg",
  20885. extra: 1321 / 1254,
  20886. bottom: 0.015
  20887. }
  20888. },
  20889. side: {
  20890. height: math.unit(5 + 11 / 12, "feet"),
  20891. weight: math.unit(180, "lb"),
  20892. name: "Side",
  20893. image: {
  20894. source: "./media/characters/sen/side.svg",
  20895. extra: 1321 / 1254,
  20896. bottom: 0.007
  20897. }
  20898. },
  20899. back: {
  20900. height: math.unit(5 + 11 / 12, "feet"),
  20901. weight: math.unit(180, "lb"),
  20902. name: "Back",
  20903. image: {
  20904. source: "./media/characters/sen/back.svg",
  20905. extra: 1321 / 1254
  20906. }
  20907. },
  20908. },
  20909. [
  20910. {
  20911. name: "Normal",
  20912. height: math.unit(5 + 11 / 12, "feet"),
  20913. default: true
  20914. },
  20915. ]
  20916. ))
  20917. characterMakers.push(() => makeCharacter(
  20918. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20919. {
  20920. front: {
  20921. height: math.unit(166.6, "cm"),
  20922. weight: math.unit(66.6, "kg"),
  20923. name: "Front",
  20924. image: {
  20925. source: "./media/characters/fruity/front.svg",
  20926. extra: 1510 / 1386,
  20927. bottom: 0.04
  20928. }
  20929. },
  20930. back: {
  20931. height: math.unit(166.6, "cm"),
  20932. weight: math.unit(66.6, "lb"),
  20933. name: "Back",
  20934. image: {
  20935. source: "./media/characters/fruity/back.svg",
  20936. extra: 1563 / 1435,
  20937. bottom: 0.005
  20938. }
  20939. },
  20940. },
  20941. [
  20942. {
  20943. name: "Normal",
  20944. height: math.unit(166.6, "cm"),
  20945. default: true
  20946. },
  20947. {
  20948. name: "Demonic",
  20949. height: math.unit(166.6, "feet")
  20950. },
  20951. ]
  20952. ))
  20953. characterMakers.push(() => makeCharacter(
  20954. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20955. {
  20956. side: {
  20957. height: math.unit(10, "feet"),
  20958. weight: math.unit(500, "lb"),
  20959. name: "Side",
  20960. image: {
  20961. source: "./media/characters/zost/side.svg",
  20962. extra: 966 / 880,
  20963. bottom: 0.075
  20964. }
  20965. },
  20966. mawFront: {
  20967. height: math.unit(1.08, "meters"),
  20968. name: "Maw (Front)",
  20969. image: {
  20970. source: "./media/characters/zost/maw-front.svg"
  20971. }
  20972. },
  20973. mawSide: {
  20974. height: math.unit(2.66, "feet"),
  20975. name: "Maw (Side)",
  20976. image: {
  20977. source: "./media/characters/zost/maw-side.svg"
  20978. }
  20979. },
  20980. },
  20981. [
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(10, "feet"),
  20985. default: true
  20986. },
  20987. ]
  20988. ))
  20989. characterMakers.push(() => makeCharacter(
  20990. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20991. {
  20992. front: {
  20993. height: math.unit(5 + 4 / 12, "feet"),
  20994. weight: math.unit(120, "lb"),
  20995. name: "Front",
  20996. image: {
  20997. source: "./media/characters/luci/front.svg",
  20998. extra: 1985 / 1884,
  20999. bottom: 0.04
  21000. }
  21001. },
  21002. back: {
  21003. height: math.unit(5 + 4 / 12, "feet"),
  21004. weight: math.unit(120, "lb"),
  21005. name: "Back",
  21006. image: {
  21007. source: "./media/characters/luci/back.svg",
  21008. extra: 1892 / 1791,
  21009. bottom: 0.002
  21010. }
  21011. },
  21012. },
  21013. [
  21014. {
  21015. name: "Normal",
  21016. height: math.unit(5 + 4 / 12, "feet"),
  21017. default: true
  21018. },
  21019. ]
  21020. ))
  21021. characterMakers.push(() => makeCharacter(
  21022. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21023. {
  21024. front: {
  21025. height: math.unit(1500, "feet"),
  21026. weight: math.unit(3.8e6, "tons"),
  21027. name: "Front",
  21028. image: {
  21029. source: "./media/characters/2th/front.svg",
  21030. extra: 3489 / 3350,
  21031. bottom: 0.1
  21032. }
  21033. },
  21034. foot: {
  21035. height: math.unit(461, "feet"),
  21036. name: "Foot",
  21037. image: {
  21038. source: "./media/characters/2th/foot.svg"
  21039. }
  21040. },
  21041. },
  21042. [
  21043. {
  21044. name: "\"Micro\"",
  21045. height: math.unit(15 + 7 / 12, "feet")
  21046. },
  21047. {
  21048. name: "Normal",
  21049. height: math.unit(1500, "feet"),
  21050. default: true
  21051. },
  21052. {
  21053. name: "Macro",
  21054. height: math.unit(5000, "feet")
  21055. },
  21056. {
  21057. name: "Megamacro",
  21058. height: math.unit(15, "miles")
  21059. },
  21060. {
  21061. name: "Gigamacro",
  21062. height: math.unit(4000, "miles")
  21063. },
  21064. {
  21065. name: "Galactic",
  21066. height: math.unit(50, "AU")
  21067. },
  21068. ]
  21069. ))
  21070. characterMakers.push(() => makeCharacter(
  21071. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21072. {
  21073. front: {
  21074. height: math.unit(5 + 6 / 12, "feet"),
  21075. weight: math.unit(220, "lb"),
  21076. name: "Front",
  21077. image: {
  21078. source: "./media/characters/amethyst/front.svg",
  21079. extra: 2078 / 2040,
  21080. bottom: 0.045
  21081. }
  21082. },
  21083. back: {
  21084. height: math.unit(5 + 6 / 12, "feet"),
  21085. weight: math.unit(220, "lb"),
  21086. name: "Back",
  21087. image: {
  21088. source: "./media/characters/amethyst/back.svg",
  21089. extra: 2021 / 1989,
  21090. bottom: 0.02
  21091. }
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Normal",
  21097. height: math.unit(5 + 6 / 12, "feet"),
  21098. default: true
  21099. },
  21100. ]
  21101. ))
  21102. characterMakers.push(() => makeCharacter(
  21103. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21104. {
  21105. front: {
  21106. height: math.unit(4 + 11 / 12, "feet"),
  21107. weight: math.unit(120, "lb"),
  21108. name: "Front",
  21109. image: {
  21110. source: "./media/characters/yumi-akiyama/front.svg",
  21111. extra: 1327 / 1235,
  21112. bottom: 0.02
  21113. }
  21114. },
  21115. back: {
  21116. height: math.unit(4 + 11 / 12, "feet"),
  21117. weight: math.unit(120, "lb"),
  21118. name: "Back",
  21119. image: {
  21120. source: "./media/characters/yumi-akiyama/back.svg",
  21121. extra: 1287 / 1245,
  21122. bottom: 0.002
  21123. }
  21124. },
  21125. },
  21126. [
  21127. {
  21128. name: "Galactic",
  21129. height: math.unit(50, "galaxies"),
  21130. default: true
  21131. },
  21132. {
  21133. name: "Universal",
  21134. height: math.unit(100, "universes")
  21135. },
  21136. ]
  21137. ))
  21138. characterMakers.push(() => makeCharacter(
  21139. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21140. {
  21141. front: {
  21142. height: math.unit(8, "feet"),
  21143. weight: math.unit(500, "lb"),
  21144. name: "Front",
  21145. image: {
  21146. source: "./media/characters/rifter-yrmori/front.svg",
  21147. extra: 1180 / 1125,
  21148. bottom: 0.02
  21149. }
  21150. },
  21151. back: {
  21152. height: math.unit(8, "feet"),
  21153. weight: math.unit(500, "lb"),
  21154. name: "Back",
  21155. image: {
  21156. source: "./media/characters/rifter-yrmori/back.svg",
  21157. extra: 1190 / 1145,
  21158. bottom: 0.001
  21159. }
  21160. },
  21161. wings: {
  21162. height: math.unit(7.75, "feet"),
  21163. weight: math.unit(500, "lb"),
  21164. name: "Wings",
  21165. image: {
  21166. source: "./media/characters/rifter-yrmori/wings.svg",
  21167. extra: 1357 / 1285
  21168. }
  21169. },
  21170. maw: {
  21171. height: math.unit(0.8, "feet"),
  21172. name: "Maw",
  21173. image: {
  21174. source: "./media/characters/rifter-yrmori/maw.svg"
  21175. }
  21176. },
  21177. mawfront: {
  21178. height: math.unit(1.45, "feet"),
  21179. name: "Maw (Front)",
  21180. image: {
  21181. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21182. }
  21183. },
  21184. },
  21185. [
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(8, "feet"),
  21189. default: true
  21190. },
  21191. {
  21192. name: "Macro",
  21193. height: math.unit(42, "meters")
  21194. },
  21195. ]
  21196. ))
  21197. characterMakers.push(() => makeCharacter(
  21198. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21199. {
  21200. were: {
  21201. height: math.unit(25 + 6 / 12, "feet"),
  21202. weight: math.unit(10000, "lb"),
  21203. name: "Were",
  21204. image: {
  21205. source: "./media/characters/tahajin/were.svg",
  21206. extra: 801 / 770,
  21207. bottom: 0.042
  21208. }
  21209. },
  21210. aquatic: {
  21211. height: math.unit(6 + 4 / 12, "feet"),
  21212. weight: math.unit(160, "lb"),
  21213. name: "Aquatic",
  21214. image: {
  21215. source: "./media/characters/tahajin/aquatic.svg",
  21216. extra: 572 / 542,
  21217. bottom: 0.04
  21218. }
  21219. },
  21220. chow: {
  21221. height: math.unit(8 + 11 / 12, "feet"),
  21222. weight: math.unit(450, "lb"),
  21223. name: "Chow",
  21224. image: {
  21225. source: "./media/characters/tahajin/chow.svg",
  21226. extra: 660 / 640,
  21227. bottom: 0.015
  21228. }
  21229. },
  21230. demiNaga: {
  21231. height: math.unit(6 + 8 / 12, "feet"),
  21232. weight: math.unit(300, "lb"),
  21233. name: "Demi Naga",
  21234. image: {
  21235. source: "./media/characters/tahajin/demi-naga.svg",
  21236. extra: 643 / 615,
  21237. bottom: 0.1
  21238. }
  21239. },
  21240. data: {
  21241. height: math.unit(5, "inches"),
  21242. weight: math.unit(0.1, "lb"),
  21243. name: "Data",
  21244. image: {
  21245. source: "./media/characters/tahajin/data.svg"
  21246. }
  21247. },
  21248. fluu: {
  21249. height: math.unit(5 + 7 / 12, "feet"),
  21250. weight: math.unit(140, "lb"),
  21251. name: "Fluu",
  21252. image: {
  21253. source: "./media/characters/tahajin/fluu.svg",
  21254. extra: 628 / 592,
  21255. bottom: 0.02
  21256. }
  21257. },
  21258. starWarrior: {
  21259. height: math.unit(4 + 5 / 12, "feet"),
  21260. weight: math.unit(50, "lb"),
  21261. name: "Star Warrior",
  21262. image: {
  21263. source: "./media/characters/tahajin/star-warrior.svg"
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(25 + 6 / 12, "feet"),
  21271. default: true
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21277. {
  21278. front: {
  21279. height: math.unit(8, "feet"),
  21280. weight: math.unit(350, "lb"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/gabira/front.svg",
  21284. extra: 608 / 580,
  21285. bottom: 0.03
  21286. }
  21287. },
  21288. back: {
  21289. height: math.unit(8, "feet"),
  21290. weight: math.unit(350, "lb"),
  21291. name: "Back",
  21292. image: {
  21293. source: "./media/characters/gabira/back.svg",
  21294. extra: 608 / 580,
  21295. bottom: 0.03
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Normal",
  21302. height: math.unit(8, "feet"),
  21303. default: true
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21309. {
  21310. front: {
  21311. height: math.unit(5 + 3 / 12, "feet"),
  21312. weight: math.unit(137, "lb"),
  21313. name: "Front",
  21314. image: {
  21315. source: "./media/characters/sasha-katraine/front.svg",
  21316. bottom: 0.045
  21317. }
  21318. },
  21319. },
  21320. [
  21321. {
  21322. name: "Micro",
  21323. height: math.unit(5, "inches")
  21324. },
  21325. {
  21326. name: "Normal",
  21327. height: math.unit(5 + 3 / 12, "feet"),
  21328. default: true
  21329. },
  21330. ]
  21331. ))
  21332. characterMakers.push(() => makeCharacter(
  21333. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21334. {
  21335. side: {
  21336. height: math.unit(4, "inches"),
  21337. weight: math.unit(200, "grams"),
  21338. name: "Side",
  21339. image: {
  21340. source: "./media/characters/der/side.svg",
  21341. extra: 719 / 400,
  21342. bottom: 30.6 / 749.9187
  21343. }
  21344. },
  21345. },
  21346. [
  21347. {
  21348. name: "Micro",
  21349. height: math.unit(4, "inches"),
  21350. default: true
  21351. },
  21352. ]
  21353. ))
  21354. characterMakers.push(() => makeCharacter(
  21355. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21356. {
  21357. side: {
  21358. height: math.unit(30, "meters"),
  21359. weight: math.unit(700, "tonnes"),
  21360. name: "Side",
  21361. image: {
  21362. source: "./media/characters/fixerdragon/side.svg",
  21363. extra: (1293.0514 - 116.03) / 1106.86,
  21364. bottom: 116.03 / 1293.0514
  21365. }
  21366. },
  21367. },
  21368. [
  21369. {
  21370. name: "Planck",
  21371. height: math.unit(1.6e-35, "meters")
  21372. },
  21373. {
  21374. name: "Micro",
  21375. height: math.unit(0.4, "meters")
  21376. },
  21377. {
  21378. name: "Normal",
  21379. height: math.unit(30, "meters"),
  21380. default: true
  21381. },
  21382. {
  21383. name: "Megamacro",
  21384. height: math.unit(1.2, "megameters")
  21385. },
  21386. {
  21387. name: "Teramacro",
  21388. height: math.unit(130, "terameters")
  21389. },
  21390. {
  21391. name: "Yottamacro",
  21392. height: math.unit(6200, "yottameters")
  21393. },
  21394. ]
  21395. ));
  21396. characterMakers.push(() => makeCharacter(
  21397. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21398. {
  21399. front: {
  21400. height: math.unit(8, "feet"),
  21401. weight: math.unit(250, "lb"),
  21402. name: "Front",
  21403. image: {
  21404. source: "./media/characters/kite/front.svg",
  21405. extra: 2796 / 2659,
  21406. bottom: 0.002
  21407. }
  21408. },
  21409. },
  21410. [
  21411. {
  21412. name: "Normal",
  21413. height: math.unit(8, "feet"),
  21414. default: true
  21415. },
  21416. {
  21417. name: "Macro",
  21418. height: math.unit(360, "feet")
  21419. },
  21420. {
  21421. name: "Megamacro",
  21422. height: math.unit(1500, "feet")
  21423. },
  21424. ]
  21425. ))
  21426. characterMakers.push(() => makeCharacter(
  21427. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21428. {
  21429. front: {
  21430. height: math.unit(5 + 10 / 12, "feet"),
  21431. weight: math.unit(150, "lb"),
  21432. name: "Front",
  21433. image: {
  21434. source: "./media/characters/poojawa-vynar/front.svg",
  21435. extra: (1506.1547 - 55) / 1356.6,
  21436. bottom: 55 / 1506.1547
  21437. }
  21438. },
  21439. frontTailless: {
  21440. height: math.unit(5 + 10 / 12, "feet"),
  21441. weight: math.unit(150, "lb"),
  21442. name: "Front (Tailless)",
  21443. image: {
  21444. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21445. extra: (1506.1547 - 55) / 1356.6,
  21446. bottom: 55 / 1506.1547
  21447. }
  21448. },
  21449. },
  21450. [
  21451. {
  21452. name: "Normal",
  21453. height: math.unit(5 + 10 / 12, "feet"),
  21454. default: true
  21455. },
  21456. ]
  21457. ))
  21458. characterMakers.push(() => makeCharacter(
  21459. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21460. {
  21461. front: {
  21462. height: math.unit(293, "meters"),
  21463. weight: math.unit(70400, "tons"),
  21464. name: "Front",
  21465. image: {
  21466. source: "./media/characters/violette/front.svg",
  21467. extra: 1227 / 1180,
  21468. bottom: 0.005
  21469. }
  21470. },
  21471. back: {
  21472. height: math.unit(293, "meters"),
  21473. weight: math.unit(70400, "tons"),
  21474. name: "Back",
  21475. image: {
  21476. source: "./media/characters/violette/back.svg",
  21477. extra: 1227 / 1180,
  21478. bottom: 0.005
  21479. }
  21480. },
  21481. },
  21482. [
  21483. {
  21484. name: "Macro",
  21485. height: math.unit(293, "meters"),
  21486. default: true
  21487. },
  21488. ]
  21489. ))
  21490. characterMakers.push(() => makeCharacter(
  21491. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21492. {
  21493. front: {
  21494. height: math.unit(1050, "feet"),
  21495. weight: math.unit(200000, "tons"),
  21496. name: "Front",
  21497. image: {
  21498. source: "./media/characters/alessandra/front.svg",
  21499. extra: 960 / 912,
  21500. bottom: 0.06
  21501. }
  21502. },
  21503. },
  21504. [
  21505. {
  21506. name: "Macro",
  21507. height: math.unit(1050, "feet")
  21508. },
  21509. {
  21510. name: "Macro+",
  21511. height: math.unit(900, "meters"),
  21512. default: true
  21513. },
  21514. ]
  21515. ))
  21516. characterMakers.push(() => makeCharacter(
  21517. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21518. {
  21519. front: {
  21520. height: math.unit(5, "feet"),
  21521. weight: math.unit(187, "lb"),
  21522. name: "Front",
  21523. image: {
  21524. source: "./media/characters/person/front.svg",
  21525. extra: 3087 / 2945,
  21526. bottom: 91 / 3181
  21527. }
  21528. },
  21529. },
  21530. [
  21531. {
  21532. name: "Micro",
  21533. height: math.unit(3, "inches")
  21534. },
  21535. {
  21536. name: "Normal",
  21537. height: math.unit(5, "feet"),
  21538. default: true
  21539. },
  21540. {
  21541. name: "Macro",
  21542. height: math.unit(90, "feet")
  21543. },
  21544. {
  21545. name: "Max Size",
  21546. height: math.unit(280, "feet")
  21547. },
  21548. ]
  21549. ))
  21550. characterMakers.push(() => makeCharacter(
  21551. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21552. {
  21553. front: {
  21554. height: math.unit(4.5, "meters"),
  21555. weight: math.unit(3200, "lb"),
  21556. name: "Front",
  21557. image: {
  21558. source: "./media/characters/ty/front.svg",
  21559. extra: 1038 / 960,
  21560. bottom: 31.156 / 1068
  21561. }
  21562. },
  21563. back: {
  21564. height: math.unit(4.5, "meters"),
  21565. weight: math.unit(3200, "lb"),
  21566. name: "Back",
  21567. image: {
  21568. source: "./media/characters/ty/back.svg",
  21569. extra: 1044 / 966,
  21570. bottom: 7.48 / 1049
  21571. }
  21572. },
  21573. },
  21574. [
  21575. {
  21576. name: "Normal",
  21577. height: math.unit(4.5, "meters"),
  21578. default: true
  21579. },
  21580. ]
  21581. ))
  21582. characterMakers.push(() => makeCharacter(
  21583. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21584. {
  21585. front: {
  21586. height: math.unit(5 + 4 / 12, "feet"),
  21587. weight: math.unit(115, "lb"),
  21588. name: "Front",
  21589. image: {
  21590. source: "./media/characters/rocky/front.svg",
  21591. extra: 1012 / 975,
  21592. bottom: 54 / 1066
  21593. }
  21594. },
  21595. },
  21596. [
  21597. {
  21598. name: "Normal",
  21599. height: math.unit(5 + 4 / 12, "feet"),
  21600. default: true
  21601. },
  21602. ]
  21603. ))
  21604. characterMakers.push(() => makeCharacter(
  21605. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21606. {
  21607. upright: {
  21608. height: math.unit(6, "meters"),
  21609. weight: math.unit(4000, "kg"),
  21610. name: "Upright",
  21611. image: {
  21612. source: "./media/characters/ruin/upright.svg",
  21613. extra: 668 / 661,
  21614. bottom: 42 / 799.8396
  21615. }
  21616. },
  21617. },
  21618. [
  21619. {
  21620. name: "Normal",
  21621. height: math.unit(6, "meters"),
  21622. default: true
  21623. },
  21624. ]
  21625. ))
  21626. characterMakers.push(() => makeCharacter(
  21627. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21628. {
  21629. front: {
  21630. height: math.unit(5, "feet"),
  21631. weight: math.unit(106, "lb"),
  21632. name: "Front",
  21633. image: {
  21634. source: "./media/characters/robin/front.svg",
  21635. extra: 862 / 799,
  21636. bottom: 42.4 / 914.8856
  21637. }
  21638. },
  21639. },
  21640. [
  21641. {
  21642. name: "Normal",
  21643. height: math.unit(5, "feet"),
  21644. default: true
  21645. },
  21646. ]
  21647. ))
  21648. characterMakers.push(() => makeCharacter(
  21649. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21650. {
  21651. side: {
  21652. height: math.unit(3, "feet"),
  21653. weight: math.unit(225, "lb"),
  21654. name: "Side",
  21655. image: {
  21656. source: "./media/characters/saian/side.svg",
  21657. extra: 566 / 356,
  21658. bottom: 79.7 / 643
  21659. }
  21660. },
  21661. maw: {
  21662. height: math.unit(2.85, "feet"),
  21663. name: "Maw",
  21664. image: {
  21665. source: "./media/characters/saian/maw.svg"
  21666. }
  21667. },
  21668. },
  21669. [
  21670. {
  21671. name: "Normal",
  21672. height: math.unit(3, "feet"),
  21673. default: true
  21674. },
  21675. ]
  21676. ))
  21677. characterMakers.push(() => makeCharacter(
  21678. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21679. {
  21680. side: {
  21681. height: math.unit(8, "feet"),
  21682. weight: math.unit(300, "lb"),
  21683. name: "Side",
  21684. image: {
  21685. source: "./media/characters/equus-silvermane/side.svg",
  21686. extra: 2176 / 2050,
  21687. bottom: 65.7 / 2245
  21688. }
  21689. },
  21690. front: {
  21691. height: math.unit(8, "feet"),
  21692. weight: math.unit(300, "lb"),
  21693. name: "Front",
  21694. image: {
  21695. source: "./media/characters/equus-silvermane/front.svg",
  21696. extra: 4633 / 4400,
  21697. bottom: 71.3 / 4706.915
  21698. }
  21699. },
  21700. sideStepping: {
  21701. height: math.unit(8, "feet"),
  21702. weight: math.unit(300, "lb"),
  21703. name: "Side (Stepping)",
  21704. image: {
  21705. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21706. extra: 1968 / 1860,
  21707. bottom: 16.4 / 1989
  21708. }
  21709. },
  21710. },
  21711. [
  21712. {
  21713. name: "Normal",
  21714. height: math.unit(8, "feet")
  21715. },
  21716. {
  21717. name: "Minimacro",
  21718. height: math.unit(75, "feet"),
  21719. default: true
  21720. },
  21721. {
  21722. name: "Macro",
  21723. height: math.unit(150, "feet")
  21724. },
  21725. {
  21726. name: "Macro+",
  21727. height: math.unit(1000, "feet")
  21728. },
  21729. {
  21730. name: "Megamacro",
  21731. height: math.unit(1, "mile")
  21732. },
  21733. ]
  21734. ))
  21735. characterMakers.push(() => makeCharacter(
  21736. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21737. {
  21738. side: {
  21739. height: math.unit(20, "feet"),
  21740. weight: math.unit(30000, "kg"),
  21741. name: "Side",
  21742. image: {
  21743. source: "./media/characters/windar/side.svg",
  21744. extra: 1491 / 1248,
  21745. bottom: 82.56 / 1568
  21746. }
  21747. },
  21748. },
  21749. [
  21750. {
  21751. name: "Normal",
  21752. height: math.unit(20, "feet"),
  21753. default: true
  21754. },
  21755. ]
  21756. ))
  21757. characterMakers.push(() => makeCharacter(
  21758. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21759. {
  21760. side: {
  21761. height: math.unit(15.66, "feet"),
  21762. weight: math.unit(150, "lb"),
  21763. name: "Side",
  21764. image: {
  21765. source: "./media/characters/melody/side.svg",
  21766. extra: 1097 / 944,
  21767. bottom: 11.8 / 1109
  21768. }
  21769. },
  21770. sideOutfit: {
  21771. height: math.unit(15.66, "feet"),
  21772. weight: math.unit(150, "lb"),
  21773. name: "Side (Outfit)",
  21774. image: {
  21775. source: "./media/characters/melody/side-outfit.svg",
  21776. extra: 1097 / 944,
  21777. bottom: 11.8 / 1109
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(15.66, "feet"),
  21785. default: true
  21786. },
  21787. ]
  21788. ))
  21789. characterMakers.push(() => makeCharacter(
  21790. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21791. {
  21792. front: {
  21793. height: math.unit(8, "feet"),
  21794. weight: math.unit(325, "lb"),
  21795. name: "Front",
  21796. image: {
  21797. source: "./media/characters/windera/front.svg",
  21798. extra: 3180 / 2845,
  21799. bottom: 178 / 3365
  21800. }
  21801. },
  21802. },
  21803. [
  21804. {
  21805. name: "Normal",
  21806. height: math.unit(8, "feet"),
  21807. default: true
  21808. },
  21809. ]
  21810. ))
  21811. characterMakers.push(() => makeCharacter(
  21812. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21813. {
  21814. front: {
  21815. height: math.unit(28.75, "feet"),
  21816. weight: math.unit(2000, "kg"),
  21817. name: "Front",
  21818. image: {
  21819. source: "./media/characters/sonear/front.svg",
  21820. extra: 1041.1 / 964.9,
  21821. bottom: 53.7 / 1096.6
  21822. }
  21823. },
  21824. },
  21825. [
  21826. {
  21827. name: "Normal",
  21828. height: math.unit(28.75, "feet"),
  21829. default: true
  21830. },
  21831. ]
  21832. ))
  21833. characterMakers.push(() => makeCharacter(
  21834. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21835. {
  21836. side: {
  21837. height: math.unit(25.5, "feet"),
  21838. weight: math.unit(23000, "kg"),
  21839. name: "Side",
  21840. image: {
  21841. source: "./media/characters/kanara/side.svg"
  21842. }
  21843. },
  21844. },
  21845. [
  21846. {
  21847. name: "Normal",
  21848. height: math.unit(25.5, "feet"),
  21849. default: true
  21850. },
  21851. ]
  21852. ))
  21853. characterMakers.push(() => makeCharacter(
  21854. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21855. {
  21856. side: {
  21857. height: math.unit(10, "feet"),
  21858. weight: math.unit(1000, "kg"),
  21859. name: "Side",
  21860. image: {
  21861. source: "./media/characters/ereus/side.svg",
  21862. extra: 1157 / 959,
  21863. bottom: 153 / 1312.5
  21864. }
  21865. },
  21866. },
  21867. [
  21868. {
  21869. name: "Normal",
  21870. height: math.unit(10, "feet"),
  21871. default: true
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21877. {
  21878. side: {
  21879. height: math.unit(4.5, "feet"),
  21880. weight: math.unit(500, "lb"),
  21881. name: "Side",
  21882. image: {
  21883. source: "./media/characters/e-ter/side.svg",
  21884. extra: 1550 / 1248,
  21885. bottom: 146 / 1694
  21886. }
  21887. },
  21888. },
  21889. [
  21890. {
  21891. name: "Normal",
  21892. height: math.unit(4.5, "feet"),
  21893. default: true
  21894. },
  21895. ]
  21896. ))
  21897. characterMakers.push(() => makeCharacter(
  21898. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21899. {
  21900. side: {
  21901. height: math.unit(9.7, "feet"),
  21902. weight: math.unit(4000, "kg"),
  21903. name: "Side",
  21904. image: {
  21905. source: "./media/characters/yamie/side.svg"
  21906. }
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Normal",
  21912. height: math.unit(9.7, "feet"),
  21913. default: true
  21914. },
  21915. ]
  21916. ))
  21917. characterMakers.push(() => makeCharacter(
  21918. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21919. {
  21920. front: {
  21921. height: math.unit(50, "feet"),
  21922. weight: math.unit(50000, "kg"),
  21923. name: "Front",
  21924. image: {
  21925. source: "./media/characters/anders/front.svg",
  21926. extra: 570 / 539,
  21927. bottom: 14.7 / 586.7
  21928. }
  21929. },
  21930. },
  21931. [
  21932. {
  21933. name: "Large",
  21934. height: math.unit(50, "feet")
  21935. },
  21936. {
  21937. name: "Macro",
  21938. height: math.unit(2000, "feet"),
  21939. default: true
  21940. },
  21941. {
  21942. name: "Megamacro",
  21943. height: math.unit(12, "miles")
  21944. },
  21945. ]
  21946. ))
  21947. characterMakers.push(() => makeCharacter(
  21948. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21949. {
  21950. front: {
  21951. height: math.unit(7 + 2 / 12, "feet"),
  21952. weight: math.unit(300, "lb"),
  21953. name: "Front",
  21954. image: {
  21955. source: "./media/characters/reban/front.svg",
  21956. extra: 516 / 487,
  21957. bottom: 42.82 / 558.356
  21958. }
  21959. },
  21960. dick: {
  21961. height: math.unit(7 / 5, "feet"),
  21962. name: "Dick",
  21963. image: {
  21964. source: "./media/characters/reban/dick.svg"
  21965. }
  21966. },
  21967. },
  21968. [
  21969. {
  21970. name: "Natural Height",
  21971. height: math.unit(7 + 2 / 12, "feet")
  21972. },
  21973. {
  21974. name: "Macro",
  21975. height: math.unit(500, "feet"),
  21976. default: true
  21977. },
  21978. {
  21979. name: "Canon Height",
  21980. height: math.unit(50, "AU")
  21981. },
  21982. ]
  21983. ))
  21984. characterMakers.push(() => makeCharacter(
  21985. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21986. {
  21987. front: {
  21988. height: math.unit(6, "feet"),
  21989. weight: math.unit(150, "lb"),
  21990. name: "Front",
  21991. image: {
  21992. source: "./media/characters/terrance-keayes/front.svg",
  21993. extra: 1.005,
  21994. bottom: 151 / 1615
  21995. }
  21996. },
  21997. side: {
  21998. height: math.unit(6, "feet"),
  21999. weight: math.unit(150, "lb"),
  22000. name: "Side",
  22001. image: {
  22002. source: "./media/characters/terrance-keayes/side.svg",
  22003. extra: 1.005,
  22004. bottom: 129.4 / 1544
  22005. }
  22006. },
  22007. back: {
  22008. height: math.unit(6, "feet"),
  22009. weight: math.unit(150, "lb"),
  22010. name: "Back",
  22011. image: {
  22012. source: "./media/characters/terrance-keayes/back.svg",
  22013. extra: 1.005,
  22014. bottom: 58.4 / 1557.3
  22015. }
  22016. },
  22017. dick: {
  22018. height: math.unit(6 * 0.208, "feet"),
  22019. name: "Dick",
  22020. image: {
  22021. source: "./media/characters/terrance-keayes/dick.svg"
  22022. }
  22023. },
  22024. },
  22025. [
  22026. {
  22027. name: "Canon Height",
  22028. height: math.unit(35, "miles"),
  22029. default: true
  22030. },
  22031. ]
  22032. ))
  22033. characterMakers.push(() => makeCharacter(
  22034. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22035. {
  22036. front: {
  22037. height: math.unit(6, "feet"),
  22038. weight: math.unit(150, "lb"),
  22039. name: "Front",
  22040. image: {
  22041. source: "./media/characters/ofelia/front.svg",
  22042. extra: 546 / 541,
  22043. bottom: 39 / 583
  22044. }
  22045. },
  22046. back: {
  22047. height: math.unit(6, "feet"),
  22048. weight: math.unit(150, "lb"),
  22049. name: "Back",
  22050. image: {
  22051. source: "./media/characters/ofelia/back.svg",
  22052. extra: 564 / 559.5,
  22053. bottom: 8.69 / 573.02
  22054. }
  22055. },
  22056. maw: {
  22057. height: math.unit(1, "feet"),
  22058. name: "Maw",
  22059. image: {
  22060. source: "./media/characters/ofelia/maw.svg"
  22061. }
  22062. },
  22063. foot: {
  22064. height: math.unit(1.949, "feet"),
  22065. name: "Foot",
  22066. image: {
  22067. source: "./media/characters/ofelia/foot.svg"
  22068. }
  22069. },
  22070. },
  22071. [
  22072. {
  22073. name: "Canon Height",
  22074. height: math.unit(2000, "miles"),
  22075. default: true
  22076. },
  22077. ]
  22078. ))
  22079. characterMakers.push(() => makeCharacter(
  22080. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22081. {
  22082. front: {
  22083. height: math.unit(6, "feet"),
  22084. weight: math.unit(150, "lb"),
  22085. name: "Front",
  22086. image: {
  22087. source: "./media/characters/samuel/front.svg",
  22088. extra: 265 / 258,
  22089. bottom: 2 / 266.1566
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Macro",
  22096. height: math.unit(100, "feet"),
  22097. default: true
  22098. },
  22099. {
  22100. name: "Full Size",
  22101. height: math.unit(1000, "miles")
  22102. },
  22103. ]
  22104. ))
  22105. characterMakers.push(() => makeCharacter(
  22106. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22107. {
  22108. front: {
  22109. height: math.unit(6, "feet"),
  22110. weight: math.unit(300, "lb"),
  22111. name: "Front",
  22112. image: {
  22113. source: "./media/characters/beishir-kiel/front.svg",
  22114. extra: 569 / 547,
  22115. bottom: 41.9 / 609
  22116. }
  22117. },
  22118. maw: {
  22119. height: math.unit(6 * 0.202, "feet"),
  22120. name: "Maw",
  22121. image: {
  22122. source: "./media/characters/beishir-kiel/maw.svg"
  22123. }
  22124. },
  22125. },
  22126. [
  22127. {
  22128. name: "Macro",
  22129. height: math.unit(300, "feet"),
  22130. default: true
  22131. },
  22132. ]
  22133. ))
  22134. characterMakers.push(() => makeCharacter(
  22135. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22136. {
  22137. front: {
  22138. height: math.unit(5 + 7/12, "feet"),
  22139. weight: math.unit(120, "lb"),
  22140. name: "Front",
  22141. image: {
  22142. source: "./media/characters/logan-grey/front.svg",
  22143. extra: 1836/1738,
  22144. bottom: 108/1944
  22145. }
  22146. },
  22147. back: {
  22148. height: math.unit(5 + 7/12, "feet"),
  22149. weight: math.unit(120, "lb"),
  22150. name: "Back",
  22151. image: {
  22152. source: "./media/characters/logan-grey/back.svg",
  22153. extra: 1880/1794,
  22154. bottom: 24/1904
  22155. }
  22156. },
  22157. frontSfw: {
  22158. height: math.unit(5 + 7/12, "feet"),
  22159. weight: math.unit(120, "lb"),
  22160. name: "Front (SFW)",
  22161. image: {
  22162. source: "./media/characters/logan-grey/front-sfw.svg",
  22163. extra: 1836/1738,
  22164. bottom: 108/1944
  22165. }
  22166. },
  22167. backSfw: {
  22168. height: math.unit(5 + 7/12, "feet"),
  22169. weight: math.unit(120, "lb"),
  22170. name: "Back (SFW)",
  22171. image: {
  22172. source: "./media/characters/logan-grey/back-sfw.svg",
  22173. extra: 1880/1794,
  22174. bottom: 24/1904
  22175. }
  22176. },
  22177. hands: {
  22178. height: math.unit(0.84, "feet"),
  22179. name: "Hands",
  22180. image: {
  22181. source: "./media/characters/logan-grey/hands.svg"
  22182. }
  22183. },
  22184. paws: {
  22185. height: math.unit(0.72, "feet"),
  22186. name: "Paws",
  22187. image: {
  22188. source: "./media/characters/logan-grey/paws.svg"
  22189. }
  22190. },
  22191. cock: {
  22192. height: math.unit(1.45, "feet"),
  22193. name: "Cock",
  22194. image: {
  22195. source: "./media/characters/logan-grey/cock.svg"
  22196. }
  22197. },
  22198. cockAlt: {
  22199. height: math.unit(1.437, "feet"),
  22200. name: "Cock (alt)",
  22201. image: {
  22202. source: "./media/characters/logan-grey/cock-alt.svg"
  22203. }
  22204. },
  22205. },
  22206. [
  22207. {
  22208. name: "Normal",
  22209. height: math.unit(5 + 8 / 12, "feet")
  22210. },
  22211. {
  22212. name: "The 500 Foot Femboy",
  22213. height: math.unit(500, "feet"),
  22214. default: true
  22215. },
  22216. {
  22217. name: "Megmacro",
  22218. height: math.unit(20, "miles")
  22219. },
  22220. ]
  22221. ))
  22222. characterMakers.push(() => makeCharacter(
  22223. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22224. {
  22225. front: {
  22226. height: math.unit(8 + 2 / 12, "feet"),
  22227. weight: math.unit(275, "lb"),
  22228. name: "Front",
  22229. image: {
  22230. source: "./media/characters/draganta/front.svg",
  22231. extra: 1177 / 1135,
  22232. bottom: 33.46 / 1212.1
  22233. }
  22234. },
  22235. },
  22236. [
  22237. {
  22238. name: "Normal",
  22239. height: math.unit(8 + 6 / 12, "feet"),
  22240. default: true
  22241. },
  22242. {
  22243. name: "Macro",
  22244. height: math.unit(150, "feet")
  22245. },
  22246. {
  22247. name: "Megamacro",
  22248. height: math.unit(1000, "miles")
  22249. },
  22250. ]
  22251. ))
  22252. characterMakers.push(() => makeCharacter(
  22253. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22254. {
  22255. front: {
  22256. height: math.unit(1.72, "m"),
  22257. weight: math.unit(80, "lb"),
  22258. name: "Front",
  22259. image: {
  22260. source: "./media/characters/voski/front.svg",
  22261. extra: 2076.22 / 2022.4,
  22262. bottom: 102.7 / 2177.3866
  22263. }
  22264. },
  22265. frontNsfw: {
  22266. height: math.unit(1.72, "m"),
  22267. weight: math.unit(80, "lb"),
  22268. name: "Front (NSFW)",
  22269. image: {
  22270. source: "./media/characters/voski/front-nsfw.svg",
  22271. extra: 2076.22 / 2022.4,
  22272. bottom: 102.7 / 2177.3866
  22273. }
  22274. },
  22275. back: {
  22276. height: math.unit(1.72, "m"),
  22277. weight: math.unit(80, "lb"),
  22278. name: "Back",
  22279. image: {
  22280. source: "./media/characters/voski/back.svg",
  22281. extra: 2104 / 2051,
  22282. bottom: 10.45 / 2113.63
  22283. }
  22284. },
  22285. },
  22286. [
  22287. {
  22288. name: "Normal",
  22289. height: math.unit(1.72, "m")
  22290. },
  22291. {
  22292. name: "Macro",
  22293. height: math.unit(55, "m"),
  22294. default: true
  22295. },
  22296. {
  22297. name: "Macro+",
  22298. height: math.unit(300, "m")
  22299. },
  22300. {
  22301. name: "Macro++",
  22302. height: math.unit(700, "m")
  22303. },
  22304. {
  22305. name: "Macro+++",
  22306. height: math.unit(4500, "m")
  22307. },
  22308. {
  22309. name: "Macro++++",
  22310. height: math.unit(45, "km")
  22311. },
  22312. {
  22313. name: "Macro+++++",
  22314. height: math.unit(1220, "km")
  22315. },
  22316. ]
  22317. ))
  22318. characterMakers.push(() => makeCharacter(
  22319. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22320. {
  22321. front: {
  22322. height: math.unit(2.3, "m"),
  22323. weight: math.unit(304, "kg"),
  22324. name: "Front",
  22325. image: {
  22326. source: "./media/characters/icowom-lee/front.svg",
  22327. extra: 985 / 955,
  22328. bottom: 25.4 / 1012
  22329. }
  22330. },
  22331. fronttentacles: {
  22332. height: math.unit(2.3, "m"),
  22333. weight: math.unit(304, "kg"),
  22334. name: "Front-tentacles",
  22335. image: {
  22336. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22337. extra: 985 / 955,
  22338. bottom: 25.4 / 1012
  22339. }
  22340. },
  22341. back: {
  22342. height: math.unit(2.3, "m"),
  22343. weight: math.unit(304, "kg"),
  22344. name: "Back",
  22345. image: {
  22346. source: "./media/characters/icowom-lee/back.svg",
  22347. extra: 975 / 954,
  22348. bottom: 9.5 / 985
  22349. }
  22350. },
  22351. backtentacles: {
  22352. height: math.unit(2.3, "m"),
  22353. weight: math.unit(304, "kg"),
  22354. name: "Back-tentacles",
  22355. image: {
  22356. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22357. extra: 975 / 954,
  22358. bottom: 9.5 / 985
  22359. }
  22360. },
  22361. frontDressed: {
  22362. height: math.unit(2.3, "m"),
  22363. weight: math.unit(304, "kg"),
  22364. name: "Front (Dressed)",
  22365. image: {
  22366. source: "./media/characters/icowom-lee/front-dressed.svg",
  22367. extra: 3076 / 2933,
  22368. bottom: 51.4 / 3125.1889
  22369. }
  22370. },
  22371. rump: {
  22372. height: math.unit(0.776, "meters"),
  22373. name: "Rump",
  22374. image: {
  22375. source: "./media/characters/icowom-lee/rump.svg"
  22376. }
  22377. },
  22378. genitals: {
  22379. height: math.unit(0.78, "meters"),
  22380. name: "Genitals",
  22381. image: {
  22382. source: "./media/characters/icowom-lee/genitals.svg"
  22383. }
  22384. },
  22385. },
  22386. [
  22387. {
  22388. name: "Normal",
  22389. height: math.unit(2.3, "meters"),
  22390. default: true
  22391. },
  22392. {
  22393. name: "Macro",
  22394. height: math.unit(94, "meters"),
  22395. default: true
  22396. },
  22397. ]
  22398. ))
  22399. characterMakers.push(() => makeCharacter(
  22400. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22401. {
  22402. front: {
  22403. height: math.unit(22, "meters"),
  22404. weight: math.unit(21000, "kg"),
  22405. name: "Front",
  22406. image: {
  22407. source: "./media/characters/shock-diamond/front.svg",
  22408. extra: 2204 / 2053,
  22409. bottom: 65 / 2239.47
  22410. }
  22411. },
  22412. frontNude: {
  22413. height: math.unit(22, "meters"),
  22414. weight: math.unit(21000, "kg"),
  22415. name: "Front (Nude)",
  22416. image: {
  22417. source: "./media/characters/shock-diamond/front-nude.svg",
  22418. extra: 2514 / 2285,
  22419. bottom: 13 / 2527.56
  22420. }
  22421. },
  22422. },
  22423. [
  22424. {
  22425. name: "Normal",
  22426. height: math.unit(3, "meters")
  22427. },
  22428. {
  22429. name: "Macro",
  22430. height: math.unit(22, "meters"),
  22431. default: true
  22432. },
  22433. ]
  22434. ))
  22435. characterMakers.push(() => makeCharacter(
  22436. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22437. {
  22438. front: {
  22439. height: math.unit(5 + 4 / 12, "feet"),
  22440. weight: math.unit(120, "lb"),
  22441. name: "Front",
  22442. image: {
  22443. source: "./media/characters/rory/front.svg",
  22444. extra: 1318/1241,
  22445. bottom: 42/1360
  22446. }
  22447. },
  22448. back: {
  22449. height: math.unit(5 + 4 / 12, "feet"),
  22450. weight: math.unit(120, "lb"),
  22451. name: "Back",
  22452. image: {
  22453. source: "./media/characters/rory/back.svg",
  22454. extra: 1318/1241,
  22455. bottom: 42/1360
  22456. }
  22457. },
  22458. butt: {
  22459. height: math.unit(1.74, "feet"),
  22460. name: "Butt",
  22461. image: {
  22462. source: "./media/characters/rory/butt.svg"
  22463. }
  22464. },
  22465. dick: {
  22466. height: math.unit(1.02, "feet"),
  22467. name: "Dick",
  22468. image: {
  22469. source: "./media/characters/rory/dick.svg"
  22470. }
  22471. },
  22472. paws: {
  22473. height: math.unit(1, "feet"),
  22474. name: "Paws",
  22475. image: {
  22476. source: "./media/characters/rory/paws.svg"
  22477. }
  22478. },
  22479. frontAlt: {
  22480. height: math.unit(5 + 4 / 12, "feet"),
  22481. weight: math.unit(120, "lb"),
  22482. name: "Front (Alt)",
  22483. image: {
  22484. source: "./media/characters/rory/front-alt.svg",
  22485. extra: 589 / 556,
  22486. bottom: 45.7 / 635.76
  22487. }
  22488. },
  22489. frontAltNude: {
  22490. height: math.unit(5 + 4 / 12, "feet"),
  22491. weight: math.unit(120, "lb"),
  22492. name: "Front (Alt, Nude)",
  22493. image: {
  22494. source: "./media/characters/rory/front-alt-nude.svg",
  22495. extra: 589 / 556,
  22496. bottom: 45.7 / 635.76
  22497. }
  22498. },
  22499. side: {
  22500. height: math.unit(5 + 4 / 12, "feet"),
  22501. weight: math.unit(120, "lb"),
  22502. name: "Side",
  22503. image: {
  22504. source: "./media/characters/rory/side.svg",
  22505. extra: 597 / 564,
  22506. bottom: 55 / 653
  22507. }
  22508. },
  22509. backAlt: {
  22510. height: math.unit(5 + 4 / 12, "feet"),
  22511. weight: math.unit(120, "lb"),
  22512. name: "Back (Alt)",
  22513. image: {
  22514. source: "./media/characters/rory/back-alt.svg",
  22515. extra: 620 / 585,
  22516. bottom: 8.86 / 630.43
  22517. }
  22518. },
  22519. dickAlt: {
  22520. height: math.unit(0.86, "feet"),
  22521. name: "Dick (Alt)",
  22522. image: {
  22523. source: "./media/characters/rory/dick-alt.svg"
  22524. }
  22525. },
  22526. },
  22527. [
  22528. {
  22529. name: "Normal",
  22530. height: math.unit(5 + 4 / 12, "feet"),
  22531. default: true
  22532. },
  22533. {
  22534. name: "Macro",
  22535. height: math.unit(100, "feet")
  22536. },
  22537. {
  22538. name: "Macro+",
  22539. height: math.unit(140, "feet")
  22540. },
  22541. {
  22542. name: "Macro++",
  22543. height: math.unit(300, "feet")
  22544. },
  22545. ]
  22546. ))
  22547. characterMakers.push(() => makeCharacter(
  22548. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22549. {
  22550. front: {
  22551. height: math.unit(5 + 9 / 12, "feet"),
  22552. weight: math.unit(190, "lb"),
  22553. name: "Front",
  22554. image: {
  22555. source: "./media/characters/sprisk/front.svg",
  22556. extra: 1225 / 1180,
  22557. bottom: 42.7 / 1266.4
  22558. }
  22559. },
  22560. frontNsfw: {
  22561. height: math.unit(5 + 9 / 12, "feet"),
  22562. weight: math.unit(190, "lb"),
  22563. name: "Front (NSFW)",
  22564. image: {
  22565. source: "./media/characters/sprisk/front-nsfw.svg",
  22566. extra: 1225 / 1180,
  22567. bottom: 42.7 / 1266.4
  22568. }
  22569. },
  22570. back: {
  22571. height: math.unit(5 + 9 / 12, "feet"),
  22572. weight: math.unit(190, "lb"),
  22573. name: "Back",
  22574. image: {
  22575. source: "./media/characters/sprisk/back.svg",
  22576. extra: 1247 / 1200,
  22577. bottom: 5.6 / 1253.04
  22578. }
  22579. },
  22580. },
  22581. [
  22582. {
  22583. name: "Tiny",
  22584. height: math.unit(2, "inches")
  22585. },
  22586. {
  22587. name: "Normal",
  22588. height: math.unit(5 + 9 / 12, "feet"),
  22589. default: true
  22590. },
  22591. {
  22592. name: "Mini Macro",
  22593. height: math.unit(18, "feet")
  22594. },
  22595. {
  22596. name: "Macro",
  22597. height: math.unit(100, "feet")
  22598. },
  22599. {
  22600. name: "MACRO",
  22601. height: math.unit(50, "miles")
  22602. },
  22603. {
  22604. name: "M A C R O",
  22605. height: math.unit(300, "miles")
  22606. },
  22607. ]
  22608. ))
  22609. characterMakers.push(() => makeCharacter(
  22610. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22611. {
  22612. side: {
  22613. height: math.unit(15.6, "meters"),
  22614. weight: math.unit(700000, "kg"),
  22615. name: "Side",
  22616. image: {
  22617. source: "./media/characters/bunsen/side.svg",
  22618. extra: 1644 / 358
  22619. }
  22620. },
  22621. foot: {
  22622. height: math.unit(1.611 * 1644 / 358, "meter"),
  22623. name: "Foot",
  22624. image: {
  22625. source: "./media/characters/bunsen/foot.svg"
  22626. }
  22627. },
  22628. },
  22629. [
  22630. {
  22631. name: "Small",
  22632. height: math.unit(10, "feet")
  22633. },
  22634. {
  22635. name: "Normal",
  22636. height: math.unit(15.6, "meters"),
  22637. default: true
  22638. },
  22639. ]
  22640. ))
  22641. characterMakers.push(() => makeCharacter(
  22642. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22643. {
  22644. front: {
  22645. height: math.unit(4 + 11 / 12, "feet"),
  22646. weight: math.unit(140, "lb"),
  22647. name: "Front",
  22648. image: {
  22649. source: "./media/characters/sesh/front.svg",
  22650. extra: 3420 / 3231,
  22651. bottom: 72 / 3949.5
  22652. }
  22653. },
  22654. },
  22655. [
  22656. {
  22657. name: "Normal",
  22658. height: math.unit(4 + 11 / 12, "feet")
  22659. },
  22660. {
  22661. name: "Grown",
  22662. height: math.unit(15, "feet"),
  22663. default: true
  22664. },
  22665. {
  22666. name: "Macro",
  22667. height: math.unit(1500, "feet")
  22668. },
  22669. {
  22670. name: "Megamacro",
  22671. height: math.unit(30, "miles")
  22672. },
  22673. {
  22674. name: "Continental",
  22675. height: math.unit(3000, "miles")
  22676. },
  22677. {
  22678. name: "Gravity Mass",
  22679. height: math.unit(300000, "miles")
  22680. },
  22681. {
  22682. name: "Planet Buster",
  22683. height: math.unit(30000000, "miles")
  22684. },
  22685. {
  22686. name: "Big",
  22687. height: math.unit(3000000000, "miles")
  22688. },
  22689. ]
  22690. ))
  22691. characterMakers.push(() => makeCharacter(
  22692. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22693. {
  22694. front: {
  22695. height: math.unit(9, "feet"),
  22696. weight: math.unit(350, "lb"),
  22697. name: "Front",
  22698. image: {
  22699. source: "./media/characters/pepper/front.svg",
  22700. extra: 1448 / 1312,
  22701. bottom: 9.4 / 1457.88
  22702. }
  22703. },
  22704. back: {
  22705. height: math.unit(9, "feet"),
  22706. weight: math.unit(350, "lb"),
  22707. name: "Back",
  22708. image: {
  22709. source: "./media/characters/pepper/back.svg",
  22710. extra: 1423 / 1300,
  22711. bottom: 4.6 / 1429
  22712. }
  22713. },
  22714. maw: {
  22715. height: math.unit(0.932, "feet"),
  22716. name: "Maw",
  22717. image: {
  22718. source: "./media/characters/pepper/maw.svg"
  22719. }
  22720. },
  22721. },
  22722. [
  22723. {
  22724. name: "Normal",
  22725. height: math.unit(9, "feet"),
  22726. default: true
  22727. },
  22728. ]
  22729. ))
  22730. characterMakers.push(() => makeCharacter(
  22731. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22732. {
  22733. front: {
  22734. height: math.unit(6, "feet"),
  22735. weight: math.unit(150, "lb"),
  22736. name: "Front",
  22737. image: {
  22738. source: "./media/characters/maelstrom/front.svg",
  22739. extra: 2100 / 1883,
  22740. bottom: 94 / 2196.7
  22741. }
  22742. },
  22743. },
  22744. [
  22745. {
  22746. name: "Less Kaiju",
  22747. height: math.unit(200, "feet")
  22748. },
  22749. {
  22750. name: "Kaiju",
  22751. height: math.unit(400, "feet"),
  22752. default: true
  22753. },
  22754. {
  22755. name: "Kaiju-er",
  22756. height: math.unit(600, "feet")
  22757. },
  22758. ]
  22759. ))
  22760. characterMakers.push(() => makeCharacter(
  22761. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22762. {
  22763. front: {
  22764. height: math.unit(6 + 5 / 12, "feet"),
  22765. weight: math.unit(180, "lb"),
  22766. name: "Front",
  22767. image: {
  22768. source: "./media/characters/lexir/front.svg",
  22769. extra: 180 / 172,
  22770. bottom: 12 / 192
  22771. }
  22772. },
  22773. back: {
  22774. height: math.unit(6 + 5 / 12, "feet"),
  22775. weight: math.unit(180, "lb"),
  22776. name: "Back",
  22777. image: {
  22778. source: "./media/characters/lexir/back.svg",
  22779. extra: 183.84 / 175.5,
  22780. bottom: 3.1 / 187
  22781. }
  22782. },
  22783. },
  22784. [
  22785. {
  22786. name: "Very Smal",
  22787. height: math.unit(1, "nm")
  22788. },
  22789. {
  22790. name: "Normal",
  22791. height: math.unit(6 + 5 / 12, "feet"),
  22792. default: true
  22793. },
  22794. {
  22795. name: "Macro",
  22796. height: math.unit(1, "mile")
  22797. },
  22798. {
  22799. name: "Megamacro",
  22800. height: math.unit(50, "miles")
  22801. },
  22802. ]
  22803. ))
  22804. characterMakers.push(() => makeCharacter(
  22805. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22806. {
  22807. front: {
  22808. height: math.unit(1.5, "meters"),
  22809. weight: math.unit(100, "lb"),
  22810. name: "Front",
  22811. image: {
  22812. source: "./media/characters/maksio/front.svg",
  22813. extra: 1549 / 1531,
  22814. bottom: 123.7 / 1674.5429
  22815. }
  22816. },
  22817. back: {
  22818. height: math.unit(1.5, "meters"),
  22819. weight: math.unit(100, "lb"),
  22820. name: "Back",
  22821. image: {
  22822. source: "./media/characters/maksio/back.svg",
  22823. extra: 1541 / 1509,
  22824. bottom: 97 / 1639
  22825. }
  22826. },
  22827. hand: {
  22828. height: math.unit(0.621, "feet"),
  22829. name: "Hand",
  22830. image: {
  22831. source: "./media/characters/maksio/hand.svg"
  22832. }
  22833. },
  22834. foot: {
  22835. height: math.unit(1.611, "feet"),
  22836. name: "Foot",
  22837. image: {
  22838. source: "./media/characters/maksio/foot.svg"
  22839. }
  22840. },
  22841. },
  22842. [
  22843. {
  22844. name: "Shrunken",
  22845. height: math.unit(10, "cm")
  22846. },
  22847. {
  22848. name: "Normal",
  22849. height: math.unit(150, "cm"),
  22850. default: true
  22851. },
  22852. ]
  22853. ))
  22854. characterMakers.push(() => makeCharacter(
  22855. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22856. {
  22857. front: {
  22858. height: math.unit(100, "feet"),
  22859. name: "Front",
  22860. image: {
  22861. source: "./media/characters/erza-bear/front.svg",
  22862. extra: 2449 / 2390,
  22863. bottom: 46 / 2494
  22864. }
  22865. },
  22866. back: {
  22867. height: math.unit(100, "feet"),
  22868. name: "Back",
  22869. image: {
  22870. source: "./media/characters/erza-bear/back.svg",
  22871. extra: 2489 / 2430,
  22872. bottom: 85.4 / 2480
  22873. }
  22874. },
  22875. tail: {
  22876. height: math.unit(42, "feet"),
  22877. name: "Tail",
  22878. image: {
  22879. source: "./media/characters/erza-bear/tail.svg"
  22880. }
  22881. },
  22882. tongue: {
  22883. height: math.unit(8, "feet"),
  22884. name: "Tongue",
  22885. image: {
  22886. source: "./media/characters/erza-bear/tongue.svg"
  22887. }
  22888. },
  22889. dick: {
  22890. height: math.unit(10.5, "feet"),
  22891. name: "Dick",
  22892. image: {
  22893. source: "./media/characters/erza-bear/dick.svg"
  22894. }
  22895. },
  22896. dickVertical: {
  22897. height: math.unit(16.9, "feet"),
  22898. name: "Dick (Vertical)",
  22899. image: {
  22900. source: "./media/characters/erza-bear/dick-vertical.svg"
  22901. }
  22902. },
  22903. },
  22904. [
  22905. {
  22906. name: "Macro",
  22907. height: math.unit(100, "feet"),
  22908. default: true
  22909. },
  22910. ]
  22911. ))
  22912. characterMakers.push(() => makeCharacter(
  22913. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22914. {
  22915. front: {
  22916. height: math.unit(172, "cm"),
  22917. weight: math.unit(73, "kg"),
  22918. name: "Front",
  22919. image: {
  22920. source: "./media/characters/violet-flor/front.svg",
  22921. extra: 1530 / 1442,
  22922. bottom: 61.9 / 1588.8
  22923. }
  22924. },
  22925. back: {
  22926. height: math.unit(180, "cm"),
  22927. weight: math.unit(73, "kg"),
  22928. name: "Back",
  22929. image: {
  22930. source: "./media/characters/violet-flor/back.svg",
  22931. extra: 1692 / 1630,
  22932. bottom: 20 / 1712
  22933. }
  22934. },
  22935. },
  22936. [
  22937. {
  22938. name: "Normal",
  22939. height: math.unit(172, "cm"),
  22940. default: true
  22941. },
  22942. ]
  22943. ))
  22944. characterMakers.push(() => makeCharacter(
  22945. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22946. {
  22947. front: {
  22948. height: math.unit(6, "feet"),
  22949. weight: math.unit(220, "lb"),
  22950. name: "Front",
  22951. image: {
  22952. source: "./media/characters/lynn-rhea/front.svg",
  22953. extra: 310 / 273
  22954. }
  22955. },
  22956. back: {
  22957. height: math.unit(6, "feet"),
  22958. weight: math.unit(220, "lb"),
  22959. name: "Back",
  22960. image: {
  22961. source: "./media/characters/lynn-rhea/back.svg",
  22962. extra: 310 / 273
  22963. }
  22964. },
  22965. dicks: {
  22966. height: math.unit(0.9, "feet"),
  22967. name: "Dicks",
  22968. image: {
  22969. source: "./media/characters/lynn-rhea/dicks.svg"
  22970. }
  22971. },
  22972. slit: {
  22973. height: math.unit(0.4, "feet"),
  22974. name: "Slit",
  22975. image: {
  22976. source: "./media/characters/lynn-rhea/slit.svg"
  22977. }
  22978. },
  22979. },
  22980. [
  22981. {
  22982. name: "Micro",
  22983. height: math.unit(1, "inch")
  22984. },
  22985. {
  22986. name: "Macro",
  22987. height: math.unit(60, "feet"),
  22988. default: true
  22989. },
  22990. {
  22991. name: "Megamacro",
  22992. height: math.unit(2, "miles")
  22993. },
  22994. {
  22995. name: "Gigamacro",
  22996. height: math.unit(3, "earths")
  22997. },
  22998. {
  22999. name: "Galactic",
  23000. height: math.unit(0.8, "galaxies")
  23001. },
  23002. ]
  23003. ))
  23004. characterMakers.push(() => makeCharacter(
  23005. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23006. {
  23007. front: {
  23008. height: math.unit(1600, "feet"),
  23009. weight: math.unit(85758785169, "kg"),
  23010. name: "Front",
  23011. image: {
  23012. source: "./media/characters/valathos/front.svg",
  23013. extra: 1451 / 1339
  23014. }
  23015. },
  23016. },
  23017. [
  23018. {
  23019. name: "Macro",
  23020. height: math.unit(1600, "feet"),
  23021. default: true
  23022. },
  23023. ]
  23024. ))
  23025. characterMakers.push(() => makeCharacter(
  23026. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23027. {
  23028. front: {
  23029. height: math.unit(7 + 5 / 12, "feet"),
  23030. weight: math.unit(300, "lb"),
  23031. name: "Front",
  23032. image: {
  23033. source: "./media/characters/azula/front.svg",
  23034. extra: 3208 / 2880,
  23035. bottom: 80.2 / 3277
  23036. }
  23037. },
  23038. back: {
  23039. height: math.unit(7 + 5 / 12, "feet"),
  23040. weight: math.unit(300, "lb"),
  23041. name: "Back",
  23042. image: {
  23043. source: "./media/characters/azula/back.svg",
  23044. extra: 3169 / 2822,
  23045. bottom: 150.6 / 3321
  23046. }
  23047. },
  23048. },
  23049. [
  23050. {
  23051. name: "Normal",
  23052. height: math.unit(7 + 5 / 12, "feet"),
  23053. default: true
  23054. },
  23055. {
  23056. name: "Big",
  23057. height: math.unit(20, "feet")
  23058. },
  23059. ]
  23060. ))
  23061. characterMakers.push(() => makeCharacter(
  23062. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23063. {
  23064. front: {
  23065. height: math.unit(5 + 1 / 12, "feet"),
  23066. weight: math.unit(110, "lb"),
  23067. name: "Front",
  23068. image: {
  23069. source: "./media/characters/rupert/front.svg",
  23070. extra: 1549 / 1495,
  23071. bottom: 54.2 / 1604.4
  23072. }
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Normal",
  23078. height: math.unit(5 + 1 / 12, "feet"),
  23079. default: true
  23080. },
  23081. ]
  23082. ))
  23083. characterMakers.push(() => makeCharacter(
  23084. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23085. {
  23086. front: {
  23087. height: math.unit(8 + 4 / 12, "feet"),
  23088. weight: math.unit(350, "lb"),
  23089. name: "Front",
  23090. image: {
  23091. source: "./media/characters/sheera-castellar/front.svg",
  23092. extra: 1957 / 1894,
  23093. bottom: 26.97 / 1975.017
  23094. }
  23095. },
  23096. side: {
  23097. height: math.unit(8 + 4 / 12, "feet"),
  23098. weight: math.unit(350, "lb"),
  23099. name: "Side",
  23100. image: {
  23101. source: "./media/characters/sheera-castellar/side.svg",
  23102. extra: 1957 / 1894
  23103. }
  23104. },
  23105. back: {
  23106. height: math.unit(8 + 4 / 12, "feet"),
  23107. weight: math.unit(350, "lb"),
  23108. name: "Back",
  23109. image: {
  23110. source: "./media/characters/sheera-castellar/back.svg",
  23111. extra: 1957 / 1894
  23112. }
  23113. },
  23114. angled: {
  23115. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23116. weight: math.unit(350, "lb"),
  23117. name: "Angled",
  23118. image: {
  23119. source: "./media/characters/sheera-castellar/angled.svg",
  23120. extra: 1807 / 1707,
  23121. bottom: 68 / 1875
  23122. }
  23123. },
  23124. genitals: {
  23125. height: math.unit(2.2, "feet"),
  23126. name: "Genitals",
  23127. image: {
  23128. source: "./media/characters/sheera-castellar/genitals.svg"
  23129. }
  23130. },
  23131. taur: {
  23132. height: math.unit(10 + 6/12, "feet"),
  23133. name: "Taur",
  23134. image: {
  23135. source: "./media/characters/sheera-castellar/taur.svg",
  23136. extra: 2017/1909,
  23137. bottom: 185/2202
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Normal",
  23144. height: math.unit(8 + 4 / 12, "feet")
  23145. },
  23146. {
  23147. name: "Macro",
  23148. height: math.unit(150, "feet"),
  23149. default: true
  23150. },
  23151. {
  23152. name: "Macro+",
  23153. height: math.unit(800, "feet")
  23154. },
  23155. ]
  23156. ))
  23157. characterMakers.push(() => makeCharacter(
  23158. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23159. {
  23160. front: {
  23161. height: math.unit(6, "feet"),
  23162. weight: math.unit(150, "lb"),
  23163. name: "Front",
  23164. image: {
  23165. source: "./media/characters/jaipur/front.svg",
  23166. extra: 3860 / 3731,
  23167. bottom: 287 / 4140
  23168. }
  23169. },
  23170. back: {
  23171. height: math.unit(6, "feet"),
  23172. weight: math.unit(150, "lb"),
  23173. name: "Back",
  23174. image: {
  23175. source: "./media/characters/jaipur/back.svg",
  23176. extra: 4060 / 3930,
  23177. bottom: 151 / 4200
  23178. }
  23179. },
  23180. },
  23181. [
  23182. {
  23183. name: "Normal",
  23184. height: math.unit(1.85, "meters"),
  23185. default: true
  23186. },
  23187. {
  23188. name: "Macro",
  23189. height: math.unit(150, "meters")
  23190. },
  23191. {
  23192. name: "Macro+",
  23193. height: math.unit(0.5, "miles")
  23194. },
  23195. {
  23196. name: "Macro++",
  23197. height: math.unit(2.5, "miles")
  23198. },
  23199. {
  23200. name: "Macro+++",
  23201. height: math.unit(12, "miles")
  23202. },
  23203. {
  23204. name: "Macro++++",
  23205. height: math.unit(120, "miles")
  23206. },
  23207. {
  23208. name: "Macro+++++",
  23209. height: math.unit(1200, "miles")
  23210. },
  23211. ]
  23212. ))
  23213. characterMakers.push(() => makeCharacter(
  23214. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23215. {
  23216. front: {
  23217. height: math.unit(6, "feet"),
  23218. weight: math.unit(150, "lb"),
  23219. name: "Front",
  23220. image: {
  23221. source: "./media/characters/sheila-wolf/front.svg",
  23222. extra: 1931 / 1808,
  23223. bottom: 29.5 / 1960
  23224. }
  23225. },
  23226. dick: {
  23227. height: math.unit(1.464, "feet"),
  23228. name: "Dick",
  23229. image: {
  23230. source: "./media/characters/sheila-wolf/dick.svg"
  23231. }
  23232. },
  23233. muzzle: {
  23234. height: math.unit(0.513, "feet"),
  23235. name: "Muzzle",
  23236. image: {
  23237. source: "./media/characters/sheila-wolf/muzzle.svg"
  23238. }
  23239. },
  23240. },
  23241. [
  23242. {
  23243. name: "Macro",
  23244. height: math.unit(70, "feet"),
  23245. default: true
  23246. },
  23247. ]
  23248. ))
  23249. characterMakers.push(() => makeCharacter(
  23250. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23251. {
  23252. front: {
  23253. height: math.unit(32, "meters"),
  23254. weight: math.unit(300000, "kg"),
  23255. name: "Front",
  23256. image: {
  23257. source: "./media/characters/almor/front.svg",
  23258. extra: 1408 / 1322,
  23259. bottom: 94.6 / 1506.5
  23260. }
  23261. },
  23262. },
  23263. [
  23264. {
  23265. name: "Macro",
  23266. height: math.unit(32, "meters"),
  23267. default: true
  23268. },
  23269. ]
  23270. ))
  23271. characterMakers.push(() => makeCharacter(
  23272. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23273. {
  23274. front: {
  23275. height: math.unit(7, "feet"),
  23276. weight: math.unit(200, "lb"),
  23277. name: "Front",
  23278. image: {
  23279. source: "./media/characters/silver/front.svg",
  23280. extra: 472.1 / 450.5,
  23281. bottom: 26.5 / 499.424
  23282. }
  23283. },
  23284. },
  23285. [
  23286. {
  23287. name: "Normal",
  23288. height: math.unit(7, "feet"),
  23289. default: true
  23290. },
  23291. {
  23292. name: "Macro",
  23293. height: math.unit(800, "feet")
  23294. },
  23295. {
  23296. name: "Megamacro",
  23297. height: math.unit(250, "miles")
  23298. },
  23299. ]
  23300. ))
  23301. characterMakers.push(() => makeCharacter(
  23302. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23303. {
  23304. front: {
  23305. height: math.unit(6, "feet"),
  23306. weight: math.unit(150, "lb"),
  23307. name: "Front",
  23308. image: {
  23309. source: "./media/characters/pliskin/front.svg",
  23310. extra: 1469 / 1359,
  23311. bottom: 70 / 1540
  23312. }
  23313. },
  23314. },
  23315. [
  23316. {
  23317. name: "Micro",
  23318. height: math.unit(3, "inches")
  23319. },
  23320. {
  23321. name: "Normal",
  23322. height: math.unit(5 + 11 / 12, "feet"),
  23323. default: true
  23324. },
  23325. {
  23326. name: "Macro",
  23327. height: math.unit(120, "feet")
  23328. },
  23329. ]
  23330. ))
  23331. characterMakers.push(() => makeCharacter(
  23332. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23333. {
  23334. front: {
  23335. height: math.unit(6, "feet"),
  23336. weight: math.unit(150, "lb"),
  23337. name: "Front",
  23338. image: {
  23339. source: "./media/characters/sammy/front.svg",
  23340. extra: 1193 / 1089,
  23341. bottom: 30.5 / 1226
  23342. }
  23343. },
  23344. },
  23345. [
  23346. {
  23347. name: "Macro",
  23348. height: math.unit(1700, "feet"),
  23349. default: true
  23350. },
  23351. {
  23352. name: "Examacro",
  23353. height: math.unit(2.5e9, "lightyears")
  23354. },
  23355. ]
  23356. ))
  23357. characterMakers.push(() => makeCharacter(
  23358. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23359. {
  23360. front: {
  23361. height: math.unit(21, "meters"),
  23362. weight: math.unit(12, "tonnes"),
  23363. name: "Front",
  23364. image: {
  23365. source: "./media/characters/kuru/front.svg",
  23366. extra: 4301 / 3785,
  23367. bottom: 371.3 / 4691
  23368. }
  23369. },
  23370. },
  23371. [
  23372. {
  23373. name: "Macro",
  23374. height: math.unit(21, "meters"),
  23375. default: true
  23376. },
  23377. ]
  23378. ))
  23379. characterMakers.push(() => makeCharacter(
  23380. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23381. {
  23382. front: {
  23383. height: math.unit(23, "meters"),
  23384. weight: math.unit(12.2, "tonnes"),
  23385. name: "Front",
  23386. image: {
  23387. source: "./media/characters/rakka/front.svg",
  23388. extra: 4670 / 4169,
  23389. bottom: 301 / 4968.7
  23390. }
  23391. },
  23392. },
  23393. [
  23394. {
  23395. name: "Macro",
  23396. height: math.unit(23, "meters"),
  23397. default: true
  23398. },
  23399. ]
  23400. ))
  23401. characterMakers.push(() => makeCharacter(
  23402. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23403. {
  23404. front: {
  23405. height: math.unit(6, "feet"),
  23406. weight: math.unit(150, "lb"),
  23407. name: "Front",
  23408. image: {
  23409. source: "./media/characters/rhys-feline/front.svg",
  23410. extra: 2488 / 2308,
  23411. bottom: 35.67 / 2519.19
  23412. }
  23413. },
  23414. },
  23415. [
  23416. {
  23417. name: "Really Small",
  23418. height: math.unit(1, "nm")
  23419. },
  23420. {
  23421. name: "Micro",
  23422. height: math.unit(4, "inches")
  23423. },
  23424. {
  23425. name: "Normal",
  23426. height: math.unit(4 + 10 / 12, "feet"),
  23427. default: true
  23428. },
  23429. {
  23430. name: "Macro",
  23431. height: math.unit(100, "feet")
  23432. },
  23433. {
  23434. name: "Megamacto",
  23435. height: math.unit(50, "miles")
  23436. },
  23437. ]
  23438. ))
  23439. characterMakers.push(() => makeCharacter(
  23440. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23441. {
  23442. side: {
  23443. height: math.unit(30, "feet"),
  23444. weight: math.unit(35000, "kg"),
  23445. name: "Side",
  23446. image: {
  23447. source: "./media/characters/alydar/side.svg",
  23448. extra: 234 / 222,
  23449. bottom: 6.5 / 241
  23450. }
  23451. },
  23452. front: {
  23453. height: math.unit(30, "feet"),
  23454. weight: math.unit(35000, "kg"),
  23455. name: "Front",
  23456. image: {
  23457. source: "./media/characters/alydar/front.svg",
  23458. extra: 223.37 / 210.2,
  23459. bottom: 22.3 / 246.76
  23460. }
  23461. },
  23462. top: {
  23463. height: math.unit(64.54, "feet"),
  23464. weight: math.unit(35000, "kg"),
  23465. name: "Top",
  23466. image: {
  23467. source: "./media/characters/alydar/top.svg"
  23468. }
  23469. },
  23470. anthro: {
  23471. height: math.unit(30, "feet"),
  23472. weight: math.unit(9000, "kg"),
  23473. name: "Anthro",
  23474. image: {
  23475. source: "./media/characters/alydar/anthro.svg",
  23476. extra: 432 / 421,
  23477. bottom: 7.18 / 440
  23478. }
  23479. },
  23480. maw: {
  23481. height: math.unit(11.693, "feet"),
  23482. name: "Maw",
  23483. image: {
  23484. source: "./media/characters/alydar/maw.svg"
  23485. }
  23486. },
  23487. head: {
  23488. height: math.unit(11.693, "feet"),
  23489. name: "Head",
  23490. image: {
  23491. source: "./media/characters/alydar/head.svg"
  23492. }
  23493. },
  23494. headAlt: {
  23495. height: math.unit(12.861, "feet"),
  23496. name: "Head (Alt)",
  23497. image: {
  23498. source: "./media/characters/alydar/head-alt.svg"
  23499. }
  23500. },
  23501. wing: {
  23502. height: math.unit(20.712, "feet"),
  23503. name: "Wing",
  23504. image: {
  23505. source: "./media/characters/alydar/wing.svg"
  23506. }
  23507. },
  23508. wingFeather: {
  23509. height: math.unit(9.662, "feet"),
  23510. name: "Wing Feather",
  23511. image: {
  23512. source: "./media/characters/alydar/wing-feather.svg"
  23513. }
  23514. },
  23515. countourFeather: {
  23516. height: math.unit(4.154, "feet"),
  23517. name: "Contour Feather",
  23518. image: {
  23519. source: "./media/characters/alydar/contour-feather.svg"
  23520. }
  23521. },
  23522. },
  23523. [
  23524. {
  23525. name: "Diplomatic",
  23526. height: math.unit(13, "feet"),
  23527. default: true
  23528. },
  23529. {
  23530. name: "Small",
  23531. height: math.unit(30, "feet")
  23532. },
  23533. {
  23534. name: "Normal",
  23535. height: math.unit(95, "feet"),
  23536. default: true
  23537. },
  23538. {
  23539. name: "Large",
  23540. height: math.unit(285, "feet")
  23541. },
  23542. {
  23543. name: "Incomprehensible",
  23544. height: math.unit(450, "megameters")
  23545. },
  23546. ]
  23547. ))
  23548. characterMakers.push(() => makeCharacter(
  23549. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23550. {
  23551. side: {
  23552. height: math.unit(11, "feet"),
  23553. weight: math.unit(1750, "kg"),
  23554. name: "Side",
  23555. image: {
  23556. source: "./media/characters/selicia/side.svg",
  23557. extra: 440 / 396,
  23558. bottom: 24.8 / 465.979
  23559. }
  23560. },
  23561. maw: {
  23562. height: math.unit(4.665, "feet"),
  23563. name: "Maw",
  23564. image: {
  23565. source: "./media/characters/selicia/maw.svg"
  23566. }
  23567. },
  23568. },
  23569. [
  23570. {
  23571. name: "Normal",
  23572. height: math.unit(11, "feet"),
  23573. default: true
  23574. },
  23575. ]
  23576. ))
  23577. characterMakers.push(() => makeCharacter(
  23578. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23579. {
  23580. side: {
  23581. height: math.unit(2 + 6 / 12, "feet"),
  23582. weight: math.unit(30, "lb"),
  23583. name: "Side",
  23584. image: {
  23585. source: "./media/characters/layla/side.svg",
  23586. extra: 244 / 188,
  23587. bottom: 18.2 / 262.1
  23588. }
  23589. },
  23590. back: {
  23591. height: math.unit(2 + 6 / 12, "feet"),
  23592. weight: math.unit(30, "lb"),
  23593. name: "Back",
  23594. image: {
  23595. source: "./media/characters/layla/back.svg",
  23596. extra: 308 / 241.5,
  23597. bottom: 8.9 / 316.8
  23598. }
  23599. },
  23600. cumming: {
  23601. height: math.unit(2 + 6 / 12, "feet"),
  23602. weight: math.unit(30, "lb"),
  23603. name: "Cumming",
  23604. image: {
  23605. source: "./media/characters/layla/cumming.svg",
  23606. extra: 342 / 279,
  23607. bottom: 595 / 938
  23608. }
  23609. },
  23610. dickFlaccid: {
  23611. height: math.unit(2.595, "feet"),
  23612. name: "Flaccid Genitals",
  23613. image: {
  23614. source: "./media/characters/layla/dick-flaccid.svg"
  23615. }
  23616. },
  23617. dickErect: {
  23618. height: math.unit(2.359, "feet"),
  23619. name: "Erect Genitals",
  23620. image: {
  23621. source: "./media/characters/layla/dick-erect.svg"
  23622. }
  23623. },
  23624. dragon: {
  23625. height: math.unit(40, "feet"),
  23626. name: "Dragon",
  23627. image: {
  23628. source: "./media/characters/layla/dragon.svg",
  23629. extra: 610/535,
  23630. bottom: 367/977
  23631. }
  23632. },
  23633. taur: {
  23634. height: math.unit(30, "feet"),
  23635. name: "Taur",
  23636. image: {
  23637. source: "./media/characters/layla/taur.svg",
  23638. extra: 1268/1199,
  23639. bottom: 112/1380
  23640. }
  23641. },
  23642. },
  23643. [
  23644. {
  23645. name: "Micro",
  23646. height: math.unit(1, "inch")
  23647. },
  23648. {
  23649. name: "Small",
  23650. height: math.unit(1, "foot")
  23651. },
  23652. {
  23653. name: "Normal",
  23654. height: math.unit(2 + 6 / 12, "feet"),
  23655. default: true
  23656. },
  23657. {
  23658. name: "Macro",
  23659. height: math.unit(200, "feet")
  23660. },
  23661. {
  23662. name: "Megamacro",
  23663. height: math.unit(1000, "miles")
  23664. },
  23665. {
  23666. name: "Planetary",
  23667. height: math.unit(8000, "miles")
  23668. },
  23669. {
  23670. name: "True Layla",
  23671. height: math.unit(200000 * 7, "multiverses")
  23672. },
  23673. ]
  23674. ))
  23675. characterMakers.push(() => makeCharacter(
  23676. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23677. {
  23678. back: {
  23679. height: math.unit(10.5, "feet"),
  23680. weight: math.unit(800, "lb"),
  23681. name: "Back",
  23682. image: {
  23683. source: "./media/characters/knox/back.svg",
  23684. extra: 1486 / 1089,
  23685. bottom: 107 / 1601.4
  23686. }
  23687. },
  23688. side: {
  23689. height: math.unit(10.5, "feet"),
  23690. weight: math.unit(800, "lb"),
  23691. name: "Side",
  23692. image: {
  23693. source: "./media/characters/knox/side.svg",
  23694. extra: 244 / 218,
  23695. bottom: 14 / 260
  23696. }
  23697. },
  23698. },
  23699. [
  23700. {
  23701. name: "Compact",
  23702. height: math.unit(10.5, "feet"),
  23703. default: true
  23704. },
  23705. {
  23706. name: "Dynamax",
  23707. height: math.unit(210, "feet")
  23708. },
  23709. {
  23710. name: "Full Macro",
  23711. height: math.unit(850, "feet")
  23712. },
  23713. ]
  23714. ))
  23715. characterMakers.push(() => makeCharacter(
  23716. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23717. {
  23718. front: {
  23719. height: math.unit(28, "feet"),
  23720. weight: math.unit(10500, "lb"),
  23721. name: "Front",
  23722. image: {
  23723. source: "./media/characters/kayda/front.svg",
  23724. extra: 1536 / 1428,
  23725. bottom: 68.7 / 1603
  23726. }
  23727. },
  23728. back: {
  23729. height: math.unit(28, "feet"),
  23730. weight: math.unit(10500, "lb"),
  23731. name: "Back",
  23732. image: {
  23733. source: "./media/characters/kayda/back.svg",
  23734. extra: 1557 / 1464,
  23735. bottom: 39.5 / 1597.49
  23736. }
  23737. },
  23738. dick: {
  23739. height: math.unit(3.858, "feet"),
  23740. name: "Dick",
  23741. image: {
  23742. source: "./media/characters/kayda/dick.svg"
  23743. }
  23744. },
  23745. },
  23746. [
  23747. {
  23748. name: "Macro",
  23749. height: math.unit(28, "feet"),
  23750. default: true
  23751. },
  23752. ]
  23753. ))
  23754. characterMakers.push(() => makeCharacter(
  23755. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23756. {
  23757. front: {
  23758. height: math.unit(10 + 11 / 12, "feet"),
  23759. weight: math.unit(1400, "lb"),
  23760. name: "Front",
  23761. image: {
  23762. source: "./media/characters/brian/front.svg",
  23763. extra: 737 / 692,
  23764. bottom: 55.4 / 785
  23765. }
  23766. },
  23767. },
  23768. [
  23769. {
  23770. name: "Normal",
  23771. height: math.unit(10 + 11 / 12, "feet"),
  23772. default: true
  23773. },
  23774. ]
  23775. ))
  23776. characterMakers.push(() => makeCharacter(
  23777. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23778. {
  23779. front: {
  23780. height: math.unit(5 + 8 / 12, "feet"),
  23781. weight: math.unit(140, "lb"),
  23782. name: "Front",
  23783. image: {
  23784. source: "./media/characters/khemri/front.svg",
  23785. extra: 4780 / 4059,
  23786. bottom: 80.1 / 4859.25
  23787. }
  23788. },
  23789. },
  23790. [
  23791. {
  23792. name: "Micro",
  23793. height: math.unit(6, "inches")
  23794. },
  23795. {
  23796. name: "Normal",
  23797. height: math.unit(5 + 8 / 12, "feet"),
  23798. default: true
  23799. },
  23800. ]
  23801. ))
  23802. characterMakers.push(() => makeCharacter(
  23803. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23804. {
  23805. front: {
  23806. height: math.unit(13, "feet"),
  23807. weight: math.unit(1700, "lb"),
  23808. name: "Front",
  23809. image: {
  23810. source: "./media/characters/felix-braveheart/front.svg",
  23811. extra: 1222 / 1157,
  23812. bottom: 53.2 / 1280
  23813. }
  23814. },
  23815. back: {
  23816. height: math.unit(13, "feet"),
  23817. weight: math.unit(1700, "lb"),
  23818. name: "Back",
  23819. image: {
  23820. source: "./media/characters/felix-braveheart/back.svg",
  23821. extra: 1277 / 1203,
  23822. bottom: 50.2 / 1327
  23823. }
  23824. },
  23825. feral: {
  23826. height: math.unit(6, "feet"),
  23827. weight: math.unit(400, "lb"),
  23828. name: "Feral",
  23829. image: {
  23830. source: "./media/characters/felix-braveheart/feral.svg",
  23831. extra: 682 / 625,
  23832. bottom: 6.9 / 688
  23833. }
  23834. },
  23835. },
  23836. [
  23837. {
  23838. name: "Normal",
  23839. height: math.unit(13, "feet"),
  23840. default: true
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23846. {
  23847. side: {
  23848. height: math.unit(5 + 11 / 12, "feet"),
  23849. weight: math.unit(1400, "lb"),
  23850. name: "Side",
  23851. image: {
  23852. source: "./media/characters/shadow-blade/side.svg",
  23853. extra: 1726 / 1267,
  23854. bottom: 58.4 / 1785
  23855. }
  23856. },
  23857. },
  23858. [
  23859. {
  23860. name: "Normal",
  23861. height: math.unit(5 + 11 / 12, "feet"),
  23862. default: true
  23863. },
  23864. ]
  23865. ))
  23866. characterMakers.push(() => makeCharacter(
  23867. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23868. {
  23869. front: {
  23870. height: math.unit(1 + 6 / 12, "feet"),
  23871. weight: math.unit(25, "lb"),
  23872. name: "Front",
  23873. image: {
  23874. source: "./media/characters/karla-halldor/front.svg",
  23875. extra: 1459 / 1383,
  23876. bottom: 12 / 1472
  23877. }
  23878. },
  23879. },
  23880. [
  23881. {
  23882. name: "Normal",
  23883. height: math.unit(1 + 6 / 12, "feet"),
  23884. default: true
  23885. },
  23886. ]
  23887. ))
  23888. characterMakers.push(() => makeCharacter(
  23889. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23890. {
  23891. front: {
  23892. height: math.unit(6 + 2 / 12, "feet"),
  23893. weight: math.unit(160, "lb"),
  23894. name: "Front",
  23895. image: {
  23896. source: "./media/characters/ariam/front.svg",
  23897. extra: 714 / 617,
  23898. bottom: 23.4 / 737,
  23899. }
  23900. },
  23901. squatting: {
  23902. height: math.unit(4.1, "feet"),
  23903. weight: math.unit(160, "lb"),
  23904. name: "Squatting",
  23905. image: {
  23906. source: "./media/characters/ariam/squatting.svg",
  23907. extra: 2617 / 2112,
  23908. bottom: 61.2 / 2681,
  23909. }
  23910. },
  23911. },
  23912. [
  23913. {
  23914. name: "Normal",
  23915. height: math.unit(6 + 2 / 12, "feet"),
  23916. default: true
  23917. },
  23918. {
  23919. name: "Normal+",
  23920. height: math.unit(4, "meters")
  23921. },
  23922. {
  23923. name: "Macro",
  23924. height: math.unit(50, "meters")
  23925. },
  23926. {
  23927. name: "Macro+",
  23928. height: math.unit(100, "meters")
  23929. },
  23930. {
  23931. name: "Megamacro",
  23932. height: math.unit(20, "km")
  23933. },
  23934. ]
  23935. ))
  23936. characterMakers.push(() => makeCharacter(
  23937. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23938. {
  23939. front: {
  23940. height: math.unit(1.67, "meters"),
  23941. weight: math.unit(140, "lb"),
  23942. name: "Front",
  23943. image: {
  23944. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23945. extra: 438 / 410,
  23946. bottom: 0.75 / 439
  23947. }
  23948. },
  23949. },
  23950. [
  23951. {
  23952. name: "Shrunken",
  23953. height: math.unit(7.6, "cm")
  23954. },
  23955. {
  23956. name: "Human Scale",
  23957. height: math.unit(1.67, "meters")
  23958. },
  23959. {
  23960. name: "Wolxi Scale",
  23961. height: math.unit(36.7, "meters"),
  23962. default: true
  23963. },
  23964. ]
  23965. ))
  23966. characterMakers.push(() => makeCharacter(
  23967. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23968. {
  23969. front: {
  23970. height: math.unit(1.73, "meters"),
  23971. weight: math.unit(240, "lb"),
  23972. name: "Front",
  23973. image: {
  23974. source: "./media/characters/izue-two-mothers/front.svg",
  23975. extra: 469 / 437,
  23976. bottom: 1.24 / 470.6
  23977. }
  23978. },
  23979. },
  23980. [
  23981. {
  23982. name: "Shrunken",
  23983. height: math.unit(7.86, "cm")
  23984. },
  23985. {
  23986. name: "Human Scale",
  23987. height: math.unit(1.73, "meters")
  23988. },
  23989. {
  23990. name: "Wolxi Scale",
  23991. height: math.unit(38, "meters"),
  23992. default: true
  23993. },
  23994. ]
  23995. ))
  23996. characterMakers.push(() => makeCharacter(
  23997. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23998. {
  23999. front: {
  24000. height: math.unit(1.55, "meters"),
  24001. weight: math.unit(120, "lb"),
  24002. name: "Front",
  24003. image: {
  24004. source: "./media/characters/teeku-love-shack/front.svg",
  24005. extra: 387 / 362,
  24006. bottom: 1.51 / 388
  24007. }
  24008. },
  24009. },
  24010. [
  24011. {
  24012. name: "Shrunken",
  24013. height: math.unit(7, "cm")
  24014. },
  24015. {
  24016. name: "Human Scale",
  24017. height: math.unit(1.55, "meters")
  24018. },
  24019. {
  24020. name: "Wolxi Scale",
  24021. height: math.unit(34.1, "meters"),
  24022. default: true
  24023. },
  24024. ]
  24025. ))
  24026. characterMakers.push(() => makeCharacter(
  24027. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24028. {
  24029. front: {
  24030. height: math.unit(1.83, "meters"),
  24031. weight: math.unit(135, "lb"),
  24032. name: "Front",
  24033. image: {
  24034. source: "./media/characters/dejma-the-red/front.svg",
  24035. extra: 480 / 458,
  24036. bottom: 1.8 / 482
  24037. }
  24038. },
  24039. },
  24040. [
  24041. {
  24042. name: "Shrunken",
  24043. height: math.unit(8.3, "cm")
  24044. },
  24045. {
  24046. name: "Human Scale",
  24047. height: math.unit(1.83, "meters")
  24048. },
  24049. {
  24050. name: "Wolxi Scale",
  24051. height: math.unit(40, "meters"),
  24052. default: true
  24053. },
  24054. ]
  24055. ))
  24056. characterMakers.push(() => makeCharacter(
  24057. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24058. {
  24059. front: {
  24060. height: math.unit(1.78, "meters"),
  24061. weight: math.unit(65, "kg"),
  24062. name: "Front",
  24063. image: {
  24064. source: "./media/characters/aki/front.svg",
  24065. extra: 452 / 415
  24066. }
  24067. },
  24068. frontNsfw: {
  24069. height: math.unit(1.78, "meters"),
  24070. weight: math.unit(65, "kg"),
  24071. name: "Front (NSFW)",
  24072. image: {
  24073. source: "./media/characters/aki/front-nsfw.svg",
  24074. extra: 452 / 415
  24075. }
  24076. },
  24077. back: {
  24078. height: math.unit(1.78, "meters"),
  24079. weight: math.unit(65, "kg"),
  24080. name: "Back",
  24081. image: {
  24082. source: "./media/characters/aki/back.svg",
  24083. extra: 452 / 415
  24084. }
  24085. },
  24086. rump: {
  24087. height: math.unit(2.05, "feet"),
  24088. name: "Rump",
  24089. image: {
  24090. source: "./media/characters/aki/rump.svg"
  24091. }
  24092. },
  24093. dick: {
  24094. height: math.unit(0.95, "feet"),
  24095. name: "Dick",
  24096. image: {
  24097. source: "./media/characters/aki/dick.svg"
  24098. }
  24099. },
  24100. },
  24101. [
  24102. {
  24103. name: "Micro",
  24104. height: math.unit(15, "cm")
  24105. },
  24106. {
  24107. name: "Normal",
  24108. height: math.unit(178, "cm"),
  24109. default: true
  24110. },
  24111. {
  24112. name: "Macro",
  24113. height: math.unit(214, "m")
  24114. },
  24115. {
  24116. name: "Macro+",
  24117. height: math.unit(534, "m")
  24118. },
  24119. ]
  24120. ))
  24121. characterMakers.push(() => makeCharacter(
  24122. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24123. {
  24124. front: {
  24125. height: math.unit(5 + 5 / 12, "feet"),
  24126. weight: math.unit(120, "lb"),
  24127. name: "Front",
  24128. image: {
  24129. source: "./media/characters/ari/front.svg",
  24130. extra: 714.5 / 682,
  24131. bottom: 8 / 722.5
  24132. }
  24133. },
  24134. },
  24135. [
  24136. {
  24137. name: "Normal",
  24138. height: math.unit(5 + 5 / 12, "feet")
  24139. },
  24140. {
  24141. name: "Macro",
  24142. height: math.unit(100, "feet"),
  24143. default: true
  24144. },
  24145. {
  24146. name: "Megamacro",
  24147. height: math.unit(100, "miles")
  24148. },
  24149. {
  24150. name: "Gigamacro",
  24151. height: math.unit(80000, "miles")
  24152. },
  24153. ]
  24154. ))
  24155. characterMakers.push(() => makeCharacter(
  24156. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24157. {
  24158. side: {
  24159. height: math.unit(9, "feet"),
  24160. weight: math.unit(400, "kg"),
  24161. name: "Side",
  24162. image: {
  24163. source: "./media/characters/bolt/side.svg",
  24164. extra: 1126 / 896,
  24165. bottom: 60 / 1187.3,
  24166. }
  24167. },
  24168. },
  24169. [
  24170. {
  24171. name: "Micro",
  24172. height: math.unit(5, "inches")
  24173. },
  24174. {
  24175. name: "Normal",
  24176. height: math.unit(9, "feet"),
  24177. default: true
  24178. },
  24179. {
  24180. name: "Macro",
  24181. height: math.unit(700, "feet")
  24182. },
  24183. {
  24184. name: "Max Size",
  24185. height: math.unit(1.52e22, "yottameters")
  24186. },
  24187. ]
  24188. ))
  24189. characterMakers.push(() => makeCharacter(
  24190. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24191. {
  24192. front: {
  24193. height: math.unit(4.53, "meters"),
  24194. weight: math.unit(3, "tons"),
  24195. name: "Front",
  24196. image: {
  24197. source: "./media/characters/draekon-sylviar/front.svg",
  24198. extra: 1228 / 1068,
  24199. bottom: 41 / 1270
  24200. }
  24201. },
  24202. tail: {
  24203. height: math.unit(1.772, "meter"),
  24204. name: "Tail",
  24205. image: {
  24206. source: "./media/characters/draekon-sylviar/tail.svg"
  24207. }
  24208. },
  24209. head: {
  24210. height: math.unit(1.331, "meter"),
  24211. name: "Head",
  24212. image: {
  24213. source: "./media/characters/draekon-sylviar/head.svg"
  24214. }
  24215. },
  24216. hand: {
  24217. height: math.unit(0.564, "meter"),
  24218. name: "Hand",
  24219. image: {
  24220. source: "./media/characters/draekon-sylviar/hand.svg"
  24221. }
  24222. },
  24223. foot: {
  24224. height: math.unit(0.621, "meter"),
  24225. name: "Foot",
  24226. image: {
  24227. source: "./media/characters/draekon-sylviar/foot.svg",
  24228. bottom: 32 / 324
  24229. }
  24230. },
  24231. dick: {
  24232. height: math.unit(61, "cm"),
  24233. name: "Dick",
  24234. image: {
  24235. source: "./media/characters/draekon-sylviar/dick.svg"
  24236. }
  24237. },
  24238. dickseparated: {
  24239. height: math.unit(61, "cm"),
  24240. name: "Dick-separated",
  24241. image: {
  24242. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24243. }
  24244. },
  24245. },
  24246. [
  24247. {
  24248. name: "Small",
  24249. height: math.unit(4.53 / 2, "meters"),
  24250. default: true
  24251. },
  24252. {
  24253. name: "Normal",
  24254. height: math.unit(4.53, "meters"),
  24255. default: true
  24256. },
  24257. {
  24258. name: "Large",
  24259. height: math.unit(4.53 * 2, "meters"),
  24260. },
  24261. ]
  24262. ))
  24263. characterMakers.push(() => makeCharacter(
  24264. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24265. {
  24266. front: {
  24267. height: math.unit(6 + 2 / 12, "feet"),
  24268. weight: math.unit(180, "lb"),
  24269. name: "Front",
  24270. image: {
  24271. source: "./media/characters/brawler/front.svg",
  24272. extra: 3301 / 3027,
  24273. bottom: 138 / 3439
  24274. }
  24275. },
  24276. },
  24277. [
  24278. {
  24279. name: "Normal",
  24280. height: math.unit(6 + 2 / 12, "feet"),
  24281. default: true
  24282. },
  24283. ]
  24284. ))
  24285. characterMakers.push(() => makeCharacter(
  24286. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24287. {
  24288. front: {
  24289. height: math.unit(11, "feet"),
  24290. weight: math.unit(1000, "lb"),
  24291. name: "Front",
  24292. image: {
  24293. source: "./media/characters/alex/front.svg",
  24294. bottom: 44.5 / 620
  24295. }
  24296. },
  24297. },
  24298. [
  24299. {
  24300. name: "Micro",
  24301. height: math.unit(5, "inches")
  24302. },
  24303. {
  24304. name: "Normal",
  24305. height: math.unit(11, "feet"),
  24306. default: true
  24307. },
  24308. {
  24309. name: "Macro",
  24310. height: math.unit(9.5e9, "feet")
  24311. },
  24312. {
  24313. name: "Max Size",
  24314. height: math.unit(1.4e283, "yottameters")
  24315. },
  24316. ]
  24317. ))
  24318. characterMakers.push(() => makeCharacter(
  24319. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24320. {
  24321. female: {
  24322. height: math.unit(29.9, "m"),
  24323. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24324. name: "Female",
  24325. image: {
  24326. source: "./media/characters/zenari/female.svg",
  24327. extra: 3281.6 / 3217,
  24328. bottom: 72.2 / 3353
  24329. }
  24330. },
  24331. male: {
  24332. height: math.unit(27.7, "m"),
  24333. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24334. name: "Male",
  24335. image: {
  24336. source: "./media/characters/zenari/male.svg",
  24337. extra: 3008 / 2991,
  24338. bottom: 54.6 / 3069
  24339. }
  24340. },
  24341. },
  24342. [
  24343. {
  24344. name: "Macro",
  24345. height: math.unit(29.7, "meters"),
  24346. default: true
  24347. },
  24348. ]
  24349. ))
  24350. characterMakers.push(() => makeCharacter(
  24351. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24352. {
  24353. female: {
  24354. height: math.unit(23.8, "m"),
  24355. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24356. name: "Female",
  24357. image: {
  24358. source: "./media/characters/mactarian/female.svg",
  24359. extra: 2662 / 2569,
  24360. bottom: 73 / 2736
  24361. }
  24362. },
  24363. male: {
  24364. height: math.unit(23.8, "m"),
  24365. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24366. name: "Male",
  24367. image: {
  24368. source: "./media/characters/mactarian/male.svg",
  24369. extra: 2673 / 2600,
  24370. bottom: 76 / 2750
  24371. }
  24372. },
  24373. },
  24374. [
  24375. {
  24376. name: "Macro",
  24377. height: math.unit(23.8, "meters"),
  24378. default: true
  24379. },
  24380. ]
  24381. ))
  24382. characterMakers.push(() => makeCharacter(
  24383. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24384. {
  24385. female: {
  24386. height: math.unit(19.3, "m"),
  24387. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24388. name: "Female",
  24389. image: {
  24390. source: "./media/characters/umok/female.svg",
  24391. extra: 2186 / 2078,
  24392. bottom: 87 / 2277
  24393. }
  24394. },
  24395. male: {
  24396. height: math.unit(19.5, "m"),
  24397. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24398. name: "Male",
  24399. image: {
  24400. source: "./media/characters/umok/male.svg",
  24401. extra: 2233 / 2140,
  24402. bottom: 24.4 / 2258
  24403. }
  24404. },
  24405. },
  24406. [
  24407. {
  24408. name: "Macro",
  24409. height: math.unit(19.3, "meters"),
  24410. default: true
  24411. },
  24412. ]
  24413. ))
  24414. characterMakers.push(() => makeCharacter(
  24415. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24416. {
  24417. female: {
  24418. height: math.unit(26.15, "m"),
  24419. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24420. name: "Female",
  24421. image: {
  24422. source: "./media/characters/joraxian/female.svg",
  24423. extra: 2912 / 2824,
  24424. bottom: 36 / 2956
  24425. }
  24426. },
  24427. male: {
  24428. height: math.unit(25.4, "m"),
  24429. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24430. name: "Male",
  24431. image: {
  24432. source: "./media/characters/joraxian/male.svg",
  24433. extra: 2877 / 2721,
  24434. bottom: 82 / 2967
  24435. }
  24436. },
  24437. },
  24438. [
  24439. {
  24440. name: "Macro",
  24441. height: math.unit(26.15, "meters"),
  24442. default: true
  24443. },
  24444. ]
  24445. ))
  24446. characterMakers.push(() => makeCharacter(
  24447. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24448. {
  24449. female: {
  24450. height: math.unit(21.6, "m"),
  24451. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24452. name: "Female",
  24453. image: {
  24454. source: "./media/characters/sthara/female.svg",
  24455. extra: 2516 / 2347,
  24456. bottom: 21.5 / 2537
  24457. }
  24458. },
  24459. male: {
  24460. height: math.unit(24, "m"),
  24461. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24462. name: "Male",
  24463. image: {
  24464. source: "./media/characters/sthara/male.svg",
  24465. extra: 2732 / 2607,
  24466. bottom: 23 / 2732
  24467. }
  24468. },
  24469. },
  24470. [
  24471. {
  24472. name: "Macro",
  24473. height: math.unit(21.6, "meters"),
  24474. default: true
  24475. },
  24476. ]
  24477. ))
  24478. characterMakers.push(() => makeCharacter(
  24479. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24480. {
  24481. front: {
  24482. height: math.unit(6 + 4 / 12, "feet"),
  24483. weight: math.unit(175, "lb"),
  24484. name: "Front",
  24485. image: {
  24486. source: "./media/characters/luka-bryzant/front.svg",
  24487. extra: 311 / 289,
  24488. bottom: 4 / 315
  24489. }
  24490. },
  24491. back: {
  24492. height: math.unit(6 + 4 / 12, "feet"),
  24493. weight: math.unit(175, "lb"),
  24494. name: "Back",
  24495. image: {
  24496. source: "./media/characters/luka-bryzant/back.svg",
  24497. extra: 311 / 289,
  24498. bottom: 3.8 / 313.7
  24499. }
  24500. },
  24501. },
  24502. [
  24503. {
  24504. name: "Micro",
  24505. height: math.unit(10, "inches")
  24506. },
  24507. {
  24508. name: "Normal",
  24509. height: math.unit(6 + 4 / 12, "feet"),
  24510. default: true
  24511. },
  24512. {
  24513. name: "Large",
  24514. height: math.unit(12, "feet")
  24515. },
  24516. ]
  24517. ))
  24518. characterMakers.push(() => makeCharacter(
  24519. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24520. {
  24521. front: {
  24522. height: math.unit(5 + 7 / 12, "feet"),
  24523. weight: math.unit(185, "lb"),
  24524. name: "Front",
  24525. image: {
  24526. source: "./media/characters/aman-aquila/front.svg",
  24527. extra: 1013 / 976,
  24528. bottom: 45.6 / 1057
  24529. }
  24530. },
  24531. side: {
  24532. height: math.unit(5 + 7 / 12, "feet"),
  24533. weight: math.unit(185, "lb"),
  24534. name: "Side",
  24535. image: {
  24536. source: "./media/characters/aman-aquila/side.svg",
  24537. extra: 1054 / 1011,
  24538. bottom: 15 / 1070
  24539. }
  24540. },
  24541. back: {
  24542. height: math.unit(5 + 7 / 12, "feet"),
  24543. weight: math.unit(185, "lb"),
  24544. name: "Back",
  24545. image: {
  24546. source: "./media/characters/aman-aquila/back.svg",
  24547. extra: 1026 / 970,
  24548. bottom: 12 / 1039
  24549. }
  24550. },
  24551. head: {
  24552. height: math.unit(1.211, "feet"),
  24553. name: "Head",
  24554. image: {
  24555. source: "./media/characters/aman-aquila/head.svg",
  24556. }
  24557. },
  24558. },
  24559. [
  24560. {
  24561. name: "Minimicro",
  24562. height: math.unit(0.057, "inches")
  24563. },
  24564. {
  24565. name: "Micro",
  24566. height: math.unit(7, "inches")
  24567. },
  24568. {
  24569. name: "Mini",
  24570. height: math.unit(3 + 7 / 12, "feet")
  24571. },
  24572. {
  24573. name: "Normal",
  24574. height: math.unit(5 + 7 / 12, "feet"),
  24575. default: true
  24576. },
  24577. {
  24578. name: "Macro",
  24579. height: math.unit(157 + 7 / 12, "feet")
  24580. },
  24581. {
  24582. name: "Megamacro",
  24583. height: math.unit(1557 + 7 / 12, "feet")
  24584. },
  24585. {
  24586. name: "Gigamacro",
  24587. height: math.unit(15557 + 7 / 12, "feet")
  24588. },
  24589. ]
  24590. ))
  24591. characterMakers.push(() => makeCharacter(
  24592. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24593. {
  24594. front: {
  24595. height: math.unit(3 + 2 / 12, "inches"),
  24596. weight: math.unit(0.3, "ounces"),
  24597. name: "Front",
  24598. image: {
  24599. source: "./media/characters/hiphae/front.svg",
  24600. extra: 1931 / 1683,
  24601. bottom: 24 / 1955
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(3 + 1 / 2, "inches"),
  24609. default: true
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24615. {
  24616. front: {
  24617. height: math.unit(5 + 10 / 12, "feet"),
  24618. weight: math.unit(165, "lb"),
  24619. name: "Front",
  24620. image: {
  24621. source: "./media/characters/nicky/front.svg",
  24622. extra: 3144 / 2886,
  24623. bottom: 45.6 / 3192
  24624. }
  24625. },
  24626. back: {
  24627. height: math.unit(5 + 10 / 12, "feet"),
  24628. weight: math.unit(165, "lb"),
  24629. name: "Back",
  24630. image: {
  24631. source: "./media/characters/nicky/back.svg",
  24632. extra: 3055 / 2804,
  24633. bottom: 28.4 / 3087
  24634. }
  24635. },
  24636. frontclothed: {
  24637. height: math.unit(5 + 10 / 12, "feet"),
  24638. weight: math.unit(165, "lb"),
  24639. name: "Front-clothed",
  24640. image: {
  24641. source: "./media/characters/nicky/front-clothed.svg",
  24642. extra: 3184.9 / 2926.9,
  24643. bottom: 86.5 / 3239.9
  24644. }
  24645. },
  24646. foot: {
  24647. height: math.unit(1.16, "feet"),
  24648. name: "Foot",
  24649. image: {
  24650. source: "./media/characters/nicky/foot.svg"
  24651. }
  24652. },
  24653. feet: {
  24654. height: math.unit(1.34, "feet"),
  24655. name: "Feet",
  24656. image: {
  24657. source: "./media/characters/nicky/feet.svg"
  24658. }
  24659. },
  24660. maw: {
  24661. height: math.unit(0.9, "feet"),
  24662. name: "Maw",
  24663. image: {
  24664. source: "./media/characters/nicky/maw.svg"
  24665. }
  24666. },
  24667. },
  24668. [
  24669. {
  24670. name: "Normal",
  24671. height: math.unit(5 + 10 / 12, "feet"),
  24672. default: true
  24673. },
  24674. {
  24675. name: "Macro",
  24676. height: math.unit(60, "feet")
  24677. },
  24678. {
  24679. name: "Megamacro",
  24680. height: math.unit(1, "mile")
  24681. },
  24682. ]
  24683. ))
  24684. characterMakers.push(() => makeCharacter(
  24685. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24686. {
  24687. side: {
  24688. height: math.unit(10, "feet"),
  24689. weight: math.unit(600, "lb"),
  24690. name: "Side",
  24691. image: {
  24692. source: "./media/characters/blair/side.svg",
  24693. bottom: 16.6 / 475,
  24694. extra: 458 / 431
  24695. }
  24696. },
  24697. },
  24698. [
  24699. {
  24700. name: "Micro",
  24701. height: math.unit(8, "inches")
  24702. },
  24703. {
  24704. name: "Normal",
  24705. height: math.unit(10, "feet"),
  24706. default: true
  24707. },
  24708. {
  24709. name: "Macro",
  24710. height: math.unit(180, "feet")
  24711. },
  24712. ]
  24713. ))
  24714. characterMakers.push(() => makeCharacter(
  24715. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24716. {
  24717. front: {
  24718. height: math.unit(5 + 4 / 12, "feet"),
  24719. weight: math.unit(125, "lb"),
  24720. name: "Front",
  24721. image: {
  24722. source: "./media/characters/fisher/front.svg",
  24723. extra: 444 / 390,
  24724. bottom: 2 / 444.8
  24725. }
  24726. },
  24727. },
  24728. [
  24729. {
  24730. name: "Micro",
  24731. height: math.unit(4, "inches")
  24732. },
  24733. {
  24734. name: "Normal",
  24735. height: math.unit(5 + 4 / 12, "feet"),
  24736. default: true
  24737. },
  24738. {
  24739. name: "Macro",
  24740. height: math.unit(100, "feet")
  24741. },
  24742. ]
  24743. ))
  24744. characterMakers.push(() => makeCharacter(
  24745. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24746. {
  24747. front: {
  24748. height: math.unit(6.71, "feet"),
  24749. weight: math.unit(200, "lb"),
  24750. capacity: math.unit(1000000, "people"),
  24751. name: "Front",
  24752. image: {
  24753. source: "./media/characters/gliss/front.svg",
  24754. extra: 2347 / 2231,
  24755. bottom: 113 / 2462
  24756. }
  24757. },
  24758. hammerspaceSize: {
  24759. height: math.unit(6.71 * 717, "feet"),
  24760. weight: math.unit(200, "lb"),
  24761. capacity: math.unit(1000000, "people"),
  24762. name: "Hammerspace Size",
  24763. image: {
  24764. source: "./media/characters/gliss/front.svg",
  24765. extra: 2347 / 2231,
  24766. bottom: 113 / 2462
  24767. }
  24768. },
  24769. },
  24770. [
  24771. {
  24772. name: "Normal",
  24773. height: math.unit(6.71, "feet"),
  24774. default: true
  24775. },
  24776. ]
  24777. ))
  24778. characterMakers.push(() => makeCharacter(
  24779. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24780. {
  24781. side: {
  24782. height: math.unit(1.44, "m"),
  24783. weight: math.unit(80, "kg"),
  24784. name: "Side",
  24785. image: {
  24786. source: "./media/characters/dune-anderson/side.svg",
  24787. bottom: 49 / 1426
  24788. }
  24789. },
  24790. },
  24791. [
  24792. {
  24793. name: "Wolf-sized",
  24794. height: math.unit(1.44, "meters")
  24795. },
  24796. {
  24797. name: "Normal",
  24798. height: math.unit(5.05, "meters"),
  24799. default: true
  24800. },
  24801. {
  24802. name: "Big",
  24803. height: math.unit(14.4, "meters")
  24804. },
  24805. {
  24806. name: "Huge",
  24807. height: math.unit(144, "meters")
  24808. },
  24809. ]
  24810. ))
  24811. characterMakers.push(() => makeCharacter(
  24812. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24813. {
  24814. front: {
  24815. height: math.unit(7, "feet"),
  24816. weight: math.unit(425, "lb"),
  24817. name: "Front",
  24818. image: {
  24819. source: "./media/characters/hind/front.svg",
  24820. extra: 2091 / 1860,
  24821. bottom: 129 / 2220
  24822. }
  24823. },
  24824. back: {
  24825. height: math.unit(7, "feet"),
  24826. weight: math.unit(425, "lb"),
  24827. name: "Back",
  24828. image: {
  24829. source: "./media/characters/hind/back.svg",
  24830. extra: 2091 / 1860,
  24831. bottom: 24.6 / 2309
  24832. }
  24833. },
  24834. tail: {
  24835. height: math.unit(2.8, "feet"),
  24836. name: "Tail",
  24837. image: {
  24838. source: "./media/characters/hind/tail.svg"
  24839. }
  24840. },
  24841. head: {
  24842. height: math.unit(2.55, "feet"),
  24843. name: "Head",
  24844. image: {
  24845. source: "./media/characters/hind/head.svg"
  24846. }
  24847. },
  24848. },
  24849. [
  24850. {
  24851. name: "XS",
  24852. height: math.unit(0.7, "feet")
  24853. },
  24854. {
  24855. name: "Normal",
  24856. height: math.unit(7, "feet"),
  24857. default: true
  24858. },
  24859. {
  24860. name: "XL",
  24861. height: math.unit(70, "feet")
  24862. },
  24863. ]
  24864. ))
  24865. characterMakers.push(() => makeCharacter(
  24866. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24867. {
  24868. front: {
  24869. height: math.unit(6, "feet"),
  24870. weight: math.unit(150, "lb"),
  24871. name: "Front",
  24872. image: {
  24873. source: "./media/characters/tharquench-sizestealer/front.svg",
  24874. extra: 2318 / 2063,
  24875. bottom: 93.4 / 2410
  24876. }
  24877. },
  24878. },
  24879. [
  24880. {
  24881. name: "Nano",
  24882. height: math.unit(1, "mm")
  24883. },
  24884. {
  24885. name: "Micro",
  24886. height: math.unit(1, "cm")
  24887. },
  24888. {
  24889. name: "Normal",
  24890. height: math.unit(2.1, "meters"),
  24891. default: true
  24892. },
  24893. ]
  24894. ))
  24895. characterMakers.push(() => makeCharacter(
  24896. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24897. {
  24898. front: {
  24899. height: math.unit(7 + 5 / 12, "feet"),
  24900. weight: math.unit(357, "lb"),
  24901. name: "Front",
  24902. image: {
  24903. source: "./media/characters/solex-draconov/front.svg",
  24904. extra: 1993 / 1865,
  24905. bottom: 117 / 2111
  24906. }
  24907. },
  24908. },
  24909. [
  24910. {
  24911. name: "Natural Height",
  24912. height: math.unit(7 + 5 / 12, "feet"),
  24913. default: true
  24914. },
  24915. {
  24916. name: "Macro",
  24917. height: math.unit(350, "feet")
  24918. },
  24919. {
  24920. name: "Macro+",
  24921. height: math.unit(1000, "feet")
  24922. },
  24923. {
  24924. name: "Megamacro",
  24925. height: math.unit(20, "km")
  24926. },
  24927. {
  24928. name: "Megamacro+",
  24929. height: math.unit(1000, "km")
  24930. },
  24931. {
  24932. name: "Gigamacro",
  24933. height: math.unit(2.5, "Gm")
  24934. },
  24935. {
  24936. name: "Teramacro",
  24937. height: math.unit(15, "Tm")
  24938. },
  24939. {
  24940. name: "Galactic",
  24941. height: math.unit(30, "Zm")
  24942. },
  24943. {
  24944. name: "Universal",
  24945. height: math.unit(21000, "Ym")
  24946. },
  24947. {
  24948. name: "Omniversal",
  24949. height: math.unit(9.861e50, "Ym")
  24950. },
  24951. {
  24952. name: "Existential",
  24953. height: math.unit(1e300, "meters")
  24954. },
  24955. ]
  24956. ))
  24957. characterMakers.push(() => makeCharacter(
  24958. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24959. {
  24960. side: {
  24961. height: math.unit(25, "feet"),
  24962. weight: math.unit(90000, "lb"),
  24963. name: "Side",
  24964. image: {
  24965. source: "./media/characters/mandarax/side.svg",
  24966. extra: 614 / 332,
  24967. bottom: 55 / 630
  24968. }
  24969. },
  24970. head: {
  24971. height: math.unit(11.4, "feet"),
  24972. name: "Head",
  24973. image: {
  24974. source: "./media/characters/mandarax/head.svg"
  24975. }
  24976. },
  24977. belly: {
  24978. height: math.unit(33, "feet"),
  24979. name: "Belly",
  24980. capacity: math.unit(500, "people"),
  24981. image: {
  24982. source: "./media/characters/mandarax/belly.svg"
  24983. }
  24984. },
  24985. dick: {
  24986. height: math.unit(8.46, "feet"),
  24987. name: "Dick",
  24988. image: {
  24989. source: "./media/characters/mandarax/dick.svg"
  24990. }
  24991. },
  24992. top: {
  24993. height: math.unit(28, "meters"),
  24994. name: "Top",
  24995. image: {
  24996. source: "./media/characters/mandarax/top.svg"
  24997. }
  24998. },
  24999. },
  25000. [
  25001. {
  25002. name: "Normal",
  25003. height: math.unit(25, "feet"),
  25004. default: true
  25005. },
  25006. ]
  25007. ))
  25008. characterMakers.push(() => makeCharacter(
  25009. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25010. {
  25011. front: {
  25012. height: math.unit(5, "feet"),
  25013. weight: math.unit(90, "lb"),
  25014. name: "Front",
  25015. image: {
  25016. source: "./media/characters/pixil/front.svg",
  25017. extra: 2000 / 1618,
  25018. bottom: 12.3 / 2011
  25019. }
  25020. },
  25021. },
  25022. [
  25023. {
  25024. name: "Normal",
  25025. height: math.unit(5, "feet"),
  25026. default: true
  25027. },
  25028. {
  25029. name: "Megamacro",
  25030. height: math.unit(10, "miles"),
  25031. },
  25032. ]
  25033. ))
  25034. characterMakers.push(() => makeCharacter(
  25035. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25036. {
  25037. front: {
  25038. height: math.unit(7 + 2 / 12, "feet"),
  25039. weight: math.unit(200, "lb"),
  25040. name: "Front",
  25041. image: {
  25042. source: "./media/characters/angel/front.svg",
  25043. extra: 1830 / 1737,
  25044. bottom: 22.6 / 1854,
  25045. }
  25046. },
  25047. },
  25048. [
  25049. {
  25050. name: "Normal",
  25051. height: math.unit(7 + 2 / 12, "feet"),
  25052. default: true
  25053. },
  25054. {
  25055. name: "Macro",
  25056. height: math.unit(1000, "feet")
  25057. },
  25058. {
  25059. name: "Megamacro",
  25060. height: math.unit(2, "miles")
  25061. },
  25062. {
  25063. name: "Gigamacro",
  25064. height: math.unit(20, "earths")
  25065. },
  25066. ]
  25067. ))
  25068. characterMakers.push(() => makeCharacter(
  25069. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25070. {
  25071. front: {
  25072. height: math.unit(5, "feet"),
  25073. weight: math.unit(180, "lb"),
  25074. name: "Front",
  25075. image: {
  25076. source: "./media/characters/mekana/front.svg",
  25077. extra: 1671 / 1605,
  25078. bottom: 3.5 / 1691
  25079. }
  25080. },
  25081. side: {
  25082. height: math.unit(5, "feet"),
  25083. weight: math.unit(180, "lb"),
  25084. name: "Side",
  25085. image: {
  25086. source: "./media/characters/mekana/side.svg",
  25087. extra: 1671 / 1605,
  25088. bottom: 3.5 / 1691
  25089. }
  25090. },
  25091. back: {
  25092. height: math.unit(5, "feet"),
  25093. weight: math.unit(180, "lb"),
  25094. name: "Back",
  25095. image: {
  25096. source: "./media/characters/mekana/back.svg",
  25097. extra: 1671 / 1605,
  25098. bottom: 3.5 / 1691
  25099. }
  25100. },
  25101. },
  25102. [
  25103. {
  25104. name: "Normal",
  25105. height: math.unit(5, "feet"),
  25106. default: true
  25107. },
  25108. ]
  25109. ))
  25110. characterMakers.push(() => makeCharacter(
  25111. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25112. {
  25113. front: {
  25114. height: math.unit(4 + 6 / 12, "feet"),
  25115. weight: math.unit(80, "lb"),
  25116. name: "Front",
  25117. image: {
  25118. source: "./media/characters/pixie/front.svg",
  25119. extra: 1924 / 1825,
  25120. bottom: 22.4 / 1946
  25121. }
  25122. },
  25123. },
  25124. [
  25125. {
  25126. name: "Normal",
  25127. height: math.unit(4 + 6 / 12, "feet"),
  25128. default: true
  25129. },
  25130. {
  25131. name: "Macro",
  25132. height: math.unit(40, "feet")
  25133. },
  25134. ]
  25135. ))
  25136. characterMakers.push(() => makeCharacter(
  25137. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25138. {
  25139. front: {
  25140. height: math.unit(2.1, "meters"),
  25141. weight: math.unit(200, "lb"),
  25142. name: "Front",
  25143. image: {
  25144. source: "./media/characters/the-lascivious/front.svg",
  25145. extra: 1 / 0.893,
  25146. bottom: 3.5 / 573.7
  25147. }
  25148. },
  25149. },
  25150. [
  25151. {
  25152. name: "Human Scale",
  25153. height: math.unit(2.1, "meters")
  25154. },
  25155. {
  25156. name: "Wolxi Scale",
  25157. height: math.unit(46.2, "m"),
  25158. default: true
  25159. },
  25160. {
  25161. name: "Boinker of Buildings",
  25162. height: math.unit(10, "km")
  25163. },
  25164. {
  25165. name: "Shagger of Skyscrapers",
  25166. height: math.unit(40, "km")
  25167. },
  25168. {
  25169. name: "Banger of Boroughs",
  25170. height: math.unit(4000, "km")
  25171. },
  25172. {
  25173. name: "Screwer of States",
  25174. height: math.unit(100000, "km")
  25175. },
  25176. {
  25177. name: "Pounder of Planets",
  25178. height: math.unit(2000000, "km")
  25179. },
  25180. ]
  25181. ))
  25182. characterMakers.push(() => makeCharacter(
  25183. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25184. {
  25185. front: {
  25186. height: math.unit(6, "feet"),
  25187. weight: math.unit(150, "lb"),
  25188. name: "Front",
  25189. image: {
  25190. source: "./media/characters/aj/front.svg",
  25191. extra: 2039 / 1562,
  25192. bottom: 40 / 2079
  25193. }
  25194. },
  25195. },
  25196. [
  25197. {
  25198. name: "Normal",
  25199. height: math.unit(11 + 6 / 12, "feet"),
  25200. default: true
  25201. },
  25202. {
  25203. name: "Megamacro",
  25204. height: math.unit(60, "megameters")
  25205. },
  25206. ]
  25207. ))
  25208. characterMakers.push(() => makeCharacter(
  25209. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25210. {
  25211. side: {
  25212. height: math.unit(31 + 8 / 12, "feet"),
  25213. weight: math.unit(75000, "kg"),
  25214. name: "Side",
  25215. image: {
  25216. source: "./media/characters/koros/side.svg",
  25217. extra: 1442 / 1297,
  25218. bottom: 122.7 / 1562
  25219. }
  25220. },
  25221. dicksKingsCrown: {
  25222. height: math.unit(6, "feet"),
  25223. name: "Dicks (King's Crown)",
  25224. image: {
  25225. source: "./media/characters/koros/dicks-kings-crown.svg"
  25226. }
  25227. },
  25228. dicksTailSet: {
  25229. height: math.unit(3, "feet"),
  25230. name: "Dicks (Tail Set)",
  25231. image: {
  25232. source: "./media/characters/koros/dicks-tail-set.svg"
  25233. }
  25234. },
  25235. dickCumming: {
  25236. height: math.unit(7.98, "feet"),
  25237. name: "Dick (Cumming)",
  25238. image: {
  25239. source: "./media/characters/koros/dick-cumming.svg"
  25240. }
  25241. },
  25242. dicksBack: {
  25243. height: math.unit(5.9, "feet"),
  25244. name: "Dicks (Back)",
  25245. image: {
  25246. source: "./media/characters/koros/dicks-back.svg"
  25247. }
  25248. },
  25249. dicksFront: {
  25250. height: math.unit(3.72, "feet"),
  25251. name: "Dicks (Front)",
  25252. image: {
  25253. source: "./media/characters/koros/dicks-front.svg"
  25254. }
  25255. },
  25256. dicksPeeking: {
  25257. height: math.unit(3.0, "feet"),
  25258. name: "Dicks (Peeking)",
  25259. image: {
  25260. source: "./media/characters/koros/dicks-peeking.svg"
  25261. }
  25262. },
  25263. eye: {
  25264. height: math.unit(1.7, "feet"),
  25265. name: "Eye",
  25266. image: {
  25267. source: "./media/characters/koros/eye.svg"
  25268. }
  25269. },
  25270. headFront: {
  25271. height: math.unit(11.69, "feet"),
  25272. name: "Head (Front)",
  25273. image: {
  25274. source: "./media/characters/koros/head-front.svg"
  25275. }
  25276. },
  25277. headSide: {
  25278. height: math.unit(14, "feet"),
  25279. name: "Head (Side)",
  25280. image: {
  25281. source: "./media/characters/koros/head-side.svg"
  25282. }
  25283. },
  25284. leg: {
  25285. height: math.unit(17, "feet"),
  25286. name: "Leg",
  25287. image: {
  25288. source: "./media/characters/koros/leg.svg"
  25289. }
  25290. },
  25291. mawSide: {
  25292. height: math.unit(12.8, "feet"),
  25293. name: "Maw (Side)",
  25294. image: {
  25295. source: "./media/characters/koros/maw-side.svg"
  25296. }
  25297. },
  25298. mawSpitting: {
  25299. height: math.unit(17, "feet"),
  25300. name: "Maw (Spitting)",
  25301. image: {
  25302. source: "./media/characters/koros/maw-spitting.svg"
  25303. }
  25304. },
  25305. slit: {
  25306. height: math.unit(2.8, "feet"),
  25307. name: "Slit",
  25308. image: {
  25309. source: "./media/characters/koros/slit.svg"
  25310. }
  25311. },
  25312. stomach: {
  25313. height: math.unit(6.8, "feet"),
  25314. capacity: math.unit(20, "people"),
  25315. name: "Stomach",
  25316. image: {
  25317. source: "./media/characters/koros/stomach.svg"
  25318. }
  25319. },
  25320. wingspanBottom: {
  25321. height: math.unit(114, "feet"),
  25322. name: "Wingspan (Bottom)",
  25323. image: {
  25324. source: "./media/characters/koros/wingspan-bottom.svg"
  25325. }
  25326. },
  25327. wingspanTop: {
  25328. height: math.unit(104, "feet"),
  25329. name: "Wingspan (Top)",
  25330. image: {
  25331. source: "./media/characters/koros/wingspan-top.svg"
  25332. }
  25333. },
  25334. },
  25335. [
  25336. {
  25337. name: "Normal",
  25338. height: math.unit(31 + 8 / 12, "feet"),
  25339. default: true
  25340. },
  25341. ]
  25342. ))
  25343. characterMakers.push(() => makeCharacter(
  25344. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25345. {
  25346. front: {
  25347. height: math.unit(18 + 5 / 12, "feet"),
  25348. weight: math.unit(3750, "kg"),
  25349. name: "Front",
  25350. image: {
  25351. source: "./media/characters/vexx/front.svg",
  25352. extra: 426 / 396,
  25353. bottom: 31.5 / 458
  25354. }
  25355. },
  25356. maw: {
  25357. height: math.unit(6, "feet"),
  25358. name: "Maw",
  25359. image: {
  25360. source: "./media/characters/vexx/maw.svg"
  25361. }
  25362. },
  25363. },
  25364. [
  25365. {
  25366. name: "Normal",
  25367. height: math.unit(18 + 5 / 12, "feet"),
  25368. default: true
  25369. },
  25370. ]
  25371. ))
  25372. characterMakers.push(() => makeCharacter(
  25373. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25374. {
  25375. front: {
  25376. height: math.unit(17 + 6 / 12, "feet"),
  25377. weight: math.unit(150, "lb"),
  25378. name: "Front",
  25379. image: {
  25380. source: "./media/characters/baadra/front.svg",
  25381. extra: 3137 / 2890,
  25382. bottom: 168.4 / 3305
  25383. }
  25384. },
  25385. back: {
  25386. height: math.unit(17 + 6 / 12, "feet"),
  25387. weight: math.unit(150, "lb"),
  25388. name: "Back",
  25389. image: {
  25390. source: "./media/characters/baadra/back.svg",
  25391. extra: 3142 / 2890,
  25392. bottom: 220 / 3371
  25393. }
  25394. },
  25395. head: {
  25396. height: math.unit(5.45, "feet"),
  25397. name: "Head",
  25398. image: {
  25399. source: "./media/characters/baadra/head.svg"
  25400. }
  25401. },
  25402. headAngry: {
  25403. height: math.unit(4.95, "feet"),
  25404. name: "Head (Angry)",
  25405. image: {
  25406. source: "./media/characters/baadra/head-angry.svg"
  25407. }
  25408. },
  25409. headOpen: {
  25410. height: math.unit(6, "feet"),
  25411. name: "Head (Open)",
  25412. image: {
  25413. source: "./media/characters/baadra/head-open.svg"
  25414. }
  25415. },
  25416. },
  25417. [
  25418. {
  25419. name: "Normal",
  25420. height: math.unit(17 + 6 / 12, "feet"),
  25421. default: true
  25422. },
  25423. ]
  25424. ))
  25425. characterMakers.push(() => makeCharacter(
  25426. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25427. {
  25428. front: {
  25429. height: math.unit(7 + 3 / 12, "feet"),
  25430. weight: math.unit(180, "lb"),
  25431. name: "Front",
  25432. image: {
  25433. source: "./media/characters/juri/front.svg",
  25434. extra: 1401 / 1237,
  25435. bottom: 18.5 / 1418
  25436. }
  25437. },
  25438. side: {
  25439. height: math.unit(7 + 3 / 12, "feet"),
  25440. weight: math.unit(180, "lb"),
  25441. name: "Side",
  25442. image: {
  25443. source: "./media/characters/juri/side.svg",
  25444. extra: 1424 / 1242,
  25445. bottom: 18.5 / 1447
  25446. }
  25447. },
  25448. sitting: {
  25449. height: math.unit(6, "feet"),
  25450. weight: math.unit(180, "lb"),
  25451. name: "Sitting",
  25452. image: {
  25453. source: "./media/characters/juri/sitting.svg",
  25454. extra: 1270 / 1143,
  25455. bottom: 100 / 1343
  25456. }
  25457. },
  25458. back: {
  25459. height: math.unit(7 + 3 / 12, "feet"),
  25460. weight: math.unit(180, "lb"),
  25461. name: "Back",
  25462. image: {
  25463. source: "./media/characters/juri/back.svg",
  25464. extra: 1377 / 1240,
  25465. bottom: 23.7 / 1405
  25466. }
  25467. },
  25468. maw: {
  25469. height: math.unit(2.8, "feet"),
  25470. name: "Maw",
  25471. image: {
  25472. source: "./media/characters/juri/maw.svg"
  25473. }
  25474. },
  25475. stomach: {
  25476. height: math.unit(0.89, "feet"),
  25477. capacity: math.unit(4, "liters"),
  25478. name: "Stomach",
  25479. image: {
  25480. source: "./media/characters/juri/stomach.svg"
  25481. }
  25482. },
  25483. },
  25484. [
  25485. {
  25486. name: "Normal",
  25487. height: math.unit(7 + 3 / 12, "feet"),
  25488. default: true
  25489. },
  25490. ]
  25491. ))
  25492. characterMakers.push(() => makeCharacter(
  25493. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25494. {
  25495. fox: {
  25496. height: math.unit(5 + 6 / 12, "feet"),
  25497. weight: math.unit(140, "lb"),
  25498. name: "Fox",
  25499. image: {
  25500. source: "./media/characters/maxene-sita/fox.svg",
  25501. extra: 146 / 138,
  25502. bottom: 2.1 / 148.19
  25503. }
  25504. },
  25505. foxLaying: {
  25506. height: math.unit(1.70, "feet"),
  25507. weight: math.unit(140, "lb"),
  25508. name: "Fox (Laying)",
  25509. image: {
  25510. source: "./media/characters/maxene-sita/fox-laying.svg",
  25511. extra: 910 / 572,
  25512. bottom: 71 / 981
  25513. }
  25514. },
  25515. kitsune: {
  25516. height: math.unit(10, "feet"),
  25517. weight: math.unit(800, "lb"),
  25518. name: "Kitsune",
  25519. image: {
  25520. source: "./media/characters/maxene-sita/kitsune.svg",
  25521. extra: 185 / 176,
  25522. bottom: 4.7 / 189.9
  25523. }
  25524. },
  25525. hellhound: {
  25526. height: math.unit(10, "feet"),
  25527. weight: math.unit(700, "lb"),
  25528. name: "Hellhound",
  25529. image: {
  25530. source: "./media/characters/maxene-sita/hellhound.svg",
  25531. extra: 1600 / 1545,
  25532. bottom: 81 / 1681
  25533. }
  25534. },
  25535. },
  25536. [
  25537. {
  25538. name: "Normal",
  25539. height: math.unit(5 + 6 / 12, "feet"),
  25540. default: true
  25541. },
  25542. ]
  25543. ))
  25544. characterMakers.push(() => makeCharacter(
  25545. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25546. {
  25547. front: {
  25548. height: math.unit(3 + 4 / 12, "feet"),
  25549. weight: math.unit(70, "lb"),
  25550. name: "Front",
  25551. image: {
  25552. source: "./media/characters/maia/front.svg",
  25553. extra: 227 / 219.5,
  25554. bottom: 40 / 267
  25555. }
  25556. },
  25557. back: {
  25558. height: math.unit(3 + 4 / 12, "feet"),
  25559. weight: math.unit(70, "lb"),
  25560. name: "Back",
  25561. image: {
  25562. source: "./media/characters/maia/back.svg",
  25563. extra: 237 / 225
  25564. }
  25565. },
  25566. },
  25567. [
  25568. {
  25569. name: "Normal",
  25570. height: math.unit(3 + 4 / 12, "feet"),
  25571. default: true
  25572. },
  25573. ]
  25574. ))
  25575. characterMakers.push(() => makeCharacter(
  25576. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25577. {
  25578. front: {
  25579. height: math.unit(5 + 10 / 12, "feet"),
  25580. weight: math.unit(197, "lb"),
  25581. name: "Front",
  25582. image: {
  25583. source: "./media/characters/jabaro/front.svg",
  25584. extra: 225 / 216,
  25585. bottom: 5.06 / 230
  25586. }
  25587. },
  25588. back: {
  25589. height: math.unit(5 + 10 / 12, "feet"),
  25590. weight: math.unit(197, "lb"),
  25591. name: "Back",
  25592. image: {
  25593. source: "./media/characters/jabaro/back.svg",
  25594. extra: 225 / 219,
  25595. bottom: 1.9 / 227
  25596. }
  25597. },
  25598. },
  25599. [
  25600. {
  25601. name: "Normal",
  25602. height: math.unit(5 + 10 / 12, "feet"),
  25603. default: true
  25604. },
  25605. ]
  25606. ))
  25607. characterMakers.push(() => makeCharacter(
  25608. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25609. {
  25610. front: {
  25611. height: math.unit(5 + 8 / 12, "feet"),
  25612. weight: math.unit(139, "lb"),
  25613. name: "Front",
  25614. image: {
  25615. source: "./media/characters/risa/front.svg",
  25616. extra: 270 / 260,
  25617. bottom: 11.2 / 282
  25618. }
  25619. },
  25620. back: {
  25621. height: math.unit(5 + 8 / 12, "feet"),
  25622. weight: math.unit(139, "lb"),
  25623. name: "Back",
  25624. image: {
  25625. source: "./media/characters/risa/back.svg",
  25626. extra: 264 / 255,
  25627. bottom: 4 / 268
  25628. }
  25629. },
  25630. },
  25631. [
  25632. {
  25633. name: "Normal",
  25634. height: math.unit(5 + 8 / 12, "feet"),
  25635. default: true
  25636. },
  25637. ]
  25638. ))
  25639. characterMakers.push(() => makeCharacter(
  25640. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25641. {
  25642. front: {
  25643. height: math.unit(2 + 11 / 12, "feet"),
  25644. weight: math.unit(30, "lb"),
  25645. name: "Front",
  25646. image: {
  25647. source: "./media/characters/weatley/front.svg",
  25648. bottom: 10.7 / 414,
  25649. extra: 403.5 / 362
  25650. }
  25651. },
  25652. back: {
  25653. height: math.unit(2 + 11 / 12, "feet"),
  25654. weight: math.unit(30, "lb"),
  25655. name: "Back",
  25656. image: {
  25657. source: "./media/characters/weatley/back.svg",
  25658. bottom: 10.7 / 414,
  25659. extra: 403.5 / 362
  25660. }
  25661. },
  25662. },
  25663. [
  25664. {
  25665. name: "Normal",
  25666. height: math.unit(2 + 11 / 12, "feet"),
  25667. default: true
  25668. },
  25669. ]
  25670. ))
  25671. characterMakers.push(() => makeCharacter(
  25672. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25673. {
  25674. front: {
  25675. height: math.unit(5 + 2 / 12, "feet"),
  25676. weight: math.unit(50, "kg"),
  25677. name: "Front",
  25678. image: {
  25679. source: "./media/characters/mercury-crescent/front.svg",
  25680. extra: 1088 / 1033,
  25681. bottom: 18.9 / 1109
  25682. }
  25683. },
  25684. },
  25685. [
  25686. {
  25687. name: "Normal",
  25688. height: math.unit(5 + 2 / 12, "feet"),
  25689. default: true
  25690. },
  25691. ]
  25692. ))
  25693. characterMakers.push(() => makeCharacter(
  25694. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25695. {
  25696. front: {
  25697. height: math.unit(2, "feet"),
  25698. weight: math.unit(15, "kg"),
  25699. name: "Front",
  25700. image: {
  25701. source: "./media/characters/diamond-jones/front.svg",
  25702. extra: 727/723,
  25703. bottom: 46/773
  25704. }
  25705. },
  25706. },
  25707. [
  25708. {
  25709. name: "Normal",
  25710. height: math.unit(2, "feet"),
  25711. default: true
  25712. },
  25713. ]
  25714. ))
  25715. characterMakers.push(() => makeCharacter(
  25716. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25717. {
  25718. front: {
  25719. height: math.unit(3, "feet"),
  25720. weight: math.unit(30, "kg"),
  25721. name: "Front",
  25722. image: {
  25723. source: "./media/characters/sweet-bit/front.svg",
  25724. extra: 675 / 567,
  25725. bottom: 27.7 / 703
  25726. }
  25727. },
  25728. },
  25729. [
  25730. {
  25731. name: "Normal",
  25732. height: math.unit(3, "feet"),
  25733. default: true
  25734. },
  25735. ]
  25736. ))
  25737. characterMakers.push(() => makeCharacter(
  25738. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25739. {
  25740. side: {
  25741. height: math.unit(9.178, "feet"),
  25742. weight: math.unit(500, "lb"),
  25743. name: "Side",
  25744. image: {
  25745. source: "./media/characters/umbrazen/side.svg",
  25746. extra: 1730 / 1473,
  25747. bottom: 34.6 / 1765
  25748. }
  25749. },
  25750. },
  25751. [
  25752. {
  25753. name: "Normal",
  25754. height: math.unit(9.178, "feet"),
  25755. default: true
  25756. },
  25757. ]
  25758. ))
  25759. characterMakers.push(() => makeCharacter(
  25760. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25761. {
  25762. front: {
  25763. height: math.unit(10, "feet"),
  25764. weight: math.unit(750, "lb"),
  25765. name: "Front",
  25766. image: {
  25767. source: "./media/characters/arlist/front.svg",
  25768. extra: 961 / 778,
  25769. bottom: 6.2 / 986
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Normal",
  25776. height: math.unit(10, "feet"),
  25777. default: true
  25778. },
  25779. ]
  25780. ))
  25781. characterMakers.push(() => makeCharacter(
  25782. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25783. {
  25784. front: {
  25785. height: math.unit(5 + 1 / 12, "feet"),
  25786. weight: math.unit(110, "lb"),
  25787. name: "Front",
  25788. image: {
  25789. source: "./media/characters/aradel/front.svg",
  25790. extra: 324 / 303,
  25791. bottom: 3.6 / 329.4
  25792. }
  25793. },
  25794. },
  25795. [
  25796. {
  25797. name: "Normal",
  25798. height: math.unit(5 + 1 / 12, "feet"),
  25799. default: true
  25800. },
  25801. ]
  25802. ))
  25803. characterMakers.push(() => makeCharacter(
  25804. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25805. {
  25806. front: {
  25807. height: math.unit(3 + 8 / 12, "feet"),
  25808. weight: math.unit(50, "lb"),
  25809. name: "Front",
  25810. image: {
  25811. source: "./media/characters/serryn/front.svg",
  25812. extra: 1792 / 1656,
  25813. bottom: 43.5 / 1840
  25814. }
  25815. },
  25816. },
  25817. [
  25818. {
  25819. name: "Normal",
  25820. height: math.unit(3 + 8 / 12, "feet"),
  25821. default: true
  25822. },
  25823. ]
  25824. ))
  25825. characterMakers.push(() => makeCharacter(
  25826. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25827. {
  25828. front: {
  25829. height: math.unit(7 + 10 / 12, "feet"),
  25830. weight: math.unit(255, "lb"),
  25831. name: "Front",
  25832. image: {
  25833. source: "./media/characters/xavier-thyme/front.svg",
  25834. extra: 3733 / 3642,
  25835. bottom: 131 / 3869
  25836. }
  25837. },
  25838. frontRaven: {
  25839. height: math.unit(7 + 10 / 12, "feet"),
  25840. weight: math.unit(255, "lb"),
  25841. name: "Front (Raven)",
  25842. image: {
  25843. source: "./media/characters/xavier-thyme/front-raven.svg",
  25844. extra: 4385 / 3642,
  25845. bottom: 131 / 4517
  25846. }
  25847. },
  25848. },
  25849. [
  25850. {
  25851. name: "Normal",
  25852. height: math.unit(7 + 10 / 12, "feet"),
  25853. default: true
  25854. },
  25855. ]
  25856. ))
  25857. characterMakers.push(() => makeCharacter(
  25858. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25859. {
  25860. front: {
  25861. height: math.unit(1.6, "m"),
  25862. weight: math.unit(50, "kg"),
  25863. name: "Front",
  25864. image: {
  25865. source: "./media/characters/kiki/front.svg",
  25866. extra: 4682 / 3610,
  25867. bottom: 115 / 4777
  25868. }
  25869. },
  25870. },
  25871. [
  25872. {
  25873. name: "Normal",
  25874. height: math.unit(1.6, "meters"),
  25875. default: true
  25876. },
  25877. ]
  25878. ))
  25879. characterMakers.push(() => makeCharacter(
  25880. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25881. {
  25882. front: {
  25883. height: math.unit(50, "m"),
  25884. weight: math.unit(500, "tonnes"),
  25885. name: "Front",
  25886. image: {
  25887. source: "./media/characters/ryoko/front.svg",
  25888. extra: 4632 / 3926,
  25889. bottom: 193 / 4823
  25890. }
  25891. },
  25892. },
  25893. [
  25894. {
  25895. name: "Normal",
  25896. height: math.unit(50, "meters"),
  25897. default: true
  25898. },
  25899. ]
  25900. ))
  25901. characterMakers.push(() => makeCharacter(
  25902. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25903. {
  25904. front: {
  25905. height: math.unit(30, "m"),
  25906. weight: math.unit(22, "tonnes"),
  25907. name: "Front",
  25908. image: {
  25909. source: "./media/characters/elio/front.svg",
  25910. extra: 4582 / 3720,
  25911. bottom: 236 / 4828
  25912. }
  25913. },
  25914. },
  25915. [
  25916. {
  25917. name: "Normal",
  25918. height: math.unit(30, "meters"),
  25919. default: true
  25920. },
  25921. ]
  25922. ))
  25923. characterMakers.push(() => makeCharacter(
  25924. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25925. {
  25926. front: {
  25927. height: math.unit(6 + 3 / 12, "feet"),
  25928. weight: math.unit(120, "lb"),
  25929. name: "Front",
  25930. image: {
  25931. source: "./media/characters/azura/front.svg",
  25932. extra: 1149 / 1135,
  25933. bottom: 45 / 1194
  25934. }
  25935. },
  25936. frontClothed: {
  25937. height: math.unit(6 + 3 / 12, "feet"),
  25938. weight: math.unit(120, "lb"),
  25939. name: "Front (Clothed)",
  25940. image: {
  25941. source: "./media/characters/azura/front-clothed.svg",
  25942. extra: 1149 / 1135,
  25943. bottom: 45 / 1194
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Normal",
  25950. height: math.unit(6 + 3 / 12, "feet"),
  25951. default: true
  25952. },
  25953. {
  25954. name: "Macro",
  25955. height: math.unit(20 + 6 / 12, "feet")
  25956. },
  25957. {
  25958. name: "Megamacro",
  25959. height: math.unit(12, "miles")
  25960. },
  25961. {
  25962. name: "Gigamacro",
  25963. height: math.unit(10000, "miles")
  25964. },
  25965. {
  25966. name: "Teramacro",
  25967. height: math.unit(900000, "miles")
  25968. },
  25969. ]
  25970. ))
  25971. characterMakers.push(() => makeCharacter(
  25972. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25973. {
  25974. front: {
  25975. height: math.unit(12, "feet"),
  25976. weight: math.unit(1, "ton"),
  25977. capacity: math.unit(660000, "gallons"),
  25978. name: "Front",
  25979. image: {
  25980. source: "./media/characters/zeus/front.svg",
  25981. extra: 5005 / 4717,
  25982. bottom: 363 / 5388
  25983. }
  25984. },
  25985. },
  25986. [
  25987. {
  25988. name: "Normal",
  25989. height: math.unit(12, "feet")
  25990. },
  25991. {
  25992. name: "Preferred Size",
  25993. height: math.unit(0.5, "miles"),
  25994. default: true
  25995. },
  25996. {
  25997. name: "Giga Horse",
  25998. height: math.unit(300, "miles")
  25999. },
  26000. {
  26001. name: "Riding Planets",
  26002. height: math.unit(30, "megameters")
  26003. },
  26004. {
  26005. name: "Cosmic Giant",
  26006. height: math.unit(3, "zettameters")
  26007. },
  26008. {
  26009. name: "Breeding God",
  26010. height: math.unit(9.92e22, "yottameters")
  26011. },
  26012. ]
  26013. ))
  26014. characterMakers.push(() => makeCharacter(
  26015. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26016. {
  26017. side: {
  26018. height: math.unit(9, "feet"),
  26019. weight: math.unit(1500, "kg"),
  26020. name: "Side",
  26021. image: {
  26022. source: "./media/characters/fang/side.svg",
  26023. extra: 924 / 866,
  26024. bottom: 47.5 / 972.3
  26025. }
  26026. },
  26027. },
  26028. [
  26029. {
  26030. name: "Normal",
  26031. height: math.unit(9, "feet"),
  26032. default: true
  26033. },
  26034. {
  26035. name: "Macro",
  26036. height: math.unit(75 + 6 / 12, "feet")
  26037. },
  26038. {
  26039. name: "Teramacro",
  26040. height: math.unit(50000, "miles")
  26041. },
  26042. ]
  26043. ))
  26044. characterMakers.push(() => makeCharacter(
  26045. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26046. {
  26047. front: {
  26048. height: math.unit(10, "feet"),
  26049. weight: math.unit(2, "tons"),
  26050. name: "Front",
  26051. image: {
  26052. source: "./media/characters/rekhit/front.svg",
  26053. extra: 2796 / 2590,
  26054. bottom: 225 / 3022
  26055. }
  26056. },
  26057. },
  26058. [
  26059. {
  26060. name: "Normal",
  26061. height: math.unit(10, "feet"),
  26062. default: true
  26063. },
  26064. {
  26065. name: "Macro",
  26066. height: math.unit(500, "feet")
  26067. },
  26068. ]
  26069. ))
  26070. characterMakers.push(() => makeCharacter(
  26071. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26072. {
  26073. front: {
  26074. height: math.unit(7 + 6.451 / 12, "feet"),
  26075. weight: math.unit(310, "lb"),
  26076. name: "Front",
  26077. image: {
  26078. source: "./media/characters/dahlia-verrick/front.svg",
  26079. extra: 1488 / 1365,
  26080. bottom: 6.2 / 1495
  26081. }
  26082. },
  26083. back: {
  26084. height: math.unit(7 + 6.451 / 12, "feet"),
  26085. weight: math.unit(310, "lb"),
  26086. name: "Back",
  26087. image: {
  26088. source: "./media/characters/dahlia-verrick/back.svg",
  26089. extra: 1472 / 1351,
  26090. bottom: 5.28 / 1477
  26091. }
  26092. },
  26093. frontBusiness: {
  26094. height: math.unit(7 + 6.451 / 12, "feet"),
  26095. weight: math.unit(200, "lb"),
  26096. name: "Front (Business)",
  26097. image: {
  26098. source: "./media/characters/dahlia-verrick/front-business.svg",
  26099. extra: 1478 / 1381,
  26100. bottom: 5.5 / 1484
  26101. }
  26102. },
  26103. frontCasual: {
  26104. height: math.unit(7 + 6.451 / 12, "feet"),
  26105. weight: math.unit(200, "lb"),
  26106. name: "Front (Casual)",
  26107. image: {
  26108. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26109. extra: 1478 / 1381,
  26110. bottom: 5.5 / 1484
  26111. }
  26112. },
  26113. },
  26114. [
  26115. {
  26116. name: "Travel-Sized",
  26117. height: math.unit(7.45, "inches")
  26118. },
  26119. {
  26120. name: "Normal",
  26121. height: math.unit(7 + 6.451 / 12, "feet"),
  26122. default: true
  26123. },
  26124. {
  26125. name: "Hitting the Town",
  26126. height: math.unit(37 + 8 / 12, "feet")
  26127. },
  26128. {
  26129. name: "Stomp in the Suburbs",
  26130. height: math.unit(964 + 9.728 / 12, "feet")
  26131. },
  26132. {
  26133. name: "Sit on the City",
  26134. height: math.unit(61747 + 10.592 / 12, "feet")
  26135. },
  26136. {
  26137. name: "Glomp the Globe",
  26138. height: math.unit(252919327 + 4.832 / 12, "feet")
  26139. },
  26140. ]
  26141. ))
  26142. characterMakers.push(() => makeCharacter(
  26143. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26144. {
  26145. front: {
  26146. height: math.unit(6 + 4 / 12, "feet"),
  26147. weight: math.unit(320, "lb"),
  26148. name: "Front",
  26149. image: {
  26150. source: "./media/characters/balina-mahigan/front.svg",
  26151. extra: 447 / 428,
  26152. bottom: 18 / 466
  26153. }
  26154. },
  26155. back: {
  26156. height: math.unit(6 + 4 / 12, "feet"),
  26157. weight: math.unit(320, "lb"),
  26158. name: "Back",
  26159. image: {
  26160. source: "./media/characters/balina-mahigan/back.svg",
  26161. extra: 445 / 428,
  26162. bottom: 4.07 / 448
  26163. }
  26164. },
  26165. arm: {
  26166. height: math.unit(1.88, "feet"),
  26167. name: "Arm",
  26168. image: {
  26169. source: "./media/characters/balina-mahigan/arm.svg"
  26170. }
  26171. },
  26172. backPort: {
  26173. height: math.unit(0.685, "feet"),
  26174. name: "Back Port",
  26175. image: {
  26176. source: "./media/characters/balina-mahigan/back-port.svg"
  26177. }
  26178. },
  26179. hoofpaw: {
  26180. height: math.unit(1.41, "feet"),
  26181. name: "Hoofpaw",
  26182. image: {
  26183. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26184. }
  26185. },
  26186. leftHandBack: {
  26187. height: math.unit(0.938, "feet"),
  26188. name: "Left Hand (Back)",
  26189. image: {
  26190. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26191. }
  26192. },
  26193. leftHandFront: {
  26194. height: math.unit(0.938, "feet"),
  26195. name: "Left Hand (Front)",
  26196. image: {
  26197. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26198. }
  26199. },
  26200. rightHandBack: {
  26201. height: math.unit(0.95, "feet"),
  26202. name: "Right Hand (Back)",
  26203. image: {
  26204. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26205. }
  26206. },
  26207. rightHandFront: {
  26208. height: math.unit(0.95, "feet"),
  26209. name: "Right Hand (Front)",
  26210. image: {
  26211. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26212. }
  26213. },
  26214. },
  26215. [
  26216. {
  26217. name: "Normal",
  26218. height: math.unit(6 + 4 / 12, "feet"),
  26219. default: true
  26220. },
  26221. ]
  26222. ))
  26223. characterMakers.push(() => makeCharacter(
  26224. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26225. {
  26226. front: {
  26227. height: math.unit(6, "feet"),
  26228. weight: math.unit(320, "lb"),
  26229. name: "Front",
  26230. image: {
  26231. source: "./media/characters/balina-mejeri/front.svg",
  26232. extra: 517 / 488,
  26233. bottom: 44.2 / 561
  26234. }
  26235. },
  26236. },
  26237. [
  26238. {
  26239. name: "Normal",
  26240. height: math.unit(6 + 4 / 12, "feet")
  26241. },
  26242. {
  26243. name: "Business",
  26244. height: math.unit(155, "feet"),
  26245. default: true
  26246. },
  26247. ]
  26248. ))
  26249. characterMakers.push(() => makeCharacter(
  26250. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26251. {
  26252. kneeling: {
  26253. height: math.unit(6 + 4 / 12, "feet"),
  26254. weight: math.unit(300 * 20, "lb"),
  26255. name: "Kneeling",
  26256. image: {
  26257. source: "./media/characters/balbarian/kneeling.svg",
  26258. extra: 922 / 862,
  26259. bottom: 42.4 / 965
  26260. }
  26261. },
  26262. },
  26263. [
  26264. {
  26265. name: "Normal",
  26266. height: math.unit(6 + 4 / 12, "feet")
  26267. },
  26268. {
  26269. name: "Treasured",
  26270. height: math.unit(18 + 9 / 12, "feet"),
  26271. default: true
  26272. },
  26273. {
  26274. name: "Macro",
  26275. height: math.unit(900, "feet")
  26276. },
  26277. ]
  26278. ))
  26279. characterMakers.push(() => makeCharacter(
  26280. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26281. {
  26282. front: {
  26283. height: math.unit(6 + 4 / 12, "feet"),
  26284. weight: math.unit(325, "lb"),
  26285. name: "Front",
  26286. image: {
  26287. source: "./media/characters/balina-amarini/front.svg",
  26288. extra: 415 / 403,
  26289. bottom: 19 / 433.4
  26290. }
  26291. },
  26292. back: {
  26293. height: math.unit(6 + 4 / 12, "feet"),
  26294. weight: math.unit(325, "lb"),
  26295. name: "Back",
  26296. image: {
  26297. source: "./media/characters/balina-amarini/back.svg",
  26298. extra: 415 / 403,
  26299. bottom: 13.5 / 432
  26300. }
  26301. },
  26302. overdrive: {
  26303. height: math.unit(6 + 4 / 12, "feet"),
  26304. weight: math.unit(400, "lb"),
  26305. name: "Overdrive",
  26306. image: {
  26307. source: "./media/characters/balina-amarini/overdrive.svg",
  26308. extra: 269 / 259,
  26309. bottom: 12 / 282
  26310. }
  26311. },
  26312. },
  26313. [
  26314. {
  26315. name: "Boom",
  26316. height: math.unit(9 + 10 / 12, "feet"),
  26317. default: true
  26318. },
  26319. {
  26320. name: "Macro",
  26321. height: math.unit(280, "feet")
  26322. },
  26323. ]
  26324. ))
  26325. characterMakers.push(() => makeCharacter(
  26326. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26327. {
  26328. goddess: {
  26329. height: math.unit(600, "feet"),
  26330. weight: math.unit(2000000, "tons"),
  26331. name: "Goddess",
  26332. image: {
  26333. source: "./media/characters/lady-kubwa/goddess.svg",
  26334. extra: 1240.5 / 1223,
  26335. bottom: 22 / 1263
  26336. }
  26337. },
  26338. goddesser: {
  26339. height: math.unit(900, "feet"),
  26340. weight: math.unit(20000000, "lb"),
  26341. name: "Goddess-er",
  26342. image: {
  26343. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26344. extra: 899 / 888,
  26345. bottom: 12.6 / 912
  26346. }
  26347. },
  26348. },
  26349. [
  26350. {
  26351. name: "Macro",
  26352. height: math.unit(600, "feet"),
  26353. default: true
  26354. },
  26355. {
  26356. name: "Megamacro",
  26357. height: math.unit(250, "miles")
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26363. {
  26364. front: {
  26365. height: math.unit(7 + 7 / 12, "feet"),
  26366. weight: math.unit(250, "lb"),
  26367. name: "Front",
  26368. image: {
  26369. source: "./media/characters/tala-grovehorn/front.svg",
  26370. extra: 2636 / 2525,
  26371. bottom: 147 / 2781
  26372. }
  26373. },
  26374. back: {
  26375. height: math.unit(7 + 7 / 12, "feet"),
  26376. weight: math.unit(250, "lb"),
  26377. name: "Back",
  26378. image: {
  26379. source: "./media/characters/tala-grovehorn/back.svg",
  26380. extra: 2635 / 2539,
  26381. bottom: 100 / 2732.8
  26382. }
  26383. },
  26384. mouth: {
  26385. height: math.unit(1.15, "feet"),
  26386. name: "Mouth",
  26387. image: {
  26388. source: "./media/characters/tala-grovehorn/mouth.svg"
  26389. }
  26390. },
  26391. dick: {
  26392. height: math.unit(2.36, "feet"),
  26393. name: "Dick",
  26394. image: {
  26395. source: "./media/characters/tala-grovehorn/dick.svg"
  26396. }
  26397. },
  26398. slit: {
  26399. height: math.unit(0.61, "feet"),
  26400. name: "Slit",
  26401. image: {
  26402. source: "./media/characters/tala-grovehorn/slit.svg"
  26403. }
  26404. },
  26405. },
  26406. [
  26407. ]
  26408. ))
  26409. characterMakers.push(() => makeCharacter(
  26410. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26411. {
  26412. front: {
  26413. height: math.unit(7 + 7 / 12, "feet"),
  26414. weight: math.unit(225, "lb"),
  26415. name: "Front",
  26416. image: {
  26417. source: "./media/characters/epona/front.svg",
  26418. extra: 2445 / 2290,
  26419. bottom: 251 / 2696
  26420. }
  26421. },
  26422. back: {
  26423. height: math.unit(7 + 7 / 12, "feet"),
  26424. weight: math.unit(225, "lb"),
  26425. name: "Back",
  26426. image: {
  26427. source: "./media/characters/epona/back.svg",
  26428. extra: 2546 / 2408,
  26429. bottom: 44 / 2589
  26430. }
  26431. },
  26432. genitals: {
  26433. height: math.unit(1.5, "feet"),
  26434. name: "Genitals",
  26435. image: {
  26436. source: "./media/characters/epona/genitals.svg"
  26437. }
  26438. },
  26439. },
  26440. [
  26441. {
  26442. name: "Normal",
  26443. height: math.unit(7 + 7 / 12, "feet"),
  26444. default: true
  26445. },
  26446. ]
  26447. ))
  26448. characterMakers.push(() => makeCharacter(
  26449. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26450. {
  26451. front: {
  26452. height: math.unit(7, "feet"),
  26453. weight: math.unit(518, "lb"),
  26454. name: "Front",
  26455. image: {
  26456. source: "./media/characters/avia-bloodbourn/front.svg",
  26457. extra: 1466 / 1350,
  26458. bottom: 65 / 1527
  26459. }
  26460. },
  26461. },
  26462. [
  26463. ]
  26464. ))
  26465. characterMakers.push(() => makeCharacter(
  26466. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26467. {
  26468. front: {
  26469. height: math.unit(9.35, "feet"),
  26470. weight: math.unit(600, "lb"),
  26471. name: "Front",
  26472. image: {
  26473. source: "./media/characters/amera/front.svg",
  26474. extra: 891 / 818,
  26475. bottom: 30 / 922.7
  26476. }
  26477. },
  26478. back: {
  26479. height: math.unit(9.35, "feet"),
  26480. weight: math.unit(600, "lb"),
  26481. name: "Back",
  26482. image: {
  26483. source: "./media/characters/amera/back.svg",
  26484. extra: 876 / 824,
  26485. bottom: 6.8 / 884
  26486. }
  26487. },
  26488. dick: {
  26489. height: math.unit(2.14, "feet"),
  26490. name: "Dick",
  26491. image: {
  26492. source: "./media/characters/amera/dick.svg"
  26493. }
  26494. },
  26495. },
  26496. [
  26497. {
  26498. name: "Normal",
  26499. height: math.unit(9.35, "feet"),
  26500. default: true
  26501. },
  26502. ]
  26503. ))
  26504. characterMakers.push(() => makeCharacter(
  26505. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26506. {
  26507. kneeling: {
  26508. height: math.unit(3 + 4 / 12, "feet"),
  26509. weight: math.unit(90, "lb"),
  26510. name: "Kneeling",
  26511. image: {
  26512. source: "./media/characters/rosewen/kneeling.svg",
  26513. extra: 1835 / 1571,
  26514. bottom: 27.7 / 1862
  26515. }
  26516. },
  26517. },
  26518. [
  26519. {
  26520. name: "Normal",
  26521. height: math.unit(3 + 4 / 12, "feet"),
  26522. default: true
  26523. },
  26524. ]
  26525. ))
  26526. characterMakers.push(() => makeCharacter(
  26527. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26528. {
  26529. front: {
  26530. height: math.unit(5 + 10 / 12, "feet"),
  26531. weight: math.unit(200, "lb"),
  26532. name: "Front",
  26533. image: {
  26534. source: "./media/characters/sabah/front.svg",
  26535. extra: 849 / 763,
  26536. bottom: 33.9 / 881
  26537. }
  26538. },
  26539. },
  26540. [
  26541. {
  26542. name: "Normal",
  26543. height: math.unit(5 + 10 / 12, "feet"),
  26544. default: true
  26545. },
  26546. ]
  26547. ))
  26548. characterMakers.push(() => makeCharacter(
  26549. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26550. {
  26551. front: {
  26552. height: math.unit(3 + 5 / 12, "feet"),
  26553. weight: math.unit(40, "kg"),
  26554. name: "Front",
  26555. image: {
  26556. source: "./media/characters/purple-flame/front.svg",
  26557. extra: 1577 / 1412,
  26558. bottom: 97 / 1694
  26559. }
  26560. },
  26561. frontDressed: {
  26562. height: math.unit(3 + 5 / 12, "feet"),
  26563. weight: math.unit(40, "kg"),
  26564. name: "Front (Dressed)",
  26565. image: {
  26566. source: "./media/characters/purple-flame/front-dressed.svg",
  26567. extra: 1577 / 1412,
  26568. bottom: 97 / 1694
  26569. }
  26570. },
  26571. headphones: {
  26572. height: math.unit(0.85, "feet"),
  26573. name: "Headphones",
  26574. image: {
  26575. source: "./media/characters/purple-flame/headphones.svg"
  26576. }
  26577. },
  26578. },
  26579. [
  26580. {
  26581. name: "Really Small",
  26582. height: math.unit(5, "cm")
  26583. },
  26584. {
  26585. name: "Micro",
  26586. height: math.unit(1 + 5 / 12, "feet")
  26587. },
  26588. {
  26589. name: "Normal",
  26590. height: math.unit(3 + 5 / 12, "feet"),
  26591. default: true
  26592. },
  26593. {
  26594. name: "Minimacro",
  26595. height: math.unit(125, "feet")
  26596. },
  26597. {
  26598. name: "Macro",
  26599. height: math.unit(0.5, "miles")
  26600. },
  26601. {
  26602. name: "Megamacro",
  26603. height: math.unit(50, "miles")
  26604. },
  26605. {
  26606. name: "Gigantic",
  26607. height: math.unit(750, "miles")
  26608. },
  26609. {
  26610. name: "Planetary",
  26611. height: math.unit(15000, "miles")
  26612. },
  26613. ]
  26614. ))
  26615. characterMakers.push(() => makeCharacter(
  26616. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26617. {
  26618. front: {
  26619. height: math.unit(14, "feet"),
  26620. weight: math.unit(959, "lb"),
  26621. name: "Front",
  26622. image: {
  26623. source: "./media/characters/arsenal/front.svg",
  26624. extra: 2357 / 2157,
  26625. bottom: 93 / 2458
  26626. }
  26627. },
  26628. },
  26629. [
  26630. {
  26631. name: "Normal",
  26632. height: math.unit(14, "feet"),
  26633. default: true
  26634. },
  26635. ]
  26636. ))
  26637. characterMakers.push(() => makeCharacter(
  26638. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26639. {
  26640. front: {
  26641. height: math.unit(6, "feet"),
  26642. weight: math.unit(150, "lb"),
  26643. name: "Front",
  26644. image: {
  26645. source: "./media/characters/adira/front.svg",
  26646. extra: 1078 / 1029,
  26647. bottom: 87 / 1166
  26648. }
  26649. },
  26650. },
  26651. [
  26652. {
  26653. name: "Micro",
  26654. height: math.unit(4, "inches"),
  26655. default: true
  26656. },
  26657. {
  26658. name: "Macro",
  26659. height: math.unit(50, "feet")
  26660. },
  26661. ]
  26662. ))
  26663. characterMakers.push(() => makeCharacter(
  26664. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26665. {
  26666. front: {
  26667. height: math.unit(16, "feet"),
  26668. weight: math.unit(1000, "lb"),
  26669. name: "Front",
  26670. image: {
  26671. source: "./media/characters/grim/front.svg",
  26672. extra: 622 / 614,
  26673. bottom: 18.1 / 642
  26674. }
  26675. },
  26676. back: {
  26677. height: math.unit(16, "feet"),
  26678. weight: math.unit(1000, "lb"),
  26679. name: "Back",
  26680. image: {
  26681. source: "./media/characters/grim/back.svg",
  26682. extra: 610.6 / 602,
  26683. bottom: 40.8 / 652
  26684. }
  26685. },
  26686. hunched: {
  26687. height: math.unit(9.75, "feet"),
  26688. weight: math.unit(1000, "lb"),
  26689. name: "Hunched",
  26690. image: {
  26691. source: "./media/characters/grim/hunched.svg",
  26692. extra: 304 / 297,
  26693. bottom: 35.4 / 394
  26694. }
  26695. },
  26696. },
  26697. [
  26698. {
  26699. name: "Normal",
  26700. height: math.unit(16, "feet"),
  26701. default: true
  26702. },
  26703. ]
  26704. ))
  26705. characterMakers.push(() => makeCharacter(
  26706. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26707. {
  26708. front: {
  26709. height: math.unit(2.3, "meters"),
  26710. weight: math.unit(300, "lb"),
  26711. name: "Front",
  26712. image: {
  26713. source: "./media/characters/sinja/front-sfw.svg",
  26714. extra: 1393 / 1294,
  26715. bottom: 70 / 1463
  26716. }
  26717. },
  26718. frontNsfw: {
  26719. height: math.unit(2.3, "meters"),
  26720. weight: math.unit(300, "lb"),
  26721. name: "Front (NSFW)",
  26722. image: {
  26723. source: "./media/characters/sinja/front-nsfw.svg",
  26724. extra: 1393 / 1294,
  26725. bottom: 70 / 1463
  26726. }
  26727. },
  26728. back: {
  26729. height: math.unit(2.3, "meters"),
  26730. weight: math.unit(300, "lb"),
  26731. name: "Back",
  26732. image: {
  26733. source: "./media/characters/sinja/back.svg",
  26734. extra: 1393 / 1294,
  26735. bottom: 70 / 1463
  26736. }
  26737. },
  26738. head: {
  26739. height: math.unit(1.771, "feet"),
  26740. name: "Head",
  26741. image: {
  26742. source: "./media/characters/sinja/head.svg"
  26743. }
  26744. },
  26745. slit: {
  26746. height: math.unit(0.8, "feet"),
  26747. name: "Slit",
  26748. image: {
  26749. source: "./media/characters/sinja/slit.svg"
  26750. }
  26751. },
  26752. },
  26753. [
  26754. {
  26755. name: "Normal",
  26756. height: math.unit(2.3, "meters")
  26757. },
  26758. {
  26759. name: "Macro",
  26760. height: math.unit(91, "meters"),
  26761. default: true
  26762. },
  26763. {
  26764. name: "Megamacro",
  26765. height: math.unit(91440, "meters")
  26766. },
  26767. {
  26768. name: "Gigamacro",
  26769. height: math.unit(60960000, "meters")
  26770. },
  26771. {
  26772. name: "Teramacro",
  26773. height: math.unit(9144000000, "meters")
  26774. },
  26775. ]
  26776. ))
  26777. characterMakers.push(() => makeCharacter(
  26778. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26779. {
  26780. front: {
  26781. height: math.unit(1.7, "meters"),
  26782. weight: math.unit(130, "lb"),
  26783. name: "Front",
  26784. image: {
  26785. source: "./media/characters/kyu/front.svg",
  26786. extra: 415 / 395,
  26787. bottom: 5 / 420
  26788. }
  26789. },
  26790. head: {
  26791. height: math.unit(1.75, "feet"),
  26792. name: "Head",
  26793. image: {
  26794. source: "./media/characters/kyu/head.svg"
  26795. }
  26796. },
  26797. foot: {
  26798. height: math.unit(0.81, "feet"),
  26799. name: "Foot",
  26800. image: {
  26801. source: "./media/characters/kyu/foot.svg"
  26802. }
  26803. },
  26804. },
  26805. [
  26806. {
  26807. name: "Normal",
  26808. height: math.unit(1.7, "meters")
  26809. },
  26810. {
  26811. name: "Macro",
  26812. height: math.unit(131, "feet"),
  26813. default: true
  26814. },
  26815. {
  26816. name: "Megamacro",
  26817. height: math.unit(91440, "meters")
  26818. },
  26819. {
  26820. name: "Gigamacro",
  26821. height: math.unit(60960000, "meters")
  26822. },
  26823. {
  26824. name: "Teramacro",
  26825. height: math.unit(9144000000, "meters")
  26826. },
  26827. ]
  26828. ))
  26829. characterMakers.push(() => makeCharacter(
  26830. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26831. {
  26832. front: {
  26833. height: math.unit(7 + 1 / 12, "feet"),
  26834. weight: math.unit(250, "lb"),
  26835. name: "Front",
  26836. image: {
  26837. source: "./media/characters/joey/front.svg",
  26838. extra: 1791 / 1537,
  26839. bottom: 28 / 1816
  26840. }
  26841. },
  26842. },
  26843. [
  26844. {
  26845. name: "Micro",
  26846. height: math.unit(3, "inches")
  26847. },
  26848. {
  26849. name: "Normal",
  26850. height: math.unit(7 + 1 / 12, "feet"),
  26851. default: true
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26857. {
  26858. front: {
  26859. height: math.unit(165, "cm"),
  26860. weight: math.unit(140, "lb"),
  26861. name: "Front",
  26862. image: {
  26863. source: "./media/characters/sam-evans/front.svg",
  26864. extra: 3417 / 3230,
  26865. bottom: 41.3 / 3417
  26866. }
  26867. },
  26868. frontSixTails: {
  26869. height: math.unit(165, "cm"),
  26870. weight: math.unit(140, "lb"),
  26871. name: "Front-six-tails",
  26872. image: {
  26873. source: "./media/characters/sam-evans/front-six-tails.svg",
  26874. extra: 3417 / 3230,
  26875. bottom: 41.3 / 3417
  26876. }
  26877. },
  26878. back: {
  26879. height: math.unit(165, "cm"),
  26880. weight: math.unit(140, "lb"),
  26881. name: "Back",
  26882. image: {
  26883. source: "./media/characters/sam-evans/back.svg",
  26884. extra: 3227 / 3032,
  26885. bottom: 6.8 / 3234
  26886. }
  26887. },
  26888. face: {
  26889. height: math.unit(0.68, "feet"),
  26890. name: "Face",
  26891. image: {
  26892. source: "./media/characters/sam-evans/face.svg"
  26893. }
  26894. },
  26895. },
  26896. [
  26897. {
  26898. name: "Normal",
  26899. height: math.unit(165, "cm"),
  26900. default: true
  26901. },
  26902. {
  26903. name: "Macro",
  26904. height: math.unit(100, "meters")
  26905. },
  26906. {
  26907. name: "Macro+",
  26908. height: math.unit(800, "meters")
  26909. },
  26910. {
  26911. name: "Macro++",
  26912. height: math.unit(3, "km")
  26913. },
  26914. {
  26915. name: "Macro+++",
  26916. height: math.unit(30, "km")
  26917. },
  26918. ]
  26919. ))
  26920. characterMakers.push(() => makeCharacter(
  26921. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26922. {
  26923. front: {
  26924. height: math.unit(10, "feet"),
  26925. weight: math.unit(750, "lb"),
  26926. name: "Front",
  26927. image: {
  26928. source: "./media/characters/juliet-a/front.svg",
  26929. extra: 1766 / 1720,
  26930. bottom: 43 / 1809
  26931. }
  26932. },
  26933. back: {
  26934. height: math.unit(10, "feet"),
  26935. weight: math.unit(750, "lb"),
  26936. name: "Back",
  26937. image: {
  26938. source: "./media/characters/juliet-a/back.svg",
  26939. extra: 1781 / 1734,
  26940. bottom: 35 / 1810,
  26941. }
  26942. },
  26943. },
  26944. [
  26945. {
  26946. name: "Normal",
  26947. height: math.unit(10, "feet"),
  26948. default: true
  26949. },
  26950. {
  26951. name: "Dragon Form",
  26952. height: math.unit(250, "feet")
  26953. },
  26954. {
  26955. name: "Macro",
  26956. height: math.unit(1000, "feet")
  26957. },
  26958. {
  26959. name: "Megamacro",
  26960. height: math.unit(10000, "feet")
  26961. }
  26962. ]
  26963. ))
  26964. characterMakers.push(() => makeCharacter(
  26965. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26966. {
  26967. regular: {
  26968. height: math.unit(7 + 3 / 12, "feet"),
  26969. weight: math.unit(260, "lb"),
  26970. name: "Regular",
  26971. image: {
  26972. source: "./media/characters/wild/regular.svg",
  26973. extra: 97.45 / 92,
  26974. bottom: 6.8 / 104.3
  26975. }
  26976. },
  26977. biggums: {
  26978. height: math.unit(8 + 6 / 12, "feet"),
  26979. weight: math.unit(425, "lb"),
  26980. name: "Biggums",
  26981. image: {
  26982. source: "./media/characters/wild/biggums.svg",
  26983. extra: 97.45 / 92,
  26984. bottom: 7.5 / 132.34
  26985. }
  26986. },
  26987. mawRegular: {
  26988. height: math.unit(1.24, "feet"),
  26989. name: "Maw (Regular)",
  26990. image: {
  26991. source: "./media/characters/wild/maw.svg"
  26992. }
  26993. },
  26994. mawBiggums: {
  26995. height: math.unit(1.47, "feet"),
  26996. name: "Maw (Biggums)",
  26997. image: {
  26998. source: "./media/characters/wild/maw.svg"
  26999. }
  27000. },
  27001. },
  27002. [
  27003. {
  27004. name: "Normal",
  27005. height: math.unit(7 + 3 / 12, "feet"),
  27006. default: true
  27007. },
  27008. ]
  27009. ))
  27010. characterMakers.push(() => makeCharacter(
  27011. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27012. {
  27013. front: {
  27014. height: math.unit(2.5, "meters"),
  27015. weight: math.unit(200, "kg"),
  27016. name: "Front",
  27017. image: {
  27018. source: "./media/characters/vidar/front.svg",
  27019. extra: 2994 / 2795,
  27020. bottom: 56 / 3061
  27021. }
  27022. },
  27023. back: {
  27024. height: math.unit(2.5, "meters"),
  27025. weight: math.unit(200, "kg"),
  27026. name: "Back",
  27027. image: {
  27028. source: "./media/characters/vidar/back.svg",
  27029. extra: 3131 / 2928,
  27030. bottom: 13.5 / 3141.5
  27031. }
  27032. },
  27033. feral: {
  27034. height: math.unit(2.5, "meters"),
  27035. weight: math.unit(2000, "kg"),
  27036. name: "Feral",
  27037. image: {
  27038. source: "./media/characters/vidar/feral.svg",
  27039. extra: 2790 / 1765,
  27040. bottom: 6 / 2796
  27041. }
  27042. },
  27043. },
  27044. [
  27045. {
  27046. name: "Normal",
  27047. height: math.unit(2.5, "meters"),
  27048. default: true
  27049. },
  27050. {
  27051. name: "Macro",
  27052. height: math.unit(100, "meters")
  27053. },
  27054. ]
  27055. ))
  27056. characterMakers.push(() => makeCharacter(
  27057. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27058. {
  27059. front: {
  27060. height: math.unit(5 + 9 / 12, "feet"),
  27061. weight: math.unit(120, "lb"),
  27062. name: "Front",
  27063. image: {
  27064. source: "./media/characters/ash/front.svg",
  27065. extra: 2189 / 1961,
  27066. bottom: 5.2 / 2194
  27067. }
  27068. },
  27069. },
  27070. [
  27071. {
  27072. name: "Normal",
  27073. height: math.unit(5 + 9 / 12, "feet"),
  27074. default: true
  27075. },
  27076. ]
  27077. ))
  27078. characterMakers.push(() => makeCharacter(
  27079. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27080. {
  27081. front: {
  27082. height: math.unit(9, "feet"),
  27083. weight: math.unit(10000, "lb"),
  27084. name: "Front",
  27085. image: {
  27086. source: "./media/characters/gygabite/front.svg",
  27087. bottom: 31.7 / 537.8,
  27088. extra: 505 / 370
  27089. }
  27090. },
  27091. },
  27092. [
  27093. {
  27094. name: "Normal",
  27095. height: math.unit(9, "feet"),
  27096. default: true
  27097. },
  27098. ]
  27099. ))
  27100. characterMakers.push(() => makeCharacter(
  27101. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27102. {
  27103. front: {
  27104. height: math.unit(12, "feet"),
  27105. weight: math.unit(35000, "lb"),
  27106. name: "Front",
  27107. image: {
  27108. source: "./media/characters/p0tat0/front.svg",
  27109. extra: 1065 / 921,
  27110. bottom: 55.7 / 1121.25
  27111. }
  27112. },
  27113. },
  27114. [
  27115. {
  27116. name: "Normal",
  27117. height: math.unit(12, "feet"),
  27118. default: true
  27119. },
  27120. ]
  27121. ))
  27122. characterMakers.push(() => makeCharacter(
  27123. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27124. {
  27125. side: {
  27126. height: math.unit(6.5, "feet"),
  27127. weight: math.unit(800, "lb"),
  27128. name: "Side",
  27129. image: {
  27130. source: "./media/characters/dusk/side.svg",
  27131. extra: 615 / 373,
  27132. bottom: 53 / 664
  27133. }
  27134. },
  27135. sitting: {
  27136. height: math.unit(7, "feet"),
  27137. weight: math.unit(800, "lb"),
  27138. name: "Sitting",
  27139. image: {
  27140. source: "./media/characters/dusk/sitting.svg",
  27141. extra: 753 / 425,
  27142. bottom: 33 / 774
  27143. }
  27144. },
  27145. head: {
  27146. height: math.unit(6.1, "feet"),
  27147. name: "Head",
  27148. image: {
  27149. source: "./media/characters/dusk/head.svg"
  27150. }
  27151. },
  27152. },
  27153. [
  27154. {
  27155. name: "Normal",
  27156. height: math.unit(7, "feet"),
  27157. default: true
  27158. },
  27159. ]
  27160. ))
  27161. characterMakers.push(() => makeCharacter(
  27162. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27163. {
  27164. front: {
  27165. height: math.unit(15, "feet"),
  27166. weight: math.unit(7000, "lb"),
  27167. name: "Front",
  27168. image: {
  27169. source: "./media/characters/jay-direwolf/front.svg",
  27170. extra: 1810 / 1732,
  27171. bottom: 66 / 1892
  27172. }
  27173. },
  27174. },
  27175. [
  27176. {
  27177. name: "Normal",
  27178. height: math.unit(15, "feet"),
  27179. default: true
  27180. },
  27181. ]
  27182. ))
  27183. characterMakers.push(() => makeCharacter(
  27184. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27185. {
  27186. front: {
  27187. height: math.unit(4 + 9 / 12, "feet"),
  27188. weight: math.unit(130, "lb"),
  27189. name: "Front",
  27190. image: {
  27191. source: "./media/characters/anchovie/front.svg",
  27192. extra: 382 / 350,
  27193. bottom: 25 / 409
  27194. }
  27195. },
  27196. back: {
  27197. height: math.unit(4 + 9 / 12, "feet"),
  27198. weight: math.unit(130, "lb"),
  27199. name: "Back",
  27200. image: {
  27201. source: "./media/characters/anchovie/back.svg",
  27202. extra: 385 / 352,
  27203. bottom: 16.6 / 402
  27204. }
  27205. },
  27206. frontDressed: {
  27207. height: math.unit(4 + 9 / 12, "feet"),
  27208. weight: math.unit(130, "lb"),
  27209. name: "Front (Dressed)",
  27210. image: {
  27211. source: "./media/characters/anchovie/front-dressed.svg",
  27212. extra: 382 / 350,
  27213. bottom: 25 / 409
  27214. }
  27215. },
  27216. backDressed: {
  27217. height: math.unit(4 + 9 / 12, "feet"),
  27218. weight: math.unit(130, "lb"),
  27219. name: "Back (Dressed)",
  27220. image: {
  27221. source: "./media/characters/anchovie/back-dressed.svg",
  27222. extra: 385 / 352,
  27223. bottom: 16.6 / 402
  27224. }
  27225. },
  27226. },
  27227. [
  27228. {
  27229. name: "Micro",
  27230. height: math.unit(6.4, "inches")
  27231. },
  27232. {
  27233. name: "Normal",
  27234. height: math.unit(4 + 9 / 12, "feet"),
  27235. default: true
  27236. },
  27237. ]
  27238. ))
  27239. characterMakers.push(() => makeCharacter(
  27240. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27241. {
  27242. front: {
  27243. height: math.unit(2, "meters"),
  27244. weight: math.unit(180, "lb"),
  27245. name: "Front",
  27246. image: {
  27247. source: "./media/characters/acidrenamon/front.svg",
  27248. extra: 987 / 890,
  27249. bottom: 22.8 / 1009
  27250. }
  27251. },
  27252. back: {
  27253. height: math.unit(2, "meters"),
  27254. weight: math.unit(180, "lb"),
  27255. name: "Back",
  27256. image: {
  27257. source: "./media/characters/acidrenamon/back.svg",
  27258. extra: 983 / 891,
  27259. bottom: 8.4 / 992
  27260. }
  27261. },
  27262. head: {
  27263. height: math.unit(1.92, "feet"),
  27264. name: "Head",
  27265. image: {
  27266. source: "./media/characters/acidrenamon/head.svg"
  27267. }
  27268. },
  27269. rump: {
  27270. height: math.unit(1.72, "feet"),
  27271. name: "Rump",
  27272. image: {
  27273. source: "./media/characters/acidrenamon/rump.svg"
  27274. }
  27275. },
  27276. tail: {
  27277. height: math.unit(4.2, "feet"),
  27278. name: "Tail",
  27279. image: {
  27280. source: "./media/characters/acidrenamon/tail.svg"
  27281. }
  27282. },
  27283. },
  27284. [
  27285. {
  27286. name: "Normal",
  27287. height: math.unit(2, "meters"),
  27288. default: true
  27289. },
  27290. {
  27291. name: "Minimacro",
  27292. height: math.unit(7, "meters")
  27293. },
  27294. {
  27295. name: "Macro",
  27296. height: math.unit(200, "meters")
  27297. },
  27298. {
  27299. name: "Gigamacro",
  27300. height: math.unit(0.2, "earths")
  27301. },
  27302. ]
  27303. ))
  27304. characterMakers.push(() => makeCharacter(
  27305. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27306. {
  27307. front: {
  27308. height: math.unit(6, "feet"),
  27309. weight: math.unit(150, "lb"),
  27310. name: "Front",
  27311. image: {
  27312. source: "./media/characters/kenzie-lee/front.svg",
  27313. extra: 1525 / 1465,
  27314. bottom: 45 / 1570
  27315. }
  27316. },
  27317. side: {
  27318. height: math.unit(6, "feet"),
  27319. weight: math.unit(150, "lb"),
  27320. name: "Side",
  27321. image: {
  27322. source: "./media/characters/kenzie-lee/side.svg",
  27323. extra: 5505 / 5383,
  27324. bottom: 60 / 5573
  27325. }
  27326. },
  27327. paw: {
  27328. height: math.unit(0.57, "feet"),
  27329. name: "Paw",
  27330. image: {
  27331. source: "./media/characters/kenzie-lee/paw.svg"
  27332. }
  27333. },
  27334. },
  27335. [
  27336. {
  27337. name: "Normal",
  27338. height: math.unit(152, "feet"),
  27339. default: true
  27340. },
  27341. {
  27342. name: "Megamacro",
  27343. height: math.unit(7, "miles")
  27344. },
  27345. {
  27346. name: "Gigamacro",
  27347. height: math.unit(8000, "miles")
  27348. },
  27349. ]
  27350. ))
  27351. characterMakers.push(() => makeCharacter(
  27352. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27353. {
  27354. side: {
  27355. height: math.unit(6, "feet"),
  27356. weight: math.unit(150, "lb"),
  27357. name: "Side",
  27358. image: {
  27359. source: "./media/characters/withers/side.svg",
  27360. extra: 1830 / 1728,
  27361. bottom: 96 / 1927
  27362. }
  27363. },
  27364. front: {
  27365. height: math.unit(6, "feet"),
  27366. weight: math.unit(150, "lb"),
  27367. name: "Front",
  27368. image: {
  27369. source: "./media/characters/withers/front.svg",
  27370. extra: 1514 / 1438,
  27371. bottom: 118 / 1632
  27372. }
  27373. },
  27374. },
  27375. [
  27376. {
  27377. name: "Macro",
  27378. height: math.unit(168, "feet"),
  27379. default: true
  27380. },
  27381. {
  27382. name: "Megamacro",
  27383. height: math.unit(15, "miles")
  27384. }
  27385. ]
  27386. ))
  27387. characterMakers.push(() => makeCharacter(
  27388. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27389. {
  27390. front: {
  27391. height: math.unit(6 + 7 / 12, "feet"),
  27392. weight: math.unit(250, "lb"),
  27393. name: "Front",
  27394. image: {
  27395. source: "./media/characters/nemoskii/front.svg",
  27396. extra: 2270 / 1734,
  27397. bottom: 86 / 2354
  27398. }
  27399. },
  27400. back: {
  27401. height: math.unit(6 + 7 / 12, "feet"),
  27402. weight: math.unit(250, "lb"),
  27403. name: "Back",
  27404. image: {
  27405. source: "./media/characters/nemoskii/back.svg",
  27406. extra: 1845 / 1788,
  27407. bottom: 10.5 / 1852
  27408. }
  27409. },
  27410. head: {
  27411. height: math.unit(1.31, "feet"),
  27412. name: "Head",
  27413. image: {
  27414. source: "./media/characters/nemoskii/head.svg"
  27415. }
  27416. },
  27417. },
  27418. [
  27419. {
  27420. name: "Micro",
  27421. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27422. },
  27423. {
  27424. name: "Normal",
  27425. height: math.unit(6 + 7 / 12, "feet"),
  27426. default: true
  27427. },
  27428. {
  27429. name: "Macro",
  27430. height: math.unit((6 + 7 / 12) * 150, "feet")
  27431. },
  27432. {
  27433. name: "Macro+",
  27434. height: math.unit((6 + 7 / 12) * 500, "feet")
  27435. },
  27436. {
  27437. name: "Megamacro",
  27438. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27444. {
  27445. front: {
  27446. height: math.unit(1, "mile"),
  27447. weight: math.unit(265261.9, "lb"),
  27448. name: "Front",
  27449. image: {
  27450. source: "./media/characters/shui/front.svg",
  27451. extra: 1633 / 1564,
  27452. bottom: 91.5 / 1726
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Macro",
  27459. height: math.unit(1, "mile"),
  27460. default: true
  27461. },
  27462. ]
  27463. ))
  27464. characterMakers.push(() => makeCharacter(
  27465. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27466. {
  27467. front: {
  27468. height: math.unit(12 + 6 / 12, "feet"),
  27469. weight: math.unit(1342, "lb"),
  27470. name: "Front",
  27471. image: {
  27472. source: "./media/characters/arokh-takakura/front.svg",
  27473. extra: 1089 / 1043,
  27474. bottom: 77.4 / 1176.7
  27475. }
  27476. },
  27477. back: {
  27478. height: math.unit(12 + 6 / 12, "feet"),
  27479. weight: math.unit(1342, "lb"),
  27480. name: "Back",
  27481. image: {
  27482. source: "./media/characters/arokh-takakura/back.svg",
  27483. extra: 1046 / 1019,
  27484. bottom: 102 / 1150
  27485. }
  27486. },
  27487. },
  27488. [
  27489. {
  27490. name: "Big",
  27491. height: math.unit(12 + 6 / 12, "feet"),
  27492. default: true
  27493. },
  27494. ]
  27495. ))
  27496. characterMakers.push(() => makeCharacter(
  27497. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27498. {
  27499. front: {
  27500. height: math.unit(5 + 6 / 12, "feet"),
  27501. weight: math.unit(150, "lb"),
  27502. name: "Front",
  27503. image: {
  27504. source: "./media/characters/theo/front.svg",
  27505. extra: 1184 / 1131,
  27506. bottom: 7.4 / 1191
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Micro",
  27513. height: math.unit(5, "inches")
  27514. },
  27515. {
  27516. name: "Normal",
  27517. height: math.unit(5 + 6 / 12, "feet"),
  27518. default: true
  27519. },
  27520. ]
  27521. ))
  27522. characterMakers.push(() => makeCharacter(
  27523. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27524. {
  27525. front: {
  27526. height: math.unit(5 + 9 / 12, "feet"),
  27527. weight: math.unit(130, "lb"),
  27528. name: "Front",
  27529. image: {
  27530. source: "./media/characters/cecelia-swift/front.svg",
  27531. extra: 502 / 484,
  27532. bottom: 23 / 523
  27533. }
  27534. },
  27535. back: {
  27536. height: math.unit(5 + 9 / 12, "feet"),
  27537. weight: math.unit(130, "lb"),
  27538. name: "Back",
  27539. image: {
  27540. source: "./media/characters/cecelia-swift/back.svg",
  27541. extra: 499 / 485,
  27542. bottom: 12 / 511
  27543. }
  27544. },
  27545. head: {
  27546. height: math.unit(0.90, "feet"),
  27547. name: "Head",
  27548. image: {
  27549. source: "./media/characters/cecelia-swift/head.svg"
  27550. }
  27551. },
  27552. rump: {
  27553. height: math.unit(1.75, "feet"),
  27554. name: "Rump",
  27555. image: {
  27556. source: "./media/characters/cecelia-swift/rump.svg"
  27557. }
  27558. },
  27559. },
  27560. [
  27561. {
  27562. name: "Normal",
  27563. height: math.unit(5 + 9 / 12, "feet"),
  27564. default: true
  27565. },
  27566. {
  27567. name: "Big",
  27568. height: math.unit(50, "feet")
  27569. },
  27570. {
  27571. name: "Macro",
  27572. height: math.unit(100, "feet")
  27573. },
  27574. {
  27575. name: "Macro+",
  27576. height: math.unit(500, "feet")
  27577. },
  27578. {
  27579. name: "Macro++",
  27580. height: math.unit(1000, "feet")
  27581. },
  27582. ]
  27583. ))
  27584. characterMakers.push(() => makeCharacter(
  27585. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27586. {
  27587. front: {
  27588. height: math.unit(6, "feet"),
  27589. weight: math.unit(150, "lb"),
  27590. name: "Front",
  27591. image: {
  27592. source: "./media/characters/kaunan/front.svg",
  27593. extra: 2890 / 2523,
  27594. bottom: 49 / 2939
  27595. }
  27596. },
  27597. },
  27598. [
  27599. {
  27600. name: "Macro",
  27601. height: math.unit(150, "feet"),
  27602. default: true
  27603. },
  27604. ]
  27605. ))
  27606. characterMakers.push(() => makeCharacter(
  27607. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27608. {
  27609. front: {
  27610. height: math.unit(175, "cm"),
  27611. weight: math.unit(60, "kg"),
  27612. name: "Front",
  27613. image: {
  27614. source: "./media/characters/fei/front.svg",
  27615. extra: 1873/1723,
  27616. bottom: 53/1926
  27617. }
  27618. },
  27619. },
  27620. [
  27621. {
  27622. name: "Mortal",
  27623. height: math.unit(175, "cm")
  27624. },
  27625. {
  27626. name: "Normal",
  27627. height: math.unit(3500, "m"),
  27628. default: true
  27629. },
  27630. {
  27631. name: "Stroll",
  27632. height: math.unit(17.5, "km")
  27633. },
  27634. {
  27635. name: "Showoff",
  27636. height: math.unit(175, "km")
  27637. },
  27638. ]
  27639. ))
  27640. characterMakers.push(() => makeCharacter(
  27641. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27642. {
  27643. front: {
  27644. height: math.unit(7, "feet"),
  27645. weight: math.unit(1000, "kg"),
  27646. name: "Front",
  27647. image: {
  27648. source: "./media/characters/edrax/front.svg",
  27649. extra: 2838 / 2550,
  27650. bottom: 130 / 2968
  27651. }
  27652. },
  27653. },
  27654. [
  27655. {
  27656. name: "Small",
  27657. height: math.unit(7, "feet")
  27658. },
  27659. {
  27660. name: "Normal",
  27661. height: math.unit(1500, "meters")
  27662. },
  27663. {
  27664. name: "Mega",
  27665. height: math.unit(12000000, "km"),
  27666. default: true
  27667. },
  27668. {
  27669. name: "Megamacro",
  27670. height: math.unit(10600000, "lightyears")
  27671. },
  27672. {
  27673. name: "Hypermacro",
  27674. height: math.unit(256, "yottameters")
  27675. },
  27676. ]
  27677. ))
  27678. characterMakers.push(() => makeCharacter(
  27679. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27680. {
  27681. front: {
  27682. height: math.unit(10, "feet"),
  27683. weight: math.unit(750, "lb"),
  27684. name: "Front",
  27685. image: {
  27686. source: "./media/characters/clove/front.svg",
  27687. extra: 2031 / 1860,
  27688. bottom: 47.8 / 2080
  27689. }
  27690. },
  27691. back: {
  27692. height: math.unit(10, "feet"),
  27693. weight: math.unit(750, "lb"),
  27694. name: "Back",
  27695. image: {
  27696. source: "./media/characters/clove/back.svg",
  27697. extra: 2025 / 1859,
  27698. bottom: 46 / 2071
  27699. }
  27700. },
  27701. },
  27702. [
  27703. {
  27704. name: "Normal",
  27705. height: math.unit(10, "feet"),
  27706. default: true
  27707. },
  27708. ]
  27709. ))
  27710. characterMakers.push(() => makeCharacter(
  27711. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27712. {
  27713. front: {
  27714. height: math.unit(4, "feet"),
  27715. weight: math.unit(50, "lb"),
  27716. name: "Front",
  27717. image: {
  27718. source: "./media/characters/alex-rabbit/front.svg",
  27719. extra: 507 / 458,
  27720. bottom: 18.5 / 527
  27721. }
  27722. },
  27723. back: {
  27724. height: math.unit(4, "feet"),
  27725. weight: math.unit(50, "lb"),
  27726. name: "Back",
  27727. image: {
  27728. source: "./media/characters/alex-rabbit/back.svg",
  27729. extra: 502 / 460,
  27730. bottom: 18.9 / 521
  27731. }
  27732. },
  27733. },
  27734. [
  27735. {
  27736. name: "Normal",
  27737. height: math.unit(4, "feet"),
  27738. default: true
  27739. },
  27740. ]
  27741. ))
  27742. characterMakers.push(() => makeCharacter(
  27743. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27744. {
  27745. front: {
  27746. height: math.unit(1 + 3 / 12, "feet"),
  27747. weight: math.unit(80, "lb"),
  27748. name: "Front",
  27749. image: {
  27750. source: "./media/characters/zander-rose/front.svg",
  27751. extra: 916 / 797,
  27752. bottom: 17 / 933
  27753. }
  27754. },
  27755. back: {
  27756. height: math.unit(1 + 3 / 12, "feet"),
  27757. weight: math.unit(80, "lb"),
  27758. name: "Back",
  27759. image: {
  27760. source: "./media/characters/zander-rose/back.svg",
  27761. extra: 903 / 779,
  27762. bottom: 31 / 934
  27763. }
  27764. },
  27765. },
  27766. [
  27767. {
  27768. name: "Normal",
  27769. height: math.unit(1 + 3 / 12, "feet"),
  27770. default: true
  27771. },
  27772. ]
  27773. ))
  27774. characterMakers.push(() => makeCharacter(
  27775. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27776. {
  27777. anthro: {
  27778. height: math.unit(6, "feet"),
  27779. weight: math.unit(150, "lb"),
  27780. name: "Anthro",
  27781. image: {
  27782. source: "./media/characters/razz/anthro.svg",
  27783. extra: 1437 / 1343,
  27784. bottom: 48 / 1485
  27785. }
  27786. },
  27787. feral: {
  27788. height: math.unit(6, "feet"),
  27789. weight: math.unit(150, "lb"),
  27790. name: "Feral",
  27791. image: {
  27792. source: "./media/characters/razz/feral.svg",
  27793. extra: 2569 / 1385,
  27794. bottom: 95 / 2664
  27795. }
  27796. },
  27797. },
  27798. [
  27799. {
  27800. name: "Normal",
  27801. height: math.unit(6, "feet"),
  27802. default: true
  27803. },
  27804. ]
  27805. ))
  27806. characterMakers.push(() => makeCharacter(
  27807. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27808. {
  27809. front: {
  27810. height: math.unit(9 + 4 / 12, "feet"),
  27811. weight: math.unit(500, "lb"),
  27812. name: "Front",
  27813. image: {
  27814. source: "./media/characters/morrigan/front.svg",
  27815. extra: 2707 / 2579,
  27816. bottom: 156 / 2863
  27817. }
  27818. },
  27819. },
  27820. [
  27821. {
  27822. name: "Normal",
  27823. height: math.unit(9 + 4 / 12, "feet"),
  27824. default: true
  27825. },
  27826. ]
  27827. ))
  27828. characterMakers.push(() => makeCharacter(
  27829. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27830. {
  27831. front: {
  27832. height: math.unit(5, "stories"),
  27833. weight: math.unit(4000, "lb"),
  27834. name: "Front",
  27835. image: {
  27836. source: "./media/characters/jenene/front.svg",
  27837. extra: 1780 / 1710,
  27838. bottom: 57 / 1837
  27839. }
  27840. },
  27841. },
  27842. [
  27843. {
  27844. name: "Normal",
  27845. height: math.unit(5, "stories"),
  27846. default: true
  27847. },
  27848. ]
  27849. ))
  27850. characterMakers.push(() => makeCharacter(
  27851. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27852. {
  27853. taurSfw: {
  27854. height: math.unit(10, "meters"),
  27855. weight: math.unit(17500, "kg"),
  27856. name: "Taur",
  27857. image: {
  27858. source: "./media/characters/faey/taur-sfw.svg",
  27859. extra: 1200 / 968,
  27860. bottom: 41 / 1241
  27861. }
  27862. },
  27863. chestmaw: {
  27864. height: math.unit(2.01, "meters"),
  27865. name: "Chestmaw",
  27866. image: {
  27867. source: "./media/characters/faey/chestmaw.svg"
  27868. }
  27869. },
  27870. foot: {
  27871. height: math.unit(2.43, "meters"),
  27872. name: "Foot",
  27873. image: {
  27874. source: "./media/characters/faey/foot.svg"
  27875. }
  27876. },
  27877. jaws: {
  27878. height: math.unit(1.66, "meters"),
  27879. name: "Jaws",
  27880. image: {
  27881. source: "./media/characters/faey/jaws.svg"
  27882. }
  27883. },
  27884. tongues: {
  27885. height: math.unit(2.01, "meters"),
  27886. name: "Tongues",
  27887. image: {
  27888. source: "./media/characters/faey/tongues.svg"
  27889. }
  27890. },
  27891. },
  27892. [
  27893. {
  27894. name: "Small",
  27895. height: math.unit(10, "meters"),
  27896. default: true
  27897. },
  27898. {
  27899. name: "Big",
  27900. height: math.unit(500000, "km")
  27901. },
  27902. ]
  27903. ))
  27904. characterMakers.push(() => makeCharacter(
  27905. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27906. {
  27907. front: {
  27908. height: math.unit(7, "feet"),
  27909. weight: math.unit(275, "lb"),
  27910. name: "Front",
  27911. image: {
  27912. source: "./media/characters/roku/front.svg",
  27913. extra: 903 / 878,
  27914. bottom: 37 / 940
  27915. }
  27916. },
  27917. },
  27918. [
  27919. {
  27920. name: "Normal",
  27921. height: math.unit(7, "feet"),
  27922. default: true
  27923. },
  27924. {
  27925. name: "Macro",
  27926. height: math.unit(500, "feet")
  27927. },
  27928. {
  27929. name: "Megamacro",
  27930. height: math.unit(200, "miles")
  27931. },
  27932. ]
  27933. ))
  27934. characterMakers.push(() => makeCharacter(
  27935. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27936. {
  27937. front: {
  27938. height: math.unit(6 + 2 / 12, "feet"),
  27939. weight: math.unit(150, "lb"),
  27940. name: "Front",
  27941. image: {
  27942. source: "./media/characters/lira/front.svg",
  27943. extra: 1727 / 1605,
  27944. bottom: 26 / 1753
  27945. }
  27946. },
  27947. back: {
  27948. height: math.unit(6 + 2 / 12, "feet"),
  27949. weight: math.unit(150, "lb"),
  27950. name: "Back",
  27951. image: {
  27952. source: "./media/characters/lira/back.svg",
  27953. extra: 1713/1621,
  27954. bottom: 20/1733
  27955. }
  27956. },
  27957. hand: {
  27958. height: math.unit(0.75, "feet"),
  27959. name: "Hand",
  27960. image: {
  27961. source: "./media/characters/lira/hand.svg"
  27962. }
  27963. },
  27964. maw: {
  27965. height: math.unit(0.65, "feet"),
  27966. name: "Maw",
  27967. image: {
  27968. source: "./media/characters/lira/maw.svg"
  27969. }
  27970. },
  27971. pawDigi: {
  27972. height: math.unit(1.6, "feet"),
  27973. name: "Paw Digi",
  27974. image: {
  27975. source: "./media/characters/lira/paw-digi.svg"
  27976. }
  27977. },
  27978. pawPlanti: {
  27979. height: math.unit(1.4, "feet"),
  27980. name: "Paw Planti",
  27981. image: {
  27982. source: "./media/characters/lira/paw-planti.svg"
  27983. }
  27984. },
  27985. },
  27986. [
  27987. {
  27988. name: "Normal",
  27989. height: math.unit(6 + 2 / 12, "feet"),
  27990. default: true
  27991. },
  27992. {
  27993. name: "Macro",
  27994. height: math.unit(100, "feet")
  27995. },
  27996. {
  27997. name: "Macro²",
  27998. height: math.unit(1600, "feet")
  27999. },
  28000. {
  28001. name: "Planetary",
  28002. height: math.unit(20, "earths")
  28003. },
  28004. ]
  28005. ))
  28006. characterMakers.push(() => makeCharacter(
  28007. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28008. {
  28009. front: {
  28010. height: math.unit(6, "feet"),
  28011. weight: math.unit(150, "lb"),
  28012. name: "Front",
  28013. image: {
  28014. source: "./media/characters/hadjet/front.svg",
  28015. extra: 1480 / 1346,
  28016. bottom: 26 / 1506
  28017. }
  28018. },
  28019. frontNsfw: {
  28020. height: math.unit(6, "feet"),
  28021. weight: math.unit(150, "lb"),
  28022. name: "Front (NSFW)",
  28023. image: {
  28024. source: "./media/characters/hadjet/front-nsfw.svg",
  28025. extra: 1440 / 1358,
  28026. bottom: 52 / 1492
  28027. }
  28028. },
  28029. },
  28030. [
  28031. {
  28032. name: "Macro",
  28033. height: math.unit(10, "stories"),
  28034. default: true
  28035. },
  28036. {
  28037. name: "Megamacro",
  28038. height: math.unit(1.5, "miles")
  28039. },
  28040. {
  28041. name: "Megamacro+",
  28042. height: math.unit(5, "miles")
  28043. },
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28048. {
  28049. side: {
  28050. height: math.unit(106, "feet"),
  28051. weight: math.unit(500, "tonnes"),
  28052. name: "Side",
  28053. image: {
  28054. source: "./media/characters/kodran/side.svg",
  28055. extra: 553 / 480,
  28056. bottom: 33 / 586
  28057. }
  28058. },
  28059. front: {
  28060. height: math.unit(132, "feet"),
  28061. weight: math.unit(500, "tonnes"),
  28062. name: "Front",
  28063. image: {
  28064. source: "./media/characters/kodran/front.svg",
  28065. extra: 667 / 643,
  28066. bottom: 42 / 709
  28067. }
  28068. },
  28069. flying: {
  28070. height: math.unit(350, "feet"),
  28071. weight: math.unit(500, "tonnes"),
  28072. name: "Flying",
  28073. image: {
  28074. source: "./media/characters/kodran/flying.svg"
  28075. }
  28076. },
  28077. foot: {
  28078. height: math.unit(33, "feet"),
  28079. name: "Foot",
  28080. image: {
  28081. source: "./media/characters/kodran/foot.svg"
  28082. }
  28083. },
  28084. footFront: {
  28085. height: math.unit(19, "feet"),
  28086. name: "Foot (Front)",
  28087. image: {
  28088. source: "./media/characters/kodran/foot-front.svg",
  28089. extra: 261 / 261,
  28090. bottom: 91 / 352
  28091. }
  28092. },
  28093. headFront: {
  28094. height: math.unit(53, "feet"),
  28095. name: "Head (Front)",
  28096. image: {
  28097. source: "./media/characters/kodran/head-front.svg"
  28098. }
  28099. },
  28100. headSide: {
  28101. height: math.unit(65, "feet"),
  28102. name: "Head (Side)",
  28103. image: {
  28104. source: "./media/characters/kodran/head-side.svg"
  28105. }
  28106. },
  28107. throat: {
  28108. height: math.unit(79, "feet"),
  28109. name: "Throat",
  28110. image: {
  28111. source: "./media/characters/kodran/throat.svg"
  28112. }
  28113. },
  28114. },
  28115. [
  28116. {
  28117. name: "Large",
  28118. height: math.unit(106, "feet"),
  28119. default: true
  28120. },
  28121. ]
  28122. ))
  28123. characterMakers.push(() => makeCharacter(
  28124. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28125. {
  28126. side: {
  28127. height: math.unit(11, "feet"),
  28128. weight: math.unit(150, "lb"),
  28129. name: "Side",
  28130. image: {
  28131. source: "./media/characters/pyxaron/side.svg",
  28132. extra: 305 / 195,
  28133. bottom: 17 / 322
  28134. }
  28135. },
  28136. },
  28137. [
  28138. {
  28139. name: "Normal",
  28140. height: math.unit(11, "feet"),
  28141. default: true
  28142. },
  28143. ]
  28144. ))
  28145. characterMakers.push(() => makeCharacter(
  28146. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28147. {
  28148. front: {
  28149. height: math.unit(6, "feet"),
  28150. weight: math.unit(150, "lb"),
  28151. name: "Front",
  28152. image: {
  28153. source: "./media/characters/meep/front.svg",
  28154. extra: 88 / 80,
  28155. bottom: 6 / 94
  28156. }
  28157. },
  28158. },
  28159. [
  28160. {
  28161. name: "Fun Sized",
  28162. height: math.unit(2, "inches"),
  28163. default: true
  28164. },
  28165. {
  28166. name: "Friend Sized",
  28167. height: math.unit(8, "inches")
  28168. },
  28169. ]
  28170. ))
  28171. characterMakers.push(() => makeCharacter(
  28172. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28173. {
  28174. front: {
  28175. height: math.unit(15, "feet"),
  28176. weight: math.unit(2500, "lb"),
  28177. name: "Front",
  28178. image: {
  28179. source: "./media/characters/holly-rabbit/front.svg",
  28180. extra: 1433 / 1233,
  28181. bottom: 125 / 1558
  28182. }
  28183. },
  28184. dick: {
  28185. height: math.unit(4.6, "feet"),
  28186. name: "Dick",
  28187. image: {
  28188. source: "./media/characters/holly-rabbit/dick.svg"
  28189. }
  28190. },
  28191. },
  28192. [
  28193. {
  28194. name: "Normal",
  28195. height: math.unit(15, "feet"),
  28196. default: true
  28197. },
  28198. {
  28199. name: "Macro",
  28200. height: math.unit(250, "feet")
  28201. },
  28202. {
  28203. name: "Macro+",
  28204. height: math.unit(2500, "feet")
  28205. },
  28206. ]
  28207. ))
  28208. characterMakers.push(() => makeCharacter(
  28209. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28210. {
  28211. front: {
  28212. height: math.unit(3.02, "meters"),
  28213. weight: math.unit(500, "kg"),
  28214. name: "Front",
  28215. image: {
  28216. source: "./media/characters/drena/front.svg",
  28217. extra: 282 / 243,
  28218. bottom: 8 / 290
  28219. }
  28220. },
  28221. side: {
  28222. height: math.unit(3.02, "meters"),
  28223. weight: math.unit(500, "kg"),
  28224. name: "Side",
  28225. image: {
  28226. source: "./media/characters/drena/side.svg",
  28227. extra: 280 / 245,
  28228. bottom: 10 / 290
  28229. }
  28230. },
  28231. back: {
  28232. height: math.unit(3.02, "meters"),
  28233. weight: math.unit(500, "kg"),
  28234. name: "Back",
  28235. image: {
  28236. source: "./media/characters/drena/back.svg",
  28237. extra: 278 / 243,
  28238. bottom: 2 / 280
  28239. }
  28240. },
  28241. foot: {
  28242. height: math.unit(0.75, "meters"),
  28243. name: "Foot",
  28244. image: {
  28245. source: "./media/characters/drena/foot.svg"
  28246. }
  28247. },
  28248. maw: {
  28249. height: math.unit(0.82, "meters"),
  28250. name: "Maw",
  28251. image: {
  28252. source: "./media/characters/drena/maw.svg"
  28253. }
  28254. },
  28255. rump: {
  28256. height: math.unit(0.93, "meters"),
  28257. name: "Rump",
  28258. image: {
  28259. source: "./media/characters/drena/rump.svg"
  28260. }
  28261. },
  28262. },
  28263. [
  28264. {
  28265. name: "Normal",
  28266. height: math.unit(3.02, "meters"),
  28267. default: true
  28268. },
  28269. ]
  28270. ))
  28271. characterMakers.push(() => makeCharacter(
  28272. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28273. {
  28274. front: {
  28275. height: math.unit(6 + 4 / 12, "feet"),
  28276. weight: math.unit(250, "lb"),
  28277. name: "Front",
  28278. image: {
  28279. source: "./media/characters/remmyzilla/front.svg",
  28280. extra: 4033 / 3588,
  28281. bottom: 123 / 4156
  28282. }
  28283. },
  28284. back: {
  28285. height: math.unit(6 + 4 / 12, "feet"),
  28286. weight: math.unit(250, "lb"),
  28287. name: "Back",
  28288. image: {
  28289. source: "./media/characters/remmyzilla/back.svg",
  28290. extra: 2687 / 2555,
  28291. bottom: 48 / 2735
  28292. }
  28293. },
  28294. paw: {
  28295. height: math.unit(1.73, "feet"),
  28296. name: "Paw",
  28297. image: {
  28298. source: "./media/characters/remmyzilla/paw.svg"
  28299. }
  28300. },
  28301. maw: {
  28302. height: math.unit(1.73, "feet"),
  28303. name: "Maw",
  28304. image: {
  28305. source: "./media/characters/remmyzilla/maw.svg"
  28306. }
  28307. },
  28308. },
  28309. [
  28310. {
  28311. name: "Normal",
  28312. height: math.unit(6 + 4 / 12, "feet")
  28313. },
  28314. {
  28315. name: "Minimacro",
  28316. height: math.unit(12 + 8 / 12, "feet")
  28317. },
  28318. {
  28319. name: "Normal",
  28320. height: math.unit(640, "feet"),
  28321. default: true
  28322. },
  28323. {
  28324. name: "Megamacro",
  28325. height: math.unit(6400, "feet")
  28326. },
  28327. {
  28328. name: "Gigamacro",
  28329. height: math.unit(64000, "miles")
  28330. },
  28331. ]
  28332. ))
  28333. characterMakers.push(() => makeCharacter(
  28334. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28335. {
  28336. front: {
  28337. height: math.unit(2.5, "meters"),
  28338. weight: math.unit(300, "lb"),
  28339. name: "Front",
  28340. image: {
  28341. source: "./media/characters/lawrence/front.svg",
  28342. extra: 357 / 335,
  28343. bottom: 30 / 387
  28344. }
  28345. },
  28346. back: {
  28347. height: math.unit(2.5, "meters"),
  28348. weight: math.unit(300, "lb"),
  28349. name: "Back",
  28350. image: {
  28351. source: "./media/characters/lawrence/back.svg",
  28352. extra: 357 / 338,
  28353. bottom: 16 / 373
  28354. }
  28355. },
  28356. head: {
  28357. height: math.unit(0.9, "meter"),
  28358. name: "Head",
  28359. image: {
  28360. source: "./media/characters/lawrence/head.svg"
  28361. }
  28362. },
  28363. maw: {
  28364. height: math.unit(0.7, "meter"),
  28365. name: "Maw",
  28366. image: {
  28367. source: "./media/characters/lawrence/maw.svg"
  28368. }
  28369. },
  28370. footBottom: {
  28371. height: math.unit(0.5, "meter"),
  28372. name: "Foot (Bottom)",
  28373. image: {
  28374. source: "./media/characters/lawrence/foot-bottom.svg"
  28375. }
  28376. },
  28377. footTop: {
  28378. height: math.unit(0.5, "meter"),
  28379. name: "Foot (Top)",
  28380. image: {
  28381. source: "./media/characters/lawrence/foot-top.svg"
  28382. }
  28383. },
  28384. },
  28385. [
  28386. {
  28387. name: "Normal",
  28388. height: math.unit(2.5, "meters"),
  28389. default: true
  28390. },
  28391. {
  28392. name: "Macro",
  28393. height: math.unit(95, "meters")
  28394. },
  28395. {
  28396. name: "Megamacro",
  28397. height: math.unit(150, "km")
  28398. },
  28399. ]
  28400. ))
  28401. characterMakers.push(() => makeCharacter(
  28402. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28403. {
  28404. front: {
  28405. height: math.unit(4.2, "meters"),
  28406. name: "Front",
  28407. image: {
  28408. source: "./media/characters/sydney/front.svg",
  28409. extra: 1323 / 1277,
  28410. bottom: 111 / 1434
  28411. }
  28412. },
  28413. },
  28414. [
  28415. {
  28416. name: "Normal",
  28417. height: math.unit(4.2, "meters"),
  28418. default: true
  28419. },
  28420. ]
  28421. ))
  28422. characterMakers.push(() => makeCharacter(
  28423. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28424. {
  28425. back: {
  28426. height: math.unit(201, "feet"),
  28427. name: "Back",
  28428. image: {
  28429. source: "./media/characters/jessica/back.svg",
  28430. extra: 273 / 259,
  28431. bottom: 7 / 280
  28432. }
  28433. },
  28434. },
  28435. [
  28436. {
  28437. name: "Normal",
  28438. height: math.unit(201, "feet"),
  28439. default: true
  28440. },
  28441. {
  28442. name: "Megamacro",
  28443. height: math.unit(8, "miles")
  28444. },
  28445. ]
  28446. ))
  28447. characterMakers.push(() => makeCharacter(
  28448. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28449. {
  28450. side: {
  28451. height: math.unit(320, "cm"),
  28452. name: "Side",
  28453. image: {
  28454. source: "./media/characters/victoria/side.svg",
  28455. extra: 778 / 346,
  28456. bottom: 56 / 834
  28457. }
  28458. },
  28459. maw: {
  28460. height: math.unit(5.9, "feet"),
  28461. name: "Maw",
  28462. image: {
  28463. source: "./media/characters/victoria/maw.svg"
  28464. }
  28465. },
  28466. },
  28467. [
  28468. {
  28469. name: "Normal",
  28470. height: math.unit(320, "cm"),
  28471. default: true
  28472. },
  28473. ]
  28474. ))
  28475. characterMakers.push(() => makeCharacter(
  28476. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28477. {
  28478. front: {
  28479. height: math.unit(5 + 6 / 12, "feet"),
  28480. name: "Front",
  28481. image: {
  28482. source: "./media/characters/cat/front.svg",
  28483. extra: 1449/1295,
  28484. bottom: 34/1483
  28485. }
  28486. },
  28487. back: {
  28488. height: math.unit(5 + 6 / 12, "feet"),
  28489. name: "Back",
  28490. image: {
  28491. source: "./media/characters/cat/back.svg",
  28492. extra: 1466/1301,
  28493. bottom: 19/1485
  28494. }
  28495. },
  28496. taur: {
  28497. height: math.unit(7, "feet"),
  28498. name: "Taur",
  28499. image: {
  28500. source: "./media/characters/cat/taur.svg",
  28501. extra: 1389/1233,
  28502. bottom: 83/1472
  28503. }
  28504. },
  28505. lucarioFront: {
  28506. height: math.unit(4, "feet"),
  28507. name: "Lucario (Front)",
  28508. image: {
  28509. source: "./media/characters/cat/lucario-front.svg",
  28510. extra: 1149/1019,
  28511. bottom: 84/1233
  28512. }
  28513. },
  28514. lucarioBack: {
  28515. height: math.unit(4, "feet"),
  28516. name: "Lucario (Back)",
  28517. image: {
  28518. source: "./media/characters/cat/lucario-back.svg",
  28519. extra: 1190/1059,
  28520. bottom: 33/1223
  28521. }
  28522. },
  28523. megaLucario: {
  28524. height: math.unit(4, "feet"),
  28525. name: "Mega Lucario",
  28526. image: {
  28527. source: "./media/characters/cat/mega-lucario.svg",
  28528. extra: 1515 / 1319,
  28529. bottom: 63 / 1578
  28530. }
  28531. },
  28532. nickit: {
  28533. height: math.unit(2, "feet"),
  28534. name: "Nickit",
  28535. image: {
  28536. source: "./media/characters/cat/nickit.svg",
  28537. extra: 1980 / 1585,
  28538. bottom: 102 / 2082
  28539. }
  28540. },
  28541. lopunnyFront: {
  28542. height: math.unit(5, "feet"),
  28543. name: "Lopunny (Front)",
  28544. image: {
  28545. source: "./media/characters/cat/lopunny-front.svg",
  28546. extra: 1782 / 1469,
  28547. bottom: 38 / 1820
  28548. }
  28549. },
  28550. lopunnyBack: {
  28551. height: math.unit(5, "feet"),
  28552. name: "Lopunny (Back)",
  28553. image: {
  28554. source: "./media/characters/cat/lopunny-back.svg",
  28555. extra: 1660 / 1490,
  28556. bottom: 25 / 1685
  28557. }
  28558. },
  28559. },
  28560. [
  28561. {
  28562. name: "Really small",
  28563. height: math.unit(1, "nm")
  28564. },
  28565. {
  28566. name: "Micro",
  28567. height: math.unit(5, "inches")
  28568. },
  28569. {
  28570. name: "Normal",
  28571. height: math.unit(5 + 6 / 12, "feet"),
  28572. default: true
  28573. },
  28574. {
  28575. name: "Macro",
  28576. height: math.unit(50, "feet")
  28577. },
  28578. {
  28579. name: "Macro+",
  28580. height: math.unit(150, "feet")
  28581. },
  28582. {
  28583. name: "Megamacro",
  28584. height: math.unit(100, "miles")
  28585. },
  28586. ]
  28587. ))
  28588. characterMakers.push(() => makeCharacter(
  28589. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28590. {
  28591. front: {
  28592. height: math.unit(63.4, "meters"),
  28593. weight: math.unit(3.28349e+6, "kilograms"),
  28594. name: "Front",
  28595. image: {
  28596. source: "./media/characters/kirina-violet/front.svg",
  28597. extra: 2812 / 2725,
  28598. bottom: 0 / 2812
  28599. }
  28600. },
  28601. back: {
  28602. height: math.unit(63.4, "meters"),
  28603. weight: math.unit(3.28349e+6, "kilograms"),
  28604. name: "Back",
  28605. image: {
  28606. source: "./media/characters/kirina-violet/back.svg",
  28607. extra: 2812 / 2725,
  28608. bottom: 0 / 2812
  28609. }
  28610. },
  28611. mouth: {
  28612. height: math.unit(4.35, "meters"),
  28613. name: "Mouth",
  28614. image: {
  28615. source: "./media/characters/kirina-violet/mouth.svg"
  28616. }
  28617. },
  28618. paw: {
  28619. height: math.unit(5.6, "meters"),
  28620. name: "Paw",
  28621. image: {
  28622. source: "./media/characters/kirina-violet/paw.svg"
  28623. }
  28624. },
  28625. tail: {
  28626. height: math.unit(18, "meters"),
  28627. name: "Tail",
  28628. image: {
  28629. source: "./media/characters/kirina-violet/tail.svg"
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Macro",
  28636. height: math.unit(63.4, "meters"),
  28637. default: true
  28638. },
  28639. ]
  28640. ))
  28641. characterMakers.push(() => makeCharacter(
  28642. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28643. {
  28644. front: {
  28645. height: math.unit(75, "feet"),
  28646. name: "Front",
  28647. image: {
  28648. source: "./media/characters/cat-gigachu/front.svg",
  28649. extra: 1239/1027,
  28650. bottom: 32/1271
  28651. }
  28652. },
  28653. back: {
  28654. height: math.unit(75, "feet"),
  28655. name: "Back",
  28656. image: {
  28657. source: "./media/characters/cat-gigachu/back.svg",
  28658. extra: 1229/1030,
  28659. bottom: 9/1238
  28660. }
  28661. },
  28662. },
  28663. [
  28664. {
  28665. name: "Dynamax",
  28666. height: math.unit(75, "feet"),
  28667. default: true
  28668. },
  28669. ]
  28670. ))
  28671. characterMakers.push(() => makeCharacter(
  28672. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28673. {
  28674. front: {
  28675. height: math.unit(6, "feet"),
  28676. weight: math.unit(150, "lb"),
  28677. name: "Front",
  28678. image: {
  28679. source: "./media/characters/sfaiyan/front.svg",
  28680. extra: 999 / 978,
  28681. bottom: 5 / 1004
  28682. }
  28683. },
  28684. },
  28685. [
  28686. {
  28687. name: "Normal",
  28688. height: math.unit(1.82, "meters")
  28689. },
  28690. {
  28691. name: "Giant",
  28692. height: math.unit(2.27, "km"),
  28693. default: true
  28694. },
  28695. ]
  28696. ))
  28697. characterMakers.push(() => makeCharacter(
  28698. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28699. {
  28700. front: {
  28701. height: math.unit(179, "cm"),
  28702. weight: math.unit(100, "kg"),
  28703. name: "Front",
  28704. image: {
  28705. source: "./media/characters/raunehkeli/front.svg",
  28706. extra: 1934 / 1926,
  28707. bottom: 0 / 1934
  28708. }
  28709. },
  28710. },
  28711. [
  28712. {
  28713. name: "Normal",
  28714. height: math.unit(179, "cm")
  28715. },
  28716. {
  28717. name: "Maximum",
  28718. height: math.unit(575, "meters"),
  28719. default: true
  28720. },
  28721. ]
  28722. ))
  28723. characterMakers.push(() => makeCharacter(
  28724. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28725. {
  28726. front: {
  28727. height: math.unit(6, "feet"),
  28728. weight: math.unit(150, "lb"),
  28729. name: "Front",
  28730. image: {
  28731. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28732. extra: 2625 / 2518,
  28733. bottom: 60 / 2685
  28734. }
  28735. },
  28736. },
  28737. [
  28738. {
  28739. name: "Normal",
  28740. height: math.unit(6 + 2 / 12, "feet")
  28741. },
  28742. {
  28743. name: "Macro",
  28744. height: math.unit(1180, "feet"),
  28745. default: true
  28746. },
  28747. ]
  28748. ))
  28749. characterMakers.push(() => makeCharacter(
  28750. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28751. {
  28752. front: {
  28753. height: math.unit(5 + 6 / 12, "feet"),
  28754. weight: math.unit(108, "lb"),
  28755. name: "Front",
  28756. image: {
  28757. source: "./media/characters/lilith-zott/front.svg",
  28758. extra: 2510 / 2238,
  28759. bottom: 100 / 2610
  28760. }
  28761. },
  28762. frontDressed: {
  28763. height: math.unit(5 + 6 / 12, "feet"),
  28764. weight: math.unit(108, "lb"),
  28765. name: "Front (Dressed)",
  28766. image: {
  28767. source: "./media/characters/lilith-zott/front-dressed.svg",
  28768. extra: 2510 / 2238,
  28769. bottom: 100 / 2610
  28770. }
  28771. },
  28772. },
  28773. [
  28774. {
  28775. name: "Normal",
  28776. height: math.unit(5 + 6 / 12, "feet")
  28777. },
  28778. {
  28779. name: "Macro",
  28780. height: math.unit(1030, "feet"),
  28781. default: true
  28782. },
  28783. ]
  28784. ))
  28785. characterMakers.push(() => makeCharacter(
  28786. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28787. {
  28788. front: {
  28789. height: math.unit(6, "feet"),
  28790. weight: math.unit(150, "lb"),
  28791. name: "Front",
  28792. image: {
  28793. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28794. extra: 2567 / 2435,
  28795. bottom: 39 / 2606
  28796. }
  28797. },
  28798. frontSuper: {
  28799. height: math.unit(6, "feet"),
  28800. name: "Front (Super)",
  28801. image: {
  28802. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28803. extra: 2567 / 2435,
  28804. bottom: 39 / 2606
  28805. }
  28806. },
  28807. },
  28808. [
  28809. {
  28810. name: "Normal",
  28811. height: math.unit(5 + 10 / 12, "feet")
  28812. },
  28813. {
  28814. name: "Macro",
  28815. height: math.unit(1100, "feet"),
  28816. default: true
  28817. },
  28818. ]
  28819. ))
  28820. characterMakers.push(() => makeCharacter(
  28821. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28822. {
  28823. front: {
  28824. height: math.unit(100, "miles"),
  28825. name: "Front",
  28826. image: {
  28827. source: "./media/characters/sona/front.svg",
  28828. extra: 2433 / 2201,
  28829. bottom: 53 / 2486
  28830. }
  28831. },
  28832. foot: {
  28833. height: math.unit(16.1, "miles"),
  28834. name: "Foot",
  28835. image: {
  28836. source: "./media/characters/sona/foot.svg"
  28837. }
  28838. },
  28839. },
  28840. [
  28841. {
  28842. name: "Macro",
  28843. height: math.unit(100, "miles"),
  28844. default: true
  28845. },
  28846. ]
  28847. ))
  28848. characterMakers.push(() => makeCharacter(
  28849. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28850. {
  28851. front: {
  28852. height: math.unit(6, "feet"),
  28853. weight: math.unit(150, "lb"),
  28854. name: "Front",
  28855. image: {
  28856. source: "./media/characters/bailey/front.svg",
  28857. extra: 1778 / 1724,
  28858. bottom: 30 / 1808
  28859. }
  28860. },
  28861. },
  28862. [
  28863. {
  28864. name: "Micro",
  28865. height: math.unit(4, "inches")
  28866. },
  28867. {
  28868. name: "Normal",
  28869. height: math.unit(5 + 5 / 12, "feet"),
  28870. default: true
  28871. },
  28872. {
  28873. name: "Macro",
  28874. height: math.unit(250, "feet")
  28875. },
  28876. {
  28877. name: "Megamacro",
  28878. height: math.unit(100, "miles")
  28879. },
  28880. ]
  28881. ))
  28882. characterMakers.push(() => makeCharacter(
  28883. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28884. {
  28885. front: {
  28886. height: math.unit(5 + 2 / 12, "feet"),
  28887. weight: math.unit(120, "lb"),
  28888. name: "Front",
  28889. image: {
  28890. source: "./media/characters/snaps/front.svg",
  28891. extra: 2370 / 2177,
  28892. bottom: 48 / 2418
  28893. }
  28894. },
  28895. back: {
  28896. height: math.unit(5 + 2 / 12, "feet"),
  28897. weight: math.unit(120, "lb"),
  28898. name: "Back",
  28899. image: {
  28900. source: "./media/characters/snaps/back.svg",
  28901. extra: 2408 / 2258,
  28902. bottom: 15 / 2423
  28903. }
  28904. },
  28905. },
  28906. [
  28907. {
  28908. name: "Micro",
  28909. height: math.unit(9, "inches")
  28910. },
  28911. {
  28912. name: "Normal",
  28913. height: math.unit(5 + 2 / 12, "feet"),
  28914. default: true
  28915. },
  28916. {
  28917. name: "Mini Macro",
  28918. height: math.unit(10, "feet")
  28919. },
  28920. ]
  28921. ))
  28922. characterMakers.push(() => makeCharacter(
  28923. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28924. {
  28925. front: {
  28926. height: math.unit(1.8, "meters"),
  28927. weight: math.unit(85, "kg"),
  28928. name: "Front",
  28929. image: {
  28930. source: "./media/characters/azteck/front.svg",
  28931. extra: 2815 / 2625,
  28932. bottom: 89 / 2904
  28933. }
  28934. },
  28935. back: {
  28936. height: math.unit(1.8, "meters"),
  28937. weight: math.unit(85, "kg"),
  28938. name: "Back",
  28939. image: {
  28940. source: "./media/characters/azteck/back.svg",
  28941. extra: 2856 / 2648,
  28942. bottom: 85 / 2941
  28943. }
  28944. },
  28945. frontDressed: {
  28946. height: math.unit(1.8, "meters"),
  28947. weight: math.unit(85, "kg"),
  28948. name: "Front (Dressed)",
  28949. image: {
  28950. source: "./media/characters/azteck/front-dressed.svg",
  28951. extra: 2147 / 2003,
  28952. bottom: 68 / 2215
  28953. }
  28954. },
  28955. head: {
  28956. height: math.unit(0.47, "meters"),
  28957. weight: math.unit(85, "kg"),
  28958. name: "Head",
  28959. image: {
  28960. source: "./media/characters/azteck/head.svg"
  28961. }
  28962. },
  28963. },
  28964. [
  28965. {
  28966. name: "Bite sized",
  28967. height: math.unit(16, "cm")
  28968. },
  28969. {
  28970. name: "Normal",
  28971. height: math.unit(1.8, "meters"),
  28972. default: true
  28973. },
  28974. ]
  28975. ))
  28976. characterMakers.push(() => makeCharacter(
  28977. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28978. {
  28979. front: {
  28980. height: math.unit(6, "feet"),
  28981. weight: math.unit(150, "lb"),
  28982. name: "Front",
  28983. image: {
  28984. source: "./media/characters/pidge/front.svg",
  28985. extra: 620 / 588,
  28986. bottom: 9 / 629
  28987. }
  28988. },
  28989. back: {
  28990. height: math.unit(6, "feet"),
  28991. weight: math.unit(150, "lb"),
  28992. name: "Back",
  28993. image: {
  28994. source: "./media/characters/pidge/back.svg",
  28995. extra: 620 / 588,
  28996. bottom: 9 / 629
  28997. }
  28998. },
  28999. },
  29000. [
  29001. {
  29002. name: "Macro",
  29003. height: math.unit(1, "mile"),
  29004. default: true
  29005. },
  29006. ]
  29007. ))
  29008. characterMakers.push(() => makeCharacter(
  29009. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29010. {
  29011. front: {
  29012. height: math.unit(6, "feet"),
  29013. weight: math.unit(150, "lb"),
  29014. name: "Front",
  29015. image: {
  29016. source: "./media/characters/en/front.svg",
  29017. extra: 1697 / 1563,
  29018. bottom: 103 / 1800
  29019. }
  29020. },
  29021. back: {
  29022. height: math.unit(6, "feet"),
  29023. weight: math.unit(150, "lb"),
  29024. name: "Back",
  29025. image: {
  29026. source: "./media/characters/en/back.svg",
  29027. extra: 1700 / 1570,
  29028. bottom: 51 / 1751
  29029. }
  29030. },
  29031. frontDressed: {
  29032. height: math.unit(6, "feet"),
  29033. weight: math.unit(150, "lb"),
  29034. name: "Front (Dressed)",
  29035. image: {
  29036. source: "./media/characters/en/front-dressed.svg",
  29037. extra: 1697 / 1563,
  29038. bottom: 103 / 1800
  29039. }
  29040. },
  29041. backDressed: {
  29042. height: math.unit(6, "feet"),
  29043. weight: math.unit(150, "lb"),
  29044. name: "Back (Dressed)",
  29045. image: {
  29046. source: "./media/characters/en/back-dressed.svg",
  29047. extra: 1700 / 1570,
  29048. bottom: 51 / 1751
  29049. }
  29050. },
  29051. },
  29052. [
  29053. {
  29054. name: "Macro",
  29055. height: math.unit(210, "feet"),
  29056. default: true
  29057. },
  29058. ]
  29059. ))
  29060. characterMakers.push(() => makeCharacter(
  29061. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29062. {
  29063. front: {
  29064. height: math.unit(6, "feet"),
  29065. weight: math.unit(150, "lb"),
  29066. name: "Front",
  29067. image: {
  29068. source: "./media/characters/haze-orris/front.svg",
  29069. extra: 3975 / 3525,
  29070. bottom: 137 / 4112
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Micro",
  29077. height: math.unit(150, "mm"),
  29078. default: true
  29079. },
  29080. ]
  29081. ))
  29082. characterMakers.push(() => makeCharacter(
  29083. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29084. {
  29085. front: {
  29086. height: math.unit(6, "feet"),
  29087. weight: math.unit(150, "lb"),
  29088. name: "Front",
  29089. image: {
  29090. source: "./media/characters/casselene-yaro/front.svg",
  29091. extra: 4721 / 4541,
  29092. bottom: 82 / 4803
  29093. }
  29094. },
  29095. back: {
  29096. height: math.unit(6, "feet"),
  29097. weight: math.unit(150, "lb"),
  29098. name: "Back",
  29099. image: {
  29100. source: "./media/characters/casselene-yaro/back.svg",
  29101. extra: 4569 / 4377,
  29102. bottom: 69 / 4638
  29103. }
  29104. },
  29105. frontDressed: {
  29106. height: math.unit(6, "feet"),
  29107. weight: math.unit(150, "lb"),
  29108. name: "Front-dressed",
  29109. image: {
  29110. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29111. extra: 4721 / 4541,
  29112. bottom: 82 / 4803
  29113. }
  29114. },
  29115. },
  29116. [
  29117. {
  29118. name: "Macro",
  29119. height: math.unit(190, "feet"),
  29120. default: true
  29121. },
  29122. ]
  29123. ))
  29124. characterMakers.push(() => makeCharacter(
  29125. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29126. {
  29127. front: {
  29128. height: math.unit(6, "feet"),
  29129. weight: math.unit(150, "lb"),
  29130. name: "Front",
  29131. image: {
  29132. source: "./media/characters/myra-rue-delore/front.svg",
  29133. extra: 1340 / 1308,
  29134. bottom: 67 / 1407
  29135. }
  29136. },
  29137. back: {
  29138. height: math.unit(6, "feet"),
  29139. weight: math.unit(150, "lb"),
  29140. name: "Back",
  29141. image: {
  29142. source: "./media/characters/myra-rue-delore/back.svg",
  29143. extra: 1341 / 1310,
  29144. bottom: 40 / 1381
  29145. }
  29146. },
  29147. frontDressed: {
  29148. height: math.unit(6, "feet"),
  29149. weight: math.unit(150, "lb"),
  29150. name: "Front (Dressed)",
  29151. image: {
  29152. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29153. extra: 1340 / 1308,
  29154. bottom: 67 / 1407
  29155. }
  29156. },
  29157. },
  29158. [
  29159. {
  29160. name: "Macro",
  29161. height: math.unit(150, "feet"),
  29162. default: true
  29163. },
  29164. ]
  29165. ))
  29166. characterMakers.push(() => makeCharacter(
  29167. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29168. {
  29169. front: {
  29170. height: math.unit(10, "feet"),
  29171. weight: math.unit(15015, "lb"),
  29172. name: "Front",
  29173. image: {
  29174. source: "./media/characters/fem!plat/front.svg",
  29175. extra: 2799 / 2604,
  29176. bottom: 149 / 2948
  29177. }
  29178. },
  29179. },
  29180. [
  29181. {
  29182. name: "Normal",
  29183. height: math.unit(10, "feet"),
  29184. default: true
  29185. },
  29186. {
  29187. name: "Macro",
  29188. height: math.unit(100, "feet")
  29189. },
  29190. {
  29191. name: "Megamacro",
  29192. height: math.unit(1000, "feet")
  29193. },
  29194. ]
  29195. ))
  29196. characterMakers.push(() => makeCharacter(
  29197. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29198. {
  29199. front: {
  29200. height: math.unit(15 + 5 / 12, "feet"),
  29201. weight: math.unit(4600, "lb"),
  29202. name: "Front",
  29203. image: {
  29204. source: "./media/characters/neapolitan-ananassa/front.svg",
  29205. extra: 2903 / 2736,
  29206. bottom: 0 / 2903
  29207. }
  29208. },
  29209. side: {
  29210. height: math.unit(15 + 5 / 12, "feet"),
  29211. weight: math.unit(4600, "lb"),
  29212. name: "Side",
  29213. image: {
  29214. source: "./media/characters/neapolitan-ananassa/side.svg",
  29215. extra: 2925 / 2719,
  29216. bottom: 0 / 2925
  29217. }
  29218. },
  29219. back: {
  29220. height: math.unit(15 + 5 / 12, "feet"),
  29221. weight: math.unit(4600, "lb"),
  29222. name: "Back",
  29223. image: {
  29224. source: "./media/characters/neapolitan-ananassa/back.svg",
  29225. extra: 2903 / 2736,
  29226. bottom: 0 / 2903
  29227. }
  29228. },
  29229. },
  29230. [
  29231. {
  29232. name: "Normal",
  29233. height: math.unit(15 + 5 / 12, "feet"),
  29234. default: true
  29235. },
  29236. {
  29237. name: "Post-Millenium",
  29238. height: math.unit(35 + 5 / 12, "feet")
  29239. },
  29240. {
  29241. name: "Post-Era",
  29242. height: math.unit(450 + 5 / 12, "feet")
  29243. },
  29244. ]
  29245. ))
  29246. characterMakers.push(() => makeCharacter(
  29247. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29248. {
  29249. front: {
  29250. height: math.unit(300, "meters"),
  29251. weight: math.unit(125000, "tonnes"),
  29252. name: "Front",
  29253. image: {
  29254. source: "./media/characters/pazuzu/front.svg",
  29255. extra: 877 / 794,
  29256. bottom: 47 / 924
  29257. }
  29258. },
  29259. },
  29260. [
  29261. {
  29262. name: "Macro",
  29263. height: math.unit(300, "meters"),
  29264. default: true
  29265. },
  29266. ]
  29267. ))
  29268. characterMakers.push(() => makeCharacter(
  29269. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29270. {
  29271. side: {
  29272. height: math.unit(10 + 7 / 12, "feet"),
  29273. weight: math.unit(2.5, "tons"),
  29274. name: "Side",
  29275. image: {
  29276. source: "./media/characters/aasha/side.svg",
  29277. extra: 1345 / 1245,
  29278. bottom: 111 / 1456
  29279. }
  29280. },
  29281. back: {
  29282. height: math.unit(10 + 7 / 12, "feet"),
  29283. weight: math.unit(2.5, "tons"),
  29284. name: "Back",
  29285. image: {
  29286. source: "./media/characters/aasha/back.svg",
  29287. extra: 1133 / 1057,
  29288. bottom: 257 / 1390
  29289. }
  29290. },
  29291. },
  29292. [
  29293. {
  29294. name: "Normal",
  29295. height: math.unit(10 + 7 / 12, "feet"),
  29296. default: true
  29297. },
  29298. ]
  29299. ))
  29300. characterMakers.push(() => makeCharacter(
  29301. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29302. {
  29303. front: {
  29304. height: math.unit(6 + 3 / 12, "feet"),
  29305. name: "Front",
  29306. image: {
  29307. source: "./media/characters/nevan/front.svg",
  29308. extra: 704 / 704,
  29309. bottom: 28 / 732
  29310. }
  29311. },
  29312. back: {
  29313. height: math.unit(6 + 3 / 12, "feet"),
  29314. name: "Back",
  29315. image: {
  29316. source: "./media/characters/nevan/back.svg",
  29317. extra: 714 / 714,
  29318. bottom: 21 / 735
  29319. }
  29320. },
  29321. frontFlaccid: {
  29322. height: math.unit(6 + 3 / 12, "feet"),
  29323. name: "Front (Flaccid)",
  29324. image: {
  29325. source: "./media/characters/nevan/front-flaccid.svg",
  29326. extra: 704 / 704,
  29327. bottom: 28 / 732
  29328. }
  29329. },
  29330. frontErect: {
  29331. height: math.unit(6 + 3 / 12, "feet"),
  29332. name: "Front (Erect)",
  29333. image: {
  29334. source: "./media/characters/nevan/front-erect.svg",
  29335. extra: 704 / 704,
  29336. bottom: 28 / 732
  29337. }
  29338. },
  29339. backFlaccid: {
  29340. height: math.unit(6 + 3 / 12, "feet"),
  29341. name: "Back (Flaccid)",
  29342. image: {
  29343. source: "./media/characters/nevan/back-flaccid.svg",
  29344. extra: 714 / 714,
  29345. bottom: 21 / 735
  29346. }
  29347. },
  29348. },
  29349. [
  29350. {
  29351. name: "Normal",
  29352. height: math.unit(6 + 3 / 12, "feet"),
  29353. default: true
  29354. },
  29355. ]
  29356. ))
  29357. characterMakers.push(() => makeCharacter(
  29358. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29359. {
  29360. front: {
  29361. height: math.unit(4, "feet"),
  29362. name: "Front",
  29363. image: {
  29364. source: "./media/characters/arhan/front.svg",
  29365. extra: 3368 / 3133,
  29366. bottom: 0 / 3368
  29367. }
  29368. },
  29369. side: {
  29370. height: math.unit(4, "feet"),
  29371. name: "Side",
  29372. image: {
  29373. source: "./media/characters/arhan/side.svg",
  29374. extra: 3347 / 3105,
  29375. bottom: 0 / 3347
  29376. }
  29377. },
  29378. tongue: {
  29379. height: math.unit(1.42, "feet"),
  29380. name: "Tongue",
  29381. image: {
  29382. source: "./media/characters/arhan/tongue.svg"
  29383. }
  29384. },
  29385. head: {
  29386. height: math.unit(0.85, "feet"),
  29387. name: "Head",
  29388. image: {
  29389. source: "./media/characters/arhan/head.svg"
  29390. }
  29391. },
  29392. },
  29393. [
  29394. {
  29395. name: "Normal",
  29396. height: math.unit(4, "feet"),
  29397. default: true
  29398. },
  29399. ]
  29400. ))
  29401. characterMakers.push(() => makeCharacter(
  29402. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29403. {
  29404. front: {
  29405. height: math.unit(5 + 7.5 / 12, "feet"),
  29406. weight: math.unit(120, "lb"),
  29407. name: "Front",
  29408. image: {
  29409. source: "./media/characters/digi-duncan/front.svg",
  29410. extra: 330 / 326,
  29411. bottom: 16 / 346
  29412. }
  29413. },
  29414. side: {
  29415. height: math.unit(5 + 7.5 / 12, "feet"),
  29416. weight: math.unit(120, "lb"),
  29417. name: "Side",
  29418. image: {
  29419. source: "./media/characters/digi-duncan/side.svg",
  29420. extra: 341 / 337,
  29421. bottom: 1 / 342
  29422. }
  29423. },
  29424. back: {
  29425. height: math.unit(5 + 7.5 / 12, "feet"),
  29426. weight: math.unit(120, "lb"),
  29427. name: "Back",
  29428. image: {
  29429. source: "./media/characters/digi-duncan/back.svg",
  29430. extra: 330 / 326,
  29431. bottom: 12 / 342
  29432. }
  29433. },
  29434. },
  29435. [
  29436. {
  29437. name: "Speck",
  29438. height: math.unit(0.25, "mm")
  29439. },
  29440. {
  29441. name: "Micro",
  29442. height: math.unit(5, "mm")
  29443. },
  29444. {
  29445. name: "Tiny",
  29446. height: math.unit(0.5, "inches"),
  29447. default: true
  29448. },
  29449. {
  29450. name: "Human",
  29451. height: math.unit(5 + 7.5 / 12, "feet")
  29452. },
  29453. {
  29454. name: "Minigiant",
  29455. height: math.unit(8 + 5.25, "feet")
  29456. },
  29457. {
  29458. name: "Giant",
  29459. height: math.unit(2000, "feet")
  29460. },
  29461. {
  29462. name: "Mega",
  29463. height: math.unit(371.1, "miles")
  29464. },
  29465. ]
  29466. ))
  29467. characterMakers.push(() => makeCharacter(
  29468. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29469. {
  29470. front: {
  29471. height: math.unit(2, "meters"),
  29472. weight: math.unit(350, "kg"),
  29473. name: "Front",
  29474. image: {
  29475. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29476. extra: 898 / 838,
  29477. bottom: 9 / 907
  29478. }
  29479. },
  29480. },
  29481. [
  29482. {
  29483. name: "Micro",
  29484. height: math.unit(8, "meters")
  29485. },
  29486. {
  29487. name: "Normal",
  29488. height: math.unit(50, "meters"),
  29489. default: true
  29490. },
  29491. {
  29492. name: "Macro",
  29493. height: math.unit(500, "meters")
  29494. },
  29495. ]
  29496. ))
  29497. characterMakers.push(() => makeCharacter(
  29498. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29499. {
  29500. front: {
  29501. height: math.unit(6 + 6 / 12, "feet"),
  29502. name: "Front",
  29503. image: {
  29504. source: "./media/characters/khardesh/front.svg",
  29505. extra: 888 / 797,
  29506. bottom: 25 / 913
  29507. }
  29508. },
  29509. },
  29510. [
  29511. {
  29512. name: "Normal",
  29513. height: math.unit(6 + 6 / 12, "feet"),
  29514. default: true
  29515. },
  29516. {
  29517. name: "Normal+",
  29518. height: math.unit(4, "meters")
  29519. },
  29520. {
  29521. name: "Macro",
  29522. height: math.unit(50, "meters")
  29523. },
  29524. {
  29525. name: "Macro+",
  29526. height: math.unit(100, "meters")
  29527. },
  29528. {
  29529. name: "Megamacro",
  29530. height: math.unit(20, "km")
  29531. },
  29532. ]
  29533. ))
  29534. characterMakers.push(() => makeCharacter(
  29535. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29536. {
  29537. front: {
  29538. height: math.unit(6, "feet"),
  29539. weight: math.unit(150, "lb"),
  29540. name: "Front",
  29541. image: {
  29542. source: "./media/characters/kosho/front.svg",
  29543. extra: 1847 / 1847,
  29544. bottom: 86 / 1933
  29545. }
  29546. },
  29547. },
  29548. [
  29549. {
  29550. name: "Second-stage micro",
  29551. height: math.unit(0.5, "inches")
  29552. },
  29553. {
  29554. name: "First-stage micro",
  29555. height: math.unit(6, "inches")
  29556. },
  29557. {
  29558. name: "Normal",
  29559. height: math.unit(6, "feet"),
  29560. default: true
  29561. },
  29562. {
  29563. name: "First-stage macro",
  29564. height: math.unit(72, "feet")
  29565. },
  29566. {
  29567. name: "Second-stage macro",
  29568. height: math.unit(864, "feet")
  29569. },
  29570. ]
  29571. ))
  29572. characterMakers.push(() => makeCharacter(
  29573. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29574. {
  29575. normal: {
  29576. height: math.unit(4 + 6 / 12, "feet"),
  29577. name: "Normal",
  29578. image: {
  29579. source: "./media/characters/hydra/normal.svg",
  29580. extra: 2833 / 2634,
  29581. bottom: 68 / 2901
  29582. }
  29583. },
  29584. smol: {
  29585. height: math.unit(0.705, "inches"),
  29586. name: "Smol",
  29587. image: {
  29588. source: "./media/characters/hydra/smol.svg",
  29589. extra: 2715 / 2540,
  29590. bottom: 0 / 2715
  29591. }
  29592. },
  29593. },
  29594. [
  29595. {
  29596. name: "Normal",
  29597. height: math.unit(4 + 6 / 12, "feet"),
  29598. default: true
  29599. }
  29600. ]
  29601. ))
  29602. characterMakers.push(() => makeCharacter(
  29603. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29604. {
  29605. front: {
  29606. height: math.unit(0.6, "cm"),
  29607. name: "Front",
  29608. image: {
  29609. source: "./media/characters/daz/front.svg",
  29610. extra: 1682 / 1164,
  29611. bottom: 42 / 1724
  29612. }
  29613. },
  29614. },
  29615. [
  29616. {
  29617. name: "Normal",
  29618. height: math.unit(0.6, "cm"),
  29619. default: true
  29620. },
  29621. ]
  29622. ))
  29623. characterMakers.push(() => makeCharacter(
  29624. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29625. {
  29626. front: {
  29627. height: math.unit(6, "feet"),
  29628. weight: math.unit(235, "lb"),
  29629. name: "Front",
  29630. image: {
  29631. source: "./media/characters/theo-pangolin/front.svg",
  29632. extra: 1996 / 1969,
  29633. bottom: 115 / 2111
  29634. }
  29635. },
  29636. back: {
  29637. height: math.unit(6, "feet"),
  29638. weight: math.unit(235, "lb"),
  29639. name: "Back",
  29640. image: {
  29641. source: "./media/characters/theo-pangolin/back.svg",
  29642. extra: 1979 / 1979,
  29643. bottom: 40 / 2019
  29644. }
  29645. },
  29646. feral: {
  29647. height: math.unit(2, "feet"),
  29648. weight: math.unit(30, "lb"),
  29649. name: "Feral",
  29650. image: {
  29651. source: "./media/characters/theo-pangolin/feral.svg",
  29652. extra: 803 / 791,
  29653. bottom: 181 / 984
  29654. }
  29655. },
  29656. footFive: {
  29657. height: math.unit(1.43, "feet"),
  29658. name: "Foot (Five Toes)",
  29659. image: {
  29660. source: "./media/characters/theo-pangolin/foot-five.svg"
  29661. }
  29662. },
  29663. footFour: {
  29664. height: math.unit(1.43, "feet"),
  29665. name: "Foot (Four Toes)",
  29666. image: {
  29667. source: "./media/characters/theo-pangolin/foot-four.svg"
  29668. }
  29669. },
  29670. handFour: {
  29671. height: math.unit(0.81, "feet"),
  29672. name: "Hand (Four Fingers)",
  29673. image: {
  29674. source: "./media/characters/theo-pangolin/hand-four.svg"
  29675. }
  29676. },
  29677. handThree: {
  29678. height: math.unit(0.81, "feet"),
  29679. name: "Hand (Three Fingers)",
  29680. image: {
  29681. source: "./media/characters/theo-pangolin/hand-three.svg"
  29682. }
  29683. },
  29684. headFront: {
  29685. height: math.unit(1.37, "feet"),
  29686. name: "Head (Front)",
  29687. image: {
  29688. source: "./media/characters/theo-pangolin/head-front.svg"
  29689. }
  29690. },
  29691. headSide: {
  29692. height: math.unit(1.43, "feet"),
  29693. name: "Head (Side)",
  29694. image: {
  29695. source: "./media/characters/theo-pangolin/head-side.svg"
  29696. }
  29697. },
  29698. tongue: {
  29699. height: math.unit(2.29, "feet"),
  29700. name: "Tongue",
  29701. image: {
  29702. source: "./media/characters/theo-pangolin/tongue.svg"
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "Normal",
  29709. height: math.unit(6, "feet")
  29710. },
  29711. {
  29712. name: "Macro",
  29713. height: math.unit(400, "feet"),
  29714. default: true
  29715. },
  29716. ]
  29717. ))
  29718. characterMakers.push(() => makeCharacter(
  29719. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29720. {
  29721. front: {
  29722. height: math.unit(6, "inches"),
  29723. weight: math.unit(0.036, "kg"),
  29724. name: "Front",
  29725. image: {
  29726. source: "./media/characters/renée/front.svg",
  29727. extra: 900 / 886,
  29728. bottom: 8 / 908
  29729. }
  29730. },
  29731. },
  29732. [
  29733. {
  29734. name: "Nano",
  29735. height: math.unit(1, "nm")
  29736. },
  29737. {
  29738. name: "Micro",
  29739. height: math.unit(1, "mm")
  29740. },
  29741. {
  29742. name: "Normal",
  29743. height: math.unit(6, "inches")
  29744. },
  29745. {
  29746. name: "Macro",
  29747. height: math.unit(2000, "feet"),
  29748. default: true
  29749. },
  29750. {
  29751. name: "Megamacro",
  29752. height: math.unit(2, "km")
  29753. },
  29754. {
  29755. name: "Gigamacro",
  29756. height: math.unit(2000, "km")
  29757. },
  29758. {
  29759. name: "Teramacro",
  29760. height: math.unit(250000, "km")
  29761. },
  29762. ]
  29763. ))
  29764. characterMakers.push(() => makeCharacter(
  29765. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29766. {
  29767. front: {
  29768. height: math.unit(4, "meters"),
  29769. weight: math.unit(150, "kg"),
  29770. name: "Front",
  29771. image: {
  29772. source: "./media/characters/caledvwlch/front.svg",
  29773. extra: 1760 / 1551,
  29774. bottom: 28 / 1788
  29775. }
  29776. },
  29777. side: {
  29778. height: math.unit(4, "meters"),
  29779. weight: math.unit(150, "kg"),
  29780. name: "Side",
  29781. image: {
  29782. source: "./media/characters/caledvwlch/side.svg",
  29783. extra: 1605 / 1536,
  29784. bottom: 31 / 1636
  29785. }
  29786. },
  29787. back: {
  29788. height: math.unit(4, "meters"),
  29789. weight: math.unit(150, "kg"),
  29790. name: "Back",
  29791. image: {
  29792. source: "./media/characters/caledvwlch/back.svg",
  29793. extra: 1635 / 1565,
  29794. bottom: 27 / 1662
  29795. }
  29796. },
  29797. },
  29798. [
  29799. {
  29800. name: "\"Incognito\"",
  29801. height: math.unit(4, "meters")
  29802. },
  29803. {
  29804. name: "Small rampage",
  29805. height: math.unit(600, "meters")
  29806. },
  29807. {
  29808. name: "Mega",
  29809. height: math.unit(30, "km")
  29810. },
  29811. {
  29812. name: "Home-size",
  29813. height: math.unit(50, "km"),
  29814. default: true
  29815. },
  29816. {
  29817. name: "Giga",
  29818. height: math.unit(300, "km")
  29819. },
  29820. {
  29821. name: "Lounging",
  29822. height: math.unit(11000, "km")
  29823. },
  29824. {
  29825. name: "Planet snacking",
  29826. height: math.unit(2000000, "km")
  29827. },
  29828. ]
  29829. ))
  29830. characterMakers.push(() => makeCharacter(
  29831. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29832. {
  29833. front: {
  29834. height: math.unit(6, "feet"),
  29835. weight: math.unit(215, "lb"),
  29836. name: "Front",
  29837. image: {
  29838. source: "./media/characters/sapphire-svell/front.svg",
  29839. extra: 495 / 455,
  29840. bottom: 20 / 515
  29841. }
  29842. },
  29843. back: {
  29844. height: math.unit(6, "feet"),
  29845. weight: math.unit(216, "lb"),
  29846. name: "Back",
  29847. image: {
  29848. source: "./media/characters/sapphire-svell/back.svg",
  29849. extra: 497 / 477,
  29850. bottom: 7 / 504
  29851. }
  29852. },
  29853. maw: {
  29854. height: math.unit(1.57, "feet"),
  29855. name: "Maw",
  29856. image: {
  29857. source: "./media/characters/sapphire-svell/maw.svg"
  29858. }
  29859. },
  29860. foot: {
  29861. height: math.unit(1.07, "feet"),
  29862. name: "Foot",
  29863. image: {
  29864. source: "./media/characters/sapphire-svell/foot.svg"
  29865. }
  29866. },
  29867. toering: {
  29868. height: math.unit(1.7, "inch"),
  29869. name: "Toering",
  29870. image: {
  29871. source: "./media/characters/sapphire-svell/toering.svg"
  29872. }
  29873. },
  29874. },
  29875. [
  29876. {
  29877. name: "Normal",
  29878. height: math.unit(300, "feet"),
  29879. default: true
  29880. },
  29881. {
  29882. name: "Augmented",
  29883. height: math.unit(1250, "feet")
  29884. },
  29885. {
  29886. name: "Unleashed",
  29887. height: math.unit(3000, "feet")
  29888. },
  29889. ]
  29890. ))
  29891. characterMakers.push(() => makeCharacter(
  29892. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29893. {
  29894. side: {
  29895. height: math.unit(2 + 3 / 12, "feet"),
  29896. weight: math.unit(110, "lb"),
  29897. name: "Side",
  29898. image: {
  29899. source: "./media/characters/glitch-flux/side.svg",
  29900. extra: 997 / 805,
  29901. bottom: 20 / 1017
  29902. }
  29903. },
  29904. },
  29905. [
  29906. {
  29907. name: "Normal",
  29908. height: math.unit(2 + 3 / 12, "feet"),
  29909. default: true
  29910. },
  29911. ]
  29912. ))
  29913. characterMakers.push(() => makeCharacter(
  29914. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29915. {
  29916. front: {
  29917. height: math.unit(4, "meters"),
  29918. name: "Front",
  29919. image: {
  29920. source: "./media/characters/mid/front.svg",
  29921. extra: 507 / 476,
  29922. bottom: 17 / 524
  29923. }
  29924. },
  29925. back: {
  29926. height: math.unit(4, "meters"),
  29927. name: "Back",
  29928. image: {
  29929. source: "./media/characters/mid/back.svg",
  29930. extra: 519 / 487,
  29931. bottom: 7 / 526
  29932. }
  29933. },
  29934. stuck: {
  29935. height: math.unit(2.2, "meters"),
  29936. name: "Stuck",
  29937. image: {
  29938. source: "./media/characters/mid/stuck.svg",
  29939. extra: 1951 / 1869,
  29940. bottom: 88 / 2039
  29941. }
  29942. }
  29943. },
  29944. [
  29945. {
  29946. name: "Normal",
  29947. height: math.unit(4, "meters"),
  29948. default: true
  29949. },
  29950. {
  29951. name: "Big",
  29952. height: math.unit(10, "meters")
  29953. },
  29954. {
  29955. name: "Macro",
  29956. height: math.unit(800, "meters")
  29957. },
  29958. {
  29959. name: "Megamacro",
  29960. height: math.unit(100, "km")
  29961. },
  29962. {
  29963. name: "Overgrown",
  29964. height: math.unit(1, "parsec")
  29965. },
  29966. ]
  29967. ))
  29968. characterMakers.push(() => makeCharacter(
  29969. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29970. {
  29971. front: {
  29972. height: math.unit(2.5, "meters"),
  29973. weight: math.unit(225, "kg"),
  29974. name: "Front",
  29975. image: {
  29976. source: "./media/characters/iris/front.svg",
  29977. extra: 3348 / 3251,
  29978. bottom: 205 / 3553
  29979. }
  29980. },
  29981. maw: {
  29982. height: math.unit(0.56, "meter"),
  29983. name: "Maw",
  29984. image: {
  29985. source: "./media/characters/iris/maw.svg"
  29986. }
  29987. },
  29988. },
  29989. [
  29990. {
  29991. name: "Mewter cat",
  29992. height: math.unit(1.2, "meters")
  29993. },
  29994. {
  29995. name: "Minimacro",
  29996. height: math.unit(2.5, "meters"),
  29997. default: true
  29998. },
  29999. {
  30000. name: "Macro",
  30001. height: math.unit(180, "meters")
  30002. },
  30003. {
  30004. name: "Megamacro",
  30005. height: math.unit(2746, "meters")
  30006. },
  30007. ]
  30008. ))
  30009. characterMakers.push(() => makeCharacter(
  30010. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30011. {
  30012. front: {
  30013. height: math.unit(6, "feet"),
  30014. weight: math.unit(135, "lb"),
  30015. name: "Front",
  30016. image: {
  30017. source: "./media/characters/axel/front.svg",
  30018. extra: 908 / 908,
  30019. bottom: 58 / 966
  30020. }
  30021. },
  30022. side: {
  30023. height: math.unit(6, "feet"),
  30024. weight: math.unit(135, "lb"),
  30025. name: "Side",
  30026. image: {
  30027. source: "./media/characters/axel/side.svg",
  30028. extra: 958 / 958,
  30029. bottom: 11 / 969
  30030. }
  30031. },
  30032. back: {
  30033. height: math.unit(6, "feet"),
  30034. weight: math.unit(135, "lb"),
  30035. name: "Back",
  30036. image: {
  30037. source: "./media/characters/axel/back.svg",
  30038. extra: 887 / 887,
  30039. bottom: 34 / 921
  30040. }
  30041. },
  30042. head: {
  30043. height: math.unit(1.07, "feet"),
  30044. name: "Head",
  30045. image: {
  30046. source: "./media/characters/axel/head.svg"
  30047. }
  30048. },
  30049. beak: {
  30050. height: math.unit(1.4, "feet"),
  30051. name: "Beak",
  30052. image: {
  30053. source: "./media/characters/axel/beak.svg"
  30054. }
  30055. },
  30056. beakSide: {
  30057. height: math.unit(1.4, "feet"),
  30058. name: "Beak Side",
  30059. image: {
  30060. source: "./media/characters/axel/beak-side.svg"
  30061. }
  30062. },
  30063. sheath: {
  30064. height: math.unit(0.5, "feet"),
  30065. name: "Sheath",
  30066. image: {
  30067. source: "./media/characters/axel/sheath.svg"
  30068. }
  30069. },
  30070. dick: {
  30071. height: math.unit(0.98, "feet"),
  30072. name: "Dick",
  30073. image: {
  30074. source: "./media/characters/axel/dick.svg"
  30075. }
  30076. },
  30077. },
  30078. [
  30079. {
  30080. name: "Macro",
  30081. height: math.unit(68, "meters"),
  30082. default: true
  30083. },
  30084. ]
  30085. ))
  30086. characterMakers.push(() => makeCharacter(
  30087. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30088. {
  30089. front: {
  30090. height: math.unit(3.5, "meters"),
  30091. weight: math.unit(1200, "kg"),
  30092. name: "Front",
  30093. image: {
  30094. source: "./media/characters/joanna/front.svg",
  30095. extra: 1596 / 1488,
  30096. bottom: 29 / 1625
  30097. }
  30098. },
  30099. back: {
  30100. height: math.unit(3.5, "meters"),
  30101. weight: math.unit(1200, "kg"),
  30102. name: "Back",
  30103. image: {
  30104. source: "./media/characters/joanna/back.svg",
  30105. extra: 1594 / 1495,
  30106. bottom: 26 / 1620
  30107. }
  30108. },
  30109. frontShorts: {
  30110. height: math.unit(3.5, "meters"),
  30111. weight: math.unit(1200, "kg"),
  30112. name: "Front (Shorts)",
  30113. image: {
  30114. source: "./media/characters/joanna/front-shorts.svg",
  30115. extra: 1596 / 1488,
  30116. bottom: 29 / 1625
  30117. }
  30118. },
  30119. frontBiker: {
  30120. height: math.unit(3.5, "meters"),
  30121. weight: math.unit(1200, "kg"),
  30122. name: "Front (Biker)",
  30123. image: {
  30124. source: "./media/characters/joanna/front-biker.svg",
  30125. extra: 1596 / 1488,
  30126. bottom: 29 / 1625
  30127. }
  30128. },
  30129. backBiker: {
  30130. height: math.unit(3.5, "meters"),
  30131. weight: math.unit(1200, "kg"),
  30132. name: "Back (Biker)",
  30133. image: {
  30134. source: "./media/characters/joanna/back-biker.svg",
  30135. extra: 1594 / 1495,
  30136. bottom: 88 / 1682
  30137. }
  30138. },
  30139. bikeLeft: {
  30140. height: math.unit(2.4, "meters"),
  30141. weight: math.unit(1600, "kg"),
  30142. name: "Bike (Left)",
  30143. image: {
  30144. source: "./media/characters/joanna/bike-left.svg",
  30145. extra: 720 / 720,
  30146. bottom: 8 / 728
  30147. }
  30148. },
  30149. bikeRight: {
  30150. height: math.unit(2.4, "meters"),
  30151. weight: math.unit(1600, "kg"),
  30152. name: "Bike (Right)",
  30153. image: {
  30154. source: "./media/characters/joanna/bike-right.svg",
  30155. extra: 720 / 720,
  30156. bottom: 8 / 728
  30157. }
  30158. },
  30159. },
  30160. [
  30161. {
  30162. name: "Incognito",
  30163. height: math.unit(3.5, "meters")
  30164. },
  30165. {
  30166. name: "Casual Big",
  30167. height: math.unit(200, "meters")
  30168. },
  30169. {
  30170. name: "Macro",
  30171. height: math.unit(600, "meters")
  30172. },
  30173. {
  30174. name: "Original",
  30175. height: math.unit(20, "km"),
  30176. default: true
  30177. },
  30178. {
  30179. name: "Giga",
  30180. height: math.unit(400, "km")
  30181. },
  30182. {
  30183. name: "Lounging",
  30184. height: math.unit(1500, "km")
  30185. },
  30186. {
  30187. name: "Planetary",
  30188. height: math.unit(200000, "km")
  30189. },
  30190. ]
  30191. ))
  30192. characterMakers.push(() => makeCharacter(
  30193. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30194. {
  30195. front: {
  30196. height: math.unit(6, "feet"),
  30197. weight: math.unit(150, "lb"),
  30198. name: "Front",
  30199. image: {
  30200. source: "./media/characters/hugo-sigil/front.svg",
  30201. extra: 522 / 500,
  30202. bottom: 2 / 524
  30203. }
  30204. },
  30205. back: {
  30206. height: math.unit(6, "feet"),
  30207. weight: math.unit(150, "lb"),
  30208. name: "Back",
  30209. image: {
  30210. source: "./media/characters/hugo-sigil/back.svg",
  30211. extra: 519 / 495,
  30212. bottom: 5 / 524
  30213. }
  30214. },
  30215. maw: {
  30216. height: math.unit(1.4, "feet"),
  30217. weight: math.unit(150, "lb"),
  30218. name: "Maw",
  30219. image: {
  30220. source: "./media/characters/hugo-sigil/maw.svg"
  30221. }
  30222. },
  30223. feet: {
  30224. height: math.unit(1.56, "feet"),
  30225. weight: math.unit(150, "lb"),
  30226. name: "Feet",
  30227. image: {
  30228. source: "./media/characters/hugo-sigil/feet.svg",
  30229. extra: 177 / 177,
  30230. bottom: 12 / 189
  30231. }
  30232. },
  30233. },
  30234. [
  30235. {
  30236. name: "Normal",
  30237. height: math.unit(6, "feet")
  30238. },
  30239. {
  30240. name: "Macro",
  30241. height: math.unit(200, "feet"),
  30242. default: true
  30243. },
  30244. ]
  30245. ))
  30246. characterMakers.push(() => makeCharacter(
  30247. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30248. {
  30249. front: {
  30250. height: math.unit(6, "feet"),
  30251. weight: math.unit(150, "lb"),
  30252. name: "Front",
  30253. image: {
  30254. source: "./media/characters/peri/front.svg",
  30255. extra: 2354 / 2233,
  30256. bottom: 49 / 2403
  30257. }
  30258. },
  30259. },
  30260. [
  30261. {
  30262. name: "Really Small",
  30263. height: math.unit(1, "nm")
  30264. },
  30265. {
  30266. name: "Micro",
  30267. height: math.unit(4, "inches")
  30268. },
  30269. {
  30270. name: "Normal",
  30271. height: math.unit(7, "inches"),
  30272. default: true
  30273. },
  30274. {
  30275. name: "Macro",
  30276. height: math.unit(400, "feet")
  30277. },
  30278. {
  30279. name: "Megamacro",
  30280. height: math.unit(100, "miles")
  30281. },
  30282. ]
  30283. ))
  30284. characterMakers.push(() => makeCharacter(
  30285. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30286. {
  30287. frontSlim: {
  30288. height: math.unit(7, "feet"),
  30289. name: "Front (Slim)",
  30290. image: {
  30291. source: "./media/characters/issilora/front-slim.svg",
  30292. extra: 529 / 449,
  30293. bottom: 53 / 582
  30294. }
  30295. },
  30296. sideSlim: {
  30297. height: math.unit(7, "feet"),
  30298. name: "Side (Slim)",
  30299. image: {
  30300. source: "./media/characters/issilora/side-slim.svg",
  30301. extra: 570 / 480,
  30302. bottom: 30 / 600
  30303. }
  30304. },
  30305. backSlim: {
  30306. height: math.unit(7, "feet"),
  30307. name: "Back (Slim)",
  30308. image: {
  30309. source: "./media/characters/issilora/back-slim.svg",
  30310. extra: 537 / 455,
  30311. bottom: 46 / 583
  30312. }
  30313. },
  30314. frontBuff: {
  30315. height: math.unit(7, "feet"),
  30316. name: "Front (Buff)",
  30317. image: {
  30318. source: "./media/characters/issilora/front-buff.svg",
  30319. extra: 2310 / 2035,
  30320. bottom: 335 / 2645
  30321. }
  30322. },
  30323. head: {
  30324. height: math.unit(1.94, "feet"),
  30325. name: "Head",
  30326. image: {
  30327. source: "./media/characters/issilora/head.svg"
  30328. }
  30329. },
  30330. },
  30331. [
  30332. {
  30333. name: "Minimum",
  30334. height: math.unit(7, "feet")
  30335. },
  30336. {
  30337. name: "Comfortable",
  30338. height: math.unit(17, "feet")
  30339. },
  30340. {
  30341. name: "Fun Size",
  30342. height: math.unit(47, "feet")
  30343. },
  30344. {
  30345. name: "Natural Macro",
  30346. height: math.unit(137, "feet"),
  30347. default: true
  30348. },
  30349. {
  30350. name: "Maximum Kaiju",
  30351. height: math.unit(397, "feet")
  30352. },
  30353. ]
  30354. ))
  30355. characterMakers.push(() => makeCharacter(
  30356. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30357. {
  30358. front: {
  30359. height: math.unit(50 + 9/12, "feet"),
  30360. weight: math.unit(32.8, "tons"),
  30361. name: "Front",
  30362. image: {
  30363. source: "./media/characters/irb'iiritaahn/front.svg",
  30364. extra: 1878/1826,
  30365. bottom: 326/2204
  30366. }
  30367. },
  30368. back: {
  30369. height: math.unit(50 + 9/12, "feet"),
  30370. weight: math.unit(32.8, "tons"),
  30371. name: "Back",
  30372. image: {
  30373. source: "./media/characters/irb'iiritaahn/back.svg",
  30374. extra: 2052/2018,
  30375. bottom: 152/2204
  30376. }
  30377. },
  30378. head: {
  30379. height: math.unit(12.86, "feet"),
  30380. name: "Head",
  30381. image: {
  30382. source: "./media/characters/irb'iiritaahn/head.svg"
  30383. }
  30384. },
  30385. maw: {
  30386. height: math.unit(9.66, "feet"),
  30387. name: "Maw",
  30388. image: {
  30389. source: "./media/characters/irb'iiritaahn/maw.svg"
  30390. }
  30391. },
  30392. frontDick: {
  30393. height: math.unit(8.78461, "feet"),
  30394. name: "Front Dick",
  30395. image: {
  30396. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30397. }
  30398. },
  30399. rearDick: {
  30400. height: math.unit(8.78461, "feet"),
  30401. name: "Rear Dick",
  30402. image: {
  30403. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30404. }
  30405. },
  30406. rearDickUnfolded: {
  30407. height: math.unit(8.78, "feet"),
  30408. name: "Rear Dick (Unfolded)",
  30409. image: {
  30410. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30411. }
  30412. },
  30413. wings: {
  30414. height: math.unit(43, "feet"),
  30415. name: "Wings",
  30416. image: {
  30417. source: "./media/characters/irb'iiritaahn/wings.svg"
  30418. }
  30419. },
  30420. },
  30421. [
  30422. {
  30423. name: "Macro",
  30424. height: math.unit(50 + 9/12, "feet"),
  30425. default: true
  30426. },
  30427. ]
  30428. ))
  30429. characterMakers.push(() => makeCharacter(
  30430. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30431. {
  30432. front: {
  30433. height: math.unit(205, "cm"),
  30434. weight: math.unit(102, "kg"),
  30435. name: "Front",
  30436. image: {
  30437. source: "./media/characters/irbisgreif/front.svg",
  30438. extra: 785/706,
  30439. bottom: 13/798
  30440. }
  30441. },
  30442. back: {
  30443. height: math.unit(205, "cm"),
  30444. weight: math.unit(102, "kg"),
  30445. name: "Back",
  30446. image: {
  30447. source: "./media/characters/irbisgreif/back.svg",
  30448. extra: 713/701,
  30449. bottom: 26/739
  30450. }
  30451. },
  30452. frontDressed: {
  30453. height: math.unit(216, "cm"),
  30454. weight: math.unit(102, "kg"),
  30455. name: "Front-dressed",
  30456. image: {
  30457. source: "./media/characters/irbisgreif/front-dressed.svg",
  30458. extra: 902/776,
  30459. bottom: 14/916
  30460. }
  30461. },
  30462. sideDressed: {
  30463. height: math.unit(195, "cm"),
  30464. weight: math.unit(102, "kg"),
  30465. name: "Side-dressed",
  30466. image: {
  30467. source: "./media/characters/irbisgreif/side-dressed.svg",
  30468. extra: 788/688,
  30469. bottom: 21/809
  30470. }
  30471. },
  30472. backDressed: {
  30473. height: math.unit(216, "cm"),
  30474. weight: math.unit(102, "kg"),
  30475. name: "Back-dressed",
  30476. image: {
  30477. source: "./media/characters/irbisgreif/back-dressed.svg",
  30478. extra: 901/783,
  30479. bottom: 10/911
  30480. }
  30481. },
  30482. dick: {
  30483. height: math.unit(0.49, "feet"),
  30484. name: "Dick",
  30485. image: {
  30486. source: "./media/characters/irbisgreif/dick.svg"
  30487. }
  30488. },
  30489. wingTop: {
  30490. height: math.unit(1.93 , "feet"),
  30491. name: "Wing-top",
  30492. image: {
  30493. source: "./media/characters/irbisgreif/wing-top.svg"
  30494. }
  30495. },
  30496. wingBottom: {
  30497. height: math.unit(1.93 , "feet"),
  30498. name: "Wing-bottom",
  30499. image: {
  30500. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30501. }
  30502. },
  30503. },
  30504. [
  30505. {
  30506. name: "Normal",
  30507. height: math.unit(216, "cm"),
  30508. default: true
  30509. },
  30510. ]
  30511. ))
  30512. characterMakers.push(() => makeCharacter(
  30513. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30514. {
  30515. front: {
  30516. height: math.unit(6, "feet"),
  30517. weight: math.unit(150, "lb"),
  30518. name: "Front",
  30519. image: {
  30520. source: "./media/characters/pride/front.svg",
  30521. extra: 1299/1230,
  30522. bottom: 18/1317
  30523. }
  30524. },
  30525. },
  30526. [
  30527. {
  30528. name: "Normal",
  30529. height: math.unit(7, "feet")
  30530. },
  30531. {
  30532. name: "Mini-macro",
  30533. height: math.unit(11, "feet")
  30534. },
  30535. {
  30536. name: "Macro",
  30537. height: math.unit(15, "meters"),
  30538. default: true
  30539. },
  30540. {
  30541. name: "Macro+",
  30542. height: math.unit(40, "meters")
  30543. },
  30544. ]
  30545. ))
  30546. characterMakers.push(() => makeCharacter(
  30547. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30548. {
  30549. front: {
  30550. height: math.unit(4 + 2 / 12, "feet"),
  30551. weight: math.unit(95, "lb"),
  30552. name: "Front",
  30553. image: {
  30554. source: "./media/characters/vaelophis-nyx/front.svg",
  30555. extra: 2532/2330,
  30556. bottom: 0/2532
  30557. }
  30558. },
  30559. back: {
  30560. height: math.unit(4 + 2 / 12, "feet"),
  30561. weight: math.unit(95, "lb"),
  30562. name: "Back",
  30563. image: {
  30564. source: "./media/characters/vaelophis-nyx/back.svg",
  30565. extra: 2484/2361,
  30566. bottom: 0/2484
  30567. }
  30568. },
  30569. feralSide: {
  30570. height: math.unit(2 + 1/12, "feet"),
  30571. weight: math.unit(20, "lb"),
  30572. name: "Feral (Side)",
  30573. image: {
  30574. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30575. extra: 1721/1581,
  30576. bottom: 70/1791
  30577. }
  30578. },
  30579. feralLazing: {
  30580. height: math.unit(1.08, "feet"),
  30581. weight: math.unit(20, "lb"),
  30582. name: "Feral (Lazing)",
  30583. image: {
  30584. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30585. extra: 822/822,
  30586. bottom: 248/1070
  30587. }
  30588. },
  30589. ear: {
  30590. height: math.unit(0.416, "feet"),
  30591. name: "Ear",
  30592. image: {
  30593. source: "./media/characters/vaelophis-nyx/ear.svg"
  30594. }
  30595. },
  30596. eye: {
  30597. height: math.unit(0.0748, "feet"),
  30598. name: "Eye",
  30599. image: {
  30600. source: "./media/characters/vaelophis-nyx/eye.svg"
  30601. }
  30602. },
  30603. mouth: {
  30604. height: math.unit(0.378, "feet"),
  30605. name: "Mouth",
  30606. image: {
  30607. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30608. }
  30609. },
  30610. spade: {
  30611. height: math.unit(0.55, "feet"),
  30612. name: "Spade",
  30613. image: {
  30614. source: "./media/characters/vaelophis-nyx/spade.svg"
  30615. }
  30616. },
  30617. },
  30618. [
  30619. {
  30620. name: "Normal",
  30621. height: math.unit(4 + 2/12, "feet"),
  30622. default: true
  30623. },
  30624. ]
  30625. ))
  30626. characterMakers.push(() => makeCharacter(
  30627. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30628. {
  30629. front: {
  30630. height: math.unit(7, "feet"),
  30631. weight: math.unit(231, "lb"),
  30632. name: "Front",
  30633. image: {
  30634. source: "./media/characters/flux/front.svg",
  30635. extra: 919/871,
  30636. bottom: 0/919
  30637. }
  30638. },
  30639. back: {
  30640. height: math.unit(7, "feet"),
  30641. weight: math.unit(231, "lb"),
  30642. name: "Back",
  30643. image: {
  30644. source: "./media/characters/flux/back.svg",
  30645. extra: 1040/992,
  30646. bottom: 0/1040
  30647. }
  30648. },
  30649. frontDressed: {
  30650. height: math.unit(7, "feet"),
  30651. weight: math.unit(231, "lb"),
  30652. name: "Front (Dressed)",
  30653. image: {
  30654. source: "./media/characters/flux/front-dressed.svg",
  30655. extra: 919/871,
  30656. bottom: 0/919
  30657. }
  30658. },
  30659. feralSide: {
  30660. height: math.unit(5, "feet"),
  30661. weight: math.unit(150, "lb"),
  30662. name: "Feral (Side)",
  30663. image: {
  30664. source: "./media/characters/flux/feral-side.svg",
  30665. extra: 598/528,
  30666. bottom: 28/626
  30667. }
  30668. },
  30669. head: {
  30670. height: math.unit(1.585, "feet"),
  30671. name: "Head",
  30672. image: {
  30673. source: "./media/characters/flux/head.svg"
  30674. }
  30675. },
  30676. headSide: {
  30677. height: math.unit(1.74, "feet"),
  30678. name: "Head (Side)",
  30679. image: {
  30680. source: "./media/characters/flux/head-side.svg"
  30681. }
  30682. },
  30683. headSideFire: {
  30684. height: math.unit(1.76, "feet"),
  30685. name: "Head (Side, Fire)",
  30686. image: {
  30687. source: "./media/characters/flux/head-side-fire.svg"
  30688. }
  30689. },
  30690. },
  30691. [
  30692. {
  30693. name: "Normal",
  30694. height: math.unit(7, "feet"),
  30695. default: true
  30696. },
  30697. ]
  30698. ))
  30699. characterMakers.push(() => makeCharacter(
  30700. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30701. {
  30702. front: {
  30703. height: math.unit(9, "feet"),
  30704. weight: math.unit(1012, "lb"),
  30705. name: "Front",
  30706. image: {
  30707. source: "./media/characters/ulfra-lupae/front.svg",
  30708. extra: 1083/1011,
  30709. bottom: 67/1150
  30710. }
  30711. },
  30712. },
  30713. [
  30714. {
  30715. name: "Micro",
  30716. height: math.unit(6, "inches")
  30717. },
  30718. {
  30719. name: "Socializing",
  30720. height: math.unit(6 + 5/12, "feet")
  30721. },
  30722. {
  30723. name: "Normal",
  30724. height: math.unit(9, "feet"),
  30725. default: true
  30726. },
  30727. {
  30728. name: "Macro",
  30729. height: math.unit(150, "feet")
  30730. },
  30731. ]
  30732. ))
  30733. characterMakers.push(() => makeCharacter(
  30734. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30735. {
  30736. front: {
  30737. height: math.unit(5 + 2/12, "feet"),
  30738. weight: math.unit(120, "lb"),
  30739. name: "Front",
  30740. image: {
  30741. source: "./media/characters/timber/front.svg",
  30742. extra: 2814/2705,
  30743. bottom: 181/2995
  30744. }
  30745. },
  30746. },
  30747. [
  30748. {
  30749. name: "Normal",
  30750. height: math.unit(5 + 2/12, "feet"),
  30751. default: true
  30752. },
  30753. ]
  30754. ))
  30755. characterMakers.push(() => makeCharacter(
  30756. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30757. {
  30758. front: {
  30759. height: math.unit(5 + 7/12, "feet"),
  30760. weight: math.unit(220, "lb"),
  30761. name: "Front",
  30762. image: {
  30763. source: "./media/characters/nicki/front.svg",
  30764. extra: 453/419,
  30765. bottom: 7/460
  30766. }
  30767. },
  30768. frontAlt: {
  30769. height: math.unit(5 + 7/12, "feet"),
  30770. weight: math.unit(220, "lb"),
  30771. name: "Front-alt",
  30772. image: {
  30773. source: "./media/characters/nicki/front-alt.svg",
  30774. extra: 435/411,
  30775. bottom: 12/447
  30776. }
  30777. },
  30778. back: {
  30779. height: math.unit(5 + 7/12, "feet"),
  30780. weight: math.unit(220, "lb"),
  30781. name: "Back",
  30782. image: {
  30783. source: "./media/characters/nicki/back.svg",
  30784. extra: 440/413,
  30785. bottom: 19/459
  30786. }
  30787. },
  30788. taur: {
  30789. height: math.unit(7 + 6/12, "feet"),
  30790. weight: math.unit(700, "lb"),
  30791. name: "Taur",
  30792. image: {
  30793. source: "./media/characters/nicki/taur.svg",
  30794. extra: 975/773,
  30795. bottom: 0/975
  30796. }
  30797. },
  30798. frontNsfw: {
  30799. height: math.unit(5 + 7/12, "feet"),
  30800. weight: math.unit(220, "lb"),
  30801. name: "Front (NSFW)",
  30802. image: {
  30803. source: "./media/characters/nicki/front-nsfw.svg",
  30804. extra: 453/419,
  30805. bottom: 7/460
  30806. }
  30807. },
  30808. frontNsfwAlt: {
  30809. height: math.unit(5 + 7/12, "feet"),
  30810. weight: math.unit(220, "lb"),
  30811. name: "Front (Alt, NSFW)",
  30812. image: {
  30813. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30814. extra: 435/411,
  30815. bottom: 12/447
  30816. }
  30817. },
  30818. backNsfw: {
  30819. height: math.unit(5 + 7/12, "feet"),
  30820. weight: math.unit(220, "lb"),
  30821. name: "Back (NSFW)",
  30822. image: {
  30823. source: "./media/characters/nicki/back-nsfw.svg",
  30824. extra: 440/413,
  30825. bottom: 19/459
  30826. }
  30827. },
  30828. head: {
  30829. height: math.unit(2.1, "feet"),
  30830. name: "Head",
  30831. image: {
  30832. source: "./media/characters/nicki/head.svg"
  30833. }
  30834. },
  30835. paw: {
  30836. height: math.unit(1.88, "feet"),
  30837. name: "Paw",
  30838. image: {
  30839. source: "./media/characters/nicki/paw.svg"
  30840. }
  30841. },
  30842. },
  30843. [
  30844. {
  30845. name: "Normal",
  30846. height: math.unit(5 + 7/12, "feet"),
  30847. default: true
  30848. },
  30849. ]
  30850. ))
  30851. characterMakers.push(() => makeCharacter(
  30852. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30853. {
  30854. front: {
  30855. height: math.unit(7 + 10/12, "feet"),
  30856. weight: math.unit(3.5, "tons"),
  30857. name: "Front",
  30858. image: {
  30859. source: "./media/characters/lee/front.svg",
  30860. extra: 1773/1615,
  30861. bottom: 86/1859
  30862. }
  30863. },
  30864. hand: {
  30865. height: math.unit(1.78, "feet"),
  30866. name: "Hand",
  30867. image: {
  30868. source: "./media/characters/lee/hand.svg"
  30869. }
  30870. },
  30871. maw: {
  30872. height: math.unit(1.18, "feet"),
  30873. name: "Maw",
  30874. image: {
  30875. source: "./media/characters/lee/maw.svg"
  30876. }
  30877. },
  30878. },
  30879. [
  30880. {
  30881. name: "Normal",
  30882. height: math.unit(7 + 10/12, "feet"),
  30883. default: true
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30889. {
  30890. front: {
  30891. height: math.unit(9, "feet"),
  30892. name: "Front",
  30893. image: {
  30894. source: "./media/characters/guti/front.svg",
  30895. extra: 4551/4355,
  30896. bottom: 123/4674
  30897. }
  30898. },
  30899. tongue: {
  30900. height: math.unit(1, "feet"),
  30901. name: "Tongue",
  30902. image: {
  30903. source: "./media/characters/guti/tongue.svg"
  30904. }
  30905. },
  30906. paw: {
  30907. height: math.unit(1.18, "feet"),
  30908. name: "Paw",
  30909. image: {
  30910. source: "./media/characters/guti/paw.svg"
  30911. }
  30912. },
  30913. },
  30914. [
  30915. {
  30916. name: "Normal",
  30917. height: math.unit(9, "feet"),
  30918. default: true
  30919. },
  30920. ]
  30921. ))
  30922. characterMakers.push(() => makeCharacter(
  30923. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30924. {
  30925. side: {
  30926. height: math.unit(5, "meters"),
  30927. name: "Side",
  30928. image: {
  30929. source: "./media/characters/vesper/side.svg",
  30930. extra: 1605/1518,
  30931. bottom: 0/1605
  30932. }
  30933. },
  30934. },
  30935. [
  30936. {
  30937. name: "Small",
  30938. height: math.unit(5, "meters")
  30939. },
  30940. {
  30941. name: "Sage",
  30942. height: math.unit(100, "meters"),
  30943. default: true
  30944. },
  30945. {
  30946. name: "Fun Size",
  30947. height: math.unit(600, "meters")
  30948. },
  30949. {
  30950. name: "Goddess",
  30951. height: math.unit(20000, "km")
  30952. },
  30953. {
  30954. name: "Maximum",
  30955. height: math.unit(5, "galaxies")
  30956. },
  30957. ]
  30958. ))
  30959. characterMakers.push(() => makeCharacter(
  30960. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30961. {
  30962. front: {
  30963. height: math.unit(6 + 3/12, "feet"),
  30964. weight: math.unit(190, "lb"),
  30965. name: "Front",
  30966. image: {
  30967. source: "./media/characters/gawain/front.svg",
  30968. extra: 2222/2139,
  30969. bottom: 90/2312
  30970. }
  30971. },
  30972. back: {
  30973. height: math.unit(6 + 3/12, "feet"),
  30974. weight: math.unit(190, "lb"),
  30975. name: "Back",
  30976. image: {
  30977. source: "./media/characters/gawain/back.svg",
  30978. extra: 2199/2111,
  30979. bottom: 73/2272
  30980. }
  30981. },
  30982. },
  30983. [
  30984. {
  30985. name: "Normal",
  30986. height: math.unit(6 + 3/12, "feet"),
  30987. default: true
  30988. },
  30989. ]
  30990. ))
  30991. characterMakers.push(() => makeCharacter(
  30992. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30993. {
  30994. side: {
  30995. height: math.unit(3.5, "meters"),
  30996. weight: math.unit(16000, "lb"),
  30997. name: "Side",
  30998. image: {
  30999. source: "./media/characters/dascalti/side.svg",
  31000. extra: 392/273,
  31001. bottom: 47/439
  31002. }
  31003. },
  31004. breath: {
  31005. height: math.unit(7.4, "feet"),
  31006. name: "Breath",
  31007. image: {
  31008. source: "./media/characters/dascalti/breath.svg"
  31009. }
  31010. },
  31011. fed: {
  31012. height: math.unit(3.6, "meters"),
  31013. weight: math.unit(16000, "lb"),
  31014. name: "Fed",
  31015. image: {
  31016. source: "./media/characters/dascalti/fed.svg",
  31017. extra: 1419/820,
  31018. bottom: 95/1514
  31019. }
  31020. },
  31021. },
  31022. [
  31023. {
  31024. name: "Normal",
  31025. height: math.unit(3.5, "meters"),
  31026. default: true
  31027. },
  31028. ]
  31029. ))
  31030. characterMakers.push(() => makeCharacter(
  31031. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31032. {
  31033. front: {
  31034. height: math.unit(3 + 5/12, "feet"),
  31035. name: "Front",
  31036. image: {
  31037. source: "./media/characters/mauve/front.svg",
  31038. extra: 1126/1033,
  31039. bottom: 65/1191
  31040. }
  31041. },
  31042. side: {
  31043. height: math.unit(3 + 5/12, "feet"),
  31044. name: "Side",
  31045. image: {
  31046. source: "./media/characters/mauve/side.svg",
  31047. extra: 1089/1001,
  31048. bottom: 29/1118
  31049. }
  31050. },
  31051. back: {
  31052. height: math.unit(3 + 5/12, "feet"),
  31053. name: "Back",
  31054. image: {
  31055. source: "./media/characters/mauve/back.svg",
  31056. extra: 1173/1053,
  31057. bottom: 109/1282
  31058. }
  31059. },
  31060. },
  31061. [
  31062. {
  31063. name: "Normal",
  31064. height: math.unit(3 + 5/12, "feet"),
  31065. default: true
  31066. },
  31067. ]
  31068. ))
  31069. characterMakers.push(() => makeCharacter(
  31070. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31071. {
  31072. front: {
  31073. height: math.unit(6 + 3/12, "feet"),
  31074. weight: math.unit(430, "lb"),
  31075. name: "Front",
  31076. image: {
  31077. source: "./media/characters/carlos/front.svg",
  31078. extra: 1964/1913,
  31079. bottom: 70/2034
  31080. }
  31081. },
  31082. },
  31083. [
  31084. {
  31085. name: "Normal",
  31086. height: math.unit(6 + 3/12, "feet"),
  31087. default: true
  31088. },
  31089. ]
  31090. ))
  31091. characterMakers.push(() => makeCharacter(
  31092. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31093. {
  31094. back: {
  31095. height: math.unit(5 + 10/12, "feet"),
  31096. weight: math.unit(200, "lb"),
  31097. name: "Back",
  31098. image: {
  31099. source: "./media/characters/jax/back.svg",
  31100. extra: 764/739,
  31101. bottom: 25/789
  31102. }
  31103. },
  31104. },
  31105. [
  31106. {
  31107. name: "Normal",
  31108. height: math.unit(5 + 10/12, "feet"),
  31109. default: true
  31110. },
  31111. ]
  31112. ))
  31113. characterMakers.push(() => makeCharacter(
  31114. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31115. {
  31116. front: {
  31117. height: math.unit(8, "feet"),
  31118. weight: math.unit(250, "lb"),
  31119. name: "Front",
  31120. image: {
  31121. source: "./media/characters/eikthynir/front.svg",
  31122. extra: 1332/1166,
  31123. bottom: 82/1414
  31124. }
  31125. },
  31126. back: {
  31127. height: math.unit(8, "feet"),
  31128. weight: math.unit(250, "lb"),
  31129. name: "Back",
  31130. image: {
  31131. source: "./media/characters/eikthynir/back.svg",
  31132. extra: 1342/1190,
  31133. bottom: 19/1361
  31134. }
  31135. },
  31136. dick: {
  31137. height: math.unit(2.35, "feet"),
  31138. name: "Dick",
  31139. image: {
  31140. source: "./media/characters/eikthynir/dick.svg"
  31141. }
  31142. },
  31143. },
  31144. [
  31145. {
  31146. name: "Normal",
  31147. height: math.unit(8, "feet"),
  31148. default: true
  31149. },
  31150. ]
  31151. ))
  31152. characterMakers.push(() => makeCharacter(
  31153. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31154. {
  31155. front: {
  31156. height: math.unit(99, "meters"),
  31157. weight: math.unit(13000, "tons"),
  31158. name: "Front",
  31159. image: {
  31160. source: "./media/characters/zlmos/front.svg",
  31161. extra: 2202/1992,
  31162. bottom: 315/2517
  31163. }
  31164. },
  31165. },
  31166. [
  31167. {
  31168. name: "Macro",
  31169. height: math.unit(99, "meters"),
  31170. default: true
  31171. },
  31172. ]
  31173. ))
  31174. characterMakers.push(() => makeCharacter(
  31175. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31176. {
  31177. front: {
  31178. height: math.unit(6 + 5/12, "feet"),
  31179. name: "Front",
  31180. image: {
  31181. source: "./media/characters/purri/front.svg",
  31182. extra: 1698/1610,
  31183. bottom: 32/1730
  31184. }
  31185. },
  31186. frontAlt: {
  31187. height: math.unit(6 + 5/12, "feet"),
  31188. name: "Front (Alt)",
  31189. image: {
  31190. source: "./media/characters/purri/front-alt.svg",
  31191. extra: 450/420,
  31192. bottom: 26/476
  31193. }
  31194. },
  31195. boots: {
  31196. height: math.unit(5.5, "feet"),
  31197. name: "Boots",
  31198. image: {
  31199. source: "./media/characters/purri/boots.svg",
  31200. extra: 905/853,
  31201. bottom: 18/923
  31202. }
  31203. },
  31204. lying: {
  31205. height: math.unit(2, "feet"),
  31206. name: "Lying",
  31207. image: {
  31208. source: "./media/characters/purri/lying.svg",
  31209. extra: 940/843,
  31210. bottom: 146/1086
  31211. }
  31212. },
  31213. devious: {
  31214. height: math.unit(1.77, "feet"),
  31215. name: "Devious",
  31216. image: {
  31217. source: "./media/characters/purri/devious.svg",
  31218. extra: 1440/1155,
  31219. bottom: 147/1587
  31220. }
  31221. },
  31222. bean: {
  31223. height: math.unit(1.94, "feet"),
  31224. name: "Bean",
  31225. image: {
  31226. source: "./media/characters/purri/bean.svg"
  31227. }
  31228. },
  31229. },
  31230. [
  31231. {
  31232. name: "Micro",
  31233. height: math.unit(1, "mm")
  31234. },
  31235. {
  31236. name: "Normal",
  31237. height: math.unit(6 + 5/12, "feet"),
  31238. default: true
  31239. },
  31240. {
  31241. name: "Macro :3c",
  31242. height: math.unit(2, "miles")
  31243. },
  31244. ]
  31245. ))
  31246. characterMakers.push(() => makeCharacter(
  31247. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31248. {
  31249. front: {
  31250. height: math.unit(6 + 2/12, "feet"),
  31251. weight: math.unit(250, "lb"),
  31252. name: "Front",
  31253. image: {
  31254. source: "./media/characters/moonlight/front.svg",
  31255. extra: 1044/908,
  31256. bottom: 56/1100
  31257. }
  31258. },
  31259. feral: {
  31260. height: math.unit(3 + 1/12, "feet"),
  31261. weight: math.unit(50, "kg"),
  31262. name: "Feral",
  31263. image: {
  31264. source: "./media/characters/moonlight/feral.svg",
  31265. extra: 3705/2791,
  31266. bottom: 145/3850
  31267. }
  31268. },
  31269. paw: {
  31270. height: math.unit(1, "feet"),
  31271. name: "Paw",
  31272. image: {
  31273. source: "./media/characters/moonlight/paw.svg"
  31274. }
  31275. },
  31276. paws: {
  31277. height: math.unit(0.98, "feet"),
  31278. name: "Paws",
  31279. image: {
  31280. source: "./media/characters/moonlight/paws.svg",
  31281. extra: 939/939,
  31282. bottom: 50/989
  31283. }
  31284. },
  31285. mouth: {
  31286. height: math.unit(0.48, "feet"),
  31287. name: "Mouth",
  31288. image: {
  31289. source: "./media/characters/moonlight/mouth.svg"
  31290. }
  31291. },
  31292. dick: {
  31293. height: math.unit(1.46, "feet"),
  31294. name: "Dick",
  31295. image: {
  31296. source: "./media/characters/moonlight/dick.svg"
  31297. }
  31298. },
  31299. },
  31300. [
  31301. {
  31302. name: "Normal",
  31303. height: math.unit(6 + 2/12, "feet"),
  31304. default: true
  31305. },
  31306. {
  31307. name: "Macro",
  31308. height: math.unit(300, "feet")
  31309. },
  31310. {
  31311. name: "Macro+",
  31312. height: math.unit(1, "mile")
  31313. },
  31314. {
  31315. name: "Mt. Moon",
  31316. height: math.unit(5, "miles")
  31317. },
  31318. {
  31319. name: "Megamacro",
  31320. height: math.unit(15, "miles")
  31321. },
  31322. ]
  31323. ))
  31324. characterMakers.push(() => makeCharacter(
  31325. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31326. {
  31327. back: {
  31328. height: math.unit(6, "feet"),
  31329. weight: math.unit(150, "lb"),
  31330. name: "Back",
  31331. image: {
  31332. source: "./media/characters/sylen/back.svg",
  31333. extra: 1335/1273,
  31334. bottom: 107/1442
  31335. }
  31336. },
  31337. },
  31338. [
  31339. {
  31340. name: "Normal",
  31341. height: math.unit(5 + 5/12, "feet")
  31342. },
  31343. {
  31344. name: "Megamacro",
  31345. height: math.unit(3, "miles"),
  31346. default: true
  31347. },
  31348. ]
  31349. ))
  31350. characterMakers.push(() => makeCharacter(
  31351. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31352. {
  31353. front: {
  31354. height: math.unit(6, "feet"),
  31355. weight: math.unit(190, "lb"),
  31356. name: "Front",
  31357. image: {
  31358. source: "./media/characters/huttser/front.svg",
  31359. extra: 1152/1058,
  31360. bottom: 23/1175
  31361. }
  31362. },
  31363. side: {
  31364. height: math.unit(6, "feet"),
  31365. weight: math.unit(190, "lb"),
  31366. name: "Side",
  31367. image: {
  31368. source: "./media/characters/huttser/side.svg",
  31369. extra: 1174/1065,
  31370. bottom: 18/1192
  31371. }
  31372. },
  31373. back: {
  31374. height: math.unit(6, "feet"),
  31375. weight: math.unit(190, "lb"),
  31376. name: "Back",
  31377. image: {
  31378. source: "./media/characters/huttser/back.svg",
  31379. extra: 1158/1056,
  31380. bottom: 12/1170
  31381. }
  31382. },
  31383. },
  31384. [
  31385. ]
  31386. ))
  31387. characterMakers.push(() => makeCharacter(
  31388. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31389. {
  31390. side: {
  31391. height: math.unit(12 + 9/12, "feet"),
  31392. weight: math.unit(15000, "lb"),
  31393. name: "Side",
  31394. image: {
  31395. source: "./media/characters/faan/side.svg",
  31396. extra: 2747/2697,
  31397. bottom: 0/2747
  31398. }
  31399. },
  31400. front: {
  31401. height: math.unit(12 + 9/12, "feet"),
  31402. weight: math.unit(15000, "lb"),
  31403. name: "Front",
  31404. image: {
  31405. source: "./media/characters/faan/front.svg",
  31406. extra: 607/571,
  31407. bottom: 24/631
  31408. }
  31409. },
  31410. head: {
  31411. height: math.unit(2.85, "feet"),
  31412. name: "Head",
  31413. image: {
  31414. source: "./media/characters/faan/head.svg"
  31415. }
  31416. },
  31417. headAlt: {
  31418. height: math.unit(3.13, "feet"),
  31419. name: "Head-alt",
  31420. image: {
  31421. source: "./media/characters/faan/head-alt.svg"
  31422. }
  31423. },
  31424. },
  31425. [
  31426. {
  31427. name: "Normal",
  31428. height: math.unit(12 + 9/12, "feet"),
  31429. default: true
  31430. },
  31431. ]
  31432. ))
  31433. characterMakers.push(() => makeCharacter(
  31434. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31435. {
  31436. front: {
  31437. height: math.unit(6, "feet"),
  31438. weight: math.unit(300, "lb"),
  31439. name: "Front",
  31440. image: {
  31441. source: "./media/characters/tanio/front.svg",
  31442. extra: 711/673,
  31443. bottom: 25/736
  31444. }
  31445. },
  31446. },
  31447. [
  31448. {
  31449. name: "Normal",
  31450. height: math.unit(6, "feet"),
  31451. default: true
  31452. },
  31453. ]
  31454. ))
  31455. characterMakers.push(() => makeCharacter(
  31456. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31457. {
  31458. front: {
  31459. height: math.unit(3, "inches"),
  31460. name: "Front",
  31461. image: {
  31462. source: "./media/characters/noboru/front.svg",
  31463. extra: 1039/932,
  31464. bottom: 18/1057
  31465. }
  31466. },
  31467. },
  31468. [
  31469. {
  31470. name: "Micro",
  31471. height: math.unit(3, "inches"),
  31472. default: true
  31473. },
  31474. ]
  31475. ))
  31476. characterMakers.push(() => makeCharacter(
  31477. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31478. {
  31479. front: {
  31480. height: math.unit(1.85, "meters"),
  31481. weight: math.unit(80, "kg"),
  31482. name: "Front",
  31483. image: {
  31484. source: "./media/characters/daniel-barrett/front.svg",
  31485. extra: 355/337,
  31486. bottom: 9/364
  31487. }
  31488. },
  31489. },
  31490. [
  31491. {
  31492. name: "Pico",
  31493. height: math.unit(0.0433, "mm")
  31494. },
  31495. {
  31496. name: "Nano",
  31497. height: math.unit(1.5, "mm")
  31498. },
  31499. {
  31500. name: "Micro",
  31501. height: math.unit(5.3, "cm"),
  31502. default: true
  31503. },
  31504. {
  31505. name: "Normal",
  31506. height: math.unit(1.85, "meters")
  31507. },
  31508. {
  31509. name: "Macro",
  31510. height: math.unit(64.7, "meters")
  31511. },
  31512. {
  31513. name: "Megamacro",
  31514. height: math.unit(2.26, "km")
  31515. },
  31516. {
  31517. name: "Gigamacro",
  31518. height: math.unit(79, "km")
  31519. },
  31520. {
  31521. name: "Teramacro",
  31522. height: math.unit(2765, "km")
  31523. },
  31524. {
  31525. name: "Petamacro",
  31526. height: math.unit(96678, "km")
  31527. },
  31528. ]
  31529. ))
  31530. characterMakers.push(() => makeCharacter(
  31531. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31532. {
  31533. front: {
  31534. height: math.unit(30, "meters"),
  31535. weight: math.unit(400, "tons"),
  31536. name: "Front",
  31537. image: {
  31538. source: "./media/characters/zeel/front.svg",
  31539. extra: 2599/2599,
  31540. bottom: 226/2825
  31541. }
  31542. },
  31543. },
  31544. [
  31545. {
  31546. name: "Macro",
  31547. height: math.unit(30, "meters"),
  31548. default: true
  31549. },
  31550. ]
  31551. ))
  31552. characterMakers.push(() => makeCharacter(
  31553. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31554. {
  31555. front: {
  31556. height: math.unit(6 + 7/12, "feet"),
  31557. weight: math.unit(210, "lb"),
  31558. name: "Front",
  31559. image: {
  31560. source: "./media/characters/tarn/front.svg",
  31561. extra: 3517/3220,
  31562. bottom: 91/3608
  31563. }
  31564. },
  31565. back: {
  31566. height: math.unit(6 + 7/12, "feet"),
  31567. weight: math.unit(210, "lb"),
  31568. name: "Back",
  31569. image: {
  31570. source: "./media/characters/tarn/back.svg",
  31571. extra: 3566/3241,
  31572. bottom: 34/3600
  31573. }
  31574. },
  31575. dick: {
  31576. height: math.unit(1.65, "feet"),
  31577. name: "Dick",
  31578. image: {
  31579. source: "./media/characters/tarn/dick.svg"
  31580. }
  31581. },
  31582. paw: {
  31583. height: math.unit(1.80, "feet"),
  31584. name: "Paw",
  31585. image: {
  31586. source: "./media/characters/tarn/paw.svg"
  31587. }
  31588. },
  31589. tongue: {
  31590. height: math.unit(0.97, "feet"),
  31591. name: "Tongue",
  31592. image: {
  31593. source: "./media/characters/tarn/tongue.svg"
  31594. }
  31595. },
  31596. },
  31597. [
  31598. {
  31599. name: "Micro",
  31600. height: math.unit(4, "inches")
  31601. },
  31602. {
  31603. name: "Normal",
  31604. height: math.unit(6 + 7/12, "feet"),
  31605. default: true
  31606. },
  31607. {
  31608. name: "Macro",
  31609. height: math.unit(300, "feet")
  31610. },
  31611. ]
  31612. ))
  31613. characterMakers.push(() => makeCharacter(
  31614. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31615. {
  31616. front: {
  31617. height: math.unit(5 + 7/12, "feet"),
  31618. weight: math.unit(80, "kg"),
  31619. name: "Front",
  31620. image: {
  31621. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31622. extra: 3023/2865,
  31623. bottom: 33/3056
  31624. }
  31625. },
  31626. back: {
  31627. height: math.unit(5 + 7/12, "feet"),
  31628. weight: math.unit(80, "kg"),
  31629. name: "Back",
  31630. image: {
  31631. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31632. extra: 3020/2886,
  31633. bottom: 30/3050
  31634. }
  31635. },
  31636. dick: {
  31637. height: math.unit(0.98, "feet"),
  31638. name: "Dick",
  31639. image: {
  31640. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31641. }
  31642. },
  31643. anatomy: {
  31644. height: math.unit(2.86, "feet"),
  31645. name: "Anatomy",
  31646. image: {
  31647. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31648. }
  31649. },
  31650. },
  31651. [
  31652. {
  31653. name: "Really Small",
  31654. height: math.unit(2, "inches")
  31655. },
  31656. {
  31657. name: "Micro",
  31658. height: math.unit(5.583, "inches")
  31659. },
  31660. {
  31661. name: "Normal",
  31662. height: math.unit(5 + 7/12, "feet"),
  31663. default: true
  31664. },
  31665. {
  31666. name: "Macro",
  31667. height: math.unit(67, "feet")
  31668. },
  31669. {
  31670. name: "Megamacro",
  31671. height: math.unit(134, "feet")
  31672. },
  31673. ]
  31674. ))
  31675. characterMakers.push(() => makeCharacter(
  31676. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31677. {
  31678. front: {
  31679. height: math.unit(9, "feet"),
  31680. weight: math.unit(120, "lb"),
  31681. name: "Front",
  31682. image: {
  31683. source: "./media/characters/sally/front.svg",
  31684. extra: 1506/1349,
  31685. bottom: 66/1572
  31686. }
  31687. },
  31688. },
  31689. [
  31690. {
  31691. name: "Normal",
  31692. height: math.unit(9, "feet"),
  31693. default: true
  31694. },
  31695. ]
  31696. ))
  31697. characterMakers.push(() => makeCharacter(
  31698. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31699. {
  31700. front: {
  31701. height: math.unit(8, "feet"),
  31702. weight: math.unit(900, "lb"),
  31703. name: "Front",
  31704. image: {
  31705. source: "./media/characters/owen/front.svg",
  31706. extra: 1761/1657,
  31707. bottom: 74/1835
  31708. }
  31709. },
  31710. side: {
  31711. height: math.unit(8, "feet"),
  31712. weight: math.unit(900, "lb"),
  31713. name: "Side",
  31714. image: {
  31715. source: "./media/characters/owen/side.svg",
  31716. extra: 1797/1734,
  31717. bottom: 30/1827
  31718. }
  31719. },
  31720. back: {
  31721. height: math.unit(8, "feet"),
  31722. weight: math.unit(900, "lb"),
  31723. name: "Back",
  31724. image: {
  31725. source: "./media/characters/owen/back.svg",
  31726. extra: 1796/1706,
  31727. bottom: 59/1855
  31728. }
  31729. },
  31730. maw: {
  31731. height: math.unit(1.76, "feet"),
  31732. name: "Maw",
  31733. image: {
  31734. source: "./media/characters/owen/maw.svg"
  31735. }
  31736. },
  31737. },
  31738. [
  31739. {
  31740. name: "Normal",
  31741. height: math.unit(8, "feet"),
  31742. default: true
  31743. },
  31744. ]
  31745. ))
  31746. characterMakers.push(() => makeCharacter(
  31747. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31748. {
  31749. front: {
  31750. height: math.unit(4, "feet"),
  31751. weight: math.unit(400, "lb"),
  31752. name: "Front",
  31753. image: {
  31754. source: "./media/characters/ryth/front.svg",
  31755. extra: 1920/1748,
  31756. bottom: 42/1962
  31757. }
  31758. },
  31759. back: {
  31760. height: math.unit(4, "feet"),
  31761. weight: math.unit(400, "lb"),
  31762. name: "Back",
  31763. image: {
  31764. source: "./media/characters/ryth/back.svg",
  31765. extra: 1897/1690,
  31766. bottom: 89/1986
  31767. }
  31768. },
  31769. mouth: {
  31770. height: math.unit(1.39, "feet"),
  31771. name: "Mouth",
  31772. image: {
  31773. source: "./media/characters/ryth/mouth.svg"
  31774. }
  31775. },
  31776. tailmaw: {
  31777. height: math.unit(1.23, "feet"),
  31778. name: "Tailmaw",
  31779. image: {
  31780. source: "./media/characters/ryth/tailmaw.svg"
  31781. }
  31782. },
  31783. goia: {
  31784. height: math.unit(12, "feet"),
  31785. weight: math.unit(10800, "lb"),
  31786. name: "Goia",
  31787. image: {
  31788. source: "./media/characters/ryth/goia.svg",
  31789. extra: 3450/3198,
  31790. bottom: 61/3511
  31791. }
  31792. },
  31793. },
  31794. [
  31795. {
  31796. name: "Normal",
  31797. height: math.unit(4, "feet"),
  31798. default: true
  31799. },
  31800. ]
  31801. ))
  31802. characterMakers.push(() => makeCharacter(
  31803. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31804. {
  31805. front: {
  31806. height: math.unit(7, "feet"),
  31807. weight: math.unit(180, "lb"),
  31808. name: "Front",
  31809. image: {
  31810. source: "./media/characters/necrolance/front.svg",
  31811. extra: 1062/947,
  31812. bottom: 41/1103
  31813. }
  31814. },
  31815. back: {
  31816. height: math.unit(7, "feet"),
  31817. weight: math.unit(180, "lb"),
  31818. name: "Back",
  31819. image: {
  31820. source: "./media/characters/necrolance/back.svg",
  31821. extra: 1045/984,
  31822. bottom: 14/1059
  31823. }
  31824. },
  31825. wing: {
  31826. height: math.unit(2.67, "feet"),
  31827. name: "Wing",
  31828. image: {
  31829. source: "./media/characters/necrolance/wing.svg"
  31830. }
  31831. },
  31832. },
  31833. [
  31834. {
  31835. name: "Normal",
  31836. height: math.unit(7, "feet"),
  31837. default: true
  31838. },
  31839. ]
  31840. ))
  31841. characterMakers.push(() => makeCharacter(
  31842. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31843. {
  31844. front: {
  31845. height: math.unit(76, "meters"),
  31846. weight: math.unit(30000, "tons"),
  31847. name: "Front",
  31848. image: {
  31849. source: "./media/characters/tyler/front.svg",
  31850. extra: 1640/1640,
  31851. bottom: 114/1754
  31852. }
  31853. },
  31854. },
  31855. [
  31856. {
  31857. name: "Macro",
  31858. height: math.unit(76, "meters"),
  31859. default: true
  31860. },
  31861. ]
  31862. ))
  31863. characterMakers.push(() => makeCharacter(
  31864. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31865. {
  31866. front: {
  31867. height: math.unit(4 + 11/12, "feet"),
  31868. weight: math.unit(132, "lb"),
  31869. name: "Front",
  31870. image: {
  31871. source: "./media/characters/icey/front.svg",
  31872. extra: 2750/2550,
  31873. bottom: 33/2783
  31874. }
  31875. },
  31876. back: {
  31877. height: math.unit(4 + 11/12, "feet"),
  31878. weight: math.unit(132, "lb"),
  31879. name: "Back",
  31880. image: {
  31881. source: "./media/characters/icey/back.svg",
  31882. extra: 2624/2481,
  31883. bottom: 35/2659
  31884. }
  31885. },
  31886. },
  31887. [
  31888. {
  31889. name: "Normal",
  31890. height: math.unit(4 + 11/12, "feet"),
  31891. default: true
  31892. },
  31893. ]
  31894. ))
  31895. characterMakers.push(() => makeCharacter(
  31896. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31897. {
  31898. front: {
  31899. height: math.unit(100, "feet"),
  31900. weight: math.unit(0, "lb"),
  31901. name: "Front",
  31902. image: {
  31903. source: "./media/characters/smile/front.svg",
  31904. extra: 2983/2912,
  31905. bottom: 162/3145
  31906. }
  31907. },
  31908. back: {
  31909. height: math.unit(100, "feet"),
  31910. weight: math.unit(0, "lb"),
  31911. name: "Back",
  31912. image: {
  31913. source: "./media/characters/smile/back.svg",
  31914. extra: 3143/3031,
  31915. bottom: 91/3234
  31916. }
  31917. },
  31918. head: {
  31919. height: math.unit(26.3, "feet"),
  31920. weight: math.unit(0, "lb"),
  31921. name: "Head",
  31922. image: {
  31923. source: "./media/characters/smile/head.svg"
  31924. }
  31925. },
  31926. collar: {
  31927. height: math.unit(5.3, "feet"),
  31928. weight: math.unit(0, "lb"),
  31929. name: "Collar",
  31930. image: {
  31931. source: "./media/characters/smile/collar.svg"
  31932. }
  31933. },
  31934. },
  31935. [
  31936. {
  31937. name: "Macro",
  31938. height: math.unit(100, "feet"),
  31939. default: true
  31940. },
  31941. ]
  31942. ))
  31943. characterMakers.push(() => makeCharacter(
  31944. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31945. {
  31946. dragon: {
  31947. height: math.unit(26, "feet"),
  31948. weight: math.unit(36, "tons"),
  31949. name: "Dragon",
  31950. image: {
  31951. source: "./media/characters/arimphae/dragon.svg",
  31952. extra: 1574/983,
  31953. bottom: 357/1931
  31954. }
  31955. },
  31956. drake: {
  31957. height: math.unit(9, "feet"),
  31958. weight: math.unit(1.5, "tons"),
  31959. name: "Drake",
  31960. image: {
  31961. source: "./media/characters/arimphae/drake.svg",
  31962. extra: 1120/925,
  31963. bottom: 435/1555
  31964. }
  31965. },
  31966. },
  31967. [
  31968. {
  31969. name: "Small",
  31970. height: math.unit(26*5/9, "feet")
  31971. },
  31972. {
  31973. name: "Normal",
  31974. height: math.unit(26, "feet"),
  31975. default: true
  31976. },
  31977. ]
  31978. ))
  31979. characterMakers.push(() => makeCharacter(
  31980. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31981. {
  31982. front: {
  31983. height: math.unit(8 + 9/12, "feet"),
  31984. name: "Front",
  31985. image: {
  31986. source: "./media/characters/xander/front.svg",
  31987. extra: 848/673,
  31988. bottom: 62/910
  31989. }
  31990. },
  31991. },
  31992. [
  31993. {
  31994. name: "Normal",
  31995. height: math.unit(8 + 9/12, "feet"),
  31996. default: true
  31997. },
  31998. {
  31999. name: "Gaze Grabber",
  32000. height: math.unit(13 + 8/12, "feet")
  32001. },
  32002. {
  32003. name: "Jaw Dropper",
  32004. height: math.unit(27, "feet")
  32005. },
  32006. {
  32007. name: "Show Stopper",
  32008. height: math.unit(136, "feet")
  32009. },
  32010. {
  32011. name: "Superstar",
  32012. height: math.unit(1.9e6, "miles")
  32013. },
  32014. ]
  32015. ))
  32016. characterMakers.push(() => makeCharacter(
  32017. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32018. {
  32019. side: {
  32020. height: math.unit(2100, "feet"),
  32021. name: "Side",
  32022. image: {
  32023. source: "./media/characters/osiris/side.svg",
  32024. extra: 1105/939,
  32025. bottom: 167/1272
  32026. }
  32027. },
  32028. },
  32029. [
  32030. {
  32031. name: "Macro",
  32032. height: math.unit(2100, "feet"),
  32033. default: true
  32034. },
  32035. ]
  32036. ))
  32037. characterMakers.push(() => makeCharacter(
  32038. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32039. {
  32040. front: {
  32041. height: math.unit(6 + 8/12, "feet"),
  32042. weight: math.unit(225, "lb"),
  32043. name: "Front",
  32044. image: {
  32045. source: "./media/characters/rhys-londe/front.svg",
  32046. extra: 2258/2141,
  32047. bottom: 188/2446
  32048. }
  32049. },
  32050. back: {
  32051. height: math.unit(6 + 8/12, "feet"),
  32052. weight: math.unit(225, "lb"),
  32053. name: "Back",
  32054. image: {
  32055. source: "./media/characters/rhys-londe/back.svg",
  32056. extra: 2237/2137,
  32057. bottom: 63/2300
  32058. }
  32059. },
  32060. frontNsfw: {
  32061. height: math.unit(6 + 8/12, "feet"),
  32062. weight: math.unit(225, "lb"),
  32063. name: "Front (NSFW)",
  32064. image: {
  32065. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32066. extra: 2258/2141,
  32067. bottom: 188/2446
  32068. }
  32069. },
  32070. backNsfw: {
  32071. height: math.unit(6 + 8/12, "feet"),
  32072. weight: math.unit(225, "lb"),
  32073. name: "Back (NSFW)",
  32074. image: {
  32075. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32076. extra: 2237/2137,
  32077. bottom: 63/2300
  32078. }
  32079. },
  32080. dick: {
  32081. height: math.unit(30, "inches"),
  32082. name: "Dick",
  32083. image: {
  32084. source: "./media/characters/rhys-londe/dick.svg"
  32085. }
  32086. },
  32087. maw: {
  32088. height: math.unit(1.6, "feet"),
  32089. name: "Maw",
  32090. image: {
  32091. source: "./media/characters/rhys-londe/maw.svg"
  32092. }
  32093. },
  32094. },
  32095. [
  32096. {
  32097. name: "Normal",
  32098. height: math.unit(6 + 8/12, "feet"),
  32099. default: true
  32100. },
  32101. ]
  32102. ))
  32103. characterMakers.push(() => makeCharacter(
  32104. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32105. {
  32106. front: {
  32107. height: math.unit(3 + 10/12, "feet"),
  32108. weight: math.unit(90, "lb"),
  32109. name: "Front",
  32110. image: {
  32111. source: "./media/characters/taivas-ensim/front.svg",
  32112. extra: 1327/1216,
  32113. bottom: 96/1423
  32114. }
  32115. },
  32116. back: {
  32117. height: math.unit(3 + 10/12, "feet"),
  32118. weight: math.unit(90, "lb"),
  32119. name: "Back",
  32120. image: {
  32121. source: "./media/characters/taivas-ensim/back.svg",
  32122. extra: 1355/1247,
  32123. bottom: 11/1366
  32124. }
  32125. },
  32126. frontNsfw: {
  32127. height: math.unit(3 + 10/12, "feet"),
  32128. weight: math.unit(90, "lb"),
  32129. name: "Front (NSFW)",
  32130. image: {
  32131. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32132. extra: 1327/1216,
  32133. bottom: 96/1423
  32134. }
  32135. },
  32136. backNsfw: {
  32137. height: math.unit(3 + 10/12, "feet"),
  32138. weight: math.unit(90, "lb"),
  32139. name: "Back (NSFW)",
  32140. image: {
  32141. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32142. extra: 1355/1247,
  32143. bottom: 11/1366
  32144. }
  32145. },
  32146. },
  32147. [
  32148. {
  32149. name: "Normal",
  32150. height: math.unit(3 + 10/12, "feet"),
  32151. default: true
  32152. },
  32153. ]
  32154. ))
  32155. characterMakers.push(() => makeCharacter(
  32156. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32157. {
  32158. front: {
  32159. height: math.unit(9 + 6/12, "feet"),
  32160. weight: math.unit(940, "lb"),
  32161. name: "Front",
  32162. image: {
  32163. source: "./media/characters/byliss/front.svg",
  32164. extra: 1327/1290,
  32165. bottom: 82/1409
  32166. }
  32167. },
  32168. back: {
  32169. height: math.unit(9 + 6/12, "feet"),
  32170. weight: math.unit(940, "lb"),
  32171. name: "Back",
  32172. image: {
  32173. source: "./media/characters/byliss/back.svg",
  32174. extra: 1376/1349,
  32175. bottom: 9/1385
  32176. }
  32177. },
  32178. frontNsfw: {
  32179. height: math.unit(9 + 6/12, "feet"),
  32180. weight: math.unit(940, "lb"),
  32181. name: "Front (NSFW)",
  32182. image: {
  32183. source: "./media/characters/byliss/front-nsfw.svg",
  32184. extra: 1327/1290,
  32185. bottom: 82/1409
  32186. }
  32187. },
  32188. backNsfw: {
  32189. height: math.unit(9 + 6/12, "feet"),
  32190. weight: math.unit(940, "lb"),
  32191. name: "Back (NSFW)",
  32192. image: {
  32193. source: "./media/characters/byliss/back-nsfw.svg",
  32194. extra: 1376/1349,
  32195. bottom: 9/1385
  32196. }
  32197. },
  32198. },
  32199. [
  32200. {
  32201. name: "Normal",
  32202. height: math.unit(9 + 6/12, "feet"),
  32203. default: true
  32204. },
  32205. ]
  32206. ))
  32207. characterMakers.push(() => makeCharacter(
  32208. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32209. {
  32210. front: {
  32211. height: math.unit(5 + 2/12, "feet"),
  32212. weight: math.unit(200, "lb"),
  32213. name: "Front",
  32214. image: {
  32215. source: "./media/characters/noraly/front.svg",
  32216. extra: 4985/4773,
  32217. bottom: 150/5135
  32218. }
  32219. },
  32220. full: {
  32221. height: math.unit(5 + 2/12, "feet"),
  32222. weight: math.unit(164, "lb"),
  32223. name: "Full",
  32224. image: {
  32225. source: "./media/characters/noraly/full.svg",
  32226. extra: 1114/1059,
  32227. bottom: 35/1149
  32228. }
  32229. },
  32230. fuller: {
  32231. height: math.unit(5 + 2/12, "feet"),
  32232. weight: math.unit(230, "lb"),
  32233. name: "Fuller",
  32234. image: {
  32235. source: "./media/characters/noraly/fuller.svg",
  32236. extra: 1114/1059,
  32237. bottom: 35/1149
  32238. }
  32239. },
  32240. fullest: {
  32241. height: math.unit(5 + 2/12, "feet"),
  32242. weight: math.unit(300, "lb"),
  32243. name: "Fullest",
  32244. image: {
  32245. source: "./media/characters/noraly/fullest.svg",
  32246. extra: 1114/1059,
  32247. bottom: 35/1149
  32248. }
  32249. },
  32250. },
  32251. [
  32252. {
  32253. name: "Normal",
  32254. height: math.unit(5 + 2/12, "feet"),
  32255. default: true
  32256. },
  32257. ]
  32258. ))
  32259. characterMakers.push(() => makeCharacter(
  32260. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32261. {
  32262. front: {
  32263. height: math.unit(5 + 2/12, "feet"),
  32264. weight: math.unit(210, "lb"),
  32265. name: "Front",
  32266. image: {
  32267. source: "./media/characters/pera/front.svg",
  32268. extra: 1560/1531,
  32269. bottom: 165/1725
  32270. }
  32271. },
  32272. back: {
  32273. height: math.unit(5 + 2/12, "feet"),
  32274. weight: math.unit(210, "lb"),
  32275. name: "Back",
  32276. image: {
  32277. source: "./media/characters/pera/back.svg",
  32278. extra: 1523/1493,
  32279. bottom: 152/1675
  32280. }
  32281. },
  32282. dick: {
  32283. height: math.unit(2.4, "feet"),
  32284. name: "Dick",
  32285. image: {
  32286. source: "./media/characters/pera/dick.svg"
  32287. }
  32288. },
  32289. },
  32290. [
  32291. {
  32292. name: "Normal",
  32293. height: math.unit(5 + 2/12, "feet"),
  32294. default: true
  32295. },
  32296. ]
  32297. ))
  32298. characterMakers.push(() => makeCharacter(
  32299. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32300. {
  32301. front: {
  32302. height: math.unit(12, "feet"),
  32303. weight: math.unit(3200, "lb"),
  32304. name: "Front",
  32305. image: {
  32306. source: "./media/characters/julian/front.svg",
  32307. extra: 2962/2701,
  32308. bottom: 184/3146
  32309. }
  32310. },
  32311. maw: {
  32312. height: math.unit(5.35, "feet"),
  32313. name: "Maw",
  32314. image: {
  32315. source: "./media/characters/julian/maw.svg"
  32316. }
  32317. },
  32318. paw: {
  32319. height: math.unit(3.07, "feet"),
  32320. name: "Paw",
  32321. image: {
  32322. source: "./media/characters/julian/paw.svg"
  32323. }
  32324. },
  32325. },
  32326. [
  32327. {
  32328. name: "Default",
  32329. height: math.unit(12, "feet"),
  32330. default: true
  32331. },
  32332. {
  32333. name: "Big",
  32334. height: math.unit(50, "feet")
  32335. },
  32336. {
  32337. name: "Really Big",
  32338. height: math.unit(1, "mile")
  32339. },
  32340. {
  32341. name: "Extremely Big",
  32342. height: math.unit(100, "miles")
  32343. },
  32344. {
  32345. name: "Planet Hugger",
  32346. height: math.unit(200, "megameters")
  32347. },
  32348. {
  32349. name: "Unreasonably Big",
  32350. height: math.unit(1e300, "meters")
  32351. },
  32352. ]
  32353. ))
  32354. characterMakers.push(() => makeCharacter(
  32355. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32356. {
  32357. solgooleo: {
  32358. height: math.unit(4, "meters"),
  32359. weight: math.unit(6000*1.5, "kg"),
  32360. volume: math.unit(6000, "liters"),
  32361. name: "Solgooleo",
  32362. image: {
  32363. source: "./media/characters/pi/solgooleo.svg",
  32364. extra: 388/331,
  32365. bottom: 29/417
  32366. }
  32367. },
  32368. },
  32369. [
  32370. {
  32371. name: "Normal",
  32372. height: math.unit(4, "meters"),
  32373. default: true
  32374. },
  32375. ]
  32376. ))
  32377. characterMakers.push(() => makeCharacter(
  32378. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32379. {
  32380. front: {
  32381. height: math.unit(8 + 2/12, "feet"),
  32382. weight: math.unit(4, "tons"),
  32383. name: "Front",
  32384. image: {
  32385. source: "./media/characters/shaun/front.svg",
  32386. extra: 1550/1505,
  32387. bottom: 353/1903
  32388. }
  32389. },
  32390. },
  32391. [
  32392. {
  32393. name: "Lorg",
  32394. height: math.unit(8 + 2/12, "feet"),
  32395. default: true
  32396. },
  32397. ]
  32398. ))
  32399. characterMakers.push(() => makeCharacter(
  32400. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32401. {
  32402. front: {
  32403. height: math.unit(7, "feet"),
  32404. name: "Front",
  32405. image: {
  32406. source: "./media/characters/sini/front.svg",
  32407. extra: 726/678,
  32408. bottom: 35/761
  32409. }
  32410. },
  32411. back: {
  32412. height: math.unit(7, "feet"),
  32413. name: "Back",
  32414. image: {
  32415. source: "./media/characters/sini/back.svg",
  32416. extra: 743/701,
  32417. bottom: 12/755
  32418. }
  32419. },
  32420. mawAnthro: {
  32421. height: math.unit(2.14, "feet"),
  32422. name: "Maw (Anthro)",
  32423. image: {
  32424. source: "./media/characters/sini/maw-anthro.svg"
  32425. }
  32426. },
  32427. dick: {
  32428. height: math.unit(1.45, "feet"),
  32429. name: "Dick (Anthro)",
  32430. image: {
  32431. source: "./media/characters/sini/dick-anthro.svg"
  32432. }
  32433. },
  32434. feral: {
  32435. height: math.unit(16, "feet"),
  32436. name: "Feral",
  32437. image: {
  32438. source: "./media/characters/sini/feral.svg",
  32439. extra: 814/605,
  32440. bottom: 11/825
  32441. }
  32442. },
  32443. mawFeral: {
  32444. height: math.unit(5.66, "feet"),
  32445. name: "Maw-feral",
  32446. image: {
  32447. source: "./media/characters/sini/maw-feral.svg"
  32448. }
  32449. },
  32450. footFeral: {
  32451. height: math.unit(5.17, "feet"),
  32452. name: "Foot-feral",
  32453. image: {
  32454. source: "./media/characters/sini/foot-feral.svg"
  32455. }
  32456. },
  32457. },
  32458. [
  32459. {
  32460. name: "Normal",
  32461. height: math.unit(7, "feet"),
  32462. default: true
  32463. },
  32464. ]
  32465. ))
  32466. characterMakers.push(() => makeCharacter(
  32467. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32468. {
  32469. side: {
  32470. height: math.unit(13, "meters"),
  32471. weight: math.unit(9072, "kg"),
  32472. name: "Side",
  32473. image: {
  32474. source: "./media/characters/raylldo/side.svg",
  32475. extra: 403/344,
  32476. bottom: 42/445
  32477. }
  32478. },
  32479. leaping: {
  32480. height: math.unit(12.3, "meters"),
  32481. weight: math.unit(9072, "kg"),
  32482. name: "Leaping",
  32483. image: {
  32484. source: "./media/characters/raylldo/leaping.svg",
  32485. extra: 470/249,
  32486. bottom: 13/483
  32487. }
  32488. },
  32489. flying: {
  32490. height: math.unit(18, "meters"),
  32491. weight: math.unit(9072, "kg"),
  32492. name: "Flying",
  32493. image: {
  32494. source: "./media/characters/raylldo/flying.svg"
  32495. }
  32496. },
  32497. head: {
  32498. height: math.unit(5.85, "meters"),
  32499. name: "Head",
  32500. image: {
  32501. source: "./media/characters/raylldo/head.svg"
  32502. }
  32503. },
  32504. maw: {
  32505. height: math.unit(5.32, "meters"),
  32506. name: "Maw",
  32507. image: {
  32508. source: "./media/characters/raylldo/maw.svg"
  32509. }
  32510. },
  32511. eye: {
  32512. height: math.unit(0.54, "meters"),
  32513. name: "Eye",
  32514. image: {
  32515. source: "./media/characters/raylldo/eye.svg"
  32516. }
  32517. },
  32518. },
  32519. [
  32520. {
  32521. name: "Normal",
  32522. height: math.unit(13, "meters"),
  32523. default: true
  32524. },
  32525. ]
  32526. ))
  32527. characterMakers.push(() => makeCharacter(
  32528. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32529. {
  32530. anthroFront: {
  32531. height: math.unit(9, "feet"),
  32532. weight: math.unit(600, "lb"),
  32533. name: "Anthro (Front)",
  32534. image: {
  32535. source: "./media/characters/glint/anthro-front.svg",
  32536. extra: 1097/1018,
  32537. bottom: 28/1125
  32538. }
  32539. },
  32540. anthroBack: {
  32541. height: math.unit(9, "feet"),
  32542. weight: math.unit(600, "lb"),
  32543. name: "Anthro (Back)",
  32544. image: {
  32545. source: "./media/characters/glint/anthro-back.svg",
  32546. extra: 1154/997,
  32547. bottom: 36/1190
  32548. }
  32549. },
  32550. feral: {
  32551. height: math.unit(11, "feet"),
  32552. weight: math.unit(50000, "lb"),
  32553. name: "Feral",
  32554. image: {
  32555. source: "./media/characters/glint/feral.svg",
  32556. extra: 3035/1585,
  32557. bottom: 1169/4204
  32558. }
  32559. },
  32560. dickAnthro: {
  32561. height: math.unit(0.7, "meters"),
  32562. name: "Dick (Anthro)",
  32563. image: {
  32564. source: "./media/characters/glint/dick-anthro.svg"
  32565. }
  32566. },
  32567. dickFeral: {
  32568. height: math.unit(2.65, "meters"),
  32569. name: "Dick (Feral)",
  32570. image: {
  32571. source: "./media/characters/glint/dick-feral.svg"
  32572. }
  32573. },
  32574. slitHidden: {
  32575. height: math.unit(5.85, "meters"),
  32576. name: "Slit (Hidden)",
  32577. image: {
  32578. source: "./media/characters/glint/slit-hidden.svg"
  32579. }
  32580. },
  32581. slitErect: {
  32582. height: math.unit(5.85, "meters"),
  32583. name: "Slit (Erect)",
  32584. image: {
  32585. source: "./media/characters/glint/slit-erect.svg"
  32586. }
  32587. },
  32588. mawAnthro: {
  32589. height: math.unit(0.63, "meters"),
  32590. name: "Maw (Anthro)",
  32591. image: {
  32592. source: "./media/characters/glint/maw.svg"
  32593. }
  32594. },
  32595. mawFeral: {
  32596. height: math.unit(2.89, "meters"),
  32597. name: "Maw (Feral)",
  32598. image: {
  32599. source: "./media/characters/glint/maw.svg"
  32600. }
  32601. },
  32602. },
  32603. [
  32604. {
  32605. name: "Normal",
  32606. height: math.unit(9, "feet"),
  32607. default: true
  32608. },
  32609. ]
  32610. ))
  32611. characterMakers.push(() => makeCharacter(
  32612. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32613. {
  32614. side: {
  32615. height: math.unit(15, "feet"),
  32616. weight: math.unit(5000, "kg"),
  32617. name: "Side",
  32618. image: {
  32619. source: "./media/characters/kairne/side.svg",
  32620. extra: 979/811,
  32621. bottom: 13/992
  32622. }
  32623. },
  32624. front: {
  32625. height: math.unit(15, "feet"),
  32626. weight: math.unit(5000, "kg"),
  32627. name: "Front",
  32628. image: {
  32629. source: "./media/characters/kairne/front.svg",
  32630. extra: 908/814,
  32631. bottom: 26/934
  32632. }
  32633. },
  32634. sideNsfw: {
  32635. height: math.unit(15, "feet"),
  32636. weight: math.unit(5000, "kg"),
  32637. name: "Side (NSFW)",
  32638. image: {
  32639. source: "./media/characters/kairne/side-nsfw.svg",
  32640. extra: 979/811,
  32641. bottom: 13/992
  32642. }
  32643. },
  32644. frontNsfw: {
  32645. height: math.unit(15, "feet"),
  32646. weight: math.unit(5000, "kg"),
  32647. name: "Front (NSFW)",
  32648. image: {
  32649. source: "./media/characters/kairne/front-nsfw.svg",
  32650. extra: 908/814,
  32651. bottom: 26/934
  32652. }
  32653. },
  32654. dickCaged: {
  32655. height: math.unit(0.65, "meters"),
  32656. name: "Dick-caged",
  32657. image: {
  32658. source: "./media/characters/kairne/dick-caged.svg"
  32659. }
  32660. },
  32661. dick: {
  32662. height: math.unit(0.79, "meters"),
  32663. name: "Dick",
  32664. image: {
  32665. source: "./media/characters/kairne/dick.svg"
  32666. }
  32667. },
  32668. genitals: {
  32669. height: math.unit(1.29, "meters"),
  32670. name: "Genitals",
  32671. image: {
  32672. source: "./media/characters/kairne/genitals.svg"
  32673. }
  32674. },
  32675. maw: {
  32676. height: math.unit(1.73, "meters"),
  32677. name: "Maw",
  32678. image: {
  32679. source: "./media/characters/kairne/maw.svg"
  32680. }
  32681. },
  32682. },
  32683. [
  32684. {
  32685. name: "Normal",
  32686. height: math.unit(15, "feet"),
  32687. default: true
  32688. },
  32689. ]
  32690. ))
  32691. characterMakers.push(() => makeCharacter(
  32692. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32693. {
  32694. front: {
  32695. height: math.unit(5 + 8/12, "feet"),
  32696. weight: math.unit(139, "lb"),
  32697. name: "Front",
  32698. image: {
  32699. source: "./media/characters/biscuit-jackal/front.svg",
  32700. extra: 2106/1961,
  32701. bottom: 58/2164
  32702. }
  32703. },
  32704. back: {
  32705. height: math.unit(5 + 8/12, "feet"),
  32706. weight: math.unit(139, "lb"),
  32707. name: "Back",
  32708. image: {
  32709. source: "./media/characters/biscuit-jackal/back.svg",
  32710. extra: 2132/1976,
  32711. bottom: 57/2189
  32712. }
  32713. },
  32714. werejackal: {
  32715. height: math.unit(6 + 3/12, "feet"),
  32716. weight: math.unit(188, "lb"),
  32717. name: "Werejackal",
  32718. image: {
  32719. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32720. extra: 2373/2178,
  32721. bottom: 53/2426
  32722. }
  32723. },
  32724. },
  32725. [
  32726. {
  32727. name: "Normal",
  32728. height: math.unit(5 + 8/12, "feet"),
  32729. default: true
  32730. },
  32731. ]
  32732. ))
  32733. characterMakers.push(() => makeCharacter(
  32734. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32735. {
  32736. front: {
  32737. height: math.unit(140, "cm"),
  32738. weight: math.unit(45, "kg"),
  32739. name: "Front",
  32740. image: {
  32741. source: "./media/characters/tayra-white/front.svg",
  32742. extra: 2229/2192,
  32743. bottom: 75/2304
  32744. }
  32745. },
  32746. },
  32747. [
  32748. {
  32749. name: "Normal",
  32750. height: math.unit(140, "cm"),
  32751. default: true
  32752. },
  32753. ]
  32754. ))
  32755. characterMakers.push(() => makeCharacter(
  32756. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32757. {
  32758. front: {
  32759. height: math.unit(4 + 5/12, "feet"),
  32760. name: "Front",
  32761. image: {
  32762. source: "./media/characters/scoop/front.svg",
  32763. extra: 1257/1136,
  32764. bottom: 69/1326
  32765. }
  32766. },
  32767. back: {
  32768. height: math.unit(4 + 5/12, "feet"),
  32769. name: "Back",
  32770. image: {
  32771. source: "./media/characters/scoop/back.svg",
  32772. extra: 1321/1152,
  32773. bottom: 32/1353
  32774. }
  32775. },
  32776. maw: {
  32777. height: math.unit(0.68, "feet"),
  32778. name: "Maw",
  32779. image: {
  32780. source: "./media/characters/scoop/maw.svg"
  32781. }
  32782. },
  32783. },
  32784. [
  32785. {
  32786. name: "Really Small",
  32787. height: math.unit(1, "mm")
  32788. },
  32789. {
  32790. name: "Micro",
  32791. height: math.unit(1, "inch")
  32792. },
  32793. {
  32794. name: "Normal",
  32795. height: math.unit(4 + 5/12, "feet"),
  32796. default: true
  32797. },
  32798. {
  32799. name: "Macro",
  32800. height: math.unit(200, "feet")
  32801. },
  32802. {
  32803. name: "Megamacro",
  32804. height: math.unit(3240, "feet")
  32805. },
  32806. {
  32807. name: "Teramacro",
  32808. height: math.unit(2500, "miles")
  32809. },
  32810. ]
  32811. ))
  32812. characterMakers.push(() => makeCharacter(
  32813. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32814. {
  32815. front: {
  32816. height: math.unit(15 + 7/12, "feet"),
  32817. name: "Front",
  32818. image: {
  32819. source: "./media/characters/saphinara/front.svg",
  32820. extra: 604/546,
  32821. bottom: 19/623
  32822. }
  32823. },
  32824. side: {
  32825. height: math.unit(15 + 7/12, "feet"),
  32826. name: "Side",
  32827. image: {
  32828. source: "./media/characters/saphinara/side.svg",
  32829. extra: 605/547,
  32830. bottom: 6/611
  32831. }
  32832. },
  32833. back: {
  32834. height: math.unit(15 + 7/12, "feet"),
  32835. name: "Back",
  32836. image: {
  32837. source: "./media/characters/saphinara/back.svg",
  32838. extra: 591/531,
  32839. bottom: 13/604
  32840. }
  32841. },
  32842. frontTail: {
  32843. height: math.unit(15 + 7/12, "feet"),
  32844. name: "Front (Full Tail)",
  32845. image: {
  32846. source: "./media/characters/saphinara/front-tail.svg",
  32847. extra: 748/547,
  32848. bottom: 66/814
  32849. }
  32850. },
  32851. },
  32852. [
  32853. {
  32854. name: "Normal",
  32855. height: math.unit(15 + 7/12, "feet"),
  32856. default: true
  32857. },
  32858. {
  32859. name: "Angry",
  32860. height: math.unit(30 + 6/12, "feet")
  32861. },
  32862. {
  32863. name: "Enraged",
  32864. height: math.unit(102 + 1/12, "feet")
  32865. },
  32866. ]
  32867. ))
  32868. characterMakers.push(() => makeCharacter(
  32869. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32870. {
  32871. front: {
  32872. height: math.unit(6 + 8/12, "feet"),
  32873. weight: math.unit(300, "lb"),
  32874. name: "Front",
  32875. image: {
  32876. source: "./media/characters/jrain/front.svg",
  32877. extra: 3039/2865,
  32878. bottom: 399/3438
  32879. }
  32880. },
  32881. back: {
  32882. height: math.unit(6 + 8/12, "feet"),
  32883. weight: math.unit(300, "lb"),
  32884. name: "Back",
  32885. image: {
  32886. source: "./media/characters/jrain/back.svg",
  32887. extra: 3089/2938,
  32888. bottom: 172/3261
  32889. }
  32890. },
  32891. head: {
  32892. height: math.unit(2.14, "feet"),
  32893. name: "Head",
  32894. image: {
  32895. source: "./media/characters/jrain/head.svg"
  32896. }
  32897. },
  32898. maw: {
  32899. height: math.unit(1.77, "feet"),
  32900. name: "Maw",
  32901. image: {
  32902. source: "./media/characters/jrain/maw.svg"
  32903. }
  32904. },
  32905. leftHand: {
  32906. height: math.unit(1.1, "feet"),
  32907. name: "Left Hand",
  32908. image: {
  32909. source: "./media/characters/jrain/left-hand.svg"
  32910. }
  32911. },
  32912. rightHand: {
  32913. height: math.unit(1.1, "feet"),
  32914. name: "Right Hand",
  32915. image: {
  32916. source: "./media/characters/jrain/right-hand.svg"
  32917. }
  32918. },
  32919. eye: {
  32920. height: math.unit(0.35, "feet"),
  32921. name: "Eye",
  32922. image: {
  32923. source: "./media/characters/jrain/eye.svg"
  32924. }
  32925. },
  32926. },
  32927. [
  32928. {
  32929. name: "Normal",
  32930. height: math.unit(6 + 8/12, "feet"),
  32931. default: true
  32932. },
  32933. {
  32934. name: "Casually Large",
  32935. height: math.unit(25, "feet")
  32936. },
  32937. {
  32938. name: "Giant",
  32939. height: math.unit(100, "feet")
  32940. },
  32941. {
  32942. name: "Kaiju",
  32943. height: math.unit(300, "feet")
  32944. },
  32945. ]
  32946. ))
  32947. characterMakers.push(() => makeCharacter(
  32948. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32949. {
  32950. dragon: {
  32951. height: math.unit(5, "meters"),
  32952. name: "Dragon",
  32953. image: {
  32954. source: "./media/characters/sabrina/dragon.svg",
  32955. extra: 3670 / 2365,
  32956. bottom: 333 / 4003
  32957. }
  32958. },
  32959. gryphon: {
  32960. height: math.unit(3, "meters"),
  32961. name: "Gryphon",
  32962. image: {
  32963. source: "./media/characters/sabrina/gryphon.svg",
  32964. extra: 1576 / 945,
  32965. bottom: 71 / 1647
  32966. }
  32967. },
  32968. snake: {
  32969. height: math.unit(12, "meters"),
  32970. name: "Snake",
  32971. image: {
  32972. source: "./media/characters/sabrina/snake.svg",
  32973. extra: 1758 / 1320,
  32974. bottom: 186 / 1944
  32975. }
  32976. },
  32977. collar: {
  32978. height: math.unit(1.86, "meters"),
  32979. name: "Collar",
  32980. image: {
  32981. source: "./media/characters/sabrina/collar.svg"
  32982. }
  32983. },
  32984. eye: {
  32985. height: math.unit(0.53, "meters"),
  32986. name: "Eye",
  32987. image: {
  32988. source: "./media/characters/sabrina/eye.svg"
  32989. }
  32990. },
  32991. foot: {
  32992. height: math.unit(1.86, "meters"),
  32993. name: "Foot",
  32994. image: {
  32995. source: "./media/characters/sabrina/foot.svg"
  32996. }
  32997. },
  32998. hand: {
  32999. height: math.unit(1.32, "meters"),
  33000. name: "Hand",
  33001. image: {
  33002. source: "./media/characters/sabrina/hand.svg"
  33003. }
  33004. },
  33005. head: {
  33006. height: math.unit(2.44, "meters"),
  33007. name: "Head",
  33008. image: {
  33009. source: "./media/characters/sabrina/head.svg"
  33010. }
  33011. },
  33012. headAngry: {
  33013. height: math.unit(2.44, "meters"),
  33014. name: "Head (Angry))",
  33015. image: {
  33016. source: "./media/characters/sabrina/head-angry.svg"
  33017. }
  33018. },
  33019. maw: {
  33020. height: math.unit(1.65, "meters"),
  33021. name: "Maw",
  33022. image: {
  33023. source: "./media/characters/sabrina/maw.svg"
  33024. }
  33025. },
  33026. spikes: {
  33027. height: math.unit(1.69, "meters"),
  33028. name: "Spikes",
  33029. image: {
  33030. source: "./media/characters/sabrina/spikes.svg"
  33031. }
  33032. },
  33033. stomach: {
  33034. height: math.unit(1.15, "meters"),
  33035. name: "Stomach",
  33036. image: {
  33037. source: "./media/characters/sabrina/stomach.svg"
  33038. }
  33039. },
  33040. tongue: {
  33041. height: math.unit(1.27, "meters"),
  33042. name: "Tongue",
  33043. image: {
  33044. source: "./media/characters/sabrina/tongue.svg"
  33045. }
  33046. },
  33047. wingDorsal: {
  33048. height: math.unit(4.85, "meters"),
  33049. name: "Wing (Dorsal)",
  33050. image: {
  33051. source: "./media/characters/sabrina/wing-dorsal.svg"
  33052. }
  33053. },
  33054. wingVentral: {
  33055. height: math.unit(4.85, "meters"),
  33056. name: "Wing (Ventral)",
  33057. image: {
  33058. source: "./media/characters/sabrina/wing-ventral.svg"
  33059. }
  33060. },
  33061. },
  33062. [
  33063. {
  33064. name: "Normal",
  33065. height: math.unit(5, "meters"),
  33066. default: true
  33067. },
  33068. ]
  33069. ))
  33070. characterMakers.push(() => makeCharacter(
  33071. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33072. {
  33073. frontMaid: {
  33074. height: math.unit(5 + 5/12, "feet"),
  33075. weight: math.unit(130, "lb"),
  33076. name: "Front (Maid)",
  33077. image: {
  33078. source: "./media/characters/midnight-tales/front-maid.svg",
  33079. extra: 489/454,
  33080. bottom: 61/550
  33081. }
  33082. },
  33083. frontFormal: {
  33084. height: math.unit(5 + 5/12, "feet"),
  33085. weight: math.unit(130, "lb"),
  33086. name: "Front (Formal)",
  33087. image: {
  33088. source: "./media/characters/midnight-tales/front-formal.svg",
  33089. extra: 489/454,
  33090. bottom: 61/550
  33091. }
  33092. },
  33093. back: {
  33094. height: math.unit(5 + 5/12, "feet"),
  33095. weight: math.unit(130, "lb"),
  33096. name: "Back",
  33097. image: {
  33098. source: "./media/characters/midnight-tales/back.svg",
  33099. extra: 498/456,
  33100. bottom: 33/531
  33101. }
  33102. },
  33103. frontBeast: {
  33104. height: math.unit(40, "feet"),
  33105. weight: math.unit(64000, "lb"),
  33106. name: "Front (Beast)",
  33107. image: {
  33108. source: "./media/characters/midnight-tales/front-beast.svg",
  33109. extra: 927/860,
  33110. bottom: 53/980
  33111. }
  33112. },
  33113. backBeast: {
  33114. height: math.unit(40, "feet"),
  33115. weight: math.unit(64000, "lb"),
  33116. name: "Back (Beast)",
  33117. image: {
  33118. source: "./media/characters/midnight-tales/back-beast.svg",
  33119. extra: 929/855,
  33120. bottom: 16/945
  33121. }
  33122. },
  33123. footBeast: {
  33124. height: math.unit(6.7, "feet"),
  33125. name: "Foot (Beast)",
  33126. image: {
  33127. source: "./media/characters/midnight-tales/foot-beast.svg"
  33128. }
  33129. },
  33130. headBeast: {
  33131. height: math.unit(8, "feet"),
  33132. name: "Head (Beast)",
  33133. image: {
  33134. source: "./media/characters/midnight-tales/head-beast.svg"
  33135. }
  33136. },
  33137. },
  33138. [
  33139. {
  33140. name: "Normal",
  33141. height: math.unit(5 + 5 / 12, "feet"),
  33142. default: true
  33143. },
  33144. {
  33145. name: "Macro",
  33146. height: math.unit(25, "feet")
  33147. },
  33148. ]
  33149. ))
  33150. characterMakers.push(() => makeCharacter(
  33151. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33152. {
  33153. front: {
  33154. height: math.unit(5 + 10/12, "feet"),
  33155. name: "Front",
  33156. image: {
  33157. source: "./media/characters/argon/front.svg",
  33158. extra: 2009/1935,
  33159. bottom: 118/2127
  33160. }
  33161. },
  33162. back: {
  33163. height: math.unit(5 + 10/12, "feet"),
  33164. name: "Back",
  33165. image: {
  33166. source: "./media/characters/argon/back.svg",
  33167. extra: 2047/1992,
  33168. bottom: 20/2067
  33169. }
  33170. },
  33171. frontDressed: {
  33172. height: math.unit(5 + 10/12, "feet"),
  33173. name: "Front (Dressed)",
  33174. image: {
  33175. source: "./media/characters/argon/front-dressed.svg",
  33176. extra: 2009/1935,
  33177. bottom: 118/2127
  33178. }
  33179. },
  33180. },
  33181. [
  33182. {
  33183. name: "Normal",
  33184. height: math.unit(5 + 10/12, "feet"),
  33185. default: true
  33186. },
  33187. ]
  33188. ))
  33189. characterMakers.push(() => makeCharacter(
  33190. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33191. {
  33192. front: {
  33193. height: math.unit(8 + 6/12, "feet"),
  33194. weight: math.unit(1150, "lb"),
  33195. name: "Front",
  33196. image: {
  33197. source: "./media/characters/kichi/front.svg",
  33198. extra: 1267/1164,
  33199. bottom: 61/1328
  33200. }
  33201. },
  33202. back: {
  33203. height: math.unit(8 + 6/12, "feet"),
  33204. weight: math.unit(1150, "lb"),
  33205. name: "Back",
  33206. image: {
  33207. source: "./media/characters/kichi/back.svg",
  33208. extra: 1273/1166,
  33209. bottom: 33/1306
  33210. }
  33211. },
  33212. },
  33213. [
  33214. {
  33215. name: "Normal",
  33216. height: math.unit(8 + 6/12, "feet"),
  33217. default: true
  33218. },
  33219. ]
  33220. ))
  33221. characterMakers.push(() => makeCharacter(
  33222. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33223. {
  33224. front: {
  33225. height: math.unit(6, "feet"),
  33226. weight: math.unit(210, "lb"),
  33227. name: "Front",
  33228. image: {
  33229. source: "./media/characters/manetel-greyscale/front.svg",
  33230. extra: 350/312,
  33231. bottom: 8/358
  33232. }
  33233. },
  33234. },
  33235. [
  33236. {
  33237. name: "Micro",
  33238. height: math.unit(2, "inches")
  33239. },
  33240. {
  33241. name: "Normal",
  33242. height: math.unit(6, "feet"),
  33243. default: true
  33244. },
  33245. {
  33246. name: "Minimacro",
  33247. height: math.unit(17, "feet")
  33248. },
  33249. {
  33250. name: "Macro",
  33251. height: math.unit(117, "feet")
  33252. },
  33253. ]
  33254. ))
  33255. characterMakers.push(() => makeCharacter(
  33256. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33257. {
  33258. side: {
  33259. height: math.unit(5 + 1/12, "feet"),
  33260. weight: math.unit(418, "lb"),
  33261. name: "Side",
  33262. image: {
  33263. source: "./media/characters/softpurr/side.svg",
  33264. extra: 1993/1945,
  33265. bottom: 134/2127
  33266. }
  33267. },
  33268. front: {
  33269. height: math.unit(5 + 1/12, "feet"),
  33270. weight: math.unit(418, "lb"),
  33271. name: "Front",
  33272. image: {
  33273. source: "./media/characters/softpurr/front.svg",
  33274. extra: 1950/1856,
  33275. bottom: 174/2124
  33276. }
  33277. },
  33278. paw: {
  33279. height: math.unit(1, "feet"),
  33280. name: "Paw",
  33281. image: {
  33282. source: "./media/characters/softpurr/paw.svg"
  33283. }
  33284. },
  33285. },
  33286. [
  33287. {
  33288. name: "Normal",
  33289. height: math.unit(5 + 1/12, "feet"),
  33290. default: true
  33291. },
  33292. ]
  33293. ))
  33294. characterMakers.push(() => makeCharacter(
  33295. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33296. {
  33297. front: {
  33298. height: math.unit(260, "meters"),
  33299. name: "Front",
  33300. image: {
  33301. source: "./media/characters/anahita/front.svg",
  33302. extra: 665/635,
  33303. bottom: 89/754
  33304. }
  33305. },
  33306. },
  33307. [
  33308. {
  33309. name: "Macro",
  33310. height: math.unit(260, "meters"),
  33311. default: true
  33312. },
  33313. ]
  33314. ))
  33315. characterMakers.push(() => makeCharacter(
  33316. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33317. {
  33318. front: {
  33319. height: math.unit(4 + 10/12, "feet"),
  33320. weight: math.unit(160, "lb"),
  33321. name: "Front",
  33322. image: {
  33323. source: "./media/characters/chip-mouse/front.svg",
  33324. extra: 3528/3408,
  33325. bottom: 0/3528
  33326. }
  33327. },
  33328. frontNsfw: {
  33329. height: math.unit(4 + 10/12, "feet"),
  33330. weight: math.unit(160, "lb"),
  33331. name: "Front (NSFW)",
  33332. image: {
  33333. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33334. extra: 3528/3408,
  33335. bottom: 0/3528
  33336. }
  33337. },
  33338. },
  33339. [
  33340. {
  33341. name: "Normal",
  33342. height: math.unit(4 + 10/12, "feet"),
  33343. default: true
  33344. },
  33345. ]
  33346. ))
  33347. characterMakers.push(() => makeCharacter(
  33348. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33349. {
  33350. side: {
  33351. height: math.unit(10, "feet"),
  33352. weight: math.unit(14000, "lb"),
  33353. name: "Side",
  33354. image: {
  33355. source: "./media/characters/kremm/side.svg",
  33356. extra: 1390/1053,
  33357. bottom: 90/1480
  33358. }
  33359. },
  33360. gut: {
  33361. height: math.unit(5.8, "feet"),
  33362. name: "Gut",
  33363. image: {
  33364. source: "./media/characters/kremm/gut.svg"
  33365. }
  33366. },
  33367. ass: {
  33368. height: math.unit(6.1, "feet"),
  33369. name: "Ass",
  33370. image: {
  33371. source: "./media/characters/kremm/ass.svg"
  33372. }
  33373. },
  33374. jaws: {
  33375. height: math.unit(2.2, "feet"),
  33376. name: "Jaws",
  33377. image: {
  33378. source: "./media/characters/kremm/jaws.svg"
  33379. }
  33380. },
  33381. dick: {
  33382. height: math.unit(4.26, "feet"),
  33383. name: "Dick",
  33384. image: {
  33385. source: "./media/characters/kremm/dick.svg"
  33386. }
  33387. },
  33388. },
  33389. [
  33390. {
  33391. name: "Normal",
  33392. height: math.unit(10, "feet"),
  33393. default: true
  33394. },
  33395. ]
  33396. ))
  33397. characterMakers.push(() => makeCharacter(
  33398. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33399. {
  33400. front: {
  33401. height: math.unit(30, "stories"),
  33402. name: "Front",
  33403. image: {
  33404. source: "./media/characters/kai/front.svg",
  33405. extra: 1892/1718,
  33406. bottom: 162/2054
  33407. }
  33408. },
  33409. },
  33410. [
  33411. {
  33412. name: "Macro",
  33413. height: math.unit(30, "stories"),
  33414. default: true
  33415. },
  33416. ]
  33417. ))
  33418. characterMakers.push(() => makeCharacter(
  33419. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33420. {
  33421. front: {
  33422. height: math.unit(6 + 4/12, "feet"),
  33423. weight: math.unit(145, "lb"),
  33424. name: "Front",
  33425. image: {
  33426. source: "./media/characters/sykes/front.svg",
  33427. extra: 1321 / 1187,
  33428. bottom: 66 / 1387
  33429. }
  33430. },
  33431. back: {
  33432. height: math.unit(6 + 4/12, "feet"),
  33433. weight: math.unit(145, "lb"),
  33434. name: "Back",
  33435. image: {
  33436. source: "./media/characters/sykes/back.svg",
  33437. extra: 1326/1181,
  33438. bottom: 31/1357
  33439. }
  33440. },
  33441. handBack: {
  33442. height: math.unit(0.9, "feet"),
  33443. name: "Hand (Back)",
  33444. image: {
  33445. source: "./media/characters/sykes/hand-back.svg"
  33446. }
  33447. },
  33448. handFront: {
  33449. height: math.unit(0.839, "feet"),
  33450. name: "Hand (Front)",
  33451. image: {
  33452. source: "./media/characters/sykes/hand-front.svg"
  33453. }
  33454. },
  33455. leftFoot: {
  33456. height: math.unit(1.2, "feet"),
  33457. name: "Foot (Left)",
  33458. image: {
  33459. source: "./media/characters/sykes/foot-left.svg"
  33460. }
  33461. },
  33462. rightFoot: {
  33463. height: math.unit(1.2, "feet"),
  33464. name: "Foot (Right)",
  33465. image: {
  33466. source: "./media/characters/sykes/foot-right.svg"
  33467. }
  33468. },
  33469. maw: {
  33470. height: math.unit(1.93, "feet"),
  33471. name: "Maw",
  33472. image: {
  33473. source: "./media/characters/sykes/maw.svg"
  33474. }
  33475. },
  33476. teeth: {
  33477. height: math.unit(0.51, "feet"),
  33478. name: "Teeth",
  33479. image: {
  33480. source: "./media/characters/sykes/teeth.svg"
  33481. }
  33482. },
  33483. tongue: {
  33484. height: math.unit(2.13, "feet"),
  33485. name: "Tongue",
  33486. image: {
  33487. source: "./media/characters/sykes/tongue.svg"
  33488. }
  33489. },
  33490. uvula: {
  33491. height: math.unit(0.16, "feet"),
  33492. name: "Uvula",
  33493. image: {
  33494. source: "./media/characters/sykes/uvula.svg"
  33495. }
  33496. },
  33497. collar: {
  33498. height: math.unit(0.287, "feet"),
  33499. name: "Collar",
  33500. image: {
  33501. source: "./media/characters/sykes/collar.svg"
  33502. }
  33503. },
  33504. },
  33505. [
  33506. {
  33507. name: "Shrunken",
  33508. height: math.unit(5, "inches")
  33509. },
  33510. {
  33511. name: "Normal",
  33512. height: math.unit(6 + 4 / 12, "feet"),
  33513. default: true
  33514. },
  33515. {
  33516. name: "Big",
  33517. height: math.unit(15, "feet")
  33518. },
  33519. ]
  33520. ))
  33521. characterMakers.push(() => makeCharacter(
  33522. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33523. {
  33524. front: {
  33525. height: math.unit(5 + 8/12, "feet"),
  33526. weight: math.unit(190, "lb"),
  33527. name: "Front",
  33528. image: {
  33529. source: "./media/characters/oven-otter/front.svg",
  33530. extra: 1809/1740,
  33531. bottom: 181/1990
  33532. }
  33533. },
  33534. back: {
  33535. height: math.unit(5 + 8/12, "feet"),
  33536. weight: math.unit(190, "lb"),
  33537. name: "Back",
  33538. image: {
  33539. source: "./media/characters/oven-otter/back.svg",
  33540. extra: 1709/1635,
  33541. bottom: 118/1827
  33542. }
  33543. },
  33544. hand: {
  33545. height: math.unit(1.07, "feet"),
  33546. name: "Hand",
  33547. image: {
  33548. source: "./media/characters/oven-otter/hand.svg"
  33549. }
  33550. },
  33551. beans: {
  33552. height: math.unit(1.74, "feet"),
  33553. name: "Beans",
  33554. image: {
  33555. source: "./media/characters/oven-otter/beans.svg"
  33556. }
  33557. },
  33558. },
  33559. [
  33560. {
  33561. name: "Micro",
  33562. height: math.unit(0.5, "inches")
  33563. },
  33564. {
  33565. name: "Normal",
  33566. height: math.unit(5 + 8/12, "feet"),
  33567. default: true
  33568. },
  33569. {
  33570. name: "Macro",
  33571. height: math.unit(250, "feet")
  33572. },
  33573. {
  33574. name: "Really High",
  33575. height: math.unit(420, "feet")
  33576. },
  33577. ]
  33578. ))
  33579. characterMakers.push(() => makeCharacter(
  33580. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33581. {
  33582. front: {
  33583. height: math.unit(5, "meters"),
  33584. weight: math.unit(292000000000000, "kg"),
  33585. name: "Front",
  33586. image: {
  33587. source: "./media/characters/devourer/front.svg",
  33588. extra: 1800/1733,
  33589. bottom: 211/2011
  33590. }
  33591. },
  33592. maw: {
  33593. height: math.unit(1.1, "meter"),
  33594. name: "Maw",
  33595. image: {
  33596. source: "./media/characters/devourer/maw.svg"
  33597. }
  33598. },
  33599. },
  33600. [
  33601. {
  33602. name: "Small",
  33603. height: math.unit(3, "meters")
  33604. },
  33605. {
  33606. name: "Large",
  33607. height: math.unit(5, "meters"),
  33608. default: true
  33609. },
  33610. ]
  33611. ))
  33612. characterMakers.push(() => makeCharacter(
  33613. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33614. {
  33615. front: {
  33616. height: math.unit(6, "feet"),
  33617. weight: math.unit(400, "lb"),
  33618. name: "Front",
  33619. image: {
  33620. source: "./media/characters/ellarby/front.svg",
  33621. extra: 1909/1763,
  33622. bottom: 80/1989
  33623. }
  33624. },
  33625. back: {
  33626. height: math.unit(6, "feet"),
  33627. weight: math.unit(400, "lb"),
  33628. name: "Back",
  33629. image: {
  33630. source: "./media/characters/ellarby/back.svg",
  33631. extra: 1914/1784,
  33632. bottom: 172/2086
  33633. }
  33634. },
  33635. },
  33636. [
  33637. {
  33638. name: "Mischief",
  33639. height: math.unit(18, "inches")
  33640. },
  33641. {
  33642. name: "Trouble",
  33643. height: math.unit(12, "feet")
  33644. },
  33645. {
  33646. name: "Havoc",
  33647. height: math.unit(200, "feet"),
  33648. default: true
  33649. },
  33650. {
  33651. name: "Pandemonium",
  33652. height: math.unit(1, "mile")
  33653. },
  33654. {
  33655. name: "Catastrophe",
  33656. height: math.unit(100, "miles")
  33657. },
  33658. ]
  33659. ))
  33660. characterMakers.push(() => makeCharacter(
  33661. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33662. {
  33663. front: {
  33664. height: math.unit(4.7, "meters"),
  33665. weight: math.unit(6500, "kg"),
  33666. name: "Front",
  33667. image: {
  33668. source: "./media/characters/vex/front.svg",
  33669. extra: 1288/1140,
  33670. bottom: 100/1388
  33671. }
  33672. },
  33673. },
  33674. [
  33675. {
  33676. name: "Normal",
  33677. height: math.unit(4.7, "meters"),
  33678. default: true
  33679. },
  33680. ]
  33681. ))
  33682. characterMakers.push(() => makeCharacter(
  33683. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33684. {
  33685. normal: {
  33686. height: math.unit(6, "feet"),
  33687. weight: math.unit(350, "lb"),
  33688. name: "Normal",
  33689. image: {
  33690. source: "./media/characters/teshy/normal.svg",
  33691. extra: 1795/1735,
  33692. bottom: 16/1811
  33693. }
  33694. },
  33695. monsterFront: {
  33696. height: math.unit(12, "feet"),
  33697. weight: math.unit(4700, "lb"),
  33698. name: "Monster (Front)",
  33699. image: {
  33700. source: "./media/characters/teshy/monster-front.svg",
  33701. extra: 2042/2034,
  33702. bottom: 128/2170
  33703. }
  33704. },
  33705. monsterSide: {
  33706. height: math.unit(12, "feet"),
  33707. weight: math.unit(4700, "lb"),
  33708. name: "Monster (Side)",
  33709. image: {
  33710. source: "./media/characters/teshy/monster-side.svg",
  33711. extra: 2067/2056,
  33712. bottom: 70/2137
  33713. }
  33714. },
  33715. monsterBack: {
  33716. height: math.unit(12, "feet"),
  33717. weight: math.unit(4700, "lb"),
  33718. name: "Monster (Back)",
  33719. image: {
  33720. source: "./media/characters/teshy/monster-back.svg",
  33721. extra: 1921/1914,
  33722. bottom: 171/2092
  33723. }
  33724. },
  33725. },
  33726. [
  33727. {
  33728. name: "Normal",
  33729. height: math.unit(6, "feet"),
  33730. default: true
  33731. },
  33732. ]
  33733. ))
  33734. characterMakers.push(() => makeCharacter(
  33735. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33736. {
  33737. front: {
  33738. height: math.unit(6, "feet"),
  33739. name: "Front",
  33740. image: {
  33741. source: "./media/characters/ramey/front.svg",
  33742. extra: 790/787,
  33743. bottom: 27/817
  33744. }
  33745. },
  33746. },
  33747. [
  33748. {
  33749. name: "Normal",
  33750. height: math.unit(6, "feet"),
  33751. default: true
  33752. },
  33753. ]
  33754. ))
  33755. characterMakers.push(() => makeCharacter(
  33756. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33757. {
  33758. front: {
  33759. height: math.unit(5 + 5/12, "feet"),
  33760. weight: math.unit(120, "lb"),
  33761. name: "Front",
  33762. image: {
  33763. source: "./media/characters/phirae/front.svg",
  33764. extra: 2491/2436,
  33765. bottom: 38/2529
  33766. }
  33767. },
  33768. },
  33769. [
  33770. {
  33771. name: "Normal",
  33772. height: math.unit(5 + 5/12, "feet"),
  33773. default: true
  33774. },
  33775. ]
  33776. ))
  33777. characterMakers.push(() => makeCharacter(
  33778. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33779. {
  33780. front: {
  33781. height: math.unit(6, "feet"),
  33782. weight: math.unit(150, "lb"),
  33783. name: "Front",
  33784. image: {
  33785. source: "./media/characters/stagglas/front.svg",
  33786. extra: 962/882,
  33787. bottom: 53/1015
  33788. }
  33789. },
  33790. },
  33791. [
  33792. {
  33793. name: "Normal",
  33794. height: math.unit(5 + 3/12, "feet"),
  33795. default: true
  33796. },
  33797. ]
  33798. ))
  33799. characterMakers.push(() => makeCharacter(
  33800. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33801. {
  33802. front: {
  33803. height: math.unit(5 + 4/12, "feet"),
  33804. weight: math.unit(145, "lb"),
  33805. name: "Front",
  33806. image: {
  33807. source: "./media/characters/starra/front.svg",
  33808. extra: 1790/1691,
  33809. bottom: 91/1881
  33810. }
  33811. },
  33812. },
  33813. [
  33814. {
  33815. name: "Normal",
  33816. height: math.unit(5 + 4/12, "feet"),
  33817. default: true
  33818. },
  33819. ]
  33820. ))
  33821. characterMakers.push(() => makeCharacter(
  33822. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33823. {
  33824. front: {
  33825. height: math.unit(2.2, "meters"),
  33826. name: "Front",
  33827. image: {
  33828. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33829. extra: 1194/1005,
  33830. bottom: 25/1219
  33831. }
  33832. },
  33833. },
  33834. [
  33835. {
  33836. name: "Normal",
  33837. height: math.unit(2.2, "meters"),
  33838. default: true
  33839. },
  33840. ]
  33841. ))
  33842. characterMakers.push(() => makeCharacter(
  33843. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33844. {
  33845. side: {
  33846. height: math.unit(8 + 2/12, "feet"),
  33847. weight: math.unit(1240, "lb"),
  33848. name: "Side",
  33849. image: {
  33850. source: "./media/characters/mika-valentine/side.svg",
  33851. extra: 2670/2501,
  33852. bottom: 250/2920
  33853. }
  33854. },
  33855. },
  33856. [
  33857. {
  33858. name: "Normal",
  33859. height: math.unit(8 + 2/12, "feet"),
  33860. default: true
  33861. },
  33862. ]
  33863. ))
  33864. characterMakers.push(() => makeCharacter(
  33865. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33866. {
  33867. front: {
  33868. height: math.unit(7 + 2/12, "feet"),
  33869. name: "Front",
  33870. image: {
  33871. source: "./media/characters/xoltol/front.svg",
  33872. extra: 2212/2124,
  33873. bottom: 84/2296
  33874. }
  33875. },
  33876. side: {
  33877. height: math.unit(7 + 2/12, "feet"),
  33878. name: "Side",
  33879. image: {
  33880. source: "./media/characters/xoltol/side.svg",
  33881. extra: 2273/2197,
  33882. bottom: 26/2299
  33883. }
  33884. },
  33885. hand: {
  33886. height: math.unit(2.5, "feet"),
  33887. name: "Hand",
  33888. image: {
  33889. source: "./media/characters/xoltol/hand.svg"
  33890. }
  33891. },
  33892. },
  33893. [
  33894. {
  33895. name: "Small-ish",
  33896. height: math.unit(5 + 11/12, "feet")
  33897. },
  33898. {
  33899. name: "Normal",
  33900. height: math.unit(7 + 2/12, "feet")
  33901. },
  33902. {
  33903. name: "\"Macro\"",
  33904. height: math.unit(14 + 9/12, "feet"),
  33905. default: true
  33906. },
  33907. {
  33908. name: "Alternate Height",
  33909. height: math.unit(20, "feet")
  33910. },
  33911. {
  33912. name: "Actually Macro",
  33913. height: math.unit(100, "feet")
  33914. },
  33915. ]
  33916. ))
  33917. characterMakers.push(() => makeCharacter(
  33918. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33919. {
  33920. front: {
  33921. height: math.unit(5 + 2/12, "feet"),
  33922. name: "Front",
  33923. image: {
  33924. source: "./media/characters/kotetsu-redwood/front.svg",
  33925. extra: 1053/942,
  33926. bottom: 60/1113
  33927. }
  33928. },
  33929. },
  33930. [
  33931. {
  33932. name: "Normal",
  33933. height: math.unit(5 + 2/12, "feet"),
  33934. default: true
  33935. },
  33936. ]
  33937. ))
  33938. characterMakers.push(() => makeCharacter(
  33939. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33940. {
  33941. front: {
  33942. height: math.unit(2.4, "meters"),
  33943. weight: math.unit(125, "kg"),
  33944. name: "Front",
  33945. image: {
  33946. source: "./media/characters/lilith/front.svg",
  33947. extra: 1590/1513,
  33948. bottom: 203/1793
  33949. }
  33950. },
  33951. },
  33952. [
  33953. {
  33954. name: "Humanoid",
  33955. height: math.unit(2.4, "meters")
  33956. },
  33957. {
  33958. name: "Normal",
  33959. height: math.unit(6, "meters"),
  33960. default: true
  33961. },
  33962. {
  33963. name: "Largest",
  33964. height: math.unit(55, "meters")
  33965. },
  33966. ]
  33967. ))
  33968. characterMakers.push(() => makeCharacter(
  33969. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33970. {
  33971. front: {
  33972. height: math.unit(8 + 4/12, "feet"),
  33973. weight: math.unit(535, "lb"),
  33974. name: "Front",
  33975. image: {
  33976. source: "./media/characters/beh'kah-bolger/front.svg",
  33977. extra: 1660/1603,
  33978. bottom: 37/1697
  33979. }
  33980. },
  33981. },
  33982. [
  33983. {
  33984. name: "Normal",
  33985. height: math.unit(8 + 4/12, "feet"),
  33986. default: true
  33987. },
  33988. {
  33989. name: "Kaiju",
  33990. height: math.unit(250, "feet")
  33991. },
  33992. {
  33993. name: "Still Growing",
  33994. height: math.unit(10, "miles")
  33995. },
  33996. {
  33997. name: "Continental",
  33998. height: math.unit(5000, "miles")
  33999. },
  34000. {
  34001. name: "Final Form",
  34002. height: math.unit(2500000, "miles")
  34003. },
  34004. ]
  34005. ))
  34006. characterMakers.push(() => makeCharacter(
  34007. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34008. {
  34009. front: {
  34010. height: math.unit(7 + 2/12, "feet"),
  34011. weight: math.unit(230, "kg"),
  34012. name: "Front",
  34013. image: {
  34014. source: "./media/characters/tatyana-milewska/front.svg",
  34015. extra: 1199/1150,
  34016. bottom: 86/1285
  34017. }
  34018. },
  34019. },
  34020. [
  34021. {
  34022. name: "Normal",
  34023. height: math.unit(7 + 2/12, "feet"),
  34024. default: true
  34025. },
  34026. {
  34027. name: "Big",
  34028. height: math.unit(12, "feet")
  34029. },
  34030. {
  34031. name: "Minimacro",
  34032. height: math.unit(20, "feet")
  34033. },
  34034. {
  34035. name: "Macro",
  34036. height: math.unit(120, "feet")
  34037. },
  34038. ]
  34039. ))
  34040. characterMakers.push(() => makeCharacter(
  34041. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34042. {
  34043. front: {
  34044. height: math.unit(7 + 8/12, "feet"),
  34045. weight: math.unit(152, "kg"),
  34046. name: "Front",
  34047. image: {
  34048. source: "./media/characters/helen-arri/front.svg",
  34049. extra: 440/423,
  34050. bottom: 14/454
  34051. }
  34052. },
  34053. back: {
  34054. height: math.unit(7 + 8/12, "feet"),
  34055. weight: math.unit(152, "kg"),
  34056. name: "Back",
  34057. image: {
  34058. source: "./media/characters/helen-arri/back.svg",
  34059. extra: 443/426,
  34060. bottom: 8/451
  34061. }
  34062. },
  34063. },
  34064. [
  34065. {
  34066. name: "Normal",
  34067. height: math.unit(7 + 8/12, "feet"),
  34068. default: true
  34069. },
  34070. {
  34071. name: "Big",
  34072. height: math.unit(14, "feet")
  34073. },
  34074. {
  34075. name: "Minimacro",
  34076. height: math.unit(24, "feet")
  34077. },
  34078. {
  34079. name: "Macro",
  34080. height: math.unit(140, "feet")
  34081. },
  34082. ]
  34083. ))
  34084. characterMakers.push(() => makeCharacter(
  34085. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34086. {
  34087. front: {
  34088. height: math.unit(6, "meters"),
  34089. name: "Front",
  34090. image: {
  34091. source: "./media/characters/ehanu-rehu/front.svg",
  34092. extra: 1800/1800,
  34093. bottom: 59/1859
  34094. }
  34095. },
  34096. },
  34097. [
  34098. {
  34099. name: "Normal",
  34100. height: math.unit(6, "meters"),
  34101. default: true
  34102. },
  34103. ]
  34104. ))
  34105. characterMakers.push(() => makeCharacter(
  34106. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34107. {
  34108. front: {
  34109. height: math.unit(7 + 3/12, "feet"),
  34110. name: "Front",
  34111. image: {
  34112. source: "./media/characters/renholder/front.svg",
  34113. extra: 3096/2960,
  34114. bottom: 250/3346
  34115. }
  34116. },
  34117. },
  34118. [
  34119. {
  34120. name: "Normal Bat",
  34121. height: math.unit(7 + 3/12, "feet"),
  34122. default: true
  34123. },
  34124. {
  34125. name: "Slightly Tall Bat",
  34126. height: math.unit(100, "feet")
  34127. },
  34128. {
  34129. name: "Big Bat",
  34130. height: math.unit(1000, "feet")
  34131. },
  34132. {
  34133. name: "City-Sized Bat",
  34134. height: math.unit(200000, "feet")
  34135. },
  34136. {
  34137. name: "Bigger Bat",
  34138. height: math.unit(10000, "miles")
  34139. },
  34140. {
  34141. name: "Solar Sized Bat",
  34142. height: math.unit(100, "AU")
  34143. },
  34144. {
  34145. name: "Galactic Bat",
  34146. height: math.unit(200000, "lightyears")
  34147. },
  34148. {
  34149. name: "Universally Known Bat",
  34150. height: math.unit(1, "universe")
  34151. },
  34152. ]
  34153. ))
  34154. characterMakers.push(() => makeCharacter(
  34155. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34156. {
  34157. front: {
  34158. height: math.unit(6 + 11/12, "feet"),
  34159. weight: math.unit(250, "lb"),
  34160. name: "Front",
  34161. image: {
  34162. source: "./media/characters/cookiecat/front.svg",
  34163. extra: 893/827,
  34164. bottom: 14/907
  34165. }
  34166. },
  34167. },
  34168. [
  34169. {
  34170. name: "Micro",
  34171. height: math.unit(3, "inches")
  34172. },
  34173. {
  34174. name: "Normal",
  34175. height: math.unit(6 + 11/12, "feet"),
  34176. default: true
  34177. },
  34178. {
  34179. name: "Macro",
  34180. height: math.unit(100, "feet")
  34181. },
  34182. {
  34183. name: "Macro+",
  34184. height: math.unit(404, "feet")
  34185. },
  34186. {
  34187. name: "Megamacro",
  34188. height: math.unit(165, "miles")
  34189. },
  34190. {
  34191. name: "Planetary",
  34192. height: math.unit(4600, "miles")
  34193. },
  34194. ]
  34195. ))
  34196. characterMakers.push(() => makeCharacter(
  34197. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34198. {
  34199. front: {
  34200. height: math.unit(10 + 3/12, "feet"),
  34201. weight: math.unit(1500, "lb"),
  34202. name: "Front",
  34203. image: {
  34204. source: "./media/characters/tux-kusanagi/front.svg",
  34205. extra: 944/840,
  34206. bottom: 39/983
  34207. }
  34208. },
  34209. back: {
  34210. height: math.unit(10 + 3/12, "feet"),
  34211. weight: math.unit(1500, "lb"),
  34212. name: "Back",
  34213. image: {
  34214. source: "./media/characters/tux-kusanagi/back.svg",
  34215. extra: 941/842,
  34216. bottom: 28/969
  34217. }
  34218. },
  34219. rump: {
  34220. height: math.unit(5.25, "feet"),
  34221. name: "Rump",
  34222. image: {
  34223. source: "./media/characters/tux-kusanagi/rump.svg"
  34224. }
  34225. },
  34226. beak: {
  34227. height: math.unit(1.54, "feet"),
  34228. name: "Beak",
  34229. image: {
  34230. source: "./media/characters/tux-kusanagi/beak.svg"
  34231. }
  34232. },
  34233. },
  34234. [
  34235. {
  34236. name: "Normal",
  34237. height: math.unit(10 + 3/12, "feet"),
  34238. default: true
  34239. },
  34240. ]
  34241. ))
  34242. characterMakers.push(() => makeCharacter(
  34243. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34244. {
  34245. front: {
  34246. height: math.unit(58, "feet"),
  34247. weight: math.unit(200, "tons"),
  34248. name: "Front",
  34249. image: {
  34250. source: "./media/characters/uzarmazari/front.svg",
  34251. extra: 1575/1455,
  34252. bottom: 152/1727
  34253. }
  34254. },
  34255. back: {
  34256. height: math.unit(58, "feet"),
  34257. weight: math.unit(200, "tons"),
  34258. name: "Back",
  34259. image: {
  34260. source: "./media/characters/uzarmazari/back.svg",
  34261. extra: 1585/1510,
  34262. bottom: 157/1742
  34263. }
  34264. },
  34265. head: {
  34266. height: math.unit(26, "feet"),
  34267. name: "Head",
  34268. image: {
  34269. source: "./media/characters/uzarmazari/head.svg"
  34270. }
  34271. },
  34272. },
  34273. [
  34274. {
  34275. name: "Normal",
  34276. height: math.unit(58, "feet"),
  34277. default: true
  34278. },
  34279. ]
  34280. ))
  34281. characterMakers.push(() => makeCharacter(
  34282. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34283. {
  34284. side: {
  34285. height: math.unit(15, "feet"),
  34286. name: "Side",
  34287. image: {
  34288. source: "./media/characters/akitu/side.svg",
  34289. extra: 1421/1321,
  34290. bottom: 157/1578
  34291. }
  34292. },
  34293. front: {
  34294. height: math.unit(15, "feet"),
  34295. name: "Front",
  34296. image: {
  34297. source: "./media/characters/akitu/front.svg",
  34298. extra: 1435/1326,
  34299. bottom: 232/1667
  34300. }
  34301. },
  34302. },
  34303. [
  34304. {
  34305. name: "Normal",
  34306. height: math.unit(15, "feet"),
  34307. default: true
  34308. },
  34309. ]
  34310. ))
  34311. characterMakers.push(() => makeCharacter(
  34312. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34313. {
  34314. front: {
  34315. height: math.unit(10 + 8/12, "feet"),
  34316. name: "Front",
  34317. image: {
  34318. source: "./media/characters/azalie-croixland/front.svg",
  34319. extra: 1972/1856,
  34320. bottom: 31/2003
  34321. }
  34322. },
  34323. },
  34324. [
  34325. {
  34326. name: "Original Height",
  34327. height: math.unit(5 + 4/12, "feet")
  34328. },
  34329. {
  34330. name: "Normal Height",
  34331. height: math.unit(10 + 8/12, "feet"),
  34332. default: true
  34333. },
  34334. ]
  34335. ))
  34336. characterMakers.push(() => makeCharacter(
  34337. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34338. {
  34339. side: {
  34340. height: math.unit(7 + 1/12, "feet"),
  34341. weight: math.unit(245, "lb"),
  34342. name: "Side",
  34343. image: {
  34344. source: "./media/characters/kavus-kazian/side.svg",
  34345. extra: 349/342,
  34346. bottom: 15/364
  34347. }
  34348. },
  34349. },
  34350. [
  34351. {
  34352. name: "Normal",
  34353. height: math.unit(7 + 1/12, "feet"),
  34354. default: true
  34355. },
  34356. ]
  34357. ))
  34358. characterMakers.push(() => makeCharacter(
  34359. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34360. {
  34361. normal: {
  34362. height: math.unit(5 + 11/12, "feet"),
  34363. name: "Normal",
  34364. image: {
  34365. source: "./media/characters/moonlight-rose/normal.svg",
  34366. extra: 1979/1835,
  34367. bottom: 14/1993
  34368. }
  34369. },
  34370. demon: {
  34371. height: math.unit(5, "km"),
  34372. name: "Demon",
  34373. image: {
  34374. source: "./media/characters/moonlight-rose/demon.svg",
  34375. extra: 986/916,
  34376. bottom: 28/1014
  34377. }
  34378. },
  34379. },
  34380. [
  34381. {
  34382. name: "\"Natural\" height",
  34383. height: math.unit(5 + 11/12, "feet")
  34384. },
  34385. {
  34386. name: "Comfortable Size",
  34387. height: math.unit(40, "meters")
  34388. },
  34389. {
  34390. name: "Common Size",
  34391. height: math.unit(50, "km"),
  34392. default: true
  34393. },
  34394. {
  34395. name: "Demonic",
  34396. height: math.unit(1.24415e+21, "meters")
  34397. },
  34398. ]
  34399. ))
  34400. characterMakers.push(() => makeCharacter(
  34401. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34402. {
  34403. front: {
  34404. height: math.unit(16, "feet"),
  34405. weight: math.unit(610, "kg"),
  34406. name: "Front",
  34407. image: {
  34408. source: "./media/characters/huckle/front.svg",
  34409. extra: 1731/1625,
  34410. bottom: 33/1764
  34411. }
  34412. },
  34413. back: {
  34414. height: math.unit(16, "feet"),
  34415. weight: math.unit(610, "kg"),
  34416. name: "Back",
  34417. image: {
  34418. source: "./media/characters/huckle/back.svg",
  34419. extra: 1738/1651,
  34420. bottom: 37/1775
  34421. }
  34422. },
  34423. laughing: {
  34424. height: math.unit(3.75, "feet"),
  34425. name: "Laughing",
  34426. image: {
  34427. source: "./media/characters/huckle/laughing.svg"
  34428. }
  34429. },
  34430. angry: {
  34431. height: math.unit(4.15, "feet"),
  34432. name: "Angry",
  34433. image: {
  34434. source: "./media/characters/huckle/angry.svg"
  34435. }
  34436. },
  34437. },
  34438. [
  34439. {
  34440. name: "Normal",
  34441. height: math.unit(16, "feet"),
  34442. default: true
  34443. },
  34444. {
  34445. name: "Mini Macro",
  34446. height: math.unit(463, "feet")
  34447. },
  34448. {
  34449. name: "Macro",
  34450. height: math.unit(1680, "meters")
  34451. },
  34452. {
  34453. name: "Mega Macro",
  34454. height: math.unit(175, "km")
  34455. },
  34456. {
  34457. name: "Terra Macro",
  34458. height: math.unit(32, "gigameters")
  34459. },
  34460. {
  34461. name: "Multiverse+",
  34462. height: math.unit(2.56e23, "yottameters")
  34463. },
  34464. ]
  34465. ))
  34466. characterMakers.push(() => makeCharacter(
  34467. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34468. {
  34469. front: {
  34470. height: math.unit(6 + 9/12, "feet"),
  34471. weight: math.unit(280, "lb"),
  34472. name: "Front",
  34473. image: {
  34474. source: "./media/characters/candy/front.svg",
  34475. extra: 234/217,
  34476. bottom: 11/245
  34477. }
  34478. },
  34479. },
  34480. [
  34481. {
  34482. name: "Really Small",
  34483. height: math.unit(0.1, "nm")
  34484. },
  34485. {
  34486. name: "Micro",
  34487. height: math.unit(2, "inches")
  34488. },
  34489. {
  34490. name: "Normal",
  34491. height: math.unit(6 + 9/12, "feet"),
  34492. default: true
  34493. },
  34494. {
  34495. name: "Small Macro",
  34496. height: math.unit(69, "feet")
  34497. },
  34498. {
  34499. name: "Macro",
  34500. height: math.unit(160, "feet")
  34501. },
  34502. {
  34503. name: "Megamacro",
  34504. height: math.unit(22000, "miles")
  34505. },
  34506. {
  34507. name: "Gigamacro",
  34508. height: math.unit(50000, "miles")
  34509. },
  34510. ]
  34511. ))
  34512. characterMakers.push(() => makeCharacter(
  34513. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34514. {
  34515. front: {
  34516. height: math.unit(4, "feet"),
  34517. weight: math.unit(90, "lb"),
  34518. name: "Front",
  34519. image: {
  34520. source: "./media/characters/joey-mcdonald/front.svg",
  34521. extra: 1059/852,
  34522. bottom: 33/1092
  34523. }
  34524. },
  34525. back: {
  34526. height: math.unit(4, "feet"),
  34527. weight: math.unit(90, "lb"),
  34528. name: "Back",
  34529. image: {
  34530. source: "./media/characters/joey-mcdonald/back.svg",
  34531. extra: 1077/879,
  34532. bottom: 5/1082
  34533. }
  34534. },
  34535. },
  34536. [
  34537. {
  34538. name: "Normal",
  34539. height: math.unit(4, "feet"),
  34540. default: true
  34541. },
  34542. ]
  34543. ))
  34544. characterMakers.push(() => makeCharacter(
  34545. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34546. {
  34547. front: {
  34548. height: math.unit(12 + 6/12, "feet"),
  34549. name: "Front",
  34550. image: {
  34551. source: "./media/characters/kass-lockheed/front.svg",
  34552. extra: 354/343,
  34553. bottom: 9/363
  34554. }
  34555. },
  34556. back: {
  34557. height: math.unit(12 + 6/12, "feet"),
  34558. name: "Back",
  34559. image: {
  34560. source: "./media/characters/kass-lockheed/back.svg",
  34561. extra: 364/352,
  34562. bottom: 3/367
  34563. }
  34564. },
  34565. dick: {
  34566. height: math.unit(3.12, "feet"),
  34567. name: "Dick",
  34568. image: {
  34569. source: "./media/characters/kass-lockheed/dick.svg"
  34570. }
  34571. },
  34572. head: {
  34573. height: math.unit(2.6, "feet"),
  34574. name: "Head",
  34575. image: {
  34576. source: "./media/characters/kass-lockheed/head.svg"
  34577. }
  34578. },
  34579. bleh: {
  34580. height: math.unit(2.85, "feet"),
  34581. name: "Bleh",
  34582. image: {
  34583. source: "./media/characters/kass-lockheed/bleh.svg"
  34584. }
  34585. },
  34586. smug: {
  34587. height: math.unit(2.85, "feet"),
  34588. name: "Smug",
  34589. image: {
  34590. source: "./media/characters/kass-lockheed/smug.svg"
  34591. }
  34592. },
  34593. },
  34594. [
  34595. {
  34596. name: "Normal",
  34597. height: math.unit(12 + 6/12, "feet"),
  34598. default: true
  34599. },
  34600. ]
  34601. ))
  34602. characterMakers.push(() => makeCharacter(
  34603. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34604. {
  34605. front: {
  34606. height: math.unit(6 + 2/12, "feet"),
  34607. name: "Front",
  34608. image: {
  34609. source: "./media/characters/taylor/front.svg",
  34610. extra: 639/495,
  34611. bottom: 12/651
  34612. }
  34613. },
  34614. },
  34615. [
  34616. {
  34617. name: "Normal",
  34618. height: math.unit(6 + 2/12, "feet"),
  34619. default: true
  34620. },
  34621. {
  34622. name: "Big",
  34623. height: math.unit(15, "feet")
  34624. },
  34625. {
  34626. name: "Lorg",
  34627. height: math.unit(80, "feet")
  34628. },
  34629. {
  34630. name: "Too Lorg",
  34631. height: math.unit(120, "feet")
  34632. },
  34633. ]
  34634. ))
  34635. characterMakers.push(() => makeCharacter(
  34636. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34637. {
  34638. front: {
  34639. height: math.unit(15, "feet"),
  34640. name: "Front",
  34641. image: {
  34642. source: "./media/characters/kaizer/front.svg",
  34643. extra: 1612/1436,
  34644. bottom: 43/1655
  34645. }
  34646. },
  34647. },
  34648. [
  34649. {
  34650. name: "Normal",
  34651. height: math.unit(15, "feet"),
  34652. default: true
  34653. },
  34654. ]
  34655. ))
  34656. characterMakers.push(() => makeCharacter(
  34657. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34658. {
  34659. front: {
  34660. height: math.unit(2, "feet"),
  34661. weight: math.unit(30, "lb"),
  34662. name: "Front",
  34663. image: {
  34664. source: "./media/characters/sandy/front.svg",
  34665. extra: 1439/1307,
  34666. bottom: 194/1633
  34667. }
  34668. },
  34669. },
  34670. [
  34671. {
  34672. name: "Normal",
  34673. height: math.unit(2, "feet"),
  34674. default: true
  34675. },
  34676. ]
  34677. ))
  34678. characterMakers.push(() => makeCharacter(
  34679. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34680. {
  34681. front: {
  34682. height: math.unit(3, "feet"),
  34683. name: "Front",
  34684. image: {
  34685. source: "./media/characters/mellvi/front.svg",
  34686. extra: 1831/1630,
  34687. bottom: 58/1889
  34688. }
  34689. },
  34690. },
  34691. [
  34692. {
  34693. name: "Normal",
  34694. height: math.unit(3, "feet"),
  34695. default: true
  34696. },
  34697. ]
  34698. ))
  34699. characterMakers.push(() => makeCharacter(
  34700. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34701. {
  34702. front: {
  34703. height: math.unit(5 + 11/12, "feet"),
  34704. weight: math.unit(200, "lb"),
  34705. name: "Front",
  34706. image: {
  34707. source: "./media/characters/shirou/front.svg",
  34708. extra: 2491/2383,
  34709. bottom: 189/2680
  34710. }
  34711. },
  34712. back: {
  34713. height: math.unit(5 + 11/12, "feet"),
  34714. weight: math.unit(200, "lb"),
  34715. name: "Back",
  34716. image: {
  34717. source: "./media/characters/shirou/back.svg",
  34718. extra: 2554/2450,
  34719. bottom: 76/2630
  34720. }
  34721. },
  34722. },
  34723. [
  34724. {
  34725. name: "Normal",
  34726. height: math.unit(5 + 11/12, "feet"),
  34727. default: true
  34728. },
  34729. ]
  34730. ))
  34731. characterMakers.push(() => makeCharacter(
  34732. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34733. {
  34734. front: {
  34735. height: math.unit(6 + 3/12, "feet"),
  34736. weight: math.unit(177, "lb"),
  34737. name: "Front",
  34738. image: {
  34739. source: "./media/characters/noryu/front.svg",
  34740. extra: 973/885,
  34741. bottom: 10/983
  34742. }
  34743. },
  34744. },
  34745. [
  34746. {
  34747. name: "Normal",
  34748. height: math.unit(6 + 3/12, "feet"),
  34749. default: true
  34750. },
  34751. ]
  34752. ))
  34753. characterMakers.push(() => makeCharacter(
  34754. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34755. {
  34756. front: {
  34757. height: math.unit(5 + 6/12, "feet"),
  34758. weight: math.unit(170, "lb"),
  34759. name: "Front",
  34760. image: {
  34761. source: "./media/characters/mevolas-rubenido/front.svg",
  34762. extra: 2109/1901,
  34763. bottom: 96/2205
  34764. }
  34765. },
  34766. },
  34767. [
  34768. {
  34769. name: "Normal",
  34770. height: math.unit(5 + 6/12, "feet"),
  34771. default: true
  34772. },
  34773. ]
  34774. ))
  34775. characterMakers.push(() => makeCharacter(
  34776. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34777. {
  34778. front: {
  34779. height: math.unit(100, "feet"),
  34780. name: "Front",
  34781. image: {
  34782. source: "./media/characters/dee/front.svg",
  34783. extra: 2153/2036,
  34784. bottom: 59/2212
  34785. }
  34786. },
  34787. back: {
  34788. height: math.unit(100, "feet"),
  34789. name: "Back",
  34790. image: {
  34791. source: "./media/characters/dee/back.svg",
  34792. extra: 2183/2058,
  34793. bottom: 75/2258
  34794. }
  34795. },
  34796. foot: {
  34797. height: math.unit(19.43, "feet"),
  34798. name: "Foot",
  34799. image: {
  34800. source: "./media/characters/dee/foot.svg"
  34801. }
  34802. },
  34803. hoof: {
  34804. height: math.unit(20.6, "feet"),
  34805. name: "Hoof",
  34806. image: {
  34807. source: "./media/characters/dee/hoof.svg"
  34808. }
  34809. },
  34810. },
  34811. [
  34812. {
  34813. name: "Macro",
  34814. height: math.unit(100, "feet"),
  34815. default: true
  34816. },
  34817. ]
  34818. ))
  34819. characterMakers.push(() => makeCharacter(
  34820. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34821. {
  34822. front: {
  34823. height: math.unit(5 + 6/12, "feet"),
  34824. name: "Front",
  34825. image: {
  34826. source: "./media/characters/teh/front.svg",
  34827. extra: 1002/847,
  34828. bottom: 62/1064
  34829. }
  34830. },
  34831. },
  34832. [
  34833. {
  34834. name: "Normal",
  34835. height: math.unit(5 + 6/12, "feet"),
  34836. default: true
  34837. },
  34838. ]
  34839. ))
  34840. characterMakers.push(() => makeCharacter(
  34841. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34842. {
  34843. side: {
  34844. height: math.unit(6 + 1/12, "feet"),
  34845. weight: math.unit(204, "lb"),
  34846. name: "Side",
  34847. image: {
  34848. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34849. extra: 974/775,
  34850. bottom: 169/1143
  34851. }
  34852. },
  34853. sitting: {
  34854. height: math.unit(6 + 2/12, "feet"),
  34855. weight: math.unit(204, "lb"),
  34856. name: "Sitting",
  34857. image: {
  34858. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34859. extra: 1175/964,
  34860. bottom: 378/1553
  34861. }
  34862. },
  34863. },
  34864. [
  34865. {
  34866. name: "Normal",
  34867. height: math.unit(6 + 1/12, "feet"),
  34868. default: true
  34869. },
  34870. ]
  34871. ))
  34872. characterMakers.push(() => makeCharacter(
  34873. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34874. {
  34875. front: {
  34876. height: math.unit(6, "inches"),
  34877. name: "Front",
  34878. image: {
  34879. source: "./media/characters/tululi/front.svg",
  34880. extra: 1997/1876,
  34881. bottom: 20/2017
  34882. }
  34883. },
  34884. },
  34885. [
  34886. {
  34887. name: "Normal",
  34888. height: math.unit(6, "inches"),
  34889. default: true
  34890. },
  34891. ]
  34892. ))
  34893. characterMakers.push(() => makeCharacter(
  34894. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34895. {
  34896. front: {
  34897. height: math.unit(4 + 1/12, "feet"),
  34898. name: "Front",
  34899. image: {
  34900. source: "./media/characters/star/front.svg",
  34901. extra: 1493/1189,
  34902. bottom: 48/1541
  34903. }
  34904. },
  34905. },
  34906. [
  34907. {
  34908. name: "Normal",
  34909. height: math.unit(4 + 1/12, "feet"),
  34910. default: true
  34911. },
  34912. ]
  34913. ))
  34914. characterMakers.push(() => makeCharacter(
  34915. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34916. {
  34917. front: {
  34918. height: math.unit(6 + 3/12, "feet"),
  34919. name: "Front",
  34920. image: {
  34921. source: "./media/characters/comet/front.svg",
  34922. extra: 1681/1462,
  34923. bottom: 26/1707
  34924. }
  34925. },
  34926. },
  34927. [
  34928. {
  34929. name: "Normal",
  34930. height: math.unit(6 + 3/12, "feet"),
  34931. default: true
  34932. },
  34933. ]
  34934. ))
  34935. characterMakers.push(() => makeCharacter(
  34936. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34937. {
  34938. front: {
  34939. height: math.unit(950, "feet"),
  34940. name: "Front",
  34941. image: {
  34942. source: "./media/characters/vortex/front.svg",
  34943. extra: 1497/1434,
  34944. bottom: 56/1553
  34945. }
  34946. },
  34947. maw: {
  34948. height: math.unit(285, "feet"),
  34949. name: "Maw",
  34950. image: {
  34951. source: "./media/characters/vortex/maw.svg"
  34952. }
  34953. },
  34954. },
  34955. [
  34956. {
  34957. name: "Macro",
  34958. height: math.unit(950, "feet"),
  34959. default: true
  34960. },
  34961. ]
  34962. ))
  34963. characterMakers.push(() => makeCharacter(
  34964. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34965. {
  34966. front: {
  34967. height: math.unit(600, "feet"),
  34968. weight: math.unit(0.02, "grams"),
  34969. name: "Front",
  34970. image: {
  34971. source: "./media/characters/doodle/front.svg",
  34972. extra: 1578/1413,
  34973. bottom: 37/1615
  34974. }
  34975. },
  34976. },
  34977. [
  34978. {
  34979. name: "Macro",
  34980. height: math.unit(600, "feet"),
  34981. default: true
  34982. },
  34983. ]
  34984. ))
  34985. characterMakers.push(() => makeCharacter(
  34986. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34987. {
  34988. front: {
  34989. height: math.unit(6 + 6/12, "feet"),
  34990. name: "Front",
  34991. image: {
  34992. source: "./media/characters/jai/front.svg",
  34993. extra: 1645/1534,
  34994. bottom: 115/1760
  34995. }
  34996. },
  34997. },
  34998. [
  34999. {
  35000. name: "Normal",
  35001. height: math.unit(6 + 6/12, "feet"),
  35002. default: true
  35003. },
  35004. ]
  35005. ))
  35006. characterMakers.push(() => makeCharacter(
  35007. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35008. {
  35009. front: {
  35010. height: math.unit(6 + 8/12, "feet"),
  35011. name: "Front",
  35012. image: {
  35013. source: "./media/characters/pixel/front.svg",
  35014. extra: 1900/1735,
  35015. bottom: 63/1963
  35016. }
  35017. },
  35018. },
  35019. [
  35020. {
  35021. name: "Normal",
  35022. height: math.unit(6 + 8/12, "feet"),
  35023. default: true
  35024. },
  35025. ]
  35026. ))
  35027. characterMakers.push(() => makeCharacter(
  35028. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35029. {
  35030. front: {
  35031. height: math.unit(4 + 11/12, "feet"),
  35032. weight: math.unit(111, "lb"),
  35033. name: "Front",
  35034. image: {
  35035. source: "./media/characters/rhett/front.svg",
  35036. extra: 1682/1586,
  35037. bottom: 92/1774
  35038. }
  35039. },
  35040. },
  35041. [
  35042. {
  35043. name: "Mini",
  35044. height: math.unit(1 + 1/12, "feet")
  35045. },
  35046. {
  35047. name: "Normal",
  35048. height: math.unit(4 + 11/12, "feet"),
  35049. default: true
  35050. },
  35051. ]
  35052. ))
  35053. characterMakers.push(() => makeCharacter(
  35054. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35055. {
  35056. front: {
  35057. height: math.unit(3 + 3/12, "feet"),
  35058. name: "Front",
  35059. image: {
  35060. source: "./media/characters/penny/front.svg",
  35061. extra: 1406/1311,
  35062. bottom: 26/1432
  35063. }
  35064. },
  35065. },
  35066. [
  35067. {
  35068. name: "Normal",
  35069. height: math.unit(3 + 3/12, "feet"),
  35070. default: true
  35071. },
  35072. ]
  35073. ))
  35074. characterMakers.push(() => makeCharacter(
  35075. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35076. {
  35077. front: {
  35078. height: math.unit(4 + 11/12, "feet"),
  35079. name: "Front",
  35080. image: {
  35081. source: "./media/characters/monty/front.svg",
  35082. extra: 1479/1209,
  35083. bottom: 0/1479
  35084. }
  35085. },
  35086. },
  35087. [
  35088. {
  35089. name: "Normal",
  35090. height: math.unit(4 + 11/12, "feet"),
  35091. default: true
  35092. },
  35093. ]
  35094. ))
  35095. characterMakers.push(() => makeCharacter(
  35096. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35097. {
  35098. front: {
  35099. height: math.unit(8 + 4/12, "feet"),
  35100. name: "Front",
  35101. image: {
  35102. source: "./media/characters/sterling/front.svg",
  35103. extra: 1420/1236,
  35104. bottom: 27/1447
  35105. }
  35106. },
  35107. },
  35108. [
  35109. {
  35110. name: "Normal",
  35111. height: math.unit(8 + 4/12, "feet"),
  35112. default: true
  35113. },
  35114. ]
  35115. ))
  35116. characterMakers.push(() => makeCharacter(
  35117. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35118. {
  35119. front: {
  35120. height: math.unit(15, "feet"),
  35121. name: "Front",
  35122. image: {
  35123. source: "./media/characters/marble/front.svg",
  35124. extra: 973/937,
  35125. bottom: 32/1005
  35126. }
  35127. },
  35128. },
  35129. [
  35130. {
  35131. name: "Normal",
  35132. height: math.unit(15, "feet"),
  35133. default: true
  35134. },
  35135. ]
  35136. ))
  35137. characterMakers.push(() => makeCharacter(
  35138. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35139. {
  35140. front: {
  35141. height: math.unit(3, "inches"),
  35142. name: "Front",
  35143. image: {
  35144. source: "./media/characters/powder/front.svg",
  35145. extra: 1504/1334,
  35146. bottom: 518/2022
  35147. }
  35148. },
  35149. },
  35150. [
  35151. {
  35152. name: "Normal",
  35153. height: math.unit(3, "inches"),
  35154. default: true
  35155. },
  35156. ]
  35157. ))
  35158. characterMakers.push(() => makeCharacter(
  35159. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35160. {
  35161. front: {
  35162. height: math.unit(4 + 5/12, "feet"),
  35163. name: "Front",
  35164. image: {
  35165. source: "./media/characters/joey-raccoon/front.svg",
  35166. extra: 1273/1197,
  35167. bottom: 0/1273
  35168. }
  35169. },
  35170. },
  35171. [
  35172. {
  35173. name: "Normal",
  35174. height: math.unit(4 + 5/12, "feet"),
  35175. default: true
  35176. },
  35177. ]
  35178. ))
  35179. characterMakers.push(() => makeCharacter(
  35180. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35181. {
  35182. front: {
  35183. height: math.unit(8 + 4/12, "feet"),
  35184. name: "Front",
  35185. image: {
  35186. source: "./media/characters/vick/front.svg",
  35187. extra: 2187/2118,
  35188. bottom: 47/2234
  35189. }
  35190. },
  35191. },
  35192. [
  35193. {
  35194. name: "Normal",
  35195. height: math.unit(8 + 4/12, "feet"),
  35196. default: true
  35197. },
  35198. ]
  35199. ))
  35200. characterMakers.push(() => makeCharacter(
  35201. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35202. {
  35203. front: {
  35204. height: math.unit(5 + 5/12, "feet"),
  35205. name: "Front",
  35206. image: {
  35207. source: "./media/characters/mitsy/front.svg",
  35208. extra: 1842/1695,
  35209. bottom: 0/1842
  35210. }
  35211. },
  35212. },
  35213. [
  35214. {
  35215. name: "Normal",
  35216. height: math.unit(5 + 5/12, "feet"),
  35217. default: true
  35218. },
  35219. ]
  35220. ))
  35221. characterMakers.push(() => makeCharacter(
  35222. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35223. {
  35224. front: {
  35225. height: math.unit(6 + 3/12, "feet"),
  35226. name: "Front",
  35227. image: {
  35228. source: "./media/characters/silvy/front.svg",
  35229. extra: 1995/1836,
  35230. bottom: 225/2220
  35231. }
  35232. },
  35233. },
  35234. [
  35235. {
  35236. name: "Normal",
  35237. height: math.unit(6 + 3/12, "feet"),
  35238. default: true
  35239. },
  35240. ]
  35241. ))
  35242. characterMakers.push(() => makeCharacter(
  35243. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35244. {
  35245. front: {
  35246. height: math.unit(3 + 8/12, "feet"),
  35247. name: "Front",
  35248. image: {
  35249. source: "./media/characters/rodney/front.svg",
  35250. extra: 1956/1747,
  35251. bottom: 31/1987
  35252. }
  35253. },
  35254. frontDressed: {
  35255. height: math.unit(2.9, "feet"),
  35256. name: "Front (Dressed)",
  35257. image: {
  35258. source: "./media/characters/rodney/front-dressed.svg",
  35259. extra: 1382/1241,
  35260. bottom: 385/1767
  35261. }
  35262. },
  35263. },
  35264. [
  35265. {
  35266. name: "Normal",
  35267. height: math.unit(3 + 8/12, "feet"),
  35268. default: true
  35269. },
  35270. ]
  35271. ))
  35272. characterMakers.push(() => makeCharacter(
  35273. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35274. {
  35275. front: {
  35276. height: math.unit(5 + 9/12, "feet"),
  35277. weight: math.unit(194, "lbs"),
  35278. name: "Front",
  35279. image: {
  35280. source: "./media/characters/zakail-sudekai/front.svg",
  35281. extra: 2696/2533,
  35282. bottom: 248/2944
  35283. }
  35284. },
  35285. maw: {
  35286. height: math.unit(1.35, "feet"),
  35287. name: "Maw",
  35288. image: {
  35289. source: "./media/characters/zakail-sudekai/maw.svg"
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Normal",
  35296. height: math.unit(5 + 9/12, "feet"),
  35297. default: true
  35298. },
  35299. ]
  35300. ))
  35301. characterMakers.push(() => makeCharacter(
  35302. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35303. {
  35304. front: {
  35305. height: math.unit(8 + 4/12, "feet"),
  35306. weight: math.unit(1200, "lb"),
  35307. name: "Front",
  35308. image: {
  35309. source: "./media/characters/eleanor/front.svg",
  35310. extra: 1226/1192,
  35311. bottom: 52/1278
  35312. }
  35313. },
  35314. back: {
  35315. height: math.unit(8 + 4/12, "feet"),
  35316. weight: math.unit(1200, "lb"),
  35317. name: "Back",
  35318. image: {
  35319. source: "./media/characters/eleanor/back.svg",
  35320. extra: 1242/1184,
  35321. bottom: 60/1302
  35322. }
  35323. },
  35324. head: {
  35325. height: math.unit(2.62, "feet"),
  35326. name: "Head",
  35327. image: {
  35328. source: "./media/characters/eleanor/head.svg"
  35329. }
  35330. },
  35331. },
  35332. [
  35333. {
  35334. name: "Normal",
  35335. height: math.unit(8 + 4/12, "feet"),
  35336. default: true
  35337. },
  35338. ]
  35339. ))
  35340. characterMakers.push(() => makeCharacter(
  35341. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35342. {
  35343. front: {
  35344. height: math.unit(8 + 4/12, "feet"),
  35345. weight: math.unit(750, "lb"),
  35346. name: "Front",
  35347. image: {
  35348. source: "./media/characters/tanya/front.svg",
  35349. extra: 1749/1615,
  35350. bottom: 33/1782
  35351. }
  35352. },
  35353. },
  35354. [
  35355. {
  35356. name: "Normal",
  35357. height: math.unit(8 + 4/12, "feet"),
  35358. default: true
  35359. },
  35360. ]
  35361. ))
  35362. characterMakers.push(() => makeCharacter(
  35363. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35364. {
  35365. front: {
  35366. height: math.unit(5, "feet"),
  35367. weight: math.unit(225, "lb"),
  35368. name: "Front",
  35369. image: {
  35370. source: "./media/characters/cindy/front.svg",
  35371. extra: 1320/1250,
  35372. bottom: 42/1362
  35373. }
  35374. },
  35375. frontDressed: {
  35376. height: math.unit(5, "feet"),
  35377. weight: math.unit(225, "lb"),
  35378. name: "Front (Dressed)",
  35379. image: {
  35380. source: "./media/characters/cindy/front-dressed.svg",
  35381. extra: 1320/1250,
  35382. bottom: 42/1362
  35383. }
  35384. },
  35385. back: {
  35386. height: math.unit(5, "feet"),
  35387. weight: math.unit(225, "lb"),
  35388. name: "Back",
  35389. image: {
  35390. source: "./media/characters/cindy/back.svg",
  35391. extra: 1384/1346,
  35392. bottom: 14/1398
  35393. }
  35394. },
  35395. },
  35396. [
  35397. {
  35398. name: "Normal",
  35399. height: math.unit(5, "feet"),
  35400. default: true
  35401. },
  35402. ]
  35403. ))
  35404. characterMakers.push(() => makeCharacter(
  35405. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35406. {
  35407. front: {
  35408. height: math.unit(6 + 9/12, "feet"),
  35409. weight: math.unit(440, "lb"),
  35410. name: "Front",
  35411. image: {
  35412. source: "./media/characters/wilbur-owen/front.svg",
  35413. extra: 1575/1448,
  35414. bottom: 72/1647
  35415. }
  35416. },
  35417. back: {
  35418. height: math.unit(6 + 9/12, "feet"),
  35419. weight: math.unit(440, "lb"),
  35420. name: "Back",
  35421. image: {
  35422. source: "./media/characters/wilbur-owen/back.svg",
  35423. extra: 1578/1445,
  35424. bottom: 36/1614
  35425. }
  35426. },
  35427. },
  35428. [
  35429. {
  35430. name: "Normal",
  35431. height: math.unit(6 + 9/12, "feet"),
  35432. default: true
  35433. },
  35434. ]
  35435. ))
  35436. characterMakers.push(() => makeCharacter(
  35437. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35438. {
  35439. front: {
  35440. height: math.unit(6 + 5/12, "feet"),
  35441. weight: math.unit(650, "lb"),
  35442. name: "Front",
  35443. image: {
  35444. source: "./media/characters/keegan/front.svg",
  35445. extra: 2387/2198,
  35446. bottom: 33/2420
  35447. }
  35448. },
  35449. side: {
  35450. height: math.unit(6 + 5/12, "feet"),
  35451. weight: math.unit(650, "lb"),
  35452. name: "Side",
  35453. image: {
  35454. source: "./media/characters/keegan/side.svg",
  35455. extra: 2390/2202,
  35456. bottom: 47/2437
  35457. }
  35458. },
  35459. back: {
  35460. height: math.unit(6 + 5/12, "feet"),
  35461. weight: math.unit(650, "lb"),
  35462. name: "Back",
  35463. image: {
  35464. source: "./media/characters/keegan/back.svg",
  35465. extra: 2418/2268,
  35466. bottom: 15/2433
  35467. }
  35468. },
  35469. frontSfw: {
  35470. height: math.unit(6 + 5/12, "feet"),
  35471. weight: math.unit(650, "lb"),
  35472. name: "Front (SFW)",
  35473. image: {
  35474. source: "./media/characters/keegan/front-sfw.svg",
  35475. extra: 2387/2198,
  35476. bottom: 33/2420
  35477. }
  35478. },
  35479. beans: {
  35480. height: math.unit(1.85, "feet"),
  35481. name: "Beans",
  35482. image: {
  35483. source: "./media/characters/keegan/beans.svg"
  35484. }
  35485. },
  35486. },
  35487. [
  35488. {
  35489. name: "Normal",
  35490. height: math.unit(6 + 5/12, "feet"),
  35491. default: true
  35492. },
  35493. ]
  35494. ))
  35495. characterMakers.push(() => makeCharacter(
  35496. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35497. {
  35498. front: {
  35499. height: math.unit(9, "feet"),
  35500. name: "Front",
  35501. image: {
  35502. source: "./media/characters/colton/front.svg",
  35503. extra: 1589/1326,
  35504. bottom: 139/1728
  35505. }
  35506. },
  35507. },
  35508. [
  35509. {
  35510. name: "Normal",
  35511. height: math.unit(9, "feet"),
  35512. default: true
  35513. },
  35514. ]
  35515. ))
  35516. characterMakers.push(() => makeCharacter(
  35517. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35518. {
  35519. front: {
  35520. height: math.unit(2 + 9/12, "feet"),
  35521. name: "Front",
  35522. image: {
  35523. source: "./media/characters/bora/front.svg",
  35524. extra: 1265/1250,
  35525. bottom: 24/1289
  35526. }
  35527. },
  35528. },
  35529. [
  35530. {
  35531. name: "Normal",
  35532. height: math.unit(2 + 9/12, "feet"),
  35533. default: true
  35534. },
  35535. ]
  35536. ))
  35537. characterMakers.push(() => makeCharacter(
  35538. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35539. {
  35540. front: {
  35541. height: math.unit(8, "feet"),
  35542. name: "Front",
  35543. image: {
  35544. source: "./media/characters/myu-myu/front.svg",
  35545. extra: 1949/1857,
  35546. bottom: 90/2039
  35547. }
  35548. },
  35549. },
  35550. [
  35551. {
  35552. name: "Normal",
  35553. height: math.unit(8, "feet"),
  35554. default: true
  35555. },
  35556. {
  35557. name: "Big",
  35558. height: math.unit(15, "feet")
  35559. },
  35560. {
  35561. name: "BIG",
  35562. height: math.unit(25, "feet")
  35563. },
  35564. ]
  35565. ))
  35566. characterMakers.push(() => makeCharacter(
  35567. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35568. {
  35569. side: {
  35570. height: math.unit(7 + 5/12, "feet"),
  35571. weight: math.unit(2800, "lb"),
  35572. name: "Side",
  35573. image: {
  35574. source: "./media/characters/haloren/side.svg",
  35575. extra: 1793/409,
  35576. bottom: 59/1852
  35577. }
  35578. },
  35579. frontPaw: {
  35580. height: math.unit(2.36, "feet"),
  35581. name: "Front paw",
  35582. image: {
  35583. source: "./media/characters/haloren/front-paw.svg"
  35584. }
  35585. },
  35586. hindPaw: {
  35587. height: math.unit(3.18, "feet"),
  35588. name: "Hind paw",
  35589. image: {
  35590. source: "./media/characters/haloren/hind-paw.svg"
  35591. }
  35592. },
  35593. maw: {
  35594. height: math.unit(5.05, "feet"),
  35595. name: "Maw",
  35596. image: {
  35597. source: "./media/characters/haloren/maw.svg"
  35598. }
  35599. },
  35600. dick: {
  35601. height: math.unit(2.90, "feet"),
  35602. name: "Dick",
  35603. image: {
  35604. source: "./media/characters/haloren/dick.svg"
  35605. }
  35606. },
  35607. },
  35608. [
  35609. {
  35610. name: "Normal",
  35611. height: math.unit(7 + 5/12, "feet"),
  35612. default: true
  35613. },
  35614. {
  35615. name: "Enhanced",
  35616. height: math.unit(14 + 3/12, "feet")
  35617. },
  35618. ]
  35619. ))
  35620. characterMakers.push(() => makeCharacter(
  35621. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35622. {
  35623. front: {
  35624. height: math.unit(171, "cm"),
  35625. name: "Front",
  35626. image: {
  35627. source: "./media/characters/kimmy/front.svg",
  35628. extra: 1491/1435,
  35629. bottom: 53/1544
  35630. }
  35631. },
  35632. },
  35633. [
  35634. {
  35635. name: "Small",
  35636. height: math.unit(9, "cm")
  35637. },
  35638. {
  35639. name: "Normal",
  35640. height: math.unit(171, "cm"),
  35641. default: true
  35642. },
  35643. ]
  35644. ))
  35645. characterMakers.push(() => makeCharacter(
  35646. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35647. {
  35648. front: {
  35649. height: math.unit(8, "feet"),
  35650. weight: math.unit(300, "lb"),
  35651. name: "Front",
  35652. image: {
  35653. source: "./media/characters/galeboomer/front.svg",
  35654. extra: 4651/4415,
  35655. bottom: 162/4813
  35656. }
  35657. },
  35658. back: {
  35659. height: math.unit(8, "feet"),
  35660. weight: math.unit(300, "lb"),
  35661. name: "Back",
  35662. image: {
  35663. source: "./media/characters/galeboomer/back.svg",
  35664. extra: 4544/4314,
  35665. bottom: 16/4560
  35666. }
  35667. },
  35668. frontAlt: {
  35669. height: math.unit(8, "feet"),
  35670. weight: math.unit(300, "lb"),
  35671. name: "Front (Alt)",
  35672. image: {
  35673. source: "./media/characters/galeboomer/front-alt.svg",
  35674. extra: 4458/4228,
  35675. bottom: 68/4526
  35676. }
  35677. },
  35678. maw: {
  35679. height: math.unit(1.2, "feet"),
  35680. name: "Maw",
  35681. image: {
  35682. source: "./media/characters/galeboomer/maw.svg"
  35683. }
  35684. },
  35685. },
  35686. [
  35687. {
  35688. name: "Normal",
  35689. height: math.unit(8, "feet"),
  35690. default: true
  35691. },
  35692. ]
  35693. ))
  35694. characterMakers.push(() => makeCharacter(
  35695. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35696. {
  35697. front: {
  35698. height: math.unit(5 + 9/12, "feet"),
  35699. weight: math.unit(120, "lb"),
  35700. name: "Front",
  35701. image: {
  35702. source: "./media/characters/chyr/front.svg",
  35703. extra: 1323/1254,
  35704. bottom: 63/1386
  35705. }
  35706. },
  35707. back: {
  35708. height: math.unit(5 + 9/12, "feet"),
  35709. weight: math.unit(120, "lb"),
  35710. name: "Back",
  35711. image: {
  35712. source: "./media/characters/chyr/back.svg",
  35713. extra: 1323/1252,
  35714. bottom: 48/1371
  35715. }
  35716. },
  35717. },
  35718. [
  35719. {
  35720. name: "Normal",
  35721. height: math.unit(5 + 9/12, "feet"),
  35722. default: true
  35723. },
  35724. ]
  35725. ))
  35726. characterMakers.push(() => makeCharacter(
  35727. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35728. {
  35729. front: {
  35730. height: math.unit(7, "feet"),
  35731. weight: math.unit(310, "lb"),
  35732. name: "Front",
  35733. image: {
  35734. source: "./media/characters/solarus/front.svg",
  35735. extra: 2415/2021,
  35736. bottom: 103/2518
  35737. }
  35738. },
  35739. back: {
  35740. height: math.unit(7, "feet"),
  35741. weight: math.unit(310, "lb"),
  35742. name: "Back",
  35743. image: {
  35744. source: "./media/characters/solarus/back.svg",
  35745. extra: 2463/2089,
  35746. bottom: 79/2542
  35747. }
  35748. },
  35749. },
  35750. [
  35751. {
  35752. name: "Normal",
  35753. height: math.unit(7, "feet"),
  35754. default: true
  35755. },
  35756. ]
  35757. ))
  35758. characterMakers.push(() => makeCharacter(
  35759. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35760. {
  35761. front: {
  35762. height: math.unit(16, "feet"),
  35763. name: "Front",
  35764. image: {
  35765. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35766. extra: 1844/1780,
  35767. bottom: 58/1902
  35768. }
  35769. },
  35770. winterCoat: {
  35771. height: math.unit(16, "feet"),
  35772. name: "Winter Coat",
  35773. image: {
  35774. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35775. extra: 1807/1775,
  35776. bottom: 69/1876
  35777. }
  35778. },
  35779. },
  35780. [
  35781. {
  35782. name: "Normal",
  35783. height: math.unit(16, "feet"),
  35784. default: true
  35785. },
  35786. {
  35787. name: "Chicago Size",
  35788. height: math.unit(560, "feet")
  35789. },
  35790. ]
  35791. ))
  35792. characterMakers.push(() => makeCharacter(
  35793. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35794. {
  35795. front: {
  35796. height: math.unit(11 + 6/12, "feet"),
  35797. weight: math.unit(1366, "lb"),
  35798. name: "Front",
  35799. image: {
  35800. source: "./media/characters/lexor/front.svg",
  35801. extra: 1560/1481,
  35802. bottom: 211/1771
  35803. }
  35804. },
  35805. back: {
  35806. height: math.unit(11 + 6/12, "feet"),
  35807. weight: math.unit(1366, "lb"),
  35808. name: "Back",
  35809. image: {
  35810. source: "./media/characters/lexor/back.svg",
  35811. extra: 1614/1533,
  35812. bottom: 76/1690
  35813. }
  35814. },
  35815. maw: {
  35816. height: math.unit(3, "feet"),
  35817. name: "Maw",
  35818. image: {
  35819. source: "./media/characters/lexor/maw.svg"
  35820. }
  35821. },
  35822. dick: {
  35823. height: math.unit(2.59, "feet"),
  35824. name: "Dick",
  35825. image: {
  35826. source: "./media/characters/lexor/dick.svg"
  35827. }
  35828. },
  35829. },
  35830. [
  35831. {
  35832. name: "Normal",
  35833. height: math.unit(11 + 6/12, "feet"),
  35834. default: true
  35835. },
  35836. ]
  35837. ))
  35838. characterMakers.push(() => makeCharacter(
  35839. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35840. {
  35841. front: {
  35842. height: math.unit(5 + 8/12, "feet"),
  35843. name: "Front",
  35844. image: {
  35845. source: "./media/characters/magnum/front.svg",
  35846. extra: 942/855,
  35847. bottom: 26/968
  35848. }
  35849. },
  35850. },
  35851. [
  35852. {
  35853. name: "Normal",
  35854. height: math.unit(5 + 8/12, "feet"),
  35855. default: true
  35856. },
  35857. ]
  35858. ))
  35859. characterMakers.push(() => makeCharacter(
  35860. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35861. {
  35862. front: {
  35863. height: math.unit(18 + 4/12, "feet"),
  35864. weight: math.unit(1500, "kg"),
  35865. name: "Front",
  35866. image: {
  35867. source: "./media/characters/solas-sharpsman/front.svg",
  35868. extra: 1698/1589,
  35869. bottom: 0/1698
  35870. }
  35871. },
  35872. },
  35873. [
  35874. {
  35875. name: "Normal",
  35876. height: math.unit(18 + 4/12, "feet"),
  35877. default: true
  35878. },
  35879. ]
  35880. ))
  35881. characterMakers.push(() => makeCharacter(
  35882. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35883. {
  35884. front: {
  35885. height: math.unit(5 + 5/12, "feet"),
  35886. weight: math.unit(180, "lb"),
  35887. name: "Front",
  35888. image: {
  35889. source: "./media/characters/october/front.svg",
  35890. extra: 1800/1650,
  35891. bottom: 0/1800
  35892. }
  35893. },
  35894. frontNsfw: {
  35895. height: math.unit(5 + 5/12, "feet"),
  35896. weight: math.unit(180, "lb"),
  35897. name: "Front (NSFW)",
  35898. image: {
  35899. source: "./media/characters/october/front-nsfw.svg",
  35900. extra: 1392/1307,
  35901. bottom: 42/1434
  35902. }
  35903. },
  35904. },
  35905. [
  35906. {
  35907. name: "Normal",
  35908. height: math.unit(5 + 5/12, "feet"),
  35909. default: true
  35910. },
  35911. ]
  35912. ))
  35913. characterMakers.push(() => makeCharacter(
  35914. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35915. {
  35916. front: {
  35917. height: math.unit(8 + 6/12, "feet"),
  35918. name: "Front",
  35919. image: {
  35920. source: "./media/characters/essynkardi/front.svg",
  35921. extra: 1914/1846,
  35922. bottom: 22/1936
  35923. }
  35924. },
  35925. },
  35926. [
  35927. {
  35928. name: "Normal",
  35929. height: math.unit(8 + 6/12, "feet"),
  35930. default: true
  35931. },
  35932. ]
  35933. ))
  35934. characterMakers.push(() => makeCharacter(
  35935. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35936. {
  35937. front: {
  35938. height: math.unit(6 + 6/12, "feet"),
  35939. weight: math.unit(7, "lb"),
  35940. name: "Front",
  35941. image: {
  35942. source: "./media/characters/icky/front.svg",
  35943. extra: 813/782,
  35944. bottom: 66/879
  35945. }
  35946. },
  35947. back: {
  35948. height: math.unit(6 + 6/12, "feet"),
  35949. weight: math.unit(7, "lb"),
  35950. name: "Back",
  35951. image: {
  35952. source: "./media/characters/icky/back.svg",
  35953. extra: 754/735,
  35954. bottom: 56/810
  35955. }
  35956. },
  35957. },
  35958. [
  35959. {
  35960. name: "Normal",
  35961. height: math.unit(6 + 6/12, "feet"),
  35962. default: true
  35963. },
  35964. ]
  35965. ))
  35966. characterMakers.push(() => makeCharacter(
  35967. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35968. {
  35969. front: {
  35970. height: math.unit(15, "feet"),
  35971. name: "Front",
  35972. image: {
  35973. source: "./media/characters/rojas/front.svg",
  35974. extra: 1462/1408,
  35975. bottom: 95/1557
  35976. }
  35977. },
  35978. back: {
  35979. height: math.unit(15, "feet"),
  35980. name: "Back",
  35981. image: {
  35982. source: "./media/characters/rojas/back.svg",
  35983. extra: 1023/954,
  35984. bottom: 28/1051
  35985. }
  35986. },
  35987. },
  35988. [
  35989. {
  35990. name: "Normal",
  35991. height: math.unit(15, "feet"),
  35992. default: true
  35993. },
  35994. ]
  35995. ))
  35996. characterMakers.push(() => makeCharacter(
  35997. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35998. {
  35999. frontHuman: {
  36000. height: math.unit(5 + 7/12, "feet"),
  36001. name: "Front (Human)",
  36002. image: {
  36003. source: "./media/characters/alek-dryagan/front-human.svg",
  36004. extra: 1687/1667,
  36005. bottom: 69/1756
  36006. }
  36007. },
  36008. backHuman: {
  36009. height: math.unit(5 + 7/12, "feet"),
  36010. name: "Back (Human)",
  36011. image: {
  36012. source: "./media/characters/alek-dryagan/back-human.svg",
  36013. extra: 1670/1649,
  36014. bottom: 65/1735
  36015. }
  36016. },
  36017. frontDemi: {
  36018. height: math.unit(65, "feet"),
  36019. name: "Front (Demi)",
  36020. image: {
  36021. source: "./media/characters/alek-dryagan/front-demi.svg",
  36022. extra: 1669/1642,
  36023. bottom: 49/1718
  36024. }
  36025. },
  36026. backDemi: {
  36027. height: math.unit(65, "feet"),
  36028. name: "Back (Demi)",
  36029. image: {
  36030. source: "./media/characters/alek-dryagan/back-demi.svg",
  36031. extra: 1658/1637,
  36032. bottom: 40/1698
  36033. }
  36034. },
  36035. mawHuman: {
  36036. height: math.unit(0.3, "feet"),
  36037. name: "Maw (Human)",
  36038. image: {
  36039. source: "./media/characters/alek-dryagan/maw-human.svg"
  36040. }
  36041. },
  36042. mawDemi: {
  36043. height: math.unit(3.8, "feet"),
  36044. name: "Maw (Demi)",
  36045. image: {
  36046. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36047. }
  36048. },
  36049. },
  36050. [
  36051. {
  36052. name: "Normal",
  36053. height: math.unit(5 + 7/12, "feet"),
  36054. default: true
  36055. },
  36056. ]
  36057. ))
  36058. characterMakers.push(() => makeCharacter(
  36059. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36060. {
  36061. frontHuman: {
  36062. height: math.unit(5 + 2/12, "feet"),
  36063. name: "Front (Human)",
  36064. image: {
  36065. source: "./media/characters/gen/front-human.svg",
  36066. extra: 1627/1538,
  36067. bottom: 71/1698
  36068. }
  36069. },
  36070. backHuman: {
  36071. height: math.unit(5 + 2/12, "feet"),
  36072. name: "Back (Human)",
  36073. image: {
  36074. source: "./media/characters/gen/back-human.svg",
  36075. extra: 1638/1548,
  36076. bottom: 69/1707
  36077. }
  36078. },
  36079. frontDemi: {
  36080. height: math.unit(5 + 2/12, "feet"),
  36081. name: "Front (Demi)",
  36082. image: {
  36083. source: "./media/characters/gen/front-demi.svg",
  36084. extra: 1627/1538,
  36085. bottom: 71/1698
  36086. }
  36087. },
  36088. backDemi: {
  36089. height: math.unit(5 + 2/12, "feet"),
  36090. name: "Back (Demi)",
  36091. image: {
  36092. source: "./media/characters/gen/back-demi.svg",
  36093. extra: 1638/1548,
  36094. bottom: 69/1707
  36095. }
  36096. },
  36097. },
  36098. [
  36099. {
  36100. name: "Normal",
  36101. height: math.unit(5 + 2/12, "feet"),
  36102. default: true
  36103. },
  36104. ]
  36105. ))
  36106. characterMakers.push(() => makeCharacter(
  36107. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36108. {
  36109. frontImp: {
  36110. height: math.unit(1 + 11/12, "feet"),
  36111. name: "Front (Imp)",
  36112. image: {
  36113. source: "./media/characters/max-kobold/front-imp.svg",
  36114. extra: 1238/1134,
  36115. bottom: 81/1319
  36116. }
  36117. },
  36118. backImp: {
  36119. height: math.unit(1 + 11/12, "feet"),
  36120. name: "Back (Imp)",
  36121. image: {
  36122. source: "./media/characters/max-kobold/back-imp.svg",
  36123. extra: 1334/1175,
  36124. bottom: 34/1368
  36125. }
  36126. },
  36127. frontDemi: {
  36128. height: math.unit(5 + 9/12, "feet"),
  36129. name: "Front (Demi)",
  36130. image: {
  36131. source: "./media/characters/max-kobold/front-demi.svg",
  36132. extra: 1715/1685,
  36133. bottom: 54/1769
  36134. }
  36135. },
  36136. backDemi: {
  36137. height: math.unit(5 + 9/12, "feet"),
  36138. name: "Back (Demi)",
  36139. image: {
  36140. source: "./media/characters/max-kobold/back-demi.svg",
  36141. extra: 1752/1729,
  36142. bottom: 41/1793
  36143. }
  36144. },
  36145. handImp: {
  36146. height: math.unit(0.45, "feet"),
  36147. name: "Hand (Imp)",
  36148. image: {
  36149. source: "./media/characters/max-kobold/hand.svg"
  36150. }
  36151. },
  36152. pawImp: {
  36153. height: math.unit(0.46, "feet"),
  36154. name: "Paw (Imp)",
  36155. image: {
  36156. source: "./media/characters/max-kobold/paw.svg"
  36157. }
  36158. },
  36159. handDemi: {
  36160. height: math.unit(0.80, "feet"),
  36161. name: "Hand (Demi)",
  36162. image: {
  36163. source: "./media/characters/max-kobold/hand.svg"
  36164. }
  36165. },
  36166. pawDemi: {
  36167. height: math.unit(1.1, "feet"),
  36168. name: "Paw (Demi)",
  36169. image: {
  36170. source: "./media/characters/max-kobold/paw.svg"
  36171. }
  36172. },
  36173. headImp: {
  36174. height: math.unit(1.33, "feet"),
  36175. name: "Head (Imp)",
  36176. image: {
  36177. source: "./media/characters/max-kobold/head-imp.svg"
  36178. }
  36179. },
  36180. mawImp: {
  36181. height: math.unit(0.75, "feet"),
  36182. name: "Maw (Imp)",
  36183. image: {
  36184. source: "./media/characters/max-kobold/maw-imp.svg"
  36185. }
  36186. },
  36187. mawDemi: {
  36188. height: math.unit(0.42, "feet"),
  36189. name: "Maw (Demi)",
  36190. image: {
  36191. source: "./media/characters/max-kobold/maw-demi.svg"
  36192. }
  36193. },
  36194. },
  36195. [
  36196. {
  36197. name: "Normal",
  36198. height: math.unit(1 + 11/12, "feet"),
  36199. default: true
  36200. },
  36201. ]
  36202. ))
  36203. characterMakers.push(() => makeCharacter(
  36204. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36205. {
  36206. front: {
  36207. height: math.unit(7 + 5/12, "feet"),
  36208. name: "Front",
  36209. image: {
  36210. source: "./media/characters/carbon/front.svg",
  36211. extra: 1754/1689,
  36212. bottom: 65/1819
  36213. }
  36214. },
  36215. back: {
  36216. height: math.unit(7 + 5/12, "feet"),
  36217. name: "Back",
  36218. image: {
  36219. source: "./media/characters/carbon/back.svg",
  36220. extra: 1762/1695,
  36221. bottom: 24/1786
  36222. }
  36223. },
  36224. frontGigantamax: {
  36225. height: math.unit(150, "feet"),
  36226. name: "Front (Gigantamax)",
  36227. image: {
  36228. source: "./media/characters/carbon/front-gigantamax.svg",
  36229. extra: 1826/1669,
  36230. bottom: 59/1885
  36231. }
  36232. },
  36233. backGigantamax: {
  36234. height: math.unit(150, "feet"),
  36235. name: "Back (Gigantamax)",
  36236. image: {
  36237. source: "./media/characters/carbon/back-gigantamax.svg",
  36238. extra: 1796/1653,
  36239. bottom: 53/1849
  36240. }
  36241. },
  36242. maw: {
  36243. height: math.unit(0.48, "feet"),
  36244. name: "Maw",
  36245. image: {
  36246. source: "./media/characters/carbon/maw.svg"
  36247. }
  36248. },
  36249. mawGigantamax: {
  36250. height: math.unit(7.5, "feet"),
  36251. name: "Maw (Gigantamax)",
  36252. image: {
  36253. source: "./media/characters/carbon/maw-gigantamax.svg"
  36254. }
  36255. },
  36256. },
  36257. [
  36258. {
  36259. name: "Normal",
  36260. height: math.unit(7 + 5/12, "feet"),
  36261. default: true
  36262. },
  36263. ]
  36264. ))
  36265. characterMakers.push(() => makeCharacter(
  36266. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36267. {
  36268. front: {
  36269. height: math.unit(6, "feet"),
  36270. name: "Front",
  36271. image: {
  36272. source: "./media/characters/maverick/front.svg",
  36273. extra: 1672/1661,
  36274. bottom: 85/1757
  36275. }
  36276. },
  36277. back: {
  36278. height: math.unit(6, "feet"),
  36279. name: "Back",
  36280. image: {
  36281. source: "./media/characters/maverick/back.svg",
  36282. extra: 1642/1631,
  36283. bottom: 38/1680
  36284. }
  36285. },
  36286. },
  36287. [
  36288. {
  36289. name: "Normal",
  36290. height: math.unit(6, "feet"),
  36291. default: true
  36292. },
  36293. ]
  36294. ))
  36295. characterMakers.push(() => makeCharacter(
  36296. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36297. {
  36298. front: {
  36299. height: math.unit(15, "feet"),
  36300. weight: math.unit(615, "lb"),
  36301. name: "Front",
  36302. image: {
  36303. source: "./media/characters/grockle/front.svg",
  36304. extra: 1535/1427,
  36305. bottom: 56/1591
  36306. }
  36307. },
  36308. },
  36309. [
  36310. {
  36311. name: "Normal",
  36312. height: math.unit(15, "feet"),
  36313. default: true
  36314. },
  36315. {
  36316. name: "Large",
  36317. height: math.unit(150, "feet")
  36318. },
  36319. {
  36320. name: "Macro",
  36321. height: math.unit(1876, "feet")
  36322. },
  36323. {
  36324. name: "Mega Macro",
  36325. height: math.unit(121940, "feet")
  36326. },
  36327. {
  36328. name: "Giga Macro",
  36329. height: math.unit(750, "km")
  36330. },
  36331. {
  36332. name: "Tera Macro",
  36333. height: math.unit(750000, "km")
  36334. },
  36335. {
  36336. name: "Galactic",
  36337. height: math.unit(1.4e5, "km")
  36338. },
  36339. {
  36340. name: "Godlike",
  36341. height: math.unit(9.8e280, "galaxies")
  36342. },
  36343. ]
  36344. ))
  36345. characterMakers.push(() => makeCharacter(
  36346. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36347. {
  36348. front: {
  36349. height: math.unit(11, "meters"),
  36350. weight: math.unit(20, "tonnes"),
  36351. name: "Front",
  36352. image: {
  36353. source: "./media/characters/alistair/front.svg",
  36354. extra: 1265/1009,
  36355. bottom: 93/1358
  36356. }
  36357. },
  36358. },
  36359. [
  36360. {
  36361. name: "Normal",
  36362. height: math.unit(11, "meters"),
  36363. default: true
  36364. },
  36365. ]
  36366. ))
  36367. characterMakers.push(() => makeCharacter(
  36368. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36369. {
  36370. front: {
  36371. height: math.unit(5 + 8/12, "feet"),
  36372. name: "Front",
  36373. image: {
  36374. source: "./media/characters/haruka/front.svg",
  36375. extra: 2012/1952,
  36376. bottom: 0/2012
  36377. }
  36378. },
  36379. },
  36380. [
  36381. {
  36382. name: "Normal",
  36383. height: math.unit(5 + 8/12, "feet"),
  36384. default: true
  36385. },
  36386. ]
  36387. ))
  36388. characterMakers.push(() => makeCharacter(
  36389. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36390. {
  36391. back: {
  36392. height: math.unit(9, "feet"),
  36393. name: "Back",
  36394. image: {
  36395. source: "./media/characters/vivian-sylveon/back.svg",
  36396. extra: 1853/1714,
  36397. bottom: 0/1853
  36398. }
  36399. },
  36400. },
  36401. [
  36402. {
  36403. name: "Normal",
  36404. height: math.unit(9, "feet"),
  36405. default: true
  36406. },
  36407. {
  36408. name: "Macro",
  36409. height: math.unit(500, "feet")
  36410. },
  36411. {
  36412. name: "Megamacro",
  36413. height: math.unit(600, "miles")
  36414. },
  36415. {
  36416. name: "Gigamacro",
  36417. height: math.unit(30000, "miles")
  36418. },
  36419. ]
  36420. ))
  36421. characterMakers.push(() => makeCharacter(
  36422. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36423. {
  36424. anthro: {
  36425. height: math.unit(5 + 10/12, "feet"),
  36426. weight: math.unit(100, "lb"),
  36427. name: "Anthro",
  36428. image: {
  36429. source: "./media/characters/daiki/anthro.svg",
  36430. extra: 1115/1027,
  36431. bottom: 69/1184
  36432. }
  36433. },
  36434. feral: {
  36435. height: math.unit(200, "feet"),
  36436. name: "Feral",
  36437. image: {
  36438. source: "./media/characters/daiki/feral.svg",
  36439. extra: 1256/313,
  36440. bottom: 39/1295
  36441. }
  36442. },
  36443. feralHead: {
  36444. height: math.unit(171, "feet"),
  36445. name: "Feral Head",
  36446. image: {
  36447. source: "./media/characters/daiki/feral-head.svg"
  36448. }
  36449. },
  36450. manaDragon: {
  36451. height: math.unit(170, "meters"),
  36452. name: "Mana-dragon",
  36453. image: {
  36454. source: "./media/characters/daiki/mana-dragon.svg",
  36455. extra: 763/420,
  36456. bottom: 97/860
  36457. }
  36458. },
  36459. },
  36460. [
  36461. {
  36462. name: "Normal",
  36463. height: math.unit(5 + 10/12, "feet"),
  36464. default: true
  36465. },
  36466. ]
  36467. ))
  36468. characterMakers.push(() => makeCharacter(
  36469. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36470. {
  36471. fullyEquippedFront: {
  36472. height: math.unit(3 + 1/12, "feet"),
  36473. weight: math.unit(24, "lb"),
  36474. name: "Fully Equipped (Front)",
  36475. image: {
  36476. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36477. extra: 687/605,
  36478. bottom: 18/705
  36479. }
  36480. },
  36481. fullyEquippedBack: {
  36482. height: math.unit(3 + 1/12, "feet"),
  36483. weight: math.unit(24, "lb"),
  36484. name: "Fully Equipped (Back)",
  36485. image: {
  36486. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36487. extra: 689/590,
  36488. bottom: 18/707
  36489. }
  36490. },
  36491. dailyWear: {
  36492. height: math.unit(3 + 1/12, "feet"),
  36493. weight: math.unit(24, "lb"),
  36494. name: "Daily Wear",
  36495. image: {
  36496. source: "./media/characters/tea-spot/daily-wear.svg",
  36497. extra: 701/620,
  36498. bottom: 21/722
  36499. }
  36500. },
  36501. maidWork: {
  36502. height: math.unit(3 + 1/12, "feet"),
  36503. weight: math.unit(24, "lb"),
  36504. name: "Maid Work",
  36505. image: {
  36506. source: "./media/characters/tea-spot/maid-work.svg",
  36507. extra: 693/609,
  36508. bottom: 15/708
  36509. }
  36510. },
  36511. },
  36512. [
  36513. {
  36514. name: "Normal",
  36515. height: math.unit(3 + 1/12, "feet"),
  36516. default: true
  36517. },
  36518. ]
  36519. ))
  36520. characterMakers.push(() => makeCharacter(
  36521. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36522. {
  36523. front: {
  36524. height: math.unit(175, "cm"),
  36525. weight: math.unit(75, "kg"),
  36526. name: "Front",
  36527. image: {
  36528. source: "./media/characters/chee/front.svg",
  36529. extra: 1796/1740,
  36530. bottom: 40/1836
  36531. }
  36532. },
  36533. },
  36534. [
  36535. {
  36536. name: "Micro-Micro",
  36537. height: math.unit(1, "nm")
  36538. },
  36539. {
  36540. name: "Micro-erst",
  36541. height: math.unit(1, "micrometer")
  36542. },
  36543. {
  36544. name: "Micro-er",
  36545. height: math.unit(1, "cm")
  36546. },
  36547. {
  36548. name: "Normal",
  36549. height: math.unit(175, "cm"),
  36550. default: true
  36551. },
  36552. {
  36553. name: "Macro",
  36554. height: math.unit(100, "m")
  36555. },
  36556. {
  36557. name: "Macro-er",
  36558. height: math.unit(1, "km")
  36559. },
  36560. {
  36561. name: "Macro-erst",
  36562. height: math.unit(10, "km")
  36563. },
  36564. {
  36565. name: "Macro-Macro",
  36566. height: math.unit(100, "km")
  36567. },
  36568. ]
  36569. ))
  36570. characterMakers.push(() => makeCharacter(
  36571. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36572. {
  36573. front: {
  36574. height: math.unit(11 + 9/12, "feet"),
  36575. weight: math.unit(935, "lb"),
  36576. name: "Front",
  36577. image: {
  36578. source: "./media/characters/kingsley/front.svg",
  36579. extra: 1803/1674,
  36580. bottom: 127/1930
  36581. }
  36582. },
  36583. frontNude: {
  36584. height: math.unit(11 + 9/12, "feet"),
  36585. weight: math.unit(935, "lb"),
  36586. name: "Front (Nude)",
  36587. image: {
  36588. source: "./media/characters/kingsley/front-nude.svg",
  36589. extra: 1803/1674,
  36590. bottom: 127/1930
  36591. }
  36592. },
  36593. },
  36594. [
  36595. {
  36596. name: "Normal",
  36597. height: math.unit(11 + 9/12, "feet"),
  36598. default: true
  36599. },
  36600. ]
  36601. ))
  36602. characterMakers.push(() => makeCharacter(
  36603. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36604. {
  36605. side: {
  36606. height: math.unit(9, "feet"),
  36607. name: "Side",
  36608. image: {
  36609. source: "./media/characters/rymel/side.svg",
  36610. extra: 792/469,
  36611. bottom: 121/913
  36612. }
  36613. },
  36614. maw: {
  36615. height: math.unit(2.4, "meters"),
  36616. name: "Maw",
  36617. image: {
  36618. source: "./media/characters/rymel/maw.svg"
  36619. }
  36620. },
  36621. },
  36622. [
  36623. {
  36624. name: "House Drake",
  36625. height: math.unit(2, "feet")
  36626. },
  36627. {
  36628. name: "Reduced",
  36629. height: math.unit(4.5, "feet")
  36630. },
  36631. {
  36632. name: "Normal",
  36633. height: math.unit(9, "feet"),
  36634. default: true
  36635. },
  36636. ]
  36637. ))
  36638. characterMakers.push(() => makeCharacter(
  36639. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36640. {
  36641. front: {
  36642. height: math.unit(1.74, "meters"),
  36643. weight: math.unit(55, "kg"),
  36644. name: "Front",
  36645. image: {
  36646. source: "./media/characters/rubus/front.svg",
  36647. extra: 1894/1742,
  36648. bottom: 44/1938
  36649. }
  36650. },
  36651. },
  36652. [
  36653. {
  36654. name: "Normal",
  36655. height: math.unit(1.74, "meters"),
  36656. default: true
  36657. },
  36658. ]
  36659. ))
  36660. characterMakers.push(() => makeCharacter(
  36661. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36662. {
  36663. front: {
  36664. height: math.unit(5 + 2/12, "feet"),
  36665. weight: math.unit(112, "lb"),
  36666. name: "Front",
  36667. image: {
  36668. source: "./media/characters/cassie-kingston/front.svg",
  36669. extra: 1438/1390,
  36670. bottom: 47/1485
  36671. }
  36672. },
  36673. },
  36674. [
  36675. {
  36676. name: "Normal",
  36677. height: math.unit(5 + 2/12, "feet"),
  36678. default: true
  36679. },
  36680. {
  36681. name: "Macro",
  36682. height: math.unit(128, "feet")
  36683. },
  36684. {
  36685. name: "Megamacro",
  36686. height: math.unit(2.56, "miles")
  36687. },
  36688. ]
  36689. ))
  36690. characterMakers.push(() => makeCharacter(
  36691. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36692. {
  36693. front: {
  36694. height: math.unit(7, "feet"),
  36695. name: "Front",
  36696. image: {
  36697. source: "./media/characters/fox/front.svg",
  36698. extra: 1798/1703,
  36699. bottom: 55/1853
  36700. }
  36701. },
  36702. back: {
  36703. height: math.unit(7, "feet"),
  36704. name: "Back",
  36705. image: {
  36706. source: "./media/characters/fox/back.svg",
  36707. extra: 1748/1649,
  36708. bottom: 32/1780
  36709. }
  36710. },
  36711. head: {
  36712. height: math.unit(1.95, "feet"),
  36713. name: "Head",
  36714. image: {
  36715. source: "./media/characters/fox/head.svg"
  36716. }
  36717. },
  36718. dick: {
  36719. height: math.unit(1.33, "feet"),
  36720. name: "Dick",
  36721. image: {
  36722. source: "./media/characters/fox/dick.svg"
  36723. }
  36724. },
  36725. foot: {
  36726. height: math.unit(1, "feet"),
  36727. name: "Foot",
  36728. image: {
  36729. source: "./media/characters/fox/foot.svg"
  36730. }
  36731. },
  36732. paw: {
  36733. height: math.unit(0.92, "feet"),
  36734. name: "Paw",
  36735. image: {
  36736. source: "./media/characters/fox/paw.svg"
  36737. }
  36738. },
  36739. },
  36740. [
  36741. {
  36742. name: "Small",
  36743. height: math.unit(3, "inches")
  36744. },
  36745. {
  36746. name: "\"Realistic\"",
  36747. height: math.unit(7, "feet")
  36748. },
  36749. {
  36750. name: "Normal",
  36751. height: math.unit(150, "feet"),
  36752. default: true
  36753. },
  36754. {
  36755. name: "BIG",
  36756. height: math.unit(1200, "feet")
  36757. },
  36758. {
  36759. name: "👀",
  36760. height: math.unit(5, "miles")
  36761. },
  36762. {
  36763. name: "👀👀👀",
  36764. height: math.unit(64, "miles")
  36765. },
  36766. ]
  36767. ))
  36768. characterMakers.push(() => makeCharacter(
  36769. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36770. {
  36771. front: {
  36772. height: math.unit(625, "feet"),
  36773. name: "Front",
  36774. image: {
  36775. source: "./media/characters/asonja-rossa/front.svg",
  36776. extra: 1833/1686,
  36777. bottom: 24/1857
  36778. }
  36779. },
  36780. back: {
  36781. height: math.unit(625, "feet"),
  36782. name: "Back",
  36783. image: {
  36784. source: "./media/characters/asonja-rossa/back.svg",
  36785. extra: 1852/1753,
  36786. bottom: 26/1878
  36787. }
  36788. },
  36789. },
  36790. [
  36791. {
  36792. name: "Macro",
  36793. height: math.unit(625, "feet"),
  36794. default: true
  36795. },
  36796. ]
  36797. ))
  36798. characterMakers.push(() => makeCharacter(
  36799. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36800. {
  36801. side: {
  36802. height: math.unit(6, "feet"),
  36803. weight: math.unit(150, "lb"),
  36804. name: "Side",
  36805. image: {
  36806. source: "./media/characters/rezukii/side.svg",
  36807. extra: 979/542,
  36808. bottom: 87/1066
  36809. }
  36810. },
  36811. },
  36812. [
  36813. {
  36814. name: "Tiny",
  36815. height: math.unit(2, "feet")
  36816. },
  36817. {
  36818. name: "Smol",
  36819. height: math.unit(4, "feet")
  36820. },
  36821. {
  36822. name: "Normal",
  36823. height: math.unit(8, "feet"),
  36824. default: true
  36825. },
  36826. {
  36827. name: "Big",
  36828. height: math.unit(12, "feet")
  36829. },
  36830. {
  36831. name: "Macro",
  36832. height: math.unit(30, "feet")
  36833. },
  36834. ]
  36835. ))
  36836. characterMakers.push(() => makeCharacter(
  36837. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36838. {
  36839. front: {
  36840. height: math.unit(14, "feet"),
  36841. weight: math.unit(9.5, "tonnes"),
  36842. name: "Front",
  36843. image: {
  36844. source: "./media/characters/dawnheart/front.svg",
  36845. extra: 2792/2675,
  36846. bottom: 64/2856
  36847. }
  36848. },
  36849. },
  36850. [
  36851. {
  36852. name: "Normal",
  36853. height: math.unit(14, "feet"),
  36854. default: true
  36855. },
  36856. ]
  36857. ))
  36858. characterMakers.push(() => makeCharacter(
  36859. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36860. {
  36861. front: {
  36862. height: math.unit(1.7, "m"),
  36863. name: "Front",
  36864. image: {
  36865. source: "./media/characters/gladi/front.svg",
  36866. extra: 1460/1362,
  36867. bottom: 19/1479
  36868. }
  36869. },
  36870. back: {
  36871. height: math.unit(1.7, "m"),
  36872. name: "Back",
  36873. image: {
  36874. source: "./media/characters/gladi/back.svg",
  36875. extra: 1459/1357,
  36876. bottom: 12/1471
  36877. }
  36878. },
  36879. feral: {
  36880. height: math.unit(2.05, "m"),
  36881. name: "Feral",
  36882. image: {
  36883. source: "./media/characters/gladi/feral.svg",
  36884. extra: 821/557,
  36885. bottom: 91/912
  36886. }
  36887. },
  36888. },
  36889. [
  36890. {
  36891. name: "Shortest",
  36892. height: math.unit(70, "cm")
  36893. },
  36894. {
  36895. name: "Normal",
  36896. height: math.unit(1.7, "m")
  36897. },
  36898. {
  36899. name: "Macro",
  36900. height: math.unit(10, "m"),
  36901. default: true
  36902. },
  36903. {
  36904. name: "Tallest",
  36905. height: math.unit(200, "m")
  36906. },
  36907. ]
  36908. ))
  36909. characterMakers.push(() => makeCharacter(
  36910. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36911. {
  36912. front: {
  36913. height: math.unit(5 + 7/12, "feet"),
  36914. weight: math.unit(92, "kg"),
  36915. name: "Front",
  36916. image: {
  36917. source: "./media/characters/erdno/front.svg",
  36918. extra: 1954/1889,
  36919. bottom: 22/1976
  36920. }
  36921. },
  36922. },
  36923. [
  36924. {
  36925. name: "Normal",
  36926. height: math.unit(5 + 7/12, "feet"),
  36927. default: true
  36928. },
  36929. ]
  36930. ))
  36931. characterMakers.push(() => makeCharacter(
  36932. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36933. {
  36934. front: {
  36935. height: math.unit(5 + 10/12, "feet"),
  36936. weight: math.unit(150, "lb"),
  36937. name: "Front",
  36938. image: {
  36939. source: "./media/characters/jamie/front.svg",
  36940. extra: 1908/1768,
  36941. bottom: 19/1927
  36942. }
  36943. },
  36944. },
  36945. [
  36946. {
  36947. name: "Minimum",
  36948. height: math.unit(2, "cm")
  36949. },
  36950. {
  36951. name: "Micro",
  36952. height: math.unit(3, "inches")
  36953. },
  36954. {
  36955. name: "Normal",
  36956. height: math.unit(5 + 10/12, "feet"),
  36957. default: true
  36958. },
  36959. {
  36960. name: "Macro",
  36961. height: math.unit(150, "feet")
  36962. },
  36963. {
  36964. name: "Megamacro",
  36965. height: math.unit(10000, "m")
  36966. },
  36967. ]
  36968. ))
  36969. characterMakers.push(() => makeCharacter(
  36970. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36971. {
  36972. front: {
  36973. height: math.unit(2, "meters"),
  36974. weight: math.unit(100, "kg"),
  36975. name: "Front",
  36976. image: {
  36977. source: "./media/characters/shiron/front.svg",
  36978. extra: 2103/1985,
  36979. bottom: 98/2201
  36980. }
  36981. },
  36982. back: {
  36983. height: math.unit(2, "meters"),
  36984. weight: math.unit(100, "kg"),
  36985. name: "Back",
  36986. image: {
  36987. source: "./media/characters/shiron/back.svg",
  36988. extra: 2110/2015,
  36989. bottom: 89/2199
  36990. }
  36991. },
  36992. hand: {
  36993. height: math.unit(0.96, "feet"),
  36994. name: "Hand",
  36995. image: {
  36996. source: "./media/characters/shiron/hand.svg"
  36997. }
  36998. },
  36999. foot: {
  37000. height: math.unit(1.464, "feet"),
  37001. name: "Foot",
  37002. image: {
  37003. source: "./media/characters/shiron/foot.svg"
  37004. }
  37005. },
  37006. },
  37007. [
  37008. {
  37009. name: "Normal",
  37010. height: math.unit(2, "meters")
  37011. },
  37012. {
  37013. name: "Macro",
  37014. height: math.unit(500, "meters"),
  37015. default: true
  37016. },
  37017. {
  37018. name: "Megamacro",
  37019. height: math.unit(20, "km")
  37020. },
  37021. ]
  37022. ))
  37023. characterMakers.push(() => makeCharacter(
  37024. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37025. {
  37026. front: {
  37027. height: math.unit(6, "feet"),
  37028. name: "Front",
  37029. image: {
  37030. source: "./media/characters/sam/front.svg",
  37031. extra: 849/826,
  37032. bottom: 19/868
  37033. }
  37034. },
  37035. },
  37036. [
  37037. {
  37038. name: "Normal",
  37039. height: math.unit(6, "feet"),
  37040. default: true
  37041. },
  37042. ]
  37043. ))
  37044. characterMakers.push(() => makeCharacter(
  37045. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37046. {
  37047. front: {
  37048. height: math.unit(8 + 4/12, "feet"),
  37049. weight: math.unit(122, "kg"),
  37050. name: "Front",
  37051. image: {
  37052. source: "./media/characters/namori-kurogawa/front.svg",
  37053. extra: 1894/1576,
  37054. bottom: 34/1928
  37055. }
  37056. },
  37057. },
  37058. [
  37059. {
  37060. name: "Normal",
  37061. height: math.unit(8 + 4/12, "feet"),
  37062. default: true
  37063. },
  37064. ]
  37065. ))
  37066. characterMakers.push(() => makeCharacter(
  37067. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37068. {
  37069. front: {
  37070. height: math.unit(9, "feet"),
  37071. weight: math.unit(621, "lb"),
  37072. name: "Front",
  37073. image: {
  37074. source: "./media/characters/unmru/front.svg",
  37075. extra: 1853/1747,
  37076. bottom: 73/1926
  37077. }
  37078. },
  37079. side: {
  37080. height: math.unit(9, "feet"),
  37081. weight: math.unit(621, "lb"),
  37082. name: "Side",
  37083. image: {
  37084. source: "./media/characters/unmru/side.svg",
  37085. extra: 1781/1671,
  37086. bottom: 127/1908
  37087. }
  37088. },
  37089. back: {
  37090. height: math.unit(9, "feet"),
  37091. weight: math.unit(621, "lb"),
  37092. name: "Back",
  37093. image: {
  37094. source: "./media/characters/unmru/back.svg",
  37095. extra: 1894/1765,
  37096. bottom: 75/1969
  37097. }
  37098. },
  37099. dick: {
  37100. height: math.unit(3, "feet"),
  37101. weight: math.unit(35, "lb"),
  37102. name: "Dick",
  37103. image: {
  37104. source: "./media/characters/unmru/dick.svg"
  37105. }
  37106. },
  37107. },
  37108. [
  37109. {
  37110. name: "Normal",
  37111. height: math.unit(9, "feet")
  37112. },
  37113. {
  37114. name: "Natural",
  37115. height: math.unit(27, "feet"),
  37116. default: true
  37117. },
  37118. {
  37119. name: "Giant",
  37120. height: math.unit(90, "feet")
  37121. },
  37122. {
  37123. name: "Kaiju",
  37124. height: math.unit(270, "feet")
  37125. },
  37126. {
  37127. name: "Macro",
  37128. height: math.unit(900, "feet")
  37129. },
  37130. {
  37131. name: "Macro+",
  37132. height: math.unit(2700, "feet")
  37133. },
  37134. {
  37135. name: "Megamacro",
  37136. height: math.unit(9000, "feet")
  37137. },
  37138. {
  37139. name: "City-Crushing",
  37140. height: math.unit(27000, "feet")
  37141. },
  37142. {
  37143. name: "Mountain-Mashing",
  37144. height: math.unit(90000, "feet")
  37145. },
  37146. {
  37147. name: "Earth-Eclipsing",
  37148. height: math.unit(2.7e8, "feet")
  37149. },
  37150. {
  37151. name: "Sol-Swallowing",
  37152. height: math.unit(9e10, "feet")
  37153. },
  37154. {
  37155. name: "Majoris-Munching",
  37156. height: math.unit(2.7e13, "feet")
  37157. },
  37158. ]
  37159. ))
  37160. characterMakers.push(() => makeCharacter(
  37161. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37162. {
  37163. front: {
  37164. height: math.unit(1, "inch"),
  37165. name: "Front",
  37166. image: {
  37167. source: "./media/characters/squeaks-mouse/front.svg",
  37168. extra: 352/308,
  37169. bottom: 25/377
  37170. }
  37171. },
  37172. },
  37173. [
  37174. {
  37175. name: "Micro",
  37176. height: math.unit(1, "inch"),
  37177. default: true
  37178. },
  37179. ]
  37180. ))
  37181. characterMakers.push(() => makeCharacter(
  37182. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37183. {
  37184. side: {
  37185. height: math.unit(35, "feet"),
  37186. name: "Side",
  37187. image: {
  37188. source: "./media/characters/sayko/side.svg",
  37189. extra: 1697/1021,
  37190. bottom: 82/1779
  37191. }
  37192. },
  37193. head: {
  37194. height: math.unit(16, "feet"),
  37195. name: "Head",
  37196. image: {
  37197. source: "./media/characters/sayko/head.svg"
  37198. }
  37199. },
  37200. forepaw: {
  37201. height: math.unit(7.85, "feet"),
  37202. name: "Forepaw",
  37203. image: {
  37204. source: "./media/characters/sayko/forepaw.svg"
  37205. }
  37206. },
  37207. hindpaw: {
  37208. height: math.unit(8.8, "feet"),
  37209. name: "Hindpaw",
  37210. image: {
  37211. source: "./media/characters/sayko/hindpaw.svg"
  37212. }
  37213. },
  37214. },
  37215. [
  37216. {
  37217. name: "Normal",
  37218. height: math.unit(35, "feet"),
  37219. default: true
  37220. },
  37221. {
  37222. name: "Colossus",
  37223. height: math.unit(100, "meters")
  37224. },
  37225. {
  37226. name: "\"Small\" Deity",
  37227. height: math.unit(1, "km")
  37228. },
  37229. {
  37230. name: "\"Large\" Deity",
  37231. height: math.unit(15, "km")
  37232. },
  37233. ]
  37234. ))
  37235. characterMakers.push(() => makeCharacter(
  37236. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37237. {
  37238. front: {
  37239. height: math.unit(6, "feet"),
  37240. weight: math.unit(250, "lb"),
  37241. name: "Front",
  37242. image: {
  37243. source: "./media/characters/mukiro/front.svg",
  37244. extra: 1368/1310,
  37245. bottom: 34/1402
  37246. }
  37247. },
  37248. },
  37249. [
  37250. {
  37251. name: "Normal",
  37252. height: math.unit(6, "feet"),
  37253. default: true
  37254. },
  37255. ]
  37256. ))
  37257. characterMakers.push(() => makeCharacter(
  37258. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37259. {
  37260. front: {
  37261. height: math.unit(12 + 4/12, "feet"),
  37262. name: "Front",
  37263. image: {
  37264. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37265. extra: 1346/1311,
  37266. bottom: 65/1411
  37267. }
  37268. },
  37269. },
  37270. [
  37271. {
  37272. name: "Base",
  37273. height: math.unit(12 + 4/12, "feet"),
  37274. default: true
  37275. },
  37276. {
  37277. name: "Macro",
  37278. height: math.unit(150, "feet")
  37279. },
  37280. {
  37281. name: "Mega",
  37282. height: math.unit(2, "miles")
  37283. },
  37284. {
  37285. name: "Demi God",
  37286. height: math.unit(4, "AU")
  37287. },
  37288. {
  37289. name: "God Size",
  37290. height: math.unit(1, "universe")
  37291. },
  37292. ]
  37293. ))
  37294. characterMakers.push(() => makeCharacter(
  37295. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37296. {
  37297. front: {
  37298. height: math.unit(3 + 3/12, "feet"),
  37299. weight: math.unit(88, "lb"),
  37300. name: "Front",
  37301. image: {
  37302. source: "./media/characters/trey/front.svg",
  37303. extra: 1815/1509,
  37304. bottom: 60/1875
  37305. }
  37306. },
  37307. },
  37308. [
  37309. {
  37310. name: "Normal",
  37311. height: math.unit(3 + 3/12, "feet"),
  37312. default: true
  37313. },
  37314. ]
  37315. ))
  37316. characterMakers.push(() => makeCharacter(
  37317. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37318. {
  37319. front: {
  37320. height: math.unit(4, "meters"),
  37321. name: "Front",
  37322. image: {
  37323. source: "./media/characters/adelonda/front.svg",
  37324. extra: 1077/982,
  37325. bottom: 39/1116
  37326. }
  37327. },
  37328. back: {
  37329. height: math.unit(4, "meters"),
  37330. name: "Back",
  37331. image: {
  37332. source: "./media/characters/adelonda/back.svg",
  37333. extra: 1105/1003,
  37334. bottom: 25/1130
  37335. }
  37336. },
  37337. },
  37338. [
  37339. {
  37340. name: "Normal",
  37341. height: math.unit(4, "meters"),
  37342. default: true
  37343. },
  37344. ]
  37345. ))
  37346. characterMakers.push(() => makeCharacter(
  37347. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37348. {
  37349. front: {
  37350. height: math.unit(8 + 4/12, "feet"),
  37351. weight: math.unit(670, "lb"),
  37352. name: "Front",
  37353. image: {
  37354. source: "./media/characters/acadiel/front.svg",
  37355. extra: 1901/1595,
  37356. bottom: 142/2043
  37357. }
  37358. },
  37359. },
  37360. [
  37361. {
  37362. name: "Normal",
  37363. height: math.unit(8 + 4/12, "feet"),
  37364. default: true
  37365. },
  37366. {
  37367. name: "Macro",
  37368. height: math.unit(200, "feet")
  37369. },
  37370. ]
  37371. ))
  37372. characterMakers.push(() => makeCharacter(
  37373. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37374. {
  37375. front: {
  37376. height: math.unit(6 + 2/12, "feet"),
  37377. weight: math.unit(185, "lb"),
  37378. name: "Front",
  37379. image: {
  37380. source: "./media/characters/kayne-ein/front.svg",
  37381. extra: 1780/1560,
  37382. bottom: 81/1861
  37383. }
  37384. },
  37385. },
  37386. [
  37387. {
  37388. name: "Normal",
  37389. height: math.unit(6 + 2/12, "feet"),
  37390. default: true
  37391. },
  37392. {
  37393. name: "Transformation Stage",
  37394. height: math.unit(15, "feet")
  37395. },
  37396. {
  37397. name: "Macro",
  37398. height: math.unit(150, "feet")
  37399. },
  37400. {
  37401. name: "Earth's Shadow",
  37402. height: math.unit(6200, "miles")
  37403. },
  37404. {
  37405. name: "Universal Demon",
  37406. height: math.unit(28e9, "parsecs")
  37407. },
  37408. {
  37409. name: "Multiverse God",
  37410. height: math.unit(3, "multiverses")
  37411. },
  37412. ]
  37413. ))
  37414. characterMakers.push(() => makeCharacter(
  37415. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37416. {
  37417. front: {
  37418. height: math.unit(5 + 5/12, "feet"),
  37419. name: "Front",
  37420. image: {
  37421. source: "./media/characters/fawn/front.svg",
  37422. extra: 1873/1731,
  37423. bottom: 95/1968
  37424. }
  37425. },
  37426. back: {
  37427. height: math.unit(5 + 5/12, "feet"),
  37428. name: "Back",
  37429. image: {
  37430. source: "./media/characters/fawn/back.svg",
  37431. extra: 1813/1700,
  37432. bottom: 14/1827
  37433. }
  37434. },
  37435. hoof: {
  37436. height: math.unit(1.45, "feet"),
  37437. name: "Hoof",
  37438. image: {
  37439. source: "./media/characters/fawn/hoof.svg"
  37440. }
  37441. },
  37442. },
  37443. [
  37444. {
  37445. name: "Normal",
  37446. height: math.unit(5 + 5/12, "feet"),
  37447. default: true
  37448. },
  37449. ]
  37450. ))
  37451. characterMakers.push(() => makeCharacter(
  37452. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37453. {
  37454. front: {
  37455. height: math.unit(2 + 5/12, "feet"),
  37456. name: "Front",
  37457. image: {
  37458. source: "./media/characters/orion/front.svg",
  37459. extra: 1366/1304,
  37460. bottom: 43/1409
  37461. }
  37462. },
  37463. paw: {
  37464. height: math.unit(0.52, "feet"),
  37465. name: "Paw",
  37466. image: {
  37467. source: "./media/characters/orion/paw.svg"
  37468. }
  37469. },
  37470. },
  37471. [
  37472. {
  37473. name: "Normal",
  37474. height: math.unit(2 + 5/12, "feet"),
  37475. default: true
  37476. },
  37477. ]
  37478. ))
  37479. characterMakers.push(() => makeCharacter(
  37480. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37481. {
  37482. front: {
  37483. height: math.unit(5 + 10/12, "feet"),
  37484. name: "Front",
  37485. image: {
  37486. source: "./media/characters/vera/front.svg",
  37487. extra: 1680/1575,
  37488. bottom: 49/1729
  37489. }
  37490. },
  37491. back: {
  37492. height: math.unit(5 + 10/12, "feet"),
  37493. name: "Back",
  37494. image: {
  37495. source: "./media/characters/vera/back.svg",
  37496. extra: 1700/1588,
  37497. bottom: 18/1718
  37498. }
  37499. },
  37500. arcanine: {
  37501. height: math.unit(6 + 8/12, "feet"),
  37502. name: "Arcanine",
  37503. image: {
  37504. source: "./media/characters/vera/arcanine.svg",
  37505. extra: 1590/1511,
  37506. bottom: 71/1661
  37507. }
  37508. },
  37509. maw: {
  37510. height: math.unit(0.82, "feet"),
  37511. name: "Maw",
  37512. image: {
  37513. source: "./media/characters/vera/maw.svg"
  37514. }
  37515. },
  37516. mawArcanine: {
  37517. height: math.unit(0.97, "feet"),
  37518. name: "Maw (Arcanine)",
  37519. image: {
  37520. source: "./media/characters/vera/maw-arcanine.svg"
  37521. }
  37522. },
  37523. paw: {
  37524. height: math.unit(0.75, "feet"),
  37525. name: "Paw",
  37526. image: {
  37527. source: "./media/characters/vera/paw.svg"
  37528. }
  37529. },
  37530. pawprint: {
  37531. height: math.unit(0.52, "feet"),
  37532. name: "Pawprint",
  37533. image: {
  37534. source: "./media/characters/vera/pawprint.svg"
  37535. }
  37536. },
  37537. },
  37538. [
  37539. {
  37540. name: "Normal",
  37541. height: math.unit(5 + 10/12, "feet"),
  37542. default: true
  37543. },
  37544. {
  37545. name: "Macro",
  37546. height: math.unit(75, "feet")
  37547. },
  37548. ]
  37549. ))
  37550. characterMakers.push(() => makeCharacter(
  37551. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37552. {
  37553. front: {
  37554. height: math.unit(4, "feet"),
  37555. weight: math.unit(40, "lb"),
  37556. name: "Front",
  37557. image: {
  37558. source: "./media/characters/orvan-rabbit/front.svg",
  37559. extra: 1896/1642,
  37560. bottom: 29/1925
  37561. }
  37562. },
  37563. },
  37564. [
  37565. {
  37566. name: "Normal",
  37567. height: math.unit(4, "feet"),
  37568. default: true
  37569. },
  37570. ]
  37571. ))
  37572. characterMakers.push(() => makeCharacter(
  37573. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37574. {
  37575. front: {
  37576. height: math.unit(6, "feet"),
  37577. weight: math.unit(168, "lb"),
  37578. name: "Front",
  37579. image: {
  37580. source: "./media/characters/lisa/front.svg",
  37581. extra: 2065/1867,
  37582. bottom: 46/2111
  37583. }
  37584. },
  37585. back: {
  37586. height: math.unit(6, "feet"),
  37587. weight: math.unit(168, "lb"),
  37588. name: "Back",
  37589. image: {
  37590. source: "./media/characters/lisa/back.svg",
  37591. extra: 1982/1838,
  37592. bottom: 29/2011
  37593. }
  37594. },
  37595. maw: {
  37596. height: math.unit(0.81, "feet"),
  37597. name: "Maw",
  37598. image: {
  37599. source: "./media/characters/lisa/maw.svg"
  37600. }
  37601. },
  37602. paw: {
  37603. height: math.unit(0.9, "feet"),
  37604. name: "Paw",
  37605. image: {
  37606. source: "./media/characters/lisa/paw.svg"
  37607. }
  37608. },
  37609. caribousune: {
  37610. height: math.unit(7 + 2/12, "feet"),
  37611. weight: math.unit(268, "lb"),
  37612. name: "Caribousune",
  37613. image: {
  37614. source: "./media/characters/lisa/caribousune.svg",
  37615. extra: 1843/1633,
  37616. bottom: 29/1872
  37617. }
  37618. },
  37619. frontCaribousune: {
  37620. height: math.unit(7 + 2/12, "feet"),
  37621. weight: math.unit(268, "lb"),
  37622. name: "Front (Caribousune)",
  37623. image: {
  37624. source: "./media/characters/lisa/front-caribousune.svg",
  37625. extra: 1818/1638,
  37626. bottom: 52/1870
  37627. }
  37628. },
  37629. sideCaribousune: {
  37630. height: math.unit(7 + 2/12, "feet"),
  37631. weight: math.unit(268, "lb"),
  37632. name: "Side (Caribousune)",
  37633. image: {
  37634. source: "./media/characters/lisa/side-caribousune.svg",
  37635. extra: 1851/1635,
  37636. bottom: 16/1867
  37637. }
  37638. },
  37639. backCaribousune: {
  37640. height: math.unit(7 + 2/12, "feet"),
  37641. weight: math.unit(268, "lb"),
  37642. name: "Back (Caribousune)",
  37643. image: {
  37644. source: "./media/characters/lisa/back-caribousune.svg",
  37645. extra: 1801/1604,
  37646. bottom: 44/1845
  37647. }
  37648. },
  37649. caribou: {
  37650. height: math.unit(7 + 2/12, "feet"),
  37651. weight: math.unit(268, "lb"),
  37652. name: "Caribou",
  37653. image: {
  37654. source: "./media/characters/lisa/caribou.svg",
  37655. extra: 1843/1633,
  37656. bottom: 29/1872
  37657. }
  37658. },
  37659. frontCaribou: {
  37660. height: math.unit(7 + 2/12, "feet"),
  37661. weight: math.unit(268, "lb"),
  37662. name: "Front (Caribou)",
  37663. image: {
  37664. source: "./media/characters/lisa/front-caribou.svg",
  37665. extra: 1818/1638,
  37666. bottom: 52/1870
  37667. }
  37668. },
  37669. sideCaribou: {
  37670. height: math.unit(7 + 2/12, "feet"),
  37671. weight: math.unit(268, "lb"),
  37672. name: "Side (Caribou)",
  37673. image: {
  37674. source: "./media/characters/lisa/side-caribou.svg",
  37675. extra: 1851/1635,
  37676. bottom: 16/1867
  37677. }
  37678. },
  37679. backCaribou: {
  37680. height: math.unit(7 + 2/12, "feet"),
  37681. weight: math.unit(268, "lb"),
  37682. name: "Back (Caribou)",
  37683. image: {
  37684. source: "./media/characters/lisa/back-caribou.svg",
  37685. extra: 1801/1604,
  37686. bottom: 44/1845
  37687. }
  37688. },
  37689. mawCaribou: {
  37690. height: math.unit(1.45, "feet"),
  37691. name: "Maw (Caribou)",
  37692. image: {
  37693. source: "./media/characters/lisa/maw-caribou.svg"
  37694. }
  37695. },
  37696. mawCaribousune: {
  37697. height: math.unit(1.45, "feet"),
  37698. name: "Maw (Caribousune)",
  37699. image: {
  37700. source: "./media/characters/lisa/maw-caribousune.svg"
  37701. }
  37702. },
  37703. pawCaribousune: {
  37704. height: math.unit(1.61, "feet"),
  37705. name: "Paw (Caribou)",
  37706. image: {
  37707. source: "./media/characters/lisa/paw-caribousune.svg"
  37708. }
  37709. },
  37710. },
  37711. [
  37712. {
  37713. name: "Normal",
  37714. height: math.unit(6, "feet")
  37715. },
  37716. {
  37717. name: "God Size",
  37718. height: math.unit(72, "feet"),
  37719. default: true
  37720. },
  37721. {
  37722. name: "Towering",
  37723. height: math.unit(288, "feet")
  37724. },
  37725. {
  37726. name: "City Size",
  37727. height: math.unit(48384, "feet")
  37728. },
  37729. {
  37730. name: "Continental",
  37731. height: math.unit(4200, "miles")
  37732. },
  37733. {
  37734. name: "Planet Eater",
  37735. height: math.unit(42, "earths")
  37736. },
  37737. {
  37738. name: "Star Swallower",
  37739. height: math.unit(42, "solarradii")
  37740. },
  37741. {
  37742. name: "System Swallower",
  37743. height: math.unit(84000, "AU")
  37744. },
  37745. {
  37746. name: "Galaxy Gobbler",
  37747. height: math.unit(42, "galaxies")
  37748. },
  37749. {
  37750. name: "Universe Devourer",
  37751. height: math.unit(42, "universes")
  37752. },
  37753. {
  37754. name: "Multiverse Muncher",
  37755. height: math.unit(42, "multiverses")
  37756. },
  37757. ]
  37758. ))
  37759. characterMakers.push(() => makeCharacter(
  37760. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37761. {
  37762. front: {
  37763. height: math.unit(36, "feet"),
  37764. name: "Front",
  37765. image: {
  37766. source: "./media/characters/shadow-rat/front.svg",
  37767. extra: 1845/1758,
  37768. bottom: 83/1928
  37769. }
  37770. },
  37771. },
  37772. [
  37773. {
  37774. name: "Macro",
  37775. height: math.unit(36, "feet"),
  37776. default: true
  37777. },
  37778. ]
  37779. ))
  37780. characterMakers.push(() => makeCharacter(
  37781. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37782. {
  37783. side: {
  37784. height: math.unit(8, "feet"),
  37785. weight: math.unit(2630, "lb"),
  37786. name: "Side",
  37787. image: {
  37788. source: "./media/characters/torallia/side.svg",
  37789. extra: 2164/2021,
  37790. bottom: 371/2535
  37791. }
  37792. },
  37793. },
  37794. [
  37795. {
  37796. name: "Mortal Interaction",
  37797. height: math.unit(8, "feet")
  37798. },
  37799. {
  37800. name: "Natural",
  37801. height: math.unit(24, "feet"),
  37802. default: true
  37803. },
  37804. {
  37805. name: "Giant",
  37806. height: math.unit(80, "feet")
  37807. },
  37808. {
  37809. name: "Kaiju",
  37810. height: math.unit(240, "feet")
  37811. },
  37812. {
  37813. name: "Macro",
  37814. height: math.unit(800, "feet")
  37815. },
  37816. {
  37817. name: "Macro+",
  37818. height: math.unit(2400, "feet")
  37819. },
  37820. {
  37821. name: "Macro++",
  37822. height: math.unit(8000, "feet")
  37823. },
  37824. {
  37825. name: "City-Crushing",
  37826. height: math.unit(24000, "feet")
  37827. },
  37828. {
  37829. name: "Mountain-Mashing",
  37830. height: math.unit(80000, "feet")
  37831. },
  37832. {
  37833. name: "District Demolisher",
  37834. height: math.unit(240000, "feet")
  37835. },
  37836. {
  37837. name: "Tri-County Terror",
  37838. height: math.unit(800000, "feet")
  37839. },
  37840. {
  37841. name: "State Smasher",
  37842. height: math.unit(2.4e6, "feet")
  37843. },
  37844. {
  37845. name: "Nation Nemesis",
  37846. height: math.unit(8e6, "feet")
  37847. },
  37848. {
  37849. name: "Continent Cracker",
  37850. height: math.unit(2.4e7, "feet")
  37851. },
  37852. {
  37853. name: "Planet-Pillaging",
  37854. height: math.unit(8e7, "feet")
  37855. },
  37856. {
  37857. name: "Earth-Eclipsing",
  37858. height: math.unit(2.4e8, "feet")
  37859. },
  37860. {
  37861. name: "Jovian-Jostling",
  37862. height: math.unit(8e8, "feet")
  37863. },
  37864. {
  37865. name: "Gas Giant Gulper",
  37866. height: math.unit(2.4e9, "feet")
  37867. },
  37868. {
  37869. name: "Astral Annihilator",
  37870. height: math.unit(8e9, "feet")
  37871. },
  37872. {
  37873. name: "Celestial Conqueror",
  37874. height: math.unit(2.4e10, "feet")
  37875. },
  37876. {
  37877. name: "Sol-Swallowing",
  37878. height: math.unit(8e10, "feet")
  37879. },
  37880. {
  37881. name: "Hunter of the Heavens",
  37882. height: math.unit(2.4e13, "feet")
  37883. },
  37884. ]
  37885. ))
  37886. characterMakers.push(() => makeCharacter(
  37887. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37888. {
  37889. front: {
  37890. height: math.unit(6 + 8/12, "feet"),
  37891. name: "Front",
  37892. image: {
  37893. source: "./media/characters/rebecca-pawlson/front.svg",
  37894. extra: 1737/1596,
  37895. bottom: 107/1844
  37896. }
  37897. },
  37898. back: {
  37899. height: math.unit(6 + 8/12, "feet"),
  37900. name: "Back",
  37901. image: {
  37902. source: "./media/characters/rebecca-pawlson/back.svg",
  37903. extra: 1702/1523,
  37904. bottom: 86/1788
  37905. }
  37906. },
  37907. },
  37908. [
  37909. {
  37910. name: "Normal",
  37911. height: math.unit(6 + 8/12, "feet")
  37912. },
  37913. {
  37914. name: "Mini Macro",
  37915. height: math.unit(10, "feet"),
  37916. default: true
  37917. },
  37918. {
  37919. name: "Macro",
  37920. height: math.unit(100, "feet")
  37921. },
  37922. {
  37923. name: "Mega Macro",
  37924. height: math.unit(2500, "feet")
  37925. },
  37926. {
  37927. name: "Giga Macro",
  37928. height: math.unit(50, "miles")
  37929. },
  37930. ]
  37931. ))
  37932. characterMakers.push(() => makeCharacter(
  37933. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37934. {
  37935. front: {
  37936. height: math.unit(7 + 6/12, "feet"),
  37937. weight: math.unit(600, "lb"),
  37938. name: "Front",
  37939. image: {
  37940. source: "./media/characters/moxie-nova/front.svg",
  37941. extra: 1734/1652,
  37942. bottom: 41/1775
  37943. }
  37944. },
  37945. },
  37946. [
  37947. {
  37948. name: "Normal",
  37949. height: math.unit(7 + 6/12, "feet"),
  37950. default: true
  37951. },
  37952. ]
  37953. ))
  37954. characterMakers.push(() => makeCharacter(
  37955. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37956. {
  37957. front: {
  37958. height: math.unit(5, "feet"),
  37959. weight: math.unit(150, "lb"),
  37960. name: "Front",
  37961. image: {
  37962. source: "./media/characters/tiffany/front.svg",
  37963. extra: 1941/1845,
  37964. bottom: 58/1999
  37965. }
  37966. },
  37967. },
  37968. [
  37969. {
  37970. name: "Normal",
  37971. height: math.unit(5, "feet"),
  37972. default: true
  37973. },
  37974. ]
  37975. ))
  37976. characterMakers.push(() => makeCharacter(
  37977. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37978. {
  37979. front: {
  37980. height: math.unit(8, "feet"),
  37981. weight: math.unit(300, "lb"),
  37982. name: "Front",
  37983. image: {
  37984. source: "./media/characters/raxinath/front.svg",
  37985. extra: 1407/1309,
  37986. bottom: 39/1446
  37987. }
  37988. },
  37989. back: {
  37990. height: math.unit(8, "feet"),
  37991. weight: math.unit(300, "lb"),
  37992. name: "Back",
  37993. image: {
  37994. source: "./media/characters/raxinath/back.svg",
  37995. extra: 1405/1315,
  37996. bottom: 9/1414
  37997. }
  37998. },
  37999. },
  38000. [
  38001. {
  38002. name: "Speck",
  38003. height: math.unit(0.5, "nm")
  38004. },
  38005. {
  38006. name: "Micro",
  38007. height: math.unit(3, "inches")
  38008. },
  38009. {
  38010. name: "Kobold",
  38011. height: math.unit(3, "feet")
  38012. },
  38013. {
  38014. name: "Normal",
  38015. height: math.unit(8, "feet"),
  38016. default: true
  38017. },
  38018. {
  38019. name: "Giant",
  38020. height: math.unit(50, "feet")
  38021. },
  38022. {
  38023. name: "Macro",
  38024. height: math.unit(1000, "feet")
  38025. },
  38026. {
  38027. name: "Megamacro",
  38028. height: math.unit(1, "mile")
  38029. },
  38030. ]
  38031. ))
  38032. characterMakers.push(() => makeCharacter(
  38033. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38034. {
  38035. front: {
  38036. height: math.unit(10, "feet"),
  38037. weight: math.unit(1442, "lb"),
  38038. name: "Front",
  38039. image: {
  38040. source: "./media/characters/mal-dragon/front.svg",
  38041. extra: 1515/1444,
  38042. bottom: 113/1628
  38043. }
  38044. },
  38045. back: {
  38046. height: math.unit(10, "feet"),
  38047. weight: math.unit(1442, "lb"),
  38048. name: "Back",
  38049. image: {
  38050. source: "./media/characters/mal-dragon/back.svg",
  38051. extra: 1527/1434,
  38052. bottom: 25/1552
  38053. }
  38054. },
  38055. },
  38056. [
  38057. {
  38058. name: "Mortal Interaction",
  38059. height: math.unit(10, "feet"),
  38060. default: true
  38061. },
  38062. {
  38063. name: "Large",
  38064. height: math.unit(30, "feet")
  38065. },
  38066. {
  38067. name: "Kaiju",
  38068. height: math.unit(300, "feet")
  38069. },
  38070. {
  38071. name: "Megamacro",
  38072. height: math.unit(10000, "feet")
  38073. },
  38074. {
  38075. name: "Continent Cracker",
  38076. height: math.unit(30000000, "feet")
  38077. },
  38078. {
  38079. name: "Sol-Swallowing",
  38080. height: math.unit(1e11, "feet")
  38081. },
  38082. {
  38083. name: "Light Universal",
  38084. height: math.unit(5, "universes")
  38085. },
  38086. {
  38087. name: "Universe Atoms",
  38088. height: math.unit(1.829e9, "universes")
  38089. },
  38090. {
  38091. name: "Light Multiversal",
  38092. height: math.unit(5, "multiverses")
  38093. },
  38094. {
  38095. name: "Multiverse Atoms",
  38096. height: math.unit(1.829e9, "multiverses")
  38097. },
  38098. {
  38099. name: "Fabric of Time",
  38100. height: math.unit(1e262, "multiverses")
  38101. },
  38102. ]
  38103. ))
  38104. characterMakers.push(() => makeCharacter(
  38105. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38106. {
  38107. front: {
  38108. height: math.unit(9, "feet"),
  38109. weight: math.unit(1050, "lb"),
  38110. name: "Front",
  38111. image: {
  38112. source: "./media/characters/tabitha/front.svg",
  38113. extra: 2083/1994,
  38114. bottom: 68/2151
  38115. }
  38116. },
  38117. },
  38118. [
  38119. {
  38120. name: "Baseline",
  38121. height: math.unit(9, "feet"),
  38122. default: true
  38123. },
  38124. {
  38125. name: "Giant",
  38126. height: math.unit(90, "feet")
  38127. },
  38128. {
  38129. name: "Macro",
  38130. height: math.unit(900, "feet")
  38131. },
  38132. {
  38133. name: "Megamacro",
  38134. height: math.unit(9000, "feet")
  38135. },
  38136. {
  38137. name: "City-Crushing",
  38138. height: math.unit(27000, "feet")
  38139. },
  38140. {
  38141. name: "Mountain-Mashing",
  38142. height: math.unit(90000, "feet")
  38143. },
  38144. {
  38145. name: "Nation Nemesis",
  38146. height: math.unit(9e6, "feet")
  38147. },
  38148. {
  38149. name: "Continent Cracker",
  38150. height: math.unit(27e6, "feet")
  38151. },
  38152. {
  38153. name: "Earth-Eclipsing",
  38154. height: math.unit(2.7e8, "feet")
  38155. },
  38156. {
  38157. name: "Gas Giant Gulper",
  38158. height: math.unit(2.7e9, "feet")
  38159. },
  38160. {
  38161. name: "Sol-Swallowing",
  38162. height: math.unit(9e10, "feet")
  38163. },
  38164. {
  38165. name: "Galaxy Gulper",
  38166. height: math.unit(9, "galaxies")
  38167. },
  38168. {
  38169. name: "Cosmos Churner",
  38170. height: math.unit(9, "universes")
  38171. },
  38172. ]
  38173. ))
  38174. characterMakers.push(() => makeCharacter(
  38175. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38176. {
  38177. front: {
  38178. height: math.unit(160, "cm"),
  38179. weight: math.unit(55, "kg"),
  38180. name: "Front",
  38181. image: {
  38182. source: "./media/characters/tow/front.svg",
  38183. extra: 1751/1722,
  38184. bottom: 74/1825
  38185. }
  38186. },
  38187. },
  38188. [
  38189. {
  38190. name: "Norm",
  38191. height: math.unit(160, "cm")
  38192. },
  38193. {
  38194. name: "Casual",
  38195. height: math.unit(3200, "m"),
  38196. default: true
  38197. },
  38198. {
  38199. name: "Show-Off",
  38200. height: math.unit(160, "km")
  38201. },
  38202. ]
  38203. ))
  38204. characterMakers.push(() => makeCharacter(
  38205. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38206. {
  38207. front: {
  38208. height: math.unit(7 + 11/12, "feet"),
  38209. weight: math.unit(342.8, "lb"),
  38210. name: "Front",
  38211. image: {
  38212. source: "./media/characters/vivian-orca-dragon/front.svg",
  38213. extra: 1890/1865,
  38214. bottom: 28/1918
  38215. }
  38216. },
  38217. },
  38218. [
  38219. {
  38220. name: "Micro",
  38221. height: math.unit(5, "inches")
  38222. },
  38223. {
  38224. name: "Normal",
  38225. height: math.unit(7 + 11/12, "feet"),
  38226. default: true
  38227. },
  38228. {
  38229. name: "Macro",
  38230. height: math.unit(395 + 7/12, "feet")
  38231. },
  38232. ]
  38233. ))
  38234. characterMakers.push(() => makeCharacter(
  38235. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38236. {
  38237. side: {
  38238. height: math.unit(10, "feet"),
  38239. weight: math.unit(1442, "lb"),
  38240. name: "Side",
  38241. image: {
  38242. source: "./media/characters/lotherakon/side.svg",
  38243. extra: 1604/1497,
  38244. bottom: 89/1693
  38245. }
  38246. },
  38247. },
  38248. [
  38249. {
  38250. name: "Mortal Interaction",
  38251. height: math.unit(10, "feet")
  38252. },
  38253. {
  38254. name: "Large",
  38255. height: math.unit(30, "feet"),
  38256. default: true
  38257. },
  38258. {
  38259. name: "Giant",
  38260. height: math.unit(100, "feet")
  38261. },
  38262. {
  38263. name: "Kaiju",
  38264. height: math.unit(300, "feet")
  38265. },
  38266. {
  38267. name: "Macro",
  38268. height: math.unit(1000, "feet")
  38269. },
  38270. {
  38271. name: "Macro+",
  38272. height: math.unit(3000, "feet")
  38273. },
  38274. {
  38275. name: "Megamacro",
  38276. height: math.unit(10000, "feet")
  38277. },
  38278. {
  38279. name: "City-Crushing",
  38280. height: math.unit(30000, "feet")
  38281. },
  38282. {
  38283. name: "Continent Cracker",
  38284. height: math.unit(30e6, "feet")
  38285. },
  38286. {
  38287. name: "Earth Eclipsing",
  38288. height: math.unit(3e8, "feet")
  38289. },
  38290. {
  38291. name: "Gas Giant Gulper",
  38292. height: math.unit(3e9, "feet")
  38293. },
  38294. {
  38295. name: "Sol-Swallowing",
  38296. height: math.unit(1e11, "feet")
  38297. },
  38298. {
  38299. name: "System Swallower",
  38300. height: math.unit(3e14, "feet")
  38301. },
  38302. {
  38303. name: "Galaxy Gulper",
  38304. height: math.unit(10, "galaxies")
  38305. },
  38306. {
  38307. name: "Light Universal",
  38308. height: math.unit(5, "universes")
  38309. },
  38310. {
  38311. name: "Universe Palm",
  38312. height: math.unit(20, "universes")
  38313. },
  38314. {
  38315. name: "Light Multiversal",
  38316. height: math.unit(5, "multiverses")
  38317. },
  38318. {
  38319. name: "Multiverse Palm",
  38320. height: math.unit(20, "multiverses")
  38321. },
  38322. {
  38323. name: "Inferno Incarnate",
  38324. height: math.unit(1e7, "multiverses")
  38325. },
  38326. ]
  38327. ))
  38328. characterMakers.push(() => makeCharacter(
  38329. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38330. {
  38331. front: {
  38332. height: math.unit(8, "feet"),
  38333. weight: math.unit(1200, "lb"),
  38334. name: "Front",
  38335. image: {
  38336. source: "./media/characters/malithee/front.svg",
  38337. extra: 1675/1640,
  38338. bottom: 162/1837
  38339. }
  38340. },
  38341. },
  38342. [
  38343. {
  38344. name: "Mortal Interaction",
  38345. height: math.unit(8, "feet"),
  38346. default: true
  38347. },
  38348. {
  38349. name: "Large",
  38350. height: math.unit(24, "feet")
  38351. },
  38352. {
  38353. name: "Kaiju",
  38354. height: math.unit(240, "feet")
  38355. },
  38356. {
  38357. name: "Megamacro",
  38358. height: math.unit(8000, "feet")
  38359. },
  38360. {
  38361. name: "Continent Cracker",
  38362. height: math.unit(24e6, "feet")
  38363. },
  38364. {
  38365. name: "Earth-Eclipsing",
  38366. height: math.unit(2.4e8, "feet")
  38367. },
  38368. {
  38369. name: "Sol-Swallowing",
  38370. height: math.unit(8e10, "feet")
  38371. },
  38372. {
  38373. name: "Galaxy Gulper",
  38374. height: math.unit(8, "galaxies")
  38375. },
  38376. {
  38377. name: "Light Universal",
  38378. height: math.unit(4, "universes")
  38379. },
  38380. {
  38381. name: "Universe Atoms",
  38382. height: math.unit(1.829e9, "universes")
  38383. },
  38384. {
  38385. name: "Light Multiversal",
  38386. height: math.unit(4, "multiverses")
  38387. },
  38388. {
  38389. name: "Multiverse Atoms",
  38390. height: math.unit(1.829e9, "multiverses")
  38391. },
  38392. {
  38393. name: "Nigh-Omnipresence",
  38394. height: math.unit(8e261, "multiverses")
  38395. },
  38396. ]
  38397. ))
  38398. characterMakers.push(() => makeCharacter(
  38399. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38400. {
  38401. front: {
  38402. height: math.unit(10, "feet"),
  38403. weight: math.unit(1500, "lb"),
  38404. name: "Front",
  38405. image: {
  38406. source: "./media/characters/miles-thestia/front.svg",
  38407. extra: 1812/1727,
  38408. bottom: 86/1898
  38409. }
  38410. },
  38411. back: {
  38412. height: math.unit(10, "feet"),
  38413. weight: math.unit(1500, "lb"),
  38414. name: "Back",
  38415. image: {
  38416. source: "./media/characters/miles-thestia/back.svg",
  38417. extra: 1799/1690,
  38418. bottom: 47/1846
  38419. }
  38420. },
  38421. frontNsfw: {
  38422. height: math.unit(10, "feet"),
  38423. weight: math.unit(1500, "lb"),
  38424. name: "Front (NSFW)",
  38425. image: {
  38426. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38427. extra: 1812/1727,
  38428. bottom: 86/1898
  38429. }
  38430. },
  38431. },
  38432. [
  38433. {
  38434. name: "Mini-Macro",
  38435. height: math.unit(10, "feet"),
  38436. default: true
  38437. },
  38438. ]
  38439. ))
  38440. characterMakers.push(() => makeCharacter(
  38441. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38442. {
  38443. front: {
  38444. height: math.unit(25, "feet"),
  38445. name: "Front",
  38446. image: {
  38447. source: "./media/characters/titan-s-wulf/front.svg",
  38448. extra: 1560/1484,
  38449. bottom: 76/1636
  38450. }
  38451. },
  38452. },
  38453. [
  38454. {
  38455. name: "Smallest",
  38456. height: math.unit(25, "feet"),
  38457. default: true
  38458. },
  38459. {
  38460. name: "Normal",
  38461. height: math.unit(200, "feet")
  38462. },
  38463. {
  38464. name: "Macro",
  38465. height: math.unit(200000, "feet")
  38466. },
  38467. {
  38468. name: "Multiversal Original",
  38469. height: math.unit(10000, "multiverses")
  38470. },
  38471. ]
  38472. ))
  38473. characterMakers.push(() => makeCharacter(
  38474. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38475. {
  38476. front: {
  38477. height: math.unit(8, "feet"),
  38478. weight: math.unit(553, "lb"),
  38479. name: "Front",
  38480. image: {
  38481. source: "./media/characters/tawendeh/front.svg",
  38482. extra: 2365/2268,
  38483. bottom: 83/2448
  38484. }
  38485. },
  38486. frontClothed: {
  38487. height: math.unit(8, "feet"),
  38488. weight: math.unit(553, "lb"),
  38489. name: "Front (Clothed)",
  38490. image: {
  38491. source: "./media/characters/tawendeh/front-clothed.svg",
  38492. extra: 2365/2268,
  38493. bottom: 83/2448
  38494. }
  38495. },
  38496. back: {
  38497. height: math.unit(8, "feet"),
  38498. weight: math.unit(553, "lb"),
  38499. name: "Back",
  38500. image: {
  38501. source: "./media/characters/tawendeh/back.svg",
  38502. extra: 2397/2294,
  38503. bottom: 42/2439
  38504. }
  38505. },
  38506. },
  38507. [
  38508. {
  38509. name: "Mortal Interaction",
  38510. height: math.unit(8, "feet"),
  38511. default: true
  38512. },
  38513. {
  38514. name: "Giant",
  38515. height: math.unit(80, "feet")
  38516. },
  38517. {
  38518. name: "Macro",
  38519. height: math.unit(800, "feet")
  38520. },
  38521. {
  38522. name: "Megamacro",
  38523. height: math.unit(8000, "feet")
  38524. },
  38525. {
  38526. name: "City-Crushing",
  38527. height: math.unit(24000, "feet")
  38528. },
  38529. {
  38530. name: "Mountain-Mashing",
  38531. height: math.unit(80000, "feet")
  38532. },
  38533. {
  38534. name: "Nation Nemesis",
  38535. height: math.unit(8e6, "feet")
  38536. },
  38537. {
  38538. name: "Continent Cracker",
  38539. height: math.unit(24e6, "feet")
  38540. },
  38541. {
  38542. name: "Earth-Eclipsing",
  38543. height: math.unit(2.4e8, "feet")
  38544. },
  38545. {
  38546. name: "Gas Giant Gulper",
  38547. height: math.unit(2.4e9, "feet")
  38548. },
  38549. {
  38550. name: "Sol-Swallowing",
  38551. height: math.unit(8e10, "feet")
  38552. },
  38553. {
  38554. name: "Galaxy Gulper",
  38555. height: math.unit(8, "galaxies")
  38556. },
  38557. {
  38558. name: "Cosmos Churner",
  38559. height: math.unit(8, "universes")
  38560. },
  38561. {
  38562. name: "Omnipotent Otter",
  38563. height: math.unit(80, "universes")
  38564. },
  38565. ]
  38566. ))
  38567. characterMakers.push(() => makeCharacter(
  38568. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38569. {
  38570. front: {
  38571. height: math.unit(2.6, "meters"),
  38572. weight: math.unit(900, "kg"),
  38573. name: "Front",
  38574. image: {
  38575. source: "./media/characters/neesha/front.svg",
  38576. extra: 1803/1653,
  38577. bottom: 128/1931
  38578. }
  38579. },
  38580. },
  38581. [
  38582. {
  38583. name: "Normal",
  38584. height: math.unit(2.6, "meters"),
  38585. default: true
  38586. },
  38587. {
  38588. name: "Macro",
  38589. height: math.unit(50, "meters")
  38590. },
  38591. ]
  38592. ))
  38593. characterMakers.push(() => makeCharacter(
  38594. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38595. {
  38596. front: {
  38597. height: math.unit(5, "feet"),
  38598. weight: math.unit(185, "lb"),
  38599. name: "Front",
  38600. image: {
  38601. source: "./media/characters/kyera/front.svg",
  38602. extra: 1875/1790,
  38603. bottom: 96/1971
  38604. }
  38605. },
  38606. },
  38607. [
  38608. {
  38609. name: "Normal",
  38610. height: math.unit(5, "feet"),
  38611. default: true
  38612. },
  38613. ]
  38614. ))
  38615. characterMakers.push(() => makeCharacter(
  38616. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38617. {
  38618. front: {
  38619. height: math.unit(7 + 6/12, "feet"),
  38620. weight: math.unit(540, "lb"),
  38621. name: "Front",
  38622. image: {
  38623. source: "./media/characters/yuko/front.svg",
  38624. extra: 1282/1222,
  38625. bottom: 101/1383
  38626. }
  38627. },
  38628. frontClothed: {
  38629. height: math.unit(7 + 6/12, "feet"),
  38630. weight: math.unit(540, "lb"),
  38631. name: "Front (Clothed)",
  38632. image: {
  38633. source: "./media/characters/yuko/front-clothed.svg",
  38634. extra: 1282/1222,
  38635. bottom: 101/1383
  38636. }
  38637. },
  38638. },
  38639. [
  38640. {
  38641. name: "Normal",
  38642. height: math.unit(7 + 6/12, "feet"),
  38643. default: true
  38644. },
  38645. {
  38646. name: "Macro",
  38647. height: math.unit(26 + 9/12, "feet")
  38648. },
  38649. {
  38650. name: "Megamacro",
  38651. height: math.unit(300, "feet")
  38652. },
  38653. {
  38654. name: "Gigamacro",
  38655. height: math.unit(5000, "feet")
  38656. },
  38657. {
  38658. name: "Planetary",
  38659. height: math.unit(10000, "miles")
  38660. },
  38661. ]
  38662. ))
  38663. characterMakers.push(() => makeCharacter(
  38664. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38665. {
  38666. front: {
  38667. height: math.unit(8 + 2/12, "feet"),
  38668. weight: math.unit(600, "lb"),
  38669. name: "Front",
  38670. image: {
  38671. source: "./media/characters/deam-nitrel/front.svg",
  38672. extra: 1308/1234,
  38673. bottom: 125/1433
  38674. }
  38675. },
  38676. },
  38677. [
  38678. {
  38679. name: "Normal",
  38680. height: math.unit(8 + 2/12, "feet"),
  38681. default: true
  38682. },
  38683. ]
  38684. ))
  38685. characterMakers.push(() => makeCharacter(
  38686. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38687. {
  38688. front: {
  38689. height: math.unit(6.1, "feet"),
  38690. weight: math.unit(180, "lb"),
  38691. name: "Front",
  38692. image: {
  38693. source: "./media/characters/skyress/front.svg",
  38694. extra: 1045/915,
  38695. bottom: 28/1073
  38696. }
  38697. },
  38698. maw: {
  38699. height: math.unit(1, "feet"),
  38700. name: "Maw",
  38701. image: {
  38702. source: "./media/characters/skyress/maw.svg"
  38703. }
  38704. },
  38705. },
  38706. [
  38707. {
  38708. name: "Normal",
  38709. height: math.unit(6.1, "feet"),
  38710. default: true
  38711. },
  38712. {
  38713. name: "Macro",
  38714. height: math.unit(200, "feet")
  38715. },
  38716. ]
  38717. ))
  38718. characterMakers.push(() => makeCharacter(
  38719. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38720. {
  38721. front: {
  38722. height: math.unit(4 + 2/12, "feet"),
  38723. weight: math.unit(40, "kg"),
  38724. name: "Front",
  38725. image: {
  38726. source: "./media/characters/amethyst-jones/front.svg",
  38727. extra: 1220/1150,
  38728. bottom: 101/1321
  38729. }
  38730. },
  38731. },
  38732. [
  38733. {
  38734. name: "Normal",
  38735. height: math.unit(4 + 2/12, "feet"),
  38736. default: true
  38737. },
  38738. ]
  38739. ))
  38740. characterMakers.push(() => makeCharacter(
  38741. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38742. {
  38743. front: {
  38744. height: math.unit(1.7, "m"),
  38745. weight: math.unit(135, "lb"),
  38746. name: "Front",
  38747. image: {
  38748. source: "./media/characters/jade/front.svg",
  38749. extra: 1818/1767,
  38750. bottom: 32/1850
  38751. }
  38752. },
  38753. back: {
  38754. height: math.unit(1.7, "m"),
  38755. weight: math.unit(135, "lb"),
  38756. name: "Back",
  38757. image: {
  38758. source: "./media/characters/jade/back.svg",
  38759. extra: 1869/1809,
  38760. bottom: 35/1904
  38761. }
  38762. },
  38763. hand: {
  38764. height: math.unit(0.24, "m"),
  38765. name: "Hand",
  38766. image: {
  38767. source: "./media/characters/jade/hand.svg"
  38768. }
  38769. },
  38770. foot: {
  38771. height: math.unit(0.263, "m"),
  38772. name: "Foot",
  38773. image: {
  38774. source: "./media/characters/jade/foot.svg"
  38775. }
  38776. },
  38777. dick: {
  38778. height: math.unit(0.47, "m"),
  38779. name: "Dick",
  38780. image: {
  38781. source: "./media/characters/jade/dick.svg"
  38782. }
  38783. },
  38784. },
  38785. [
  38786. {
  38787. name: "Micro",
  38788. height: math.unit(22, "cm")
  38789. },
  38790. {
  38791. name: "Normal",
  38792. height: math.unit(1.7, "m"),
  38793. default: true
  38794. },
  38795. {
  38796. name: "Macro",
  38797. height: math.unit(152, "m")
  38798. },
  38799. ]
  38800. ))
  38801. characterMakers.push(() => makeCharacter(
  38802. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38803. {
  38804. front: {
  38805. height: math.unit(100, "miles"),
  38806. weight: math.unit(20000, "tons"),
  38807. name: "Front",
  38808. image: {
  38809. source: "./media/characters/cookie/front.svg",
  38810. extra: 1125/1070,
  38811. bottom: 30/1155
  38812. }
  38813. },
  38814. },
  38815. [
  38816. {
  38817. name: "Big",
  38818. height: math.unit(50, "feet")
  38819. },
  38820. {
  38821. name: "Macro",
  38822. height: math.unit(100, "miles"),
  38823. default: true
  38824. },
  38825. {
  38826. name: "Megamacro",
  38827. height: math.unit(90000, "miles")
  38828. },
  38829. ]
  38830. ))
  38831. characterMakers.push(() => makeCharacter(
  38832. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38833. {
  38834. front: {
  38835. height: math.unit(6, "feet"),
  38836. weight: math.unit(145, "lb"),
  38837. name: "Front",
  38838. image: {
  38839. source: "./media/characters/farzian/front.svg",
  38840. extra: 1902/1693,
  38841. bottom: 108/2010
  38842. }
  38843. },
  38844. },
  38845. [
  38846. {
  38847. name: "Macro",
  38848. height: math.unit(500, "feet"),
  38849. default: true
  38850. },
  38851. ]
  38852. ))
  38853. characterMakers.push(() => makeCharacter(
  38854. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38855. {
  38856. front: {
  38857. height: math.unit(3 + 6/12, "feet"),
  38858. weight: math.unit(50, "lb"),
  38859. name: "Front",
  38860. image: {
  38861. source: "./media/characters/kimberly-tilson/front.svg",
  38862. extra: 1400/1322,
  38863. bottom: 36/1436
  38864. }
  38865. },
  38866. back: {
  38867. height: math.unit(3 + 6/12, "feet"),
  38868. weight: math.unit(50, "lb"),
  38869. name: "Back",
  38870. image: {
  38871. source: "./media/characters/kimberly-tilson/back.svg",
  38872. extra: 1370/1307,
  38873. bottom: 20/1390
  38874. }
  38875. },
  38876. },
  38877. [
  38878. {
  38879. name: "Normal",
  38880. height: math.unit(3 + 6/12, "feet"),
  38881. default: true
  38882. },
  38883. ]
  38884. ))
  38885. characterMakers.push(() => makeCharacter(
  38886. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38887. {
  38888. front: {
  38889. height: math.unit(1148, "feet"),
  38890. weight: math.unit(34057, "lb"),
  38891. name: "Front",
  38892. image: {
  38893. source: "./media/characters/harthos/front.svg",
  38894. extra: 1391/1339,
  38895. bottom: 13/1404
  38896. }
  38897. },
  38898. },
  38899. [
  38900. {
  38901. name: "Macro",
  38902. height: math.unit(1148, "feet"),
  38903. default: true
  38904. },
  38905. ]
  38906. ))
  38907. characterMakers.push(() => makeCharacter(
  38908. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38909. {
  38910. front: {
  38911. height: math.unit(15, "feet"),
  38912. name: "Front",
  38913. image: {
  38914. source: "./media/characters/hypatia/front.svg",
  38915. extra: 1653/1591,
  38916. bottom: 79/1732
  38917. }
  38918. },
  38919. },
  38920. [
  38921. {
  38922. name: "Normal",
  38923. height: math.unit(15, "feet")
  38924. },
  38925. {
  38926. name: "Small",
  38927. height: math.unit(300, "feet")
  38928. },
  38929. {
  38930. name: "Macro",
  38931. height: math.unit(2500, "feet"),
  38932. default: true
  38933. },
  38934. {
  38935. name: "Mega Macro",
  38936. height: math.unit(1500, "miles")
  38937. },
  38938. {
  38939. name: "Giga Macro",
  38940. height: math.unit(1.5e6, "miles")
  38941. },
  38942. ]
  38943. ))
  38944. characterMakers.push(() => makeCharacter(
  38945. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38946. {
  38947. front: {
  38948. height: math.unit(6, "feet"),
  38949. weight: math.unit(200, "lb"),
  38950. name: "Front",
  38951. image: {
  38952. source: "./media/characters/wulver/front.svg",
  38953. extra: 1724/1632,
  38954. bottom: 130/1854
  38955. }
  38956. },
  38957. frontNsfw: {
  38958. height: math.unit(6, "feet"),
  38959. weight: math.unit(200, "lb"),
  38960. name: "Front (NSFW)",
  38961. image: {
  38962. source: "./media/characters/wulver/front-nsfw.svg",
  38963. extra: 1724/1632,
  38964. bottom: 130/1854
  38965. }
  38966. },
  38967. },
  38968. [
  38969. {
  38970. name: "Human-Sized",
  38971. height: math.unit(6, "feet")
  38972. },
  38973. {
  38974. name: "Normal",
  38975. height: math.unit(4, "meters"),
  38976. default: true
  38977. },
  38978. {
  38979. name: "Large",
  38980. height: math.unit(6, "m")
  38981. },
  38982. ]
  38983. ))
  38984. characterMakers.push(() => makeCharacter(
  38985. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38986. {
  38987. front: {
  38988. height: math.unit(7, "feet"),
  38989. name: "Front",
  38990. image: {
  38991. source: "./media/characters/maru/front.svg",
  38992. extra: 1595/1570,
  38993. bottom: 0/1595
  38994. }
  38995. },
  38996. },
  38997. [
  38998. {
  38999. name: "Normal",
  39000. height: math.unit(7, "feet"),
  39001. default: true
  39002. },
  39003. {
  39004. name: "Macro",
  39005. height: math.unit(700, "feet")
  39006. },
  39007. {
  39008. name: "Mega Macro",
  39009. height: math.unit(25, "miles")
  39010. },
  39011. ]
  39012. ))
  39013. characterMakers.push(() => makeCharacter(
  39014. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39015. {
  39016. front: {
  39017. height: math.unit(6, "feet"),
  39018. weight: math.unit(170, "lb"),
  39019. name: "Front",
  39020. image: {
  39021. source: "./media/characters/xenon/front.svg",
  39022. extra: 1376/1305,
  39023. bottom: 56/1432
  39024. }
  39025. },
  39026. back: {
  39027. height: math.unit(6, "feet"),
  39028. weight: math.unit(170, "lb"),
  39029. name: "Back",
  39030. image: {
  39031. source: "./media/characters/xenon/back.svg",
  39032. extra: 1328/1259,
  39033. bottom: 95/1423
  39034. }
  39035. },
  39036. maw: {
  39037. height: math.unit(0.52, "feet"),
  39038. name: "Maw",
  39039. image: {
  39040. source: "./media/characters/xenon/maw.svg"
  39041. }
  39042. },
  39043. hand: {
  39044. height: math.unit(0.82, "feet"),
  39045. name: "Hand",
  39046. image: {
  39047. source: "./media/characters/xenon/hand.svg"
  39048. }
  39049. },
  39050. foot: {
  39051. height: math.unit(1.13, "feet"),
  39052. name: "Foot",
  39053. image: {
  39054. source: "./media/characters/xenon/foot.svg"
  39055. }
  39056. },
  39057. },
  39058. [
  39059. {
  39060. name: "Micro",
  39061. height: math.unit(0.8, "inches")
  39062. },
  39063. {
  39064. name: "Normal",
  39065. height: math.unit(6, "feet")
  39066. },
  39067. {
  39068. name: "Macro",
  39069. height: math.unit(50, "feet"),
  39070. default: true
  39071. },
  39072. {
  39073. name: "Macro+",
  39074. height: math.unit(250, "feet")
  39075. },
  39076. {
  39077. name: "Megamacro",
  39078. height: math.unit(1500, "feet")
  39079. },
  39080. ]
  39081. ))
  39082. characterMakers.push(() => makeCharacter(
  39083. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39084. {
  39085. front: {
  39086. height: math.unit(7 + 5/12, "feet"),
  39087. name: "Front",
  39088. image: {
  39089. source: "./media/characters/zane/front.svg",
  39090. extra: 1260/1203,
  39091. bottom: 94/1354
  39092. }
  39093. },
  39094. back: {
  39095. height: math.unit(5.05, "feet"),
  39096. name: "Back",
  39097. image: {
  39098. source: "./media/characters/zane/back.svg",
  39099. extra: 893/829,
  39100. bottom: 30/923
  39101. }
  39102. },
  39103. werewolf: {
  39104. height: math.unit(11, "feet"),
  39105. name: "Werewolf",
  39106. image: {
  39107. source: "./media/characters/zane/werewolf.svg",
  39108. extra: 1383/1323,
  39109. bottom: 89/1472
  39110. }
  39111. },
  39112. foot: {
  39113. height: math.unit(1.46, "feet"),
  39114. name: "Foot",
  39115. image: {
  39116. source: "./media/characters/zane/foot.svg"
  39117. }
  39118. },
  39119. footFront: {
  39120. height: math.unit(0.784, "feet"),
  39121. name: "Foot (Front)",
  39122. image: {
  39123. source: "./media/characters/zane/foot-front.svg"
  39124. }
  39125. },
  39126. dick: {
  39127. height: math.unit(1.95, "feet"),
  39128. name: "Dick",
  39129. image: {
  39130. source: "./media/characters/zane/dick.svg"
  39131. }
  39132. },
  39133. dickWerewolf: {
  39134. height: math.unit(3.77, "feet"),
  39135. name: "Dick (Werewolf)",
  39136. image: {
  39137. source: "./media/characters/zane/dick.svg"
  39138. }
  39139. },
  39140. },
  39141. [
  39142. {
  39143. name: "Normal",
  39144. height: math.unit(7 + 5/12, "feet"),
  39145. default: true
  39146. },
  39147. ]
  39148. ))
  39149. characterMakers.push(() => makeCharacter(
  39150. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39151. {
  39152. front: {
  39153. height: math.unit(6 + 2/12, "feet"),
  39154. weight: math.unit(284, "lb"),
  39155. name: "Front",
  39156. image: {
  39157. source: "./media/characters/benni-desparque/front.svg",
  39158. extra: 1353/1126,
  39159. bottom: 69/1422
  39160. }
  39161. },
  39162. },
  39163. [
  39164. {
  39165. name: "Civilian",
  39166. height: math.unit(6 + 2/12, "feet")
  39167. },
  39168. {
  39169. name: "Normal",
  39170. height: math.unit(98, "feet"),
  39171. default: true
  39172. },
  39173. {
  39174. name: "Kaiju Fighter",
  39175. height: math.unit(268, "feet")
  39176. },
  39177. ]
  39178. ))
  39179. characterMakers.push(() => makeCharacter(
  39180. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39181. {
  39182. front: {
  39183. height: math.unit(5, "feet"),
  39184. weight: math.unit(105, "lb"),
  39185. name: "Front",
  39186. image: {
  39187. source: "./media/characters/maxine/front.svg",
  39188. extra: 1386/1250,
  39189. bottom: 71/1457
  39190. }
  39191. },
  39192. },
  39193. [
  39194. {
  39195. name: "Normal",
  39196. height: math.unit(5, "feet"),
  39197. default: true
  39198. },
  39199. ]
  39200. ))
  39201. characterMakers.push(() => makeCharacter(
  39202. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39203. {
  39204. front: {
  39205. height: math.unit(11 + 7/12, "feet"),
  39206. weight: math.unit(9576, "lb"),
  39207. name: "Front",
  39208. image: {
  39209. source: "./media/characters/scaly/front.svg",
  39210. extra: 888/867,
  39211. bottom: 36/924
  39212. }
  39213. },
  39214. },
  39215. [
  39216. {
  39217. name: "Normal",
  39218. height: math.unit(11 + 7/12, "feet"),
  39219. default: true
  39220. },
  39221. ]
  39222. ))
  39223. characterMakers.push(() => makeCharacter(
  39224. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39225. {
  39226. front: {
  39227. height: math.unit(9, "inches"),
  39228. name: "Front",
  39229. image: {
  39230. source: "./media/characters/saelria/front.svg",
  39231. extra: 662/621,
  39232. bottom: 12/674
  39233. }
  39234. },
  39235. },
  39236. [
  39237. {
  39238. name: "Tiny",
  39239. height: math.unit(9, "inches"),
  39240. default: true
  39241. },
  39242. ]
  39243. ))
  39244. characterMakers.push(() => makeCharacter(
  39245. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39246. {
  39247. front: {
  39248. height: math.unit(80, "meters"),
  39249. weight: math.unit(7000, "tonnes"),
  39250. name: "Front",
  39251. image: {
  39252. source: "./media/characters/tef/front.svg",
  39253. extra: 2036/1991,
  39254. bottom: 54/2090
  39255. }
  39256. },
  39257. back: {
  39258. height: math.unit(80, "meters"),
  39259. weight: math.unit(7000, "tonnes"),
  39260. name: "Back",
  39261. image: {
  39262. source: "./media/characters/tef/back.svg",
  39263. extra: 2036/1991,
  39264. bottom: 54/2090
  39265. }
  39266. },
  39267. },
  39268. [
  39269. {
  39270. name: "Macro",
  39271. height: math.unit(80, "meters"),
  39272. default: true
  39273. },
  39274. ]
  39275. ))
  39276. characterMakers.push(() => makeCharacter(
  39277. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39278. {
  39279. front: {
  39280. height: math.unit(13, "feet"),
  39281. weight: math.unit(6, "tons"),
  39282. name: "Front",
  39283. image: {
  39284. source: "./media/characters/rover/front.svg",
  39285. extra: 1233/1156,
  39286. bottom: 50/1283
  39287. }
  39288. },
  39289. back: {
  39290. height: math.unit(13, "feet"),
  39291. weight: math.unit(6, "tons"),
  39292. name: "Back",
  39293. image: {
  39294. source: "./media/characters/rover/back.svg",
  39295. extra: 1327/1258,
  39296. bottom: 39/1366
  39297. }
  39298. },
  39299. },
  39300. [
  39301. {
  39302. name: "Normal",
  39303. height: math.unit(13, "feet"),
  39304. default: true
  39305. },
  39306. {
  39307. name: "Macro",
  39308. height: math.unit(1300, "feet")
  39309. },
  39310. {
  39311. name: "Megamacro",
  39312. height: math.unit(1300, "miles")
  39313. },
  39314. {
  39315. name: "Gigamacro",
  39316. height: math.unit(1300000, "miles")
  39317. },
  39318. ]
  39319. ))
  39320. characterMakers.push(() => makeCharacter(
  39321. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39322. {
  39323. front: {
  39324. height: math.unit(6, "feet"),
  39325. weight: math.unit(150, "lb"),
  39326. name: "Front",
  39327. image: {
  39328. source: "./media/characters/ariz/front.svg",
  39329. extra: 1401/1346,
  39330. bottom: 5/1406
  39331. }
  39332. },
  39333. },
  39334. [
  39335. {
  39336. name: "Normal",
  39337. height: math.unit(10, "feet"),
  39338. default: true
  39339. },
  39340. ]
  39341. ))
  39342. characterMakers.push(() => makeCharacter(
  39343. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39344. {
  39345. front: {
  39346. height: math.unit(6, "feet"),
  39347. weight: math.unit(140, "lb"),
  39348. name: "Front",
  39349. image: {
  39350. source: "./media/characters/sigrun/front.svg",
  39351. extra: 1418/1359,
  39352. bottom: 27/1445
  39353. }
  39354. },
  39355. },
  39356. [
  39357. {
  39358. name: "Macro",
  39359. height: math.unit(35, "feet"),
  39360. default: true
  39361. },
  39362. ]
  39363. ))
  39364. characterMakers.push(() => makeCharacter(
  39365. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39366. {
  39367. front: {
  39368. height: math.unit(6, "feet"),
  39369. weight: math.unit(150, "lb"),
  39370. name: "Front",
  39371. image: {
  39372. source: "./media/characters/numin/front.svg",
  39373. extra: 1433/1388,
  39374. bottom: 12/1445
  39375. }
  39376. },
  39377. },
  39378. [
  39379. {
  39380. name: "Macro",
  39381. height: math.unit(21.5, "km"),
  39382. default: true
  39383. },
  39384. ]
  39385. ))
  39386. characterMakers.push(() => makeCharacter(
  39387. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39388. {
  39389. front: {
  39390. height: math.unit(6, "feet"),
  39391. weight: math.unit(463, "lb"),
  39392. name: "Front",
  39393. image: {
  39394. source: "./media/characters/melwa/front.svg",
  39395. extra: 1307/1248,
  39396. bottom: 93/1400
  39397. }
  39398. },
  39399. },
  39400. [
  39401. {
  39402. name: "Macro",
  39403. height: math.unit(50, "meters"),
  39404. default: true
  39405. },
  39406. ]
  39407. ))
  39408. characterMakers.push(() => makeCharacter(
  39409. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39410. {
  39411. front: {
  39412. height: math.unit(325, "feet"),
  39413. name: "Front",
  39414. image: {
  39415. source: "./media/characters/zorkaiju/front.svg",
  39416. extra: 1955/1814,
  39417. bottom: 40/1995
  39418. }
  39419. },
  39420. frontExtended: {
  39421. height: math.unit(325, "feet"),
  39422. name: "Front (Extended)",
  39423. image: {
  39424. source: "./media/characters/zorkaiju/front-extended.svg",
  39425. extra: 1955/1814,
  39426. bottom: 40/1995
  39427. }
  39428. },
  39429. side: {
  39430. height: math.unit(325, "feet"),
  39431. name: "Side",
  39432. image: {
  39433. source: "./media/characters/zorkaiju/side.svg",
  39434. extra: 1495/1396,
  39435. bottom: 17/1512
  39436. }
  39437. },
  39438. sideExtended: {
  39439. height: math.unit(325, "feet"),
  39440. name: "Side (Extended)",
  39441. image: {
  39442. source: "./media/characters/zorkaiju/side-extended.svg",
  39443. extra: 1495/1396,
  39444. bottom: 17/1512
  39445. }
  39446. },
  39447. back: {
  39448. height: math.unit(325, "feet"),
  39449. name: "Back",
  39450. image: {
  39451. source: "./media/characters/zorkaiju/back.svg",
  39452. extra: 1959/1821,
  39453. bottom: 31/1990
  39454. }
  39455. },
  39456. backExtended: {
  39457. height: math.unit(325, "feet"),
  39458. name: "Back (Extended)",
  39459. image: {
  39460. source: "./media/characters/zorkaiju/back-extended.svg",
  39461. extra: 1959/1821,
  39462. bottom: 31/1990
  39463. }
  39464. },
  39465. hand: {
  39466. height: math.unit(58.4, "feet"),
  39467. name: "Hand",
  39468. image: {
  39469. source: "./media/characters/zorkaiju/hand.svg"
  39470. }
  39471. },
  39472. handExtended: {
  39473. height: math.unit(61.4, "feet"),
  39474. name: "Hand (Extended)",
  39475. image: {
  39476. source: "./media/characters/zorkaiju/hand-extended.svg"
  39477. }
  39478. },
  39479. foot: {
  39480. height: math.unit(95, "feet"),
  39481. name: "Foot",
  39482. image: {
  39483. source: "./media/characters/zorkaiju/foot.svg"
  39484. }
  39485. },
  39486. leftArm: {
  39487. height: math.unit(59, "feet"),
  39488. name: "Left Arm",
  39489. image: {
  39490. source: "./media/characters/zorkaiju/left-arm.svg"
  39491. }
  39492. },
  39493. rightArm: {
  39494. height: math.unit(59, "feet"),
  39495. name: "Right Arm",
  39496. image: {
  39497. source: "./media/characters/zorkaiju/right-arm.svg"
  39498. }
  39499. },
  39500. tail: {
  39501. height: math.unit(104, "feet"),
  39502. name: "Tail",
  39503. image: {
  39504. source: "./media/characters/zorkaiju/tail.svg"
  39505. }
  39506. },
  39507. tailExtended: {
  39508. height: math.unit(104, "feet"),
  39509. name: "Tail (Extended)",
  39510. image: {
  39511. source: "./media/characters/zorkaiju/tail-extended.svg"
  39512. }
  39513. },
  39514. tailBottom: {
  39515. height: math.unit(104, "feet"),
  39516. name: "Tail Bottom",
  39517. image: {
  39518. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39519. }
  39520. },
  39521. crystal: {
  39522. height: math.unit(27.54, "feet"),
  39523. name: "Crystal",
  39524. image: {
  39525. source: "./media/characters/zorkaiju/crystal.svg"
  39526. }
  39527. },
  39528. },
  39529. [
  39530. {
  39531. name: "Kaiju",
  39532. height: math.unit(325, "feet"),
  39533. default: true
  39534. },
  39535. ]
  39536. ))
  39537. characterMakers.push(() => makeCharacter(
  39538. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39539. {
  39540. front: {
  39541. height: math.unit(6 + 1/12, "feet"),
  39542. weight: math.unit(115, "lb"),
  39543. name: "Front",
  39544. image: {
  39545. source: "./media/characters/bailey-belfry/front.svg",
  39546. extra: 1240/1121,
  39547. bottom: 101/1341
  39548. }
  39549. },
  39550. },
  39551. [
  39552. {
  39553. name: "Normal",
  39554. height: math.unit(6 + 1/12, "feet"),
  39555. default: true
  39556. },
  39557. ]
  39558. ))
  39559. characterMakers.push(() => makeCharacter(
  39560. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39561. {
  39562. side: {
  39563. height: math.unit(4, "meters"),
  39564. weight: math.unit(250, "kg"),
  39565. name: "Side",
  39566. image: {
  39567. source: "./media/characters/blacky/side.svg",
  39568. extra: 1027/919,
  39569. bottom: 43/1070
  39570. }
  39571. },
  39572. maw: {
  39573. height: math.unit(1, "meters"),
  39574. name: "Maw",
  39575. image: {
  39576. source: "./media/characters/blacky/maw.svg"
  39577. }
  39578. },
  39579. paw: {
  39580. height: math.unit(1, "meters"),
  39581. name: "Paw",
  39582. image: {
  39583. source: "./media/characters/blacky/paw.svg"
  39584. }
  39585. },
  39586. },
  39587. [
  39588. {
  39589. name: "Normal",
  39590. height: math.unit(4, "meters"),
  39591. default: true
  39592. },
  39593. ]
  39594. ))
  39595. characterMakers.push(() => makeCharacter(
  39596. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39597. {
  39598. front: {
  39599. height: math.unit(170, "cm"),
  39600. weight: math.unit(66, "kg"),
  39601. name: "Front",
  39602. image: {
  39603. source: "./media/characters/thux-ei/front.svg",
  39604. extra: 1109/1011,
  39605. bottom: 8/1117
  39606. }
  39607. },
  39608. },
  39609. [
  39610. {
  39611. name: "Normal",
  39612. height: math.unit(170, "cm"),
  39613. default: true
  39614. },
  39615. ]
  39616. ))
  39617. characterMakers.push(() => makeCharacter(
  39618. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39619. {
  39620. front: {
  39621. height: math.unit(5, "feet"),
  39622. weight: math.unit(120, "lb"),
  39623. name: "Front",
  39624. image: {
  39625. source: "./media/characters/roxanne-voltaire/front.svg",
  39626. extra: 1901/1779,
  39627. bottom: 53/1954
  39628. }
  39629. },
  39630. },
  39631. [
  39632. {
  39633. name: "Normal",
  39634. height: math.unit(5, "feet"),
  39635. default: true
  39636. },
  39637. {
  39638. name: "Giant",
  39639. height: math.unit(50, "feet")
  39640. },
  39641. {
  39642. name: "Titan",
  39643. height: math.unit(500, "feet")
  39644. },
  39645. {
  39646. name: "Macro",
  39647. height: math.unit(5000, "feet")
  39648. },
  39649. {
  39650. name: "Megamacro",
  39651. height: math.unit(50000, "feet")
  39652. },
  39653. {
  39654. name: "Gigamacro",
  39655. height: math.unit(500000, "feet")
  39656. },
  39657. {
  39658. name: "Teramacro",
  39659. height: math.unit(5e6, "feet")
  39660. },
  39661. ]
  39662. ))
  39663. characterMakers.push(() => makeCharacter(
  39664. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39665. {
  39666. front: {
  39667. height: math.unit(6 + 2/12, "feet"),
  39668. name: "Front",
  39669. image: {
  39670. source: "./media/characters/squeaks/front.svg",
  39671. extra: 1823/1768,
  39672. bottom: 138/1961
  39673. }
  39674. },
  39675. },
  39676. [
  39677. {
  39678. name: "Micro",
  39679. height: math.unit(0.5, "inches")
  39680. },
  39681. {
  39682. name: "Normal",
  39683. height: math.unit(6 + 2/12, "feet"),
  39684. default: true
  39685. },
  39686. {
  39687. name: "Macro",
  39688. height: math.unit(600, "feet")
  39689. },
  39690. ]
  39691. ))
  39692. characterMakers.push(() => makeCharacter(
  39693. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39694. {
  39695. front: {
  39696. height: math.unit(1.72, "meters"),
  39697. name: "Front",
  39698. image: {
  39699. source: "./media/characters/archinger/front.svg",
  39700. extra: 1861/1675,
  39701. bottom: 125/1986
  39702. }
  39703. },
  39704. back: {
  39705. height: math.unit(1.72, "meters"),
  39706. name: "Back",
  39707. image: {
  39708. source: "./media/characters/archinger/back.svg",
  39709. extra: 1844/1701,
  39710. bottom: 104/1948
  39711. }
  39712. },
  39713. cock: {
  39714. height: math.unit(0.59, "feet"),
  39715. name: "Cock",
  39716. image: {
  39717. source: "./media/characters/archinger/cock.svg"
  39718. }
  39719. },
  39720. },
  39721. [
  39722. {
  39723. name: "Normal",
  39724. height: math.unit(1.72, "meters"),
  39725. default: true
  39726. },
  39727. {
  39728. name: "Macro",
  39729. height: math.unit(84, "meters")
  39730. },
  39731. {
  39732. name: "Macro+",
  39733. height: math.unit(112, "meters")
  39734. },
  39735. {
  39736. name: "Macro++",
  39737. height: math.unit(960, "meters")
  39738. },
  39739. {
  39740. name: "Macro+++",
  39741. height: math.unit(4, "km")
  39742. },
  39743. {
  39744. name: "Macro++++",
  39745. height: math.unit(48, "km")
  39746. },
  39747. {
  39748. name: "Macro+++++",
  39749. height: math.unit(4500, "km")
  39750. },
  39751. ]
  39752. ))
  39753. characterMakers.push(() => makeCharacter(
  39754. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39755. {
  39756. front: {
  39757. height: math.unit(5 + 5/12, "feet"),
  39758. name: "Front",
  39759. image: {
  39760. source: "./media/characters/alsnapz/front.svg",
  39761. extra: 1157/1065,
  39762. bottom: 42/1199
  39763. }
  39764. },
  39765. },
  39766. [
  39767. {
  39768. name: "Normal",
  39769. height: math.unit(5 + 5/12, "feet"),
  39770. default: true
  39771. },
  39772. ]
  39773. ))
  39774. characterMakers.push(() => makeCharacter(
  39775. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39776. {
  39777. side: {
  39778. height: math.unit(3.2, "earths"),
  39779. name: "Side",
  39780. image: {
  39781. source: "./media/characters/mag/side.svg",
  39782. extra: 1331/1008,
  39783. bottom: 52/1383
  39784. }
  39785. },
  39786. wing: {
  39787. height: math.unit(1.94, "earths"),
  39788. name: "Wing",
  39789. image: {
  39790. source: "./media/characters/mag/wing.svg"
  39791. }
  39792. },
  39793. dick: {
  39794. height: math.unit(1.8, "earths"),
  39795. name: "Dick",
  39796. image: {
  39797. source: "./media/characters/mag/dick.svg"
  39798. }
  39799. },
  39800. ass: {
  39801. height: math.unit(1.33, "earths"),
  39802. name: "Ass",
  39803. image: {
  39804. source: "./media/characters/mag/ass.svg"
  39805. }
  39806. },
  39807. head: {
  39808. height: math.unit(1.1, "earths"),
  39809. name: "Head",
  39810. image: {
  39811. source: "./media/characters/mag/head.svg"
  39812. }
  39813. },
  39814. maw: {
  39815. height: math.unit(1.62, "earths"),
  39816. name: "Maw",
  39817. image: {
  39818. source: "./media/characters/mag/maw.svg"
  39819. }
  39820. },
  39821. },
  39822. [
  39823. {
  39824. name: "Small",
  39825. height: math.unit(162, "feet")
  39826. },
  39827. {
  39828. name: "Normal",
  39829. height: math.unit(3.2, "earths"),
  39830. default: true
  39831. },
  39832. ]
  39833. ))
  39834. characterMakers.push(() => makeCharacter(
  39835. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39836. {
  39837. front: {
  39838. height: math.unit(512, "feet"),
  39839. weight: math.unit(63509, "tonnes"),
  39840. name: "Front",
  39841. image: {
  39842. source: "./media/characters/vorrel-harroc/front.svg",
  39843. extra: 1075/1063,
  39844. bottom: 62/1137
  39845. }
  39846. },
  39847. },
  39848. [
  39849. {
  39850. name: "Normal",
  39851. height: math.unit(10, "feet")
  39852. },
  39853. {
  39854. name: "Macro",
  39855. height: math.unit(512, "feet"),
  39856. default: true
  39857. },
  39858. {
  39859. name: "Megamacro",
  39860. height: math.unit(256, "miles")
  39861. },
  39862. {
  39863. name: "Gigamacro",
  39864. height: math.unit(4096, "miles")
  39865. },
  39866. ]
  39867. ))
  39868. characterMakers.push(() => makeCharacter(
  39869. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39870. {
  39871. side: {
  39872. height: math.unit(50, "feet"),
  39873. name: "Side",
  39874. image: {
  39875. source: "./media/characters/froimar/side.svg",
  39876. extra: 855/638,
  39877. bottom: 99/954
  39878. }
  39879. },
  39880. },
  39881. [
  39882. {
  39883. name: "Macro",
  39884. height: math.unit(50, "feet"),
  39885. default: true
  39886. },
  39887. ]
  39888. ))
  39889. characterMakers.push(() => makeCharacter(
  39890. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39891. {
  39892. front: {
  39893. height: math.unit(210, "miles"),
  39894. name: "Front",
  39895. image: {
  39896. source: "./media/characters/timothy/front.svg",
  39897. extra: 1007/943,
  39898. bottom: 62/1069
  39899. }
  39900. },
  39901. frontSkirt: {
  39902. height: math.unit(210, "miles"),
  39903. name: "Front (Skirt)",
  39904. image: {
  39905. source: "./media/characters/timothy/front-skirt.svg",
  39906. extra: 1007/943,
  39907. bottom: 62/1069
  39908. }
  39909. },
  39910. frontCoat: {
  39911. height: math.unit(210, "miles"),
  39912. name: "Front (Coat)",
  39913. image: {
  39914. source: "./media/characters/timothy/front-coat.svg",
  39915. extra: 1007/943,
  39916. bottom: 62/1069
  39917. }
  39918. },
  39919. },
  39920. [
  39921. {
  39922. name: "Macro",
  39923. height: math.unit(210, "miles"),
  39924. default: true
  39925. },
  39926. {
  39927. name: "Megamacro",
  39928. height: math.unit(210000, "miles")
  39929. },
  39930. ]
  39931. ))
  39932. characterMakers.push(() => makeCharacter(
  39933. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39934. {
  39935. front: {
  39936. height: math.unit(188, "feet"),
  39937. name: "Front",
  39938. image: {
  39939. source: "./media/characters/pyotr/front.svg",
  39940. extra: 1912/1826,
  39941. bottom: 18/1930
  39942. }
  39943. },
  39944. },
  39945. [
  39946. {
  39947. name: "Macro",
  39948. height: math.unit(188, "feet"),
  39949. default: true
  39950. },
  39951. {
  39952. name: "Megamacro",
  39953. height: math.unit(8, "miles")
  39954. },
  39955. ]
  39956. ))
  39957. characterMakers.push(() => makeCharacter(
  39958. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39959. {
  39960. side: {
  39961. height: math.unit(10, "feet"),
  39962. weight: math.unit(4500, "lb"),
  39963. name: "Side",
  39964. image: {
  39965. source: "./media/characters/ackart/side.svg",
  39966. extra: 1776/1668,
  39967. bottom: 116/1892
  39968. }
  39969. },
  39970. },
  39971. [
  39972. {
  39973. name: "Normal",
  39974. height: math.unit(10, "feet"),
  39975. default: true
  39976. },
  39977. ]
  39978. ))
  39979. characterMakers.push(() => makeCharacter(
  39980. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39981. {
  39982. side: {
  39983. height: math.unit(21, "feet"),
  39984. name: "Side",
  39985. image: {
  39986. source: "./media/characters/nolow/side.svg",
  39987. extra: 1484/1434,
  39988. bottom: 85/1569
  39989. }
  39990. },
  39991. sideErect: {
  39992. height: math.unit(21, "feet"),
  39993. name: "Side-erect",
  39994. image: {
  39995. source: "./media/characters/nolow/side-erect.svg",
  39996. extra: 1484/1434,
  39997. bottom: 85/1569
  39998. }
  39999. },
  40000. },
  40001. [
  40002. {
  40003. name: "Regular",
  40004. height: math.unit(12, "feet")
  40005. },
  40006. {
  40007. name: "Big Chee",
  40008. height: math.unit(21, "feet"),
  40009. default: true
  40010. },
  40011. ]
  40012. ))
  40013. characterMakers.push(() => makeCharacter(
  40014. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40015. {
  40016. front: {
  40017. height: math.unit(7, "feet"),
  40018. weight: math.unit(250, "lb"),
  40019. name: "Front",
  40020. image: {
  40021. source: "./media/characters/nines/front.svg",
  40022. extra: 1741/1607,
  40023. bottom: 41/1782
  40024. }
  40025. },
  40026. side: {
  40027. height: math.unit(7, "feet"),
  40028. weight: math.unit(250, "lb"),
  40029. name: "Side",
  40030. image: {
  40031. source: "./media/characters/nines/side.svg",
  40032. extra: 1854/1735,
  40033. bottom: 93/1947
  40034. }
  40035. },
  40036. back: {
  40037. height: math.unit(7, "feet"),
  40038. weight: math.unit(250, "lb"),
  40039. name: "Back",
  40040. image: {
  40041. source: "./media/characters/nines/back.svg",
  40042. extra: 1748/1615,
  40043. bottom: 20/1768
  40044. }
  40045. },
  40046. },
  40047. [
  40048. {
  40049. name: "Megamacro",
  40050. height: math.unit(99, "km"),
  40051. default: true
  40052. },
  40053. ]
  40054. ))
  40055. characterMakers.push(() => makeCharacter(
  40056. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40057. {
  40058. front: {
  40059. height: math.unit(5 + 10/12, "feet"),
  40060. weight: math.unit(210, "lb"),
  40061. name: "Front",
  40062. image: {
  40063. source: "./media/characters/zenith/front.svg",
  40064. extra: 1531/1452,
  40065. bottom: 198/1729
  40066. }
  40067. },
  40068. back: {
  40069. height: math.unit(5 + 10/12, "feet"),
  40070. weight: math.unit(210, "lb"),
  40071. name: "Back",
  40072. image: {
  40073. source: "./media/characters/zenith/back.svg",
  40074. extra: 1571/1487,
  40075. bottom: 75/1646
  40076. }
  40077. },
  40078. },
  40079. [
  40080. {
  40081. name: "Normal",
  40082. height: math.unit(5 + 10/12, "feet"),
  40083. default: true
  40084. }
  40085. ]
  40086. ))
  40087. characterMakers.push(() => makeCharacter(
  40088. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40089. {
  40090. front: {
  40091. height: math.unit(4, "feet"),
  40092. weight: math.unit(60, "lb"),
  40093. name: "Front",
  40094. image: {
  40095. source: "./media/characters/jasper/front.svg",
  40096. extra: 1450/1379,
  40097. bottom: 19/1469
  40098. }
  40099. },
  40100. },
  40101. [
  40102. {
  40103. name: "Normal",
  40104. height: math.unit(4, "feet"),
  40105. default: true
  40106. },
  40107. ]
  40108. ))
  40109. characterMakers.push(() => makeCharacter(
  40110. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40111. {
  40112. front: {
  40113. height: math.unit(6 + 5/12, "feet"),
  40114. weight: math.unit(290, "lb"),
  40115. name: "Front",
  40116. image: {
  40117. source: "./media/characters/tiberius-thyben/front.svg",
  40118. extra: 757/739,
  40119. bottom: 39/796
  40120. }
  40121. },
  40122. },
  40123. [
  40124. {
  40125. name: "Micro",
  40126. height: math.unit(1.5, "inches")
  40127. },
  40128. {
  40129. name: "Normal",
  40130. height: math.unit(6 + 5/12, "feet"),
  40131. default: true
  40132. },
  40133. {
  40134. name: "Macro",
  40135. height: math.unit(300, "feet")
  40136. },
  40137. ]
  40138. ))
  40139. characterMakers.push(() => makeCharacter(
  40140. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40141. {
  40142. front: {
  40143. height: math.unit(5 + 6/12, "feet"),
  40144. weight: math.unit(60, "kg"),
  40145. name: "Front",
  40146. image: {
  40147. source: "./media/characters/sabre/front.svg",
  40148. extra: 738/671,
  40149. bottom: 27/765
  40150. }
  40151. },
  40152. },
  40153. [
  40154. {
  40155. name: "Teeny",
  40156. height: math.unit(2, "inches")
  40157. },
  40158. {
  40159. name: "Smol",
  40160. height: math.unit(8, "inches")
  40161. },
  40162. {
  40163. name: "Normal",
  40164. height: math.unit(5 + 6/12, "feet"),
  40165. default: true
  40166. },
  40167. {
  40168. name: "Mini-Macro",
  40169. height: math.unit(15, "feet")
  40170. },
  40171. {
  40172. name: "Macro",
  40173. height: math.unit(50, "feet")
  40174. },
  40175. ]
  40176. ))
  40177. characterMakers.push(() => makeCharacter(
  40178. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40179. {
  40180. front: {
  40181. height: math.unit(6 + 4/12, "feet"),
  40182. weight: math.unit(170, "lb"),
  40183. name: "Front",
  40184. image: {
  40185. source: "./media/characters/charlie/front.svg",
  40186. extra: 1348/1228,
  40187. bottom: 15/1363
  40188. }
  40189. },
  40190. },
  40191. [
  40192. {
  40193. name: "Macro",
  40194. height: math.unit(1700, "meters"),
  40195. default: true
  40196. },
  40197. {
  40198. name: "MegaMacro",
  40199. height: math.unit(20400, "meters")
  40200. },
  40201. ]
  40202. ))
  40203. characterMakers.push(() => makeCharacter(
  40204. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40205. {
  40206. front: {
  40207. height: math.unit(6 + 3/12, "feet"),
  40208. weight: math.unit(185, "lb"),
  40209. name: "Front",
  40210. image: {
  40211. source: "./media/characters/susan-grant/front.svg",
  40212. extra: 1351/1327,
  40213. bottom: 26/1377
  40214. }
  40215. },
  40216. },
  40217. [
  40218. {
  40219. name: "Normal",
  40220. height: math.unit(6 + 3/12, "feet"),
  40221. default: true
  40222. },
  40223. {
  40224. name: "Macro",
  40225. height: math.unit(225, "feet")
  40226. },
  40227. {
  40228. name: "Macro+",
  40229. height: math.unit(900, "feet")
  40230. },
  40231. {
  40232. name: "MegaMacro",
  40233. height: math.unit(14400, "feet")
  40234. },
  40235. ]
  40236. ))
  40237. characterMakers.push(() => makeCharacter(
  40238. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40239. {
  40240. front: {
  40241. height: math.unit(5 + 4/12, "feet"),
  40242. weight: math.unit(110, "lb"),
  40243. name: "Front",
  40244. image: {
  40245. source: "./media/characters/axel-isanov/front.svg",
  40246. extra: 1096/1065,
  40247. bottom: 13/1109
  40248. }
  40249. },
  40250. },
  40251. [
  40252. {
  40253. name: "Normal",
  40254. height: math.unit(5 + 4/12, "feet"),
  40255. default: true
  40256. },
  40257. ]
  40258. ))
  40259. characterMakers.push(() => makeCharacter(
  40260. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40261. {
  40262. front: {
  40263. height: math.unit(9, "feet"),
  40264. weight: math.unit(467, "lb"),
  40265. name: "Front",
  40266. image: {
  40267. source: "./media/characters/necahual/front.svg",
  40268. extra: 920/873,
  40269. bottom: 26/946
  40270. }
  40271. },
  40272. back: {
  40273. height: math.unit(9, "feet"),
  40274. weight: math.unit(467, "lb"),
  40275. name: "Back",
  40276. image: {
  40277. source: "./media/characters/necahual/back.svg",
  40278. extra: 930/884,
  40279. bottom: 16/946
  40280. }
  40281. },
  40282. frontUnderwear: {
  40283. height: math.unit(9, "feet"),
  40284. weight: math.unit(467, "lb"),
  40285. name: "Front (Underwear)",
  40286. image: {
  40287. source: "./media/characters/necahual/front-underwear.svg",
  40288. extra: 920/873,
  40289. bottom: 26/946
  40290. }
  40291. },
  40292. frontDressed: {
  40293. height: math.unit(9, "feet"),
  40294. weight: math.unit(467, "lb"),
  40295. name: "Front (Dressed)",
  40296. image: {
  40297. source: "./media/characters/necahual/front-dressed.svg",
  40298. extra: 920/873,
  40299. bottom: 26/946
  40300. }
  40301. },
  40302. },
  40303. [
  40304. {
  40305. name: "Comprsesed",
  40306. height: math.unit(9, "feet")
  40307. },
  40308. {
  40309. name: "Natural",
  40310. height: math.unit(15, "feet"),
  40311. default: true
  40312. },
  40313. {
  40314. name: "Boosted",
  40315. height: math.unit(50, "feet")
  40316. },
  40317. {
  40318. name: "Boosted+",
  40319. height: math.unit(150, "feet")
  40320. },
  40321. {
  40322. name: "Max",
  40323. height: math.unit(500, "feet")
  40324. },
  40325. ]
  40326. ))
  40327. characterMakers.push(() => makeCharacter(
  40328. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40329. {
  40330. front: {
  40331. height: math.unit(22 + 1/12, "feet"),
  40332. weight: math.unit(3200, "lb"),
  40333. name: "Front",
  40334. image: {
  40335. source: "./media/characters/theo-acacia/front.svg",
  40336. extra: 1796/1741,
  40337. bottom: 83/1879
  40338. }
  40339. },
  40340. frontUnderwear: {
  40341. height: math.unit(22 + 1/12, "feet"),
  40342. weight: math.unit(3200, "lb"),
  40343. name: "Front (Underwear)",
  40344. image: {
  40345. source: "./media/characters/theo-acacia/front-underwear.svg",
  40346. extra: 1796/1741,
  40347. bottom: 83/1879
  40348. }
  40349. },
  40350. frontNude: {
  40351. height: math.unit(22 + 1/12, "feet"),
  40352. weight: math.unit(3200, "lb"),
  40353. name: "Front (Nude)",
  40354. image: {
  40355. source: "./media/characters/theo-acacia/front-nude.svg",
  40356. extra: 1796/1741,
  40357. bottom: 83/1879
  40358. }
  40359. },
  40360. },
  40361. [
  40362. {
  40363. name: "Normal",
  40364. height: math.unit(22 + 1/12, "feet"),
  40365. default: true
  40366. },
  40367. ]
  40368. ))
  40369. characterMakers.push(() => makeCharacter(
  40370. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40371. {
  40372. front: {
  40373. height: math.unit(20, "feet"),
  40374. name: "Front",
  40375. image: {
  40376. source: "./media/characters/astra/front.svg",
  40377. extra: 1850/1714,
  40378. bottom: 106/1956
  40379. }
  40380. },
  40381. frontUndressed: {
  40382. height: math.unit(20, "feet"),
  40383. name: "Front (Undressed)",
  40384. image: {
  40385. source: "./media/characters/astra/front-undressed.svg",
  40386. extra: 1926/1749,
  40387. bottom: 0/1926
  40388. }
  40389. },
  40390. hand: {
  40391. height: math.unit(1.53, "feet"),
  40392. name: "Hand",
  40393. image: {
  40394. source: "./media/characters/astra/hand.svg"
  40395. }
  40396. },
  40397. paw: {
  40398. height: math.unit(1.53, "feet"),
  40399. name: "Paw",
  40400. image: {
  40401. source: "./media/characters/astra/paw.svg"
  40402. }
  40403. },
  40404. },
  40405. [
  40406. {
  40407. name: "Smallest",
  40408. height: math.unit(20, "feet")
  40409. },
  40410. {
  40411. name: "Normal",
  40412. height: math.unit(1e9, "miles"),
  40413. default: true
  40414. },
  40415. {
  40416. name: "Larger",
  40417. height: math.unit(5, "multiverses")
  40418. },
  40419. {
  40420. name: "Largest",
  40421. height: math.unit(1e9, "multiverses")
  40422. },
  40423. ]
  40424. ))
  40425. characterMakers.push(() => makeCharacter(
  40426. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40427. {
  40428. front: {
  40429. height: math.unit(8, "feet"),
  40430. name: "Front",
  40431. image: {
  40432. source: "./media/characters/breanna/front.svg",
  40433. extra: 1912/1632,
  40434. bottom: 33/1945
  40435. }
  40436. },
  40437. },
  40438. [
  40439. {
  40440. name: "Smallest",
  40441. height: math.unit(8, "feet")
  40442. },
  40443. {
  40444. name: "Normal",
  40445. height: math.unit(1, "mile"),
  40446. default: true
  40447. },
  40448. {
  40449. name: "Maximum",
  40450. height: math.unit(1500000000000, "lightyears")
  40451. },
  40452. ]
  40453. ))
  40454. characterMakers.push(() => makeCharacter(
  40455. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40456. {
  40457. front: {
  40458. height: math.unit(5 + 11/12, "feet"),
  40459. weight: math.unit(155, "lb"),
  40460. name: "Front",
  40461. image: {
  40462. source: "./media/characters/cai/front.svg",
  40463. extra: 1823/1702,
  40464. bottom: 32/1855
  40465. }
  40466. },
  40467. back: {
  40468. height: math.unit(5 + 11/12, "feet"),
  40469. weight: math.unit(155, "lb"),
  40470. name: "Back",
  40471. image: {
  40472. source: "./media/characters/cai/back.svg",
  40473. extra: 1809/1708,
  40474. bottom: 31/1840
  40475. }
  40476. },
  40477. },
  40478. [
  40479. {
  40480. name: "Normal",
  40481. height: math.unit(5 + 11/12, "feet"),
  40482. default: true
  40483. },
  40484. {
  40485. name: "Big",
  40486. height: math.unit(15, "feet")
  40487. },
  40488. {
  40489. name: "Macro",
  40490. height: math.unit(200, "feet")
  40491. },
  40492. ]
  40493. ))
  40494. characterMakers.push(() => makeCharacter(
  40495. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40496. {
  40497. front: {
  40498. height: math.unit(5 + 6/12, "feet"),
  40499. weight: math.unit(160, "lb"),
  40500. name: "Front",
  40501. image: {
  40502. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40503. extra: 1227/1174,
  40504. bottom: 37/1264
  40505. }
  40506. },
  40507. },
  40508. [
  40509. {
  40510. name: "Macro",
  40511. height: math.unit(444, "meters"),
  40512. default: true
  40513. },
  40514. ]
  40515. ))
  40516. characterMakers.push(() => makeCharacter(
  40517. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40518. {
  40519. front: {
  40520. height: math.unit(18 + 7/12, "feet"),
  40521. name: "Front",
  40522. image: {
  40523. source: "./media/characters/rex/front.svg",
  40524. extra: 1941/1807,
  40525. bottom: 66/2007
  40526. }
  40527. },
  40528. back: {
  40529. height: math.unit(18 + 7/12, "feet"),
  40530. name: "Back",
  40531. image: {
  40532. source: "./media/characters/rex/back.svg",
  40533. extra: 1937/1822,
  40534. bottom: 42/1979
  40535. }
  40536. },
  40537. boot: {
  40538. height: math.unit(3.45, "feet"),
  40539. name: "Boot",
  40540. image: {
  40541. source: "./media/characters/rex/boot.svg"
  40542. }
  40543. },
  40544. paw: {
  40545. height: math.unit(4.17, "feet"),
  40546. name: "Paw",
  40547. image: {
  40548. source: "./media/characters/rex/paw.svg"
  40549. }
  40550. },
  40551. head: {
  40552. height: math.unit(6.728, "feet"),
  40553. name: "Head",
  40554. image: {
  40555. source: "./media/characters/rex/head.svg"
  40556. }
  40557. },
  40558. },
  40559. [
  40560. {
  40561. name: "Nano",
  40562. height: math.unit(18 + 7/12, "feet")
  40563. },
  40564. {
  40565. name: "Micro",
  40566. height: math.unit(1.5, "megameters")
  40567. },
  40568. {
  40569. name: "Normal",
  40570. height: math.unit(440, "megameters"),
  40571. default: true
  40572. },
  40573. {
  40574. name: "Macro",
  40575. height: math.unit(2.5, "gigameters")
  40576. },
  40577. {
  40578. name: "Gigamacro",
  40579. height: math.unit(2, "galaxies")
  40580. },
  40581. ]
  40582. ))
  40583. characterMakers.push(() => makeCharacter(
  40584. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40585. {
  40586. side: {
  40587. height: math.unit(32, "feet"),
  40588. weight: math.unit(250000, "lb"),
  40589. name: "Side",
  40590. image: {
  40591. source: "./media/characters/silverwing/side.svg",
  40592. extra: 1100/1019,
  40593. bottom: 204/1304
  40594. }
  40595. },
  40596. },
  40597. [
  40598. {
  40599. name: "Normal",
  40600. height: math.unit(32, "feet"),
  40601. default: true
  40602. },
  40603. ]
  40604. ))
  40605. characterMakers.push(() => makeCharacter(
  40606. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40607. {
  40608. front: {
  40609. height: math.unit(6 + 6/12, "feet"),
  40610. weight: math.unit(350, "lb"),
  40611. name: "Front",
  40612. image: {
  40613. source: "./media/characters/tristan-hawthorne/front.svg",
  40614. extra: 1159/1124,
  40615. bottom: 37/1196
  40616. }
  40617. },
  40618. },
  40619. [
  40620. {
  40621. name: "Normal",
  40622. height: math.unit(6 + 6/12, "feet"),
  40623. default: true
  40624. },
  40625. ]
  40626. ))
  40627. characterMakers.push(() => makeCharacter(
  40628. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40629. {
  40630. front: {
  40631. height: math.unit(5 + 11/12, "feet"),
  40632. weight: math.unit(190, "lb"),
  40633. name: "Front",
  40634. image: {
  40635. source: "./media/characters/mizu/front.svg",
  40636. extra: 1988/1788,
  40637. bottom: 14/2002
  40638. }
  40639. },
  40640. },
  40641. [
  40642. {
  40643. name: "Normal",
  40644. height: math.unit(5 + 11/12, "feet"),
  40645. default: true
  40646. },
  40647. ]
  40648. ))
  40649. characterMakers.push(() => makeCharacter(
  40650. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40651. {
  40652. front: {
  40653. height: math.unit(6, "feet"),
  40654. name: "Front",
  40655. image: {
  40656. source: "./media/characters/moonlight-rose-terra/front.svg",
  40657. extra: 1434/1252,
  40658. bottom: 48/1482
  40659. }
  40660. },
  40661. },
  40662. [
  40663. {
  40664. name: "TRAPPIST-1D",
  40665. height: math.unit(4992*2, "km")
  40666. },
  40667. {
  40668. name: "Earth",
  40669. height: math.unit(6367*2, "km"),
  40670. default: true
  40671. },
  40672. {
  40673. name: "Kepler-22b",
  40674. height: math.unit(15282*2, "km")
  40675. },
  40676. ]
  40677. ))
  40678. characterMakers.push(() => makeCharacter(
  40679. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40680. {
  40681. front: {
  40682. height: math.unit(6, "feet"),
  40683. name: "Front",
  40684. image: {
  40685. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40686. extra: 1851/1712,
  40687. bottom: 0/1851
  40688. }
  40689. },
  40690. },
  40691. [
  40692. {
  40693. name: "Enceladus",
  40694. height: math.unit(513*2, "km")
  40695. },
  40696. {
  40697. name: "Europe",
  40698. height: math.unit(1560*2, "km")
  40699. },
  40700. {
  40701. name: "Neptune",
  40702. height: math.unit(24622*2, "km"),
  40703. default: true
  40704. },
  40705. {
  40706. name: "CoRoT-9b",
  40707. height: math.unit(75067*2, "km")
  40708. },
  40709. ]
  40710. ))
  40711. characterMakers.push(() => makeCharacter(
  40712. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40713. {
  40714. front: {
  40715. height: math.unit(6, "feet"),
  40716. name: "Front",
  40717. image: {
  40718. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40719. extra: 1367/1286,
  40720. bottom: 55/1422
  40721. }
  40722. },
  40723. },
  40724. [
  40725. {
  40726. name: "Saturn",
  40727. height: math.unit(58232*2, "km")
  40728. },
  40729. {
  40730. name: "Jupiter",
  40731. height: math.unit(69911*2, "km"),
  40732. default: true
  40733. },
  40734. {
  40735. name: "HD 100546 b",
  40736. height: math.unit(482938, "km")
  40737. },
  40738. ]
  40739. ))
  40740. characterMakers.push(() => makeCharacter(
  40741. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40742. {
  40743. front: {
  40744. height: math.unit(1.7, "feet"),
  40745. weight: math.unit(50, "lb"),
  40746. name: "Front",
  40747. image: {
  40748. source: "./media/characters/dechroma/front.svg",
  40749. extra: 1095/859,
  40750. bottom: 64/1159
  40751. }
  40752. },
  40753. },
  40754. [
  40755. {
  40756. name: "Normal",
  40757. height: math.unit(1.7, "feet"),
  40758. default: true
  40759. },
  40760. ]
  40761. ))
  40762. characterMakers.push(() => makeCharacter(
  40763. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40764. {
  40765. side: {
  40766. height: math.unit(30, "feet"),
  40767. name: "Side",
  40768. image: {
  40769. source: "./media/characters/veluren-thanazel/side.svg",
  40770. extra: 1611/633,
  40771. bottom: 118/1729
  40772. }
  40773. },
  40774. front: {
  40775. height: math.unit(30, "feet"),
  40776. name: "Front",
  40777. image: {
  40778. source: "./media/characters/veluren-thanazel/front.svg",
  40779. extra: 1486/636,
  40780. bottom: 238/1724
  40781. }
  40782. },
  40783. head: {
  40784. height: math.unit(21.4, "feet"),
  40785. name: "Head",
  40786. image: {
  40787. source: "./media/characters/veluren-thanazel/head.svg"
  40788. }
  40789. },
  40790. genitals: {
  40791. height: math.unit(19.4, "feet"),
  40792. name: "Genitals",
  40793. image: {
  40794. source: "./media/characters/veluren-thanazel/genitals.svg"
  40795. }
  40796. },
  40797. },
  40798. [
  40799. {
  40800. name: "Social",
  40801. height: math.unit(6, "feet")
  40802. },
  40803. {
  40804. name: "Play",
  40805. height: math.unit(12, "feet")
  40806. },
  40807. {
  40808. name: "True",
  40809. height: math.unit(30, "feet"),
  40810. default: true
  40811. },
  40812. ]
  40813. ))
  40814. characterMakers.push(() => makeCharacter(
  40815. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40816. {
  40817. front: {
  40818. height: math.unit(7 + 6/12, "feet"),
  40819. weight: math.unit(500, "kg"),
  40820. name: "Front",
  40821. image: {
  40822. source: "./media/characters/arcturas/front.svg",
  40823. extra: 1700/1500,
  40824. bottom: 145/1845
  40825. }
  40826. },
  40827. },
  40828. [
  40829. {
  40830. name: "Normal",
  40831. height: math.unit(7 + 6/12, "feet"),
  40832. default: true
  40833. },
  40834. ]
  40835. ))
  40836. characterMakers.push(() => makeCharacter(
  40837. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40838. {
  40839. side: {
  40840. height: math.unit(6, "feet"),
  40841. weight: math.unit(2, "tons"),
  40842. name: "Side",
  40843. image: {
  40844. source: "./media/characters/vitaen/side.svg",
  40845. extra: 1157/617,
  40846. bottom: 122/1279
  40847. }
  40848. },
  40849. },
  40850. [
  40851. {
  40852. name: "Normal",
  40853. height: math.unit(6, "feet"),
  40854. default: true
  40855. },
  40856. ]
  40857. ))
  40858. characterMakers.push(() => makeCharacter(
  40859. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  40860. {
  40861. front: {
  40862. height: math.unit(19, "feet"),
  40863. name: "Front",
  40864. image: {
  40865. source: "./media/characters/fia-dreamweaver/front.svg",
  40866. extra: 1630/1504,
  40867. bottom: 25/1655
  40868. }
  40869. },
  40870. },
  40871. [
  40872. {
  40873. name: "Normal",
  40874. height: math.unit(19, "feet"),
  40875. default: true
  40876. },
  40877. ]
  40878. ))
  40879. characterMakers.push(() => makeCharacter(
  40880. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  40881. {
  40882. front: {
  40883. height: math.unit(5 + 4/12, "feet"),
  40884. name: "Front",
  40885. image: {
  40886. source: "./media/characters/artan/front.svg",
  40887. extra: 1618/1535,
  40888. bottom: 46/1664
  40889. }
  40890. },
  40891. back: {
  40892. height: math.unit(5 + 4/12, "feet"),
  40893. name: "Back",
  40894. image: {
  40895. source: "./media/characters/artan/back.svg",
  40896. extra: 1618/1543,
  40897. bottom: 31/1649
  40898. }
  40899. },
  40900. },
  40901. [
  40902. {
  40903. name: "Normal",
  40904. height: math.unit(5 + 4/12, "feet"),
  40905. default: true
  40906. },
  40907. ]
  40908. ))
  40909. characterMakers.push(() => makeCharacter(
  40910. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  40911. {
  40912. side: {
  40913. height: math.unit(182, "cm"),
  40914. weight: math.unit(1000, "lb"),
  40915. name: "Side",
  40916. image: {
  40917. source: "./media/characters/silver-dragon/side.svg",
  40918. extra: 710/287,
  40919. bottom: 88/798
  40920. }
  40921. },
  40922. },
  40923. [
  40924. {
  40925. name: "Normal",
  40926. height: math.unit(182, "cm"),
  40927. default: true
  40928. },
  40929. ]
  40930. ))
  40931. characterMakers.push(() => makeCharacter(
  40932. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  40933. {
  40934. side: {
  40935. height: math.unit(6 + 6/12, "feet"),
  40936. weight: math.unit(1.5, "tons"),
  40937. name: "Side",
  40938. image: {
  40939. source: "./media/characters/zephyr/side.svg",
  40940. extra: 1433/586,
  40941. bottom: 109/1542
  40942. }
  40943. },
  40944. },
  40945. [
  40946. {
  40947. name: "Normal",
  40948. height: math.unit(6 + 6/12, "feet"),
  40949. default: true
  40950. },
  40951. ]
  40952. ))
  40953. characterMakers.push(() => makeCharacter(
  40954. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  40955. {
  40956. side: {
  40957. height: math.unit(1, "feet"),
  40958. name: "Side",
  40959. image: {
  40960. source: "./media/characters/vixye/side.svg",
  40961. extra: 632/541,
  40962. bottom: 0/632
  40963. }
  40964. },
  40965. },
  40966. [
  40967. {
  40968. name: "Normal",
  40969. height: math.unit(1, "feet"),
  40970. default: true
  40971. },
  40972. {
  40973. name: "True",
  40974. height: math.unit(1e15, "multiverses")
  40975. },
  40976. ]
  40977. ))
  40978. characterMakers.push(() => makeCharacter(
  40979. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  40980. {
  40981. front: {
  40982. height: math.unit(8 + 2/12, "feet"),
  40983. weight: math.unit(650, "lb"),
  40984. name: "Front",
  40985. image: {
  40986. source: "./media/characters/darla-mac-lochlainn/front.svg",
  40987. extra: 1174/1137,
  40988. bottom: 82/1256
  40989. }
  40990. },
  40991. back: {
  40992. height: math.unit(8 + 2/12, "feet"),
  40993. weight: math.unit(650, "lb"),
  40994. name: "Back",
  40995. image: {
  40996. source: "./media/characters/darla-mac-lochlainn/back.svg",
  40997. extra: 1204/1157,
  40998. bottom: 46/1250
  40999. }
  41000. },
  41001. },
  41002. [
  41003. {
  41004. name: "Wildform",
  41005. height: math.unit(8 + 2/12, "feet"),
  41006. default: true
  41007. },
  41008. ]
  41009. ))
  41010. characterMakers.push(() => makeCharacter(
  41011. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41012. {
  41013. front: {
  41014. height: math.unit(18, "feet"),
  41015. name: "Front",
  41016. image: {
  41017. source: "./media/characters/cyphin/front.svg",
  41018. extra: 970/886,
  41019. bottom: 42/1012
  41020. }
  41021. },
  41022. back: {
  41023. height: math.unit(18, "feet"),
  41024. name: "Back",
  41025. image: {
  41026. source: "./media/characters/cyphin/back.svg",
  41027. extra: 1009/894,
  41028. bottom: 24/1033
  41029. }
  41030. },
  41031. head: {
  41032. height: math.unit(5.05, "feet"),
  41033. name: "Head",
  41034. image: {
  41035. source: "./media/characters/cyphin/head.svg"
  41036. }
  41037. },
  41038. tailbud: {
  41039. height: math.unit(5, "feet"),
  41040. name: "Tailbud",
  41041. image: {
  41042. source: "./media/characters/cyphin/tailbud.svg"
  41043. }
  41044. },
  41045. },
  41046. [
  41047. ]
  41048. ))
  41049. characterMakers.push(() => makeCharacter(
  41050. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41051. {
  41052. side: {
  41053. height: math.unit(10, "feet"),
  41054. weight: math.unit(6, "tons"),
  41055. name: "Side",
  41056. image: {
  41057. source: "./media/characters/raijin/side.svg",
  41058. extra: 1529/613,
  41059. bottom: 337/1866
  41060. }
  41061. },
  41062. },
  41063. [
  41064. {
  41065. name: "Normal",
  41066. height: math.unit(10, "feet"),
  41067. default: true
  41068. },
  41069. ]
  41070. ))
  41071. characterMakers.push(() => makeCharacter(
  41072. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41073. {
  41074. side: {
  41075. height: math.unit(9, "feet"),
  41076. name: "Side",
  41077. image: {
  41078. source: "./media/characters/nilghais/side.svg",
  41079. extra: 1047/744,
  41080. bottom: 91/1138
  41081. }
  41082. },
  41083. head: {
  41084. height: math.unit(3.14, "feet"),
  41085. name: "Head",
  41086. image: {
  41087. source: "./media/characters/nilghais/head.svg"
  41088. }
  41089. },
  41090. mouth: {
  41091. height: math.unit(4.6, "feet"),
  41092. name: "Mouth",
  41093. image: {
  41094. source: "./media/characters/nilghais/mouth.svg"
  41095. }
  41096. },
  41097. wings: {
  41098. height: math.unit(24, "feet"),
  41099. name: "Wings",
  41100. image: {
  41101. source: "./media/characters/nilghais/wings.svg"
  41102. }
  41103. },
  41104. ass: {
  41105. height: math.unit(6.12, "feet"),
  41106. name: "Ass",
  41107. image: {
  41108. source: "./media/characters/nilghais/ass.svg"
  41109. }
  41110. },
  41111. },
  41112. [
  41113. {
  41114. name: "Normal",
  41115. height: math.unit(9, "feet"),
  41116. default: true
  41117. },
  41118. ]
  41119. ))
  41120. characterMakers.push(() => makeCharacter(
  41121. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41122. {
  41123. regular: {
  41124. height: math.unit(16 + 2/12, "feet"),
  41125. weight: math.unit(2300, "lb"),
  41126. name: "Regular",
  41127. image: {
  41128. source: "./media/characters/zolgar/regular.svg",
  41129. extra: 1246/1004,
  41130. bottom: 124/1370
  41131. }
  41132. },
  41133. boxers: {
  41134. height: math.unit(16 + 2/12, "feet"),
  41135. weight: math.unit(2300, "lb"),
  41136. name: "Boxers",
  41137. image: {
  41138. source: "./media/characters/zolgar/boxers.svg",
  41139. extra: 1246/1004,
  41140. bottom: 124/1370
  41141. }
  41142. },
  41143. armored: {
  41144. height: math.unit(16 + 2/12, "feet"),
  41145. weight: math.unit(2300, "lb"),
  41146. name: "Armored",
  41147. image: {
  41148. source: "./media/characters/zolgar/armored.svg",
  41149. extra: 1246/1004,
  41150. bottom: 124/1370
  41151. }
  41152. },
  41153. goth: {
  41154. height: math.unit(16 + 2/12, "feet"),
  41155. weight: math.unit(2300, "lb"),
  41156. name: "Goth",
  41157. image: {
  41158. source: "./media/characters/zolgar/goth.svg",
  41159. extra: 1246/1004,
  41160. bottom: 124/1370
  41161. }
  41162. },
  41163. },
  41164. [
  41165. {
  41166. name: "Shrunken Down",
  41167. height: math.unit(9 + 2/12, "feet")
  41168. },
  41169. {
  41170. name: "Normal",
  41171. height: math.unit(16 + 2/12, "feet"),
  41172. default: true
  41173. },
  41174. ]
  41175. ))
  41176. characterMakers.push(() => makeCharacter(
  41177. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41178. {
  41179. front: {
  41180. height: math.unit(6, "feet"),
  41181. weight: math.unit(168, "lb"),
  41182. name: "Front",
  41183. image: {
  41184. source: "./media/characters/luca/front.svg",
  41185. extra: 841/667,
  41186. bottom: 102/943
  41187. }
  41188. },
  41189. },
  41190. [
  41191. {
  41192. name: "Normal",
  41193. height: math.unit(6, "feet"),
  41194. default: true
  41195. },
  41196. ]
  41197. ))
  41198. characterMakers.push(() => makeCharacter(
  41199. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41200. {
  41201. side: {
  41202. height: math.unit(7 + 3/12, "feet"),
  41203. weight: math.unit(312, "lb"),
  41204. name: "Side",
  41205. image: {
  41206. source: "./media/characters/zezo/side.svg",
  41207. extra: 1192/1067,
  41208. bottom: 63/1255
  41209. }
  41210. },
  41211. },
  41212. [
  41213. {
  41214. name: "Normal",
  41215. height: math.unit(7 + 3/12, "feet"),
  41216. default: true
  41217. },
  41218. ]
  41219. ))
  41220. characterMakers.push(() => makeCharacter(
  41221. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41222. {
  41223. front: {
  41224. height: math.unit(5 + 5/12, "feet"),
  41225. weight: math.unit(170, "lb"),
  41226. name: "Front",
  41227. image: {
  41228. source: "./media/characters/mayso/front.svg",
  41229. extra: 1215/1108,
  41230. bottom: 16/1231
  41231. }
  41232. },
  41233. },
  41234. [
  41235. {
  41236. name: "Normal",
  41237. height: math.unit(5 + 5/12, "feet"),
  41238. default: true
  41239. },
  41240. ]
  41241. ))
  41242. characterMakers.push(() => makeCharacter(
  41243. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41244. {
  41245. front: {
  41246. height: math.unit(4 + 3/12, "feet"),
  41247. weight: math.unit(80, "lb"),
  41248. name: "Front",
  41249. image: {
  41250. source: "./media/characters/hess/front.svg",
  41251. extra: 1200/1123,
  41252. bottom: 16/1216
  41253. }
  41254. },
  41255. },
  41256. [
  41257. {
  41258. name: "Normal",
  41259. height: math.unit(4 + 3/12, "feet"),
  41260. default: true
  41261. },
  41262. ]
  41263. ))
  41264. characterMakers.push(() => makeCharacter(
  41265. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41266. {
  41267. front: {
  41268. height: math.unit(1.9, "meters"),
  41269. name: "Front",
  41270. image: {
  41271. source: "./media/characters/ashgar/front.svg",
  41272. extra: 1177/1146,
  41273. bottom: 99/1276
  41274. }
  41275. },
  41276. back: {
  41277. height: math.unit(1.9, "meters"),
  41278. name: "Back",
  41279. image: {
  41280. source: "./media/characters/ashgar/back.svg",
  41281. extra: 1201/1183,
  41282. bottom: 53/1254
  41283. }
  41284. },
  41285. feral: {
  41286. height: math.unit(1.4, "meters"),
  41287. name: "Feral",
  41288. image: {
  41289. source: "./media/characters/ashgar/feral.svg",
  41290. extra: 370/345,
  41291. bottom: 45/415
  41292. }
  41293. },
  41294. },
  41295. [
  41296. {
  41297. name: "Normal",
  41298. height: math.unit(1.9, "meters"),
  41299. default: true
  41300. },
  41301. ]
  41302. ))
  41303. characterMakers.push(() => makeCharacter(
  41304. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41305. {
  41306. regular: {
  41307. height: math.unit(6, "feet"),
  41308. weight: math.unit(220, "lb"),
  41309. name: "Regular",
  41310. image: {
  41311. source: "./media/characters/phillip/regular.svg",
  41312. extra: 1373/1277,
  41313. bottom: 75/1448
  41314. }
  41315. },
  41316. dressed: {
  41317. height: math.unit(6, "feet"),
  41318. weight: math.unit(220, "lb"),
  41319. name: "Dressed",
  41320. image: {
  41321. source: "./media/characters/phillip/dressed.svg",
  41322. extra: 1373/1277,
  41323. bottom: 75/1448
  41324. }
  41325. },
  41326. paw: {
  41327. height: math.unit(1.44, "feet"),
  41328. name: "Paw",
  41329. image: {
  41330. source: "./media/characters/phillip/paw.svg"
  41331. }
  41332. },
  41333. },
  41334. [
  41335. {
  41336. name: "Normal",
  41337. height: math.unit(6, "feet"),
  41338. default: true
  41339. },
  41340. ]
  41341. ))
  41342. characterMakers.push(() => makeCharacter(
  41343. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41344. {
  41345. side: {
  41346. height: math.unit(42, "feet"),
  41347. name: "Side",
  41348. image: {
  41349. source: "./media/characters/uvula/side.svg",
  41350. extra: 683/586,
  41351. bottom: 60/743
  41352. }
  41353. },
  41354. front: {
  41355. height: math.unit(42, "feet"),
  41356. name: "Front",
  41357. image: {
  41358. source: "./media/characters/uvula/front.svg",
  41359. extra: 705/613,
  41360. bottom: 54/759
  41361. }
  41362. },
  41363. maw: {
  41364. height: math.unit(23.5, "feet"),
  41365. name: "Maw",
  41366. image: {
  41367. source: "./media/characters/uvula/maw.svg"
  41368. }
  41369. },
  41370. },
  41371. [
  41372. {
  41373. name: "Original Size",
  41374. height: math.unit(14, "inches")
  41375. },
  41376. {
  41377. name: "Human Size",
  41378. height: math.unit(6, "feet")
  41379. },
  41380. {
  41381. name: "Big",
  41382. height: math.unit(42, "feet"),
  41383. default: true
  41384. },
  41385. {
  41386. name: "Bigger",
  41387. height: math.unit(100, "feet")
  41388. },
  41389. ]
  41390. ))
  41391. characterMakers.push(() => makeCharacter(
  41392. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41393. {
  41394. front: {
  41395. height: math.unit(5 + 11/12, "feet"),
  41396. name: "Front",
  41397. image: {
  41398. source: "./media/characters/lannah/front.svg",
  41399. extra: 1208/1113,
  41400. bottom: 97/1305
  41401. }
  41402. },
  41403. },
  41404. [
  41405. {
  41406. name: "Normal",
  41407. height: math.unit(5 + 11/12, "feet"),
  41408. default: true
  41409. },
  41410. ]
  41411. ))
  41412. characterMakers.push(() => makeCharacter(
  41413. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41414. {
  41415. front: {
  41416. height: math.unit(6 + 3/12, "feet"),
  41417. weight: math.unit(3.5, "tons"),
  41418. name: "Front",
  41419. image: {
  41420. source: "./media/characters/emberflame/front.svg",
  41421. extra: 1198/672,
  41422. bottom: 82/1280
  41423. }
  41424. },
  41425. side: {
  41426. height: math.unit(6 + 3/12, "feet"),
  41427. weight: math.unit(3.5, "tons"),
  41428. name: "Side",
  41429. image: {
  41430. source: "./media/characters/emberflame/side.svg",
  41431. extra: 938/527,
  41432. bottom: 56/994
  41433. }
  41434. },
  41435. },
  41436. [
  41437. {
  41438. name: "Normal",
  41439. height: math.unit(6 + 3/12, "feet"),
  41440. default: true
  41441. },
  41442. ]
  41443. ))
  41444. characterMakers.push(() => makeCharacter(
  41445. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41446. {
  41447. side: {
  41448. height: math.unit(17.5, "feet"),
  41449. weight: math.unit(35, "tons"),
  41450. name: "Side",
  41451. image: {
  41452. source: "./media/characters/sophie-ambrose/side.svg",
  41453. extra: 1573/1242,
  41454. bottom: 71/1644
  41455. }
  41456. },
  41457. maw: {
  41458. height: math.unit(7.4, "feet"),
  41459. name: "Maw",
  41460. image: {
  41461. source: "./media/characters/sophie-ambrose/maw.svg"
  41462. }
  41463. },
  41464. },
  41465. [
  41466. {
  41467. name: "Normal",
  41468. height: math.unit(17.5, "feet"),
  41469. default: true
  41470. },
  41471. ]
  41472. ))
  41473. characterMakers.push(() => makeCharacter(
  41474. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41475. {
  41476. front: {
  41477. height: math.unit(280, "feet"),
  41478. weight: math.unit(550, "tons"),
  41479. name: "Front",
  41480. image: {
  41481. source: "./media/characters/king-mugi/front.svg",
  41482. extra: 1102/947,
  41483. bottom: 104/1206
  41484. }
  41485. },
  41486. },
  41487. [
  41488. {
  41489. name: "King Mugi",
  41490. height: math.unit(280, "feet"),
  41491. default: true
  41492. },
  41493. ]
  41494. ))
  41495. characterMakers.push(() => makeCharacter(
  41496. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41497. {
  41498. front: {
  41499. height: math.unit(64, "meters"),
  41500. name: "Front",
  41501. image: {
  41502. source: "./media/characters/nova-fox/front.svg",
  41503. extra: 1310/1246,
  41504. bottom: 65/1375
  41505. }
  41506. },
  41507. },
  41508. [
  41509. {
  41510. name: "Macro",
  41511. height: math.unit(64, "meters"),
  41512. default: true
  41513. },
  41514. ]
  41515. ))
  41516. characterMakers.push(() => makeCharacter(
  41517. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41518. {
  41519. front: {
  41520. height: math.unit(6 + 3/12, "feet"),
  41521. weight: math.unit(170, "lb"),
  41522. name: "Front",
  41523. image: {
  41524. source: "./media/characters/sam-bat/front.svg",
  41525. extra: 1601/1411,
  41526. bottom: 125/1726
  41527. }
  41528. },
  41529. back: {
  41530. height: math.unit(6 + 3/12, "feet"),
  41531. weight: math.unit(170, "lb"),
  41532. name: "Back",
  41533. image: {
  41534. source: "./media/characters/sam-bat/back.svg",
  41535. extra: 1577/1405,
  41536. bottom: 58/1635
  41537. }
  41538. },
  41539. },
  41540. [
  41541. {
  41542. name: "Normal",
  41543. height: math.unit(6 + 3/12, "feet"),
  41544. default: true
  41545. },
  41546. ]
  41547. ))
  41548. characterMakers.push(() => makeCharacter(
  41549. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41550. {
  41551. front: {
  41552. height: math.unit(59, "feet"),
  41553. weight: math.unit(40000, "lb"),
  41554. name: "Front",
  41555. image: {
  41556. source: "./media/characters/inari/front.svg",
  41557. extra: 1884/1350,
  41558. bottom: 95/1979
  41559. }
  41560. },
  41561. },
  41562. [
  41563. {
  41564. name: "Gigantamax",
  41565. height: math.unit(59, "feet"),
  41566. default: true
  41567. },
  41568. ]
  41569. ))
  41570. characterMakers.push(() => makeCharacter(
  41571. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41572. {
  41573. front: {
  41574. height: math.unit(5 + 8/12, "feet"),
  41575. name: "Front",
  41576. image: {
  41577. source: "./media/characters/elizabeth/front.svg",
  41578. extra: 1395/1298,
  41579. bottom: 54/1449
  41580. }
  41581. },
  41582. mouth: {
  41583. height: math.unit(1.97, "feet"),
  41584. name: "Mouth",
  41585. image: {
  41586. source: "./media/characters/elizabeth/mouth.svg"
  41587. }
  41588. },
  41589. foot: {
  41590. height: math.unit(1.17, "feet"),
  41591. name: "Foot",
  41592. image: {
  41593. source: "./media/characters/elizabeth/foot.svg"
  41594. }
  41595. },
  41596. },
  41597. [
  41598. {
  41599. name: "Normal",
  41600. height: math.unit(5 + 8/12, "feet"),
  41601. default: true
  41602. },
  41603. {
  41604. name: "Minimacro",
  41605. height: math.unit(18, "feet")
  41606. },
  41607. {
  41608. name: "Macro",
  41609. height: math.unit(180, "feet")
  41610. },
  41611. ]
  41612. ))
  41613. characterMakers.push(() => makeCharacter(
  41614. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41615. {
  41616. front: {
  41617. height: math.unit(5 + 2/12, "feet"),
  41618. name: "Front",
  41619. image: {
  41620. source: "./media/characters/october-gossamer/front.svg",
  41621. extra: 505/454,
  41622. bottom: 7/512
  41623. }
  41624. },
  41625. back: {
  41626. height: math.unit(5 + 2/12, "feet"),
  41627. name: "Back",
  41628. image: {
  41629. source: "./media/characters/october-gossamer/back.svg",
  41630. extra: 501/454,
  41631. bottom: 11/512
  41632. }
  41633. },
  41634. },
  41635. [
  41636. {
  41637. name: "Normal",
  41638. height: math.unit(5 + 2/12, "feet"),
  41639. default: true
  41640. },
  41641. ]
  41642. ))
  41643. characterMakers.push(() => makeCharacter(
  41644. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41645. {
  41646. front: {
  41647. height: math.unit(5, "feet"),
  41648. name: "Front",
  41649. image: {
  41650. source: "./media/characters/epiglottis/front.svg",
  41651. extra: 923/849,
  41652. bottom: 17/940
  41653. }
  41654. },
  41655. },
  41656. [
  41657. {
  41658. name: "Original Size",
  41659. height: math.unit(10, "inches")
  41660. },
  41661. {
  41662. name: "Human Size",
  41663. height: math.unit(5, "feet"),
  41664. default: true
  41665. },
  41666. {
  41667. name: "Big",
  41668. height: math.unit(25, "feet")
  41669. },
  41670. {
  41671. name: "Bigger",
  41672. height: math.unit(50, "feet")
  41673. },
  41674. {
  41675. name: "oh lawd",
  41676. height: math.unit(75, "feet")
  41677. },
  41678. ]
  41679. ))
  41680. characterMakers.push(() => makeCharacter(
  41681. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41682. {
  41683. front: {
  41684. height: math.unit(2 + 4/12, "feet"),
  41685. weight: math.unit(60, "lb"),
  41686. name: "Front",
  41687. image: {
  41688. source: "./media/characters/lerm/front.svg",
  41689. extra: 796/790,
  41690. bottom: 79/875
  41691. }
  41692. },
  41693. },
  41694. [
  41695. {
  41696. name: "Normal",
  41697. height: math.unit(2 + 4/12, "feet"),
  41698. default: true
  41699. },
  41700. ]
  41701. ))
  41702. characterMakers.push(() => makeCharacter(
  41703. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41704. {
  41705. front: {
  41706. height: math.unit(5.5, "feet"),
  41707. weight: math.unit(130, "lb"),
  41708. name: "Front",
  41709. image: {
  41710. source: "./media/characters/xena-nebadon/front.svg",
  41711. extra: 1828/1730,
  41712. bottom: 79/1907
  41713. }
  41714. },
  41715. },
  41716. [
  41717. {
  41718. name: "Tiny Puppy",
  41719. height: math.unit(3, "inches")
  41720. },
  41721. {
  41722. name: "Normal",
  41723. height: math.unit(5.5, "feet"),
  41724. default: true
  41725. },
  41726. {
  41727. name: "Lotta Lady",
  41728. height: math.unit(12, "feet")
  41729. },
  41730. {
  41731. name: "Pretty Big",
  41732. height: math.unit(100, "feet")
  41733. },
  41734. {
  41735. name: "Big",
  41736. height: math.unit(500, "feet")
  41737. },
  41738. {
  41739. name: "Skyscraper Toys",
  41740. height: math.unit(2500, "feet")
  41741. },
  41742. {
  41743. name: "Plane Catcher",
  41744. height: math.unit(8, "miles")
  41745. },
  41746. {
  41747. name: "Planet Toys",
  41748. height: math.unit(15, "earths")
  41749. },
  41750. {
  41751. name: "Stardust",
  41752. height: math.unit(0.25, "galaxies")
  41753. },
  41754. {
  41755. name: "Snacks",
  41756. height: math.unit(70, "universes")
  41757. },
  41758. ]
  41759. ))
  41760. characterMakers.push(() => makeCharacter(
  41761. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  41762. {
  41763. front: {
  41764. height: math.unit(1.6, "meters"),
  41765. weight: math.unit(60, "kg"),
  41766. name: "Front",
  41767. image: {
  41768. source: "./media/characters/bounty/front.svg",
  41769. extra: 1426/1308,
  41770. bottom: 15/1441
  41771. }
  41772. },
  41773. },
  41774. [
  41775. {
  41776. name: "Normal",
  41777. height: math.unit(1.6, "meters"),
  41778. default: true
  41779. },
  41780. {
  41781. name: "Macro",
  41782. height: math.unit(300, "meters")
  41783. },
  41784. ]
  41785. ))
  41786. //characters
  41787. function makeCharacters() {
  41788. const results = [];
  41789. characterMakers.forEach(character => {
  41790. results.push(character());
  41791. });
  41792. return results;
  41793. }