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

44187 строки
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. }
  1783. //species
  1784. function getSpeciesInfo(speciesList) {
  1785. let result = new Set();
  1786. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1787. result.add(entry)
  1788. });
  1789. return Array.from(result);
  1790. };
  1791. function getSpeciesInfoHelper(species) {
  1792. if (!speciesData[species]) {
  1793. console.warn(species + " doesn't exist");
  1794. return [];
  1795. }
  1796. if (speciesData[species].parents) {
  1797. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1798. } else {
  1799. return [species];
  1800. }
  1801. }
  1802. characterMakers.push(() => makeCharacter(
  1803. {
  1804. name: "Fen",
  1805. species: ["crux"],
  1806. description: {
  1807. title: "Bio",
  1808. text: "Very furry. Sheds on everything."
  1809. },
  1810. tags: [
  1811. "anthro",
  1812. "goo"
  1813. ]
  1814. },
  1815. {
  1816. back: {
  1817. height: math.unit(2.2428, "meter"),
  1818. weight: math.unit(124.738, "kg"),
  1819. name: "Back",
  1820. image: {
  1821. source: "./media/characters/fen/back.svg",
  1822. },
  1823. info: {
  1824. description: {
  1825. mode: "append",
  1826. text: "\n\nHe is not currently looking at you."
  1827. }
  1828. }
  1829. },
  1830. full: {
  1831. height: math.unit(0.91, "meter"),
  1832. weight: math.unit(225, "kg"),
  1833. name: "Full",
  1834. image: {
  1835. source: "./media/characters/fen/full.svg",
  1836. extra: 1133/859,
  1837. bottom: 145/1278
  1838. },
  1839. info: {
  1840. description: {
  1841. mode: "append",
  1842. text: "\n\nMunch."
  1843. }
  1844. }
  1845. },
  1846. kneeling: {
  1847. height: math.unit(5.4, "feet"),
  1848. weight: math.unit(124.738, "kg"),
  1849. name: "Kneeling",
  1850. image: {
  1851. source: "./media/characters/fen/kneeling.svg",
  1852. extra: 563 / 507
  1853. }
  1854. },
  1855. goo: {
  1856. height: math.unit(2.8, "feet"),
  1857. weight: math.unit(125, "kg"),
  1858. capacity: math.unit(1, "people"),
  1859. name: "Goo",
  1860. image: {
  1861. source: "./media/characters/fen/goo.svg",
  1862. bottom: 116 / 613
  1863. }
  1864. },
  1865. lounging: {
  1866. height: math.unit(6.5, "feet"),
  1867. weight: math.unit(125, "kg"),
  1868. name: "Lounging",
  1869. image: {
  1870. source: "./media/characters/fen/lounging.svg"
  1871. }
  1872. },
  1873. },
  1874. [
  1875. {
  1876. name: "Normal",
  1877. height: math.unit(2.2428, "meter")
  1878. },
  1879. {
  1880. name: "Big",
  1881. height: math.unit(12, "feet")
  1882. },
  1883. {
  1884. name: "Minimacro",
  1885. height: math.unit(40, "feet"),
  1886. default: true,
  1887. info: {
  1888. description: {
  1889. mode: "append",
  1890. text: "\n\nTOO DAMN BIG"
  1891. }
  1892. }
  1893. },
  1894. {
  1895. name: "Macro",
  1896. height: math.unit(100, "feet"),
  1897. info: {
  1898. description: {
  1899. mode: "append",
  1900. text: "\n\nTOO DAMN BIG"
  1901. }
  1902. }
  1903. },
  1904. {
  1905. name: "Macro+",
  1906. height: math.unit(300, "feet")
  1907. },
  1908. {
  1909. name: "Megamacro",
  1910. height: math.unit(2, "miles")
  1911. }
  1912. ]
  1913. ))
  1914. characterMakers.push(() => makeCharacter(
  1915. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1916. {
  1917. front: {
  1918. height: math.unit(183, "cm"),
  1919. weight: math.unit(80, "kg"),
  1920. name: "Front",
  1921. image: {
  1922. source: "./media/characters/sofia-fluttertail/front.svg",
  1923. bottom: 0.01,
  1924. extra: 2154 / 2081
  1925. }
  1926. },
  1927. frontAlt: {
  1928. height: math.unit(183, "cm"),
  1929. weight: math.unit(80, "kg"),
  1930. name: "Front (alt)",
  1931. image: {
  1932. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1933. }
  1934. },
  1935. back: {
  1936. height: math.unit(183, "cm"),
  1937. weight: math.unit(80, "kg"),
  1938. name: "Back",
  1939. image: {
  1940. source: "./media/characters/sofia-fluttertail/back.svg"
  1941. }
  1942. },
  1943. kneeling: {
  1944. height: math.unit(125, "cm"),
  1945. weight: math.unit(80, "kg"),
  1946. name: "Kneeling",
  1947. image: {
  1948. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1949. extra: 1033 / 977,
  1950. bottom: 23.7 / 1057
  1951. }
  1952. },
  1953. maw: {
  1954. height: math.unit(183 / 5, "cm"),
  1955. name: "Maw",
  1956. image: {
  1957. source: "./media/characters/sofia-fluttertail/maw.svg"
  1958. }
  1959. },
  1960. mawcloseup: {
  1961. height: math.unit(183 / 5 * 0.41, "cm"),
  1962. name: "Maw (Closeup)",
  1963. image: {
  1964. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1965. }
  1966. },
  1967. paws: {
  1968. height: math.unit(1.17, "feet"),
  1969. name: "Paws",
  1970. image: {
  1971. source: "./media/characters/sofia-fluttertail/paws.svg",
  1972. extra: 851 / 851,
  1973. bottom: 17 / 868
  1974. }
  1975. },
  1976. },
  1977. [
  1978. {
  1979. name: "Normal",
  1980. height: math.unit(1.83, "meter")
  1981. },
  1982. {
  1983. name: "Size Thief",
  1984. height: math.unit(18, "feet")
  1985. },
  1986. {
  1987. name: "50 Foot Collie",
  1988. height: math.unit(50, "feet")
  1989. },
  1990. {
  1991. name: "Macro",
  1992. height: math.unit(96, "feet"),
  1993. default: true
  1994. },
  1995. {
  1996. name: "Megamerger",
  1997. height: math.unit(650, "feet")
  1998. },
  1999. ]
  2000. ))
  2001. characterMakers.push(() => makeCharacter(
  2002. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2003. {
  2004. front: {
  2005. height: math.unit(7, "feet"),
  2006. weight: math.unit(100, "kg"),
  2007. name: "Front",
  2008. image: {
  2009. source: "./media/characters/march/front.svg",
  2010. extra: 1992/1851,
  2011. bottom: 39/2031
  2012. }
  2013. },
  2014. foot: {
  2015. height: math.unit(0.9, "feet"),
  2016. name: "Foot",
  2017. image: {
  2018. source: "./media/characters/march/foot.svg"
  2019. }
  2020. },
  2021. },
  2022. [
  2023. {
  2024. name: "Normal",
  2025. height: math.unit(7.9, "feet")
  2026. },
  2027. {
  2028. name: "Macro",
  2029. height: math.unit(220, "meters")
  2030. },
  2031. {
  2032. name: "Megamacro",
  2033. height: math.unit(2.98, "km"),
  2034. default: true
  2035. },
  2036. {
  2037. name: "Gigamacro",
  2038. height: math.unit(15963, "km")
  2039. },
  2040. {
  2041. name: "Teramacro",
  2042. height: math.unit(2980000000, "km")
  2043. },
  2044. {
  2045. name: "Examacro",
  2046. height: math.unit(250, "parsecs")
  2047. },
  2048. ]
  2049. ))
  2050. characterMakers.push(() => makeCharacter(
  2051. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2052. {
  2053. front: {
  2054. height: math.unit(6, "feet"),
  2055. weight: math.unit(60, "kg"),
  2056. name: "Front",
  2057. image: {
  2058. source: "./media/characters/noir/front.svg",
  2059. extra: 1,
  2060. bottom: 0.032
  2061. }
  2062. },
  2063. },
  2064. [
  2065. {
  2066. name: "Normal",
  2067. height: math.unit(6.6, "feet")
  2068. },
  2069. {
  2070. name: "Macro",
  2071. height: math.unit(500, "feet")
  2072. },
  2073. {
  2074. name: "Megamacro",
  2075. height: math.unit(2.5, "km"),
  2076. default: true
  2077. },
  2078. {
  2079. name: "Gigamacro",
  2080. height: math.unit(22500, "km")
  2081. },
  2082. {
  2083. name: "Teramacro",
  2084. height: math.unit(2500000000, "km")
  2085. },
  2086. {
  2087. name: "Examacro",
  2088. height: math.unit(200, "parsecs")
  2089. },
  2090. ]
  2091. ))
  2092. characterMakers.push(() => makeCharacter(
  2093. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2094. {
  2095. front: {
  2096. height: math.unit(7, "feet"),
  2097. weight: math.unit(100, "kg"),
  2098. name: "Front",
  2099. image: {
  2100. source: "./media/characters/okuri/front.svg",
  2101. extra: 1,
  2102. bottom: 0.037
  2103. }
  2104. },
  2105. back: {
  2106. height: math.unit(7, "feet"),
  2107. weight: math.unit(100, "kg"),
  2108. name: "Back",
  2109. image: {
  2110. source: "./media/characters/okuri/back.svg",
  2111. extra: 1,
  2112. bottom: 0.007
  2113. }
  2114. },
  2115. },
  2116. [
  2117. {
  2118. name: "Megamacro",
  2119. height: math.unit(100, "miles"),
  2120. default: true
  2121. },
  2122. ]
  2123. ))
  2124. characterMakers.push(() => makeCharacter(
  2125. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2126. {
  2127. front: {
  2128. height: math.unit(7, "feet"),
  2129. weight: math.unit(100, "kg"),
  2130. name: "Front",
  2131. image: {
  2132. source: "./media/characters/manny/front.svg",
  2133. extra: 1,
  2134. bottom: 0.06
  2135. }
  2136. },
  2137. back: {
  2138. height: math.unit(7, "feet"),
  2139. weight: math.unit(100, "kg"),
  2140. name: "Back",
  2141. image: {
  2142. source: "./media/characters/manny/back.svg",
  2143. extra: 1,
  2144. bottom: 0.014
  2145. }
  2146. },
  2147. },
  2148. [
  2149. {
  2150. name: "Normal",
  2151. height: math.unit(7, "feet"),
  2152. },
  2153. {
  2154. name: "Macro",
  2155. height: math.unit(78, "feet"),
  2156. default: true
  2157. },
  2158. {
  2159. name: "Macro+",
  2160. height: math.unit(300, "meters")
  2161. },
  2162. {
  2163. name: "Macro++",
  2164. height: math.unit(2400, "meters")
  2165. },
  2166. {
  2167. name: "Megamacro",
  2168. height: math.unit(5167, "meters")
  2169. },
  2170. {
  2171. name: "Gigamacro",
  2172. height: math.unit(41769, "miles")
  2173. },
  2174. ]
  2175. ))
  2176. characterMakers.push(() => makeCharacter(
  2177. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2178. {
  2179. front: {
  2180. height: math.unit(7, "feet"),
  2181. weight: math.unit(100, "kg"),
  2182. name: "Front",
  2183. image: {
  2184. source: "./media/characters/adake/front-1.svg"
  2185. }
  2186. },
  2187. frontAlt: {
  2188. height: math.unit(7, "feet"),
  2189. weight: math.unit(100, "kg"),
  2190. name: "Front (Alt)",
  2191. image: {
  2192. source: "./media/characters/adake/front-2.svg",
  2193. extra: 1,
  2194. bottom: 0.01
  2195. }
  2196. },
  2197. back: {
  2198. height: math.unit(7, "feet"),
  2199. weight: math.unit(100, "kg"),
  2200. name: "Back",
  2201. image: {
  2202. source: "./media/characters/adake/back.svg",
  2203. }
  2204. },
  2205. kneel: {
  2206. height: math.unit(5.385, "feet"),
  2207. weight: math.unit(100, "kg"),
  2208. name: "Kneeling",
  2209. image: {
  2210. source: "./media/characters/adake/kneel.svg",
  2211. bottom: 0.052
  2212. }
  2213. },
  2214. },
  2215. [
  2216. {
  2217. name: "Normal",
  2218. height: math.unit(7, "feet"),
  2219. },
  2220. {
  2221. name: "Macro",
  2222. height: math.unit(78, "feet"),
  2223. default: true
  2224. },
  2225. {
  2226. name: "Macro+",
  2227. height: math.unit(300, "meters")
  2228. },
  2229. {
  2230. name: "Macro++",
  2231. height: math.unit(2400, "meters")
  2232. },
  2233. {
  2234. name: "Megamacro",
  2235. height: math.unit(5167, "meters")
  2236. },
  2237. {
  2238. name: "Gigamacro",
  2239. height: math.unit(41769, "miles")
  2240. },
  2241. ]
  2242. ))
  2243. characterMakers.push(() => makeCharacter(
  2244. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2245. {
  2246. front: {
  2247. height: math.unit(1.65, "meters"),
  2248. weight: math.unit(50, "kg"),
  2249. name: "Front",
  2250. image: {
  2251. source: "./media/characters/elijah/front.svg",
  2252. extra: 858 / 830,
  2253. bottom: 95.5 / 953.8559
  2254. }
  2255. },
  2256. back: {
  2257. height: math.unit(1.65, "meters"),
  2258. weight: math.unit(50, "kg"),
  2259. name: "Back",
  2260. image: {
  2261. source: "./media/characters/elijah/back.svg",
  2262. extra: 895 / 850,
  2263. bottom: 5.3 / 897.956
  2264. }
  2265. },
  2266. frontNsfw: {
  2267. height: math.unit(1.65, "meters"),
  2268. weight: math.unit(50, "kg"),
  2269. name: "Front (NSFW)",
  2270. image: {
  2271. source: "./media/characters/elijah/front-nsfw.svg",
  2272. extra: 858 / 830,
  2273. bottom: 95.5 / 953.8559
  2274. }
  2275. },
  2276. backNsfw: {
  2277. height: math.unit(1.65, "meters"),
  2278. weight: math.unit(50, "kg"),
  2279. name: "Back (NSFW)",
  2280. image: {
  2281. source: "./media/characters/elijah/back-nsfw.svg",
  2282. extra: 895 / 850,
  2283. bottom: 5.3 / 897.956
  2284. }
  2285. },
  2286. dick: {
  2287. height: math.unit(1, "feet"),
  2288. name: "Dick",
  2289. image: {
  2290. source: "./media/characters/elijah/dick.svg"
  2291. }
  2292. },
  2293. beakOpen: {
  2294. height: math.unit(1.25, "feet"),
  2295. name: "Beak (Open)",
  2296. image: {
  2297. source: "./media/characters/elijah/beak-open.svg"
  2298. }
  2299. },
  2300. beakShut: {
  2301. height: math.unit(1.25, "feet"),
  2302. name: "Beak (Shut)",
  2303. image: {
  2304. source: "./media/characters/elijah/beak-shut.svg"
  2305. }
  2306. },
  2307. footFlexing: {
  2308. height: math.unit(1.61, "feet"),
  2309. name: "Foot (Flexing)",
  2310. image: {
  2311. source: "./media/characters/elijah/foot-flexing.svg"
  2312. }
  2313. },
  2314. footStepping: {
  2315. height: math.unit(1.44, "feet"),
  2316. name: "Foot (Stepping)",
  2317. image: {
  2318. source: "./media/characters/elijah/foot-stepping.svg"
  2319. }
  2320. },
  2321. plantigradeLeg: {
  2322. height: math.unit(2.34, "feet"),
  2323. name: "Plantigrade Leg",
  2324. image: {
  2325. source: "./media/characters/elijah/plantigrade-leg.svg"
  2326. }
  2327. },
  2328. plantigradeFootLeft: {
  2329. height: math.unit(0.9, "feet"),
  2330. name: "Plantigrade Foot (Left)",
  2331. image: {
  2332. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2333. }
  2334. },
  2335. plantigradeFootRight: {
  2336. height: math.unit(0.9, "feet"),
  2337. name: "Plantigrade Foot (Right)",
  2338. image: {
  2339. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2340. }
  2341. },
  2342. },
  2343. [
  2344. {
  2345. name: "Normal",
  2346. height: math.unit(1.65, "meters")
  2347. },
  2348. {
  2349. name: "Macro",
  2350. height: math.unit(55, "meters"),
  2351. default: true
  2352. },
  2353. {
  2354. name: "Macro+",
  2355. height: math.unit(105, "meters")
  2356. },
  2357. ]
  2358. ))
  2359. characterMakers.push(() => makeCharacter(
  2360. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2361. {
  2362. front: {
  2363. height: math.unit(11, "feet"),
  2364. weight: math.unit(320, "kg"),
  2365. name: "Front",
  2366. image: {
  2367. source: "./media/characters/rai/front.svg",
  2368. extra: 1802/1696,
  2369. bottom: 68/1870
  2370. }
  2371. },
  2372. frontDressed: {
  2373. height: math.unit(11, "feet"),
  2374. weight: math.unit(320, "kg"),
  2375. name: "Front (Dressed)",
  2376. image: {
  2377. source: "./media/characters/rai/front-dressed.svg",
  2378. extra: 1802/1696,
  2379. bottom: 68/1870
  2380. }
  2381. },
  2382. side: {
  2383. height: math.unit(11, "feet"),
  2384. weight: math.unit(320, "kg"),
  2385. name: "Side",
  2386. image: {
  2387. source: "./media/characters/rai/side.svg",
  2388. extra: 1789/1710,
  2389. bottom: 115/1904
  2390. }
  2391. },
  2392. back: {
  2393. height: math.unit(11, "feet"),
  2394. weight: math.unit(320, "kg"),
  2395. name: "Back",
  2396. image: {
  2397. source: "./media/characters/rai/back.svg",
  2398. extra: 1770/1707,
  2399. bottom: 28/1798
  2400. }
  2401. },
  2402. feral: {
  2403. height: math.unit(11, "feet"),
  2404. weight: math.unit(640, "kg"),
  2405. name: "Feral",
  2406. image: {
  2407. source: "./media/characters/rai/feral.svg",
  2408. extra: 1035/642,
  2409. bottom: 86/1121
  2410. }
  2411. },
  2412. dragon: {
  2413. height: math.unit(23, "feet"),
  2414. weight: math.unit(50000, "lb"),
  2415. name: "Dragon",
  2416. image: {
  2417. source: "./media/characters/rai/dragon.svg",
  2418. extra: 2498 / 2030,
  2419. bottom: 85.2 / 2584
  2420. }
  2421. },
  2422. maw: {
  2423. height: math.unit(6 / 3.81416, "feet"),
  2424. name: "Maw",
  2425. image: {
  2426. source: "./media/characters/rai/maw.svg"
  2427. }
  2428. },
  2429. },
  2430. [
  2431. {
  2432. name: "Normal",
  2433. height: math.unit(11, "feet")
  2434. },
  2435. {
  2436. name: "Macro",
  2437. height: math.unit(302, "feet"),
  2438. default: true
  2439. },
  2440. ]
  2441. ))
  2442. characterMakers.push(() => makeCharacter(
  2443. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2444. {
  2445. frontDressed: {
  2446. height: math.unit(216, "feet"),
  2447. weight: math.unit(7000000, "lb"),
  2448. name: "Front (Dressed)",
  2449. image: {
  2450. source: "./media/characters/jazzy/front-dressed.svg",
  2451. extra: 2738 / 2651,
  2452. bottom: 41.8 / 2786
  2453. }
  2454. },
  2455. backDressed: {
  2456. height: math.unit(216, "feet"),
  2457. weight: math.unit(7000000, "lb"),
  2458. name: "Back (Dressed)",
  2459. image: {
  2460. source: "./media/characters/jazzy/back-dressed.svg",
  2461. extra: 2775 / 2673,
  2462. bottom: 36.8 / 2817
  2463. }
  2464. },
  2465. front: {
  2466. height: math.unit(216, "feet"),
  2467. weight: math.unit(7000000, "lb"),
  2468. name: "Front",
  2469. image: {
  2470. source: "./media/characters/jazzy/front.svg",
  2471. extra: 2738 / 2651,
  2472. bottom: 41.8 / 2786
  2473. }
  2474. },
  2475. back: {
  2476. height: math.unit(216, "feet"),
  2477. weight: math.unit(7000000, "lb"),
  2478. name: "Back",
  2479. image: {
  2480. source: "./media/characters/jazzy/back.svg",
  2481. extra: 2775 / 2673,
  2482. bottom: 36.8 / 2817
  2483. }
  2484. },
  2485. maw: {
  2486. height: math.unit(20, "feet"),
  2487. name: "Maw",
  2488. image: {
  2489. source: "./media/characters/jazzy/maw.svg"
  2490. }
  2491. },
  2492. paws: {
  2493. height: math.unit(27.5, "feet"),
  2494. name: "Paws",
  2495. image: {
  2496. source: "./media/characters/jazzy/paws.svg"
  2497. }
  2498. },
  2499. eye: {
  2500. height: math.unit(4.4, "feet"),
  2501. name: "Eye",
  2502. image: {
  2503. source: "./media/characters/jazzy/eye.svg"
  2504. }
  2505. },
  2506. droneOffense: {
  2507. height: math.unit(9.5, "inches"),
  2508. name: "Drone (Offense)",
  2509. image: {
  2510. source: "./media/characters/jazzy/drone-offense.svg"
  2511. }
  2512. },
  2513. droneRecon: {
  2514. height: math.unit(9.5, "inches"),
  2515. name: "Drone (Recon)",
  2516. image: {
  2517. source: "./media/characters/jazzy/drone-recon.svg"
  2518. }
  2519. },
  2520. droneDefense: {
  2521. height: math.unit(9.5, "inches"),
  2522. name: "Drone (Defense)",
  2523. image: {
  2524. source: "./media/characters/jazzy/drone-defense.svg"
  2525. }
  2526. },
  2527. },
  2528. [
  2529. {
  2530. name: "Macro",
  2531. height: math.unit(216, "feet"),
  2532. default: true
  2533. },
  2534. ]
  2535. ))
  2536. characterMakers.push(() => makeCharacter(
  2537. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2538. {
  2539. front: {
  2540. height: math.unit(9 + 6/12, "feet"),
  2541. weight: math.unit(700, "lb"),
  2542. name: "Front",
  2543. image: {
  2544. source: "./media/characters/flamm/front.svg",
  2545. extra: 1751/1632,
  2546. bottom: 46/1797
  2547. }
  2548. },
  2549. buff: {
  2550. height: math.unit(9 + 6/12, "feet"),
  2551. weight: math.unit(950, "lb"),
  2552. name: "Buff",
  2553. image: {
  2554. source: "./media/characters/flamm/buff.svg",
  2555. extra: 3018/2874,
  2556. bottom: 221/3239
  2557. }
  2558. },
  2559. },
  2560. [
  2561. {
  2562. name: "Normal",
  2563. height: math.unit(9.5, "feet")
  2564. },
  2565. {
  2566. name: "Macro",
  2567. height: math.unit(200, "feet"),
  2568. default: true
  2569. },
  2570. ]
  2571. ))
  2572. characterMakers.push(() => makeCharacter(
  2573. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2574. {
  2575. front: {
  2576. height: math.unit(5 + 3/12, "feet"),
  2577. weight: math.unit(60, "kg"),
  2578. name: "Front",
  2579. image: {
  2580. source: "./media/characters/zephiro/front.svg",
  2581. extra: 2309 / 2162,
  2582. bottom: 0.069
  2583. }
  2584. },
  2585. side: {
  2586. height: math.unit(5 + 3/12, "feet"),
  2587. weight: math.unit(60, "kg"),
  2588. name: "Side",
  2589. image: {
  2590. source: "./media/characters/zephiro/side.svg",
  2591. extra: 2403 / 2279,
  2592. bottom: 0.015
  2593. }
  2594. },
  2595. back: {
  2596. height: math.unit(5 + 3/12, "feet"),
  2597. weight: math.unit(60, "kg"),
  2598. name: "Back",
  2599. image: {
  2600. source: "./media/characters/zephiro/back.svg",
  2601. extra: 2373 / 2244,
  2602. bottom: 0.013
  2603. }
  2604. },
  2605. hand: {
  2606. height: math.unit(0.68, "feet"),
  2607. name: "Hand",
  2608. image: {
  2609. source: "./media/characters/zephiro/hand.svg"
  2610. }
  2611. },
  2612. paw: {
  2613. height: math.unit(1, "feet"),
  2614. name: "Paw",
  2615. image: {
  2616. source: "./media/characters/zephiro/paw.svg"
  2617. }
  2618. },
  2619. beans: {
  2620. height: math.unit(0.93, "feet"),
  2621. name: "Beans",
  2622. image: {
  2623. source: "./media/characters/zephiro/beans.svg"
  2624. }
  2625. },
  2626. },
  2627. [
  2628. {
  2629. name: "Micro",
  2630. height: math.unit(3, "inches")
  2631. },
  2632. {
  2633. name: "Normal",
  2634. height: math.unit(5 + 3 / 12, "feet"),
  2635. default: true
  2636. },
  2637. {
  2638. name: "Macro",
  2639. height: math.unit(118, "feet")
  2640. },
  2641. ]
  2642. ))
  2643. characterMakers.push(() => makeCharacter(
  2644. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2645. {
  2646. front: {
  2647. height: math.unit(5, "feet"),
  2648. weight: math.unit(90, "kg"),
  2649. name: "Front",
  2650. image: {
  2651. source: "./media/characters/fory/front.svg",
  2652. extra: 2862 / 2674,
  2653. bottom: 180 / 3043.8
  2654. }
  2655. },
  2656. back: {
  2657. height: math.unit(5, "feet"),
  2658. weight: math.unit(90, "kg"),
  2659. name: "Back",
  2660. image: {
  2661. source: "./media/characters/fory/back.svg",
  2662. extra: 2962 / 2791,
  2663. bottom: 106 / 3071.8
  2664. }
  2665. },
  2666. foot: {
  2667. height: math.unit(2.14, "feet"),
  2668. name: "Foot",
  2669. image: {
  2670. source: "./media/characters/fory/foot.svg"
  2671. }
  2672. },
  2673. },
  2674. [
  2675. {
  2676. name: "Normal",
  2677. height: math.unit(5, "feet")
  2678. },
  2679. {
  2680. name: "Macro",
  2681. height: math.unit(50, "feet"),
  2682. default: true
  2683. },
  2684. {
  2685. name: "Megamacro",
  2686. height: math.unit(10, "miles")
  2687. },
  2688. {
  2689. name: "Gigamacro",
  2690. height: math.unit(5, "earths")
  2691. },
  2692. ]
  2693. ))
  2694. characterMakers.push(() => makeCharacter(
  2695. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2696. {
  2697. front: {
  2698. height: math.unit(7, "feet"),
  2699. weight: math.unit(90, "kg"),
  2700. name: "Front",
  2701. image: {
  2702. source: "./media/characters/kurrikage/front.svg",
  2703. extra: 1,
  2704. bottom: 0.035
  2705. }
  2706. },
  2707. back: {
  2708. height: math.unit(7, "feet"),
  2709. weight: math.unit(90, "lb"),
  2710. name: "Back",
  2711. image: {
  2712. source: "./media/characters/kurrikage/back.svg"
  2713. }
  2714. },
  2715. paw: {
  2716. height: math.unit(1.5, "feet"),
  2717. name: "Paw",
  2718. image: {
  2719. source: "./media/characters/kurrikage/paw.svg"
  2720. }
  2721. },
  2722. staff: {
  2723. height: math.unit(6.7, "feet"),
  2724. name: "Staff",
  2725. image: {
  2726. source: "./media/characters/kurrikage/staff.svg"
  2727. }
  2728. },
  2729. peek: {
  2730. height: math.unit(1.05, "feet"),
  2731. name: "Peeking",
  2732. image: {
  2733. source: "./media/characters/kurrikage/peek.svg",
  2734. bottom: 0.08
  2735. }
  2736. },
  2737. },
  2738. [
  2739. {
  2740. name: "Normal",
  2741. height: math.unit(12, "feet"),
  2742. default: true
  2743. },
  2744. {
  2745. name: "Big",
  2746. height: math.unit(20, "feet")
  2747. },
  2748. {
  2749. name: "Macro",
  2750. height: math.unit(500, "feet")
  2751. },
  2752. {
  2753. name: "Megamacro",
  2754. height: math.unit(20, "miles")
  2755. },
  2756. ]
  2757. ))
  2758. characterMakers.push(() => makeCharacter(
  2759. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2760. {
  2761. front: {
  2762. height: math.unit(6, "feet"),
  2763. weight: math.unit(75, "kg"),
  2764. name: "Front",
  2765. image: {
  2766. source: "./media/characters/shingo/front.svg",
  2767. extra: 1900/1825,
  2768. bottom: 82/1982
  2769. }
  2770. },
  2771. side: {
  2772. height: math.unit(6, "feet"),
  2773. weight: math.unit(75, "kg"),
  2774. name: "Side",
  2775. image: {
  2776. source: "./media/characters/shingo/side.svg",
  2777. extra: 1930/1865,
  2778. bottom: 16/1946
  2779. }
  2780. },
  2781. back: {
  2782. height: math.unit(6, "feet"),
  2783. weight: math.unit(75, "kg"),
  2784. name: "Back",
  2785. image: {
  2786. source: "./media/characters/shingo/back.svg",
  2787. extra: 1922/1852,
  2788. bottom: 16/1938
  2789. }
  2790. },
  2791. frontDressed: {
  2792. height: math.unit(6, "feet"),
  2793. weight: math.unit(150, "lb"),
  2794. name: "Front-dressed",
  2795. image: {
  2796. source: "./media/characters/shingo/front-dressed.svg",
  2797. extra: 1900/1825,
  2798. bottom: 82/1982
  2799. }
  2800. },
  2801. paw: {
  2802. height: math.unit(1.29, "feet"),
  2803. name: "Paw",
  2804. image: {
  2805. source: "./media/characters/shingo/paw.svg"
  2806. }
  2807. },
  2808. hand: {
  2809. height: math.unit(1.07, "feet"),
  2810. name: "Hand",
  2811. image: {
  2812. source: "./media/characters/shingo/hand.svg"
  2813. }
  2814. },
  2815. frontAlt: {
  2816. height: math.unit(6, "feet"),
  2817. weight: math.unit(75, "kg"),
  2818. name: "Front (Alt)",
  2819. image: {
  2820. source: "./media/characters/shingo/front-alt.svg",
  2821. extra: 3511 / 3338,
  2822. bottom: 0.005
  2823. }
  2824. },
  2825. frontAlt2: {
  2826. height: math.unit(6, "feet"),
  2827. weight: math.unit(75, "kg"),
  2828. name: "Front (Alt 2)",
  2829. image: {
  2830. source: "./media/characters/shingo/front-alt-2.svg",
  2831. extra: 706/681,
  2832. bottom: 11/717
  2833. }
  2834. },
  2835. pawAlt: {
  2836. height: math.unit(1, "feet"),
  2837. name: "Paw (Alt)",
  2838. image: {
  2839. source: "./media/characters/shingo/paw-alt.svg"
  2840. }
  2841. },
  2842. },
  2843. [
  2844. {
  2845. name: "Micro",
  2846. height: math.unit(4, "inches")
  2847. },
  2848. {
  2849. name: "Normal",
  2850. height: math.unit(6, "feet"),
  2851. default: true
  2852. },
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(108, "feet")
  2856. },
  2857. {
  2858. name: "Macro+",
  2859. height: math.unit(1500, "feet")
  2860. },
  2861. ]
  2862. ))
  2863. characterMakers.push(() => makeCharacter(
  2864. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2865. {
  2866. side: {
  2867. height: math.unit(6, "feet"),
  2868. weight: math.unit(75, "kg"),
  2869. name: "Side",
  2870. image: {
  2871. source: "./media/characters/aigey/side.svg"
  2872. }
  2873. },
  2874. },
  2875. [
  2876. {
  2877. name: "Macro",
  2878. height: math.unit(200, "feet"),
  2879. default: true
  2880. },
  2881. {
  2882. name: "Megamacro",
  2883. height: math.unit(100, "miles")
  2884. },
  2885. ]
  2886. )
  2887. )
  2888. characterMakers.push(() => makeCharacter(
  2889. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2890. {
  2891. front: {
  2892. height: math.unit(5 + 5 / 12, "feet"),
  2893. weight: math.unit(75, "kg"),
  2894. name: "Front",
  2895. image: {
  2896. source: "./media/characters/natasha/front.svg",
  2897. extra: 859 / 824,
  2898. bottom: 23 / 879.6
  2899. }
  2900. },
  2901. frontNsfw: {
  2902. height: math.unit(5 + 5 / 12, "feet"),
  2903. weight: math.unit(75, "kg"),
  2904. name: "Front (NSFW)",
  2905. image: {
  2906. source: "./media/characters/natasha/front-nsfw.svg",
  2907. extra: 859 / 824,
  2908. bottom: 23 / 879.6
  2909. }
  2910. },
  2911. frontErect: {
  2912. height: math.unit(5 + 5 / 12, "feet"),
  2913. weight: math.unit(75, "kg"),
  2914. name: "Front (Erect)",
  2915. image: {
  2916. source: "./media/characters/natasha/front-erect.svg",
  2917. extra: 859 / 824,
  2918. bottom: 23 / 879.6
  2919. }
  2920. },
  2921. back: {
  2922. height: math.unit(5 + 5 / 12, "feet"),
  2923. weight: math.unit(75, "kg"),
  2924. name: "Back",
  2925. image: {
  2926. source: "./media/characters/natasha/back.svg",
  2927. extra: 887.9 / 852.6,
  2928. bottom: 9.7 / 896.4
  2929. }
  2930. },
  2931. backAlt: {
  2932. height: math.unit(5 + 5 / 12, "feet"),
  2933. weight: math.unit(75, "kg"),
  2934. name: "Back (Alt)",
  2935. image: {
  2936. source: "./media/characters/natasha/back-alt.svg",
  2937. extra: 1236.7 / 1192,
  2938. bottom: 22.3 / 1258.2
  2939. }
  2940. },
  2941. dick: {
  2942. height: math.unit(1.772, "feet"),
  2943. name: "Dick",
  2944. image: {
  2945. source: "./media/characters/natasha/dick.svg"
  2946. }
  2947. },
  2948. paw: {
  2949. height: math.unit(0.250, "meters"),
  2950. name: "Paw",
  2951. image: {
  2952. source: "./media/characters/natasha/paw.svg"
  2953. }
  2954. },
  2955. },
  2956. [
  2957. {
  2958. name: "Normal",
  2959. height: math.unit(5 + 5 / 12, "feet")
  2960. },
  2961. {
  2962. name: "Large",
  2963. height: math.unit(12, "feet")
  2964. },
  2965. {
  2966. name: "Macro",
  2967. height: math.unit(100, "feet"),
  2968. default: true
  2969. },
  2970. {
  2971. name: "Macro+",
  2972. height: math.unit(260, "feet")
  2973. },
  2974. {
  2975. name: "Macro++",
  2976. height: math.unit(1, "mile")
  2977. },
  2978. ]
  2979. ))
  2980. characterMakers.push(() => makeCharacter(
  2981. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2982. {
  2983. front: {
  2984. height: math.unit(6, "feet"),
  2985. weight: math.unit(75, "kg"),
  2986. name: "Front",
  2987. image: {
  2988. source: "./media/characters/malik/front.svg"
  2989. }
  2990. },
  2991. side: {
  2992. height: math.unit(6, "feet"),
  2993. weight: math.unit(75, "kg"),
  2994. name: "Side",
  2995. image: {
  2996. source: "./media/characters/malik/side.svg",
  2997. extra: 1.1539
  2998. }
  2999. },
  3000. back: {
  3001. height: math.unit(6, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Back",
  3004. image: {
  3005. source: "./media/characters/malik/back.svg"
  3006. }
  3007. },
  3008. },
  3009. [
  3010. {
  3011. name: "Macro",
  3012. height: math.unit(156, "feet"),
  3013. default: true
  3014. },
  3015. {
  3016. name: "Macro+",
  3017. height: math.unit(1188, "feet")
  3018. },
  3019. ]
  3020. ))
  3021. characterMakers.push(() => makeCharacter(
  3022. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3023. {
  3024. front: {
  3025. height: math.unit(6, "feet"),
  3026. weight: math.unit(75, "kg"),
  3027. name: "Front",
  3028. image: {
  3029. source: "./media/characters/sefer/front.svg",
  3030. extra: 848 / 659,
  3031. bottom: 28.3 / 876.442
  3032. }
  3033. },
  3034. back: {
  3035. height: math.unit(6, "feet"),
  3036. weight: math.unit(75, "kg"),
  3037. name: "Back",
  3038. image: {
  3039. source: "./media/characters/sefer/back.svg",
  3040. extra: 864 / 695,
  3041. bottom: 10 / 871
  3042. }
  3043. },
  3044. frontDressed: {
  3045. height: math.unit(6, "feet"),
  3046. weight: math.unit(75, "kg"),
  3047. name: "Front (Dressed)",
  3048. image: {
  3049. source: "./media/characters/sefer/front-dressed.svg",
  3050. extra: 839 / 653,
  3051. bottom: 37.6 / 878
  3052. }
  3053. },
  3054. },
  3055. [
  3056. {
  3057. name: "Normal",
  3058. height: math.unit(6, "feet"),
  3059. default: true
  3060. },
  3061. ]
  3062. ))
  3063. characterMakers.push(() => makeCharacter(
  3064. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3065. {
  3066. body: {
  3067. height: math.unit(2.2428, "meter"),
  3068. weight: math.unit(124.738, "kg"),
  3069. name: "Body",
  3070. image: {
  3071. extra: 1225 / 1050,
  3072. source: "./media/characters/north/front.svg"
  3073. }
  3074. }
  3075. },
  3076. [
  3077. {
  3078. name: "Micro",
  3079. height: math.unit(4, "inches")
  3080. },
  3081. {
  3082. name: "Macro",
  3083. height: math.unit(63, "meters")
  3084. },
  3085. {
  3086. name: "Megamacro",
  3087. height: math.unit(101, "miles"),
  3088. default: true
  3089. }
  3090. ]
  3091. ))
  3092. characterMakers.push(() => makeCharacter(
  3093. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3094. {
  3095. angled: {
  3096. height: math.unit(4, "meter"),
  3097. weight: math.unit(150, "kg"),
  3098. name: "Angled",
  3099. image: {
  3100. source: "./media/characters/talan/angled-sfw.svg",
  3101. bottom: 29 / 3734
  3102. }
  3103. },
  3104. angledNsfw: {
  3105. height: math.unit(4, "meter"),
  3106. weight: math.unit(150, "kg"),
  3107. name: "Angled (NSFW)",
  3108. image: {
  3109. source: "./media/characters/talan/angled-nsfw.svg",
  3110. bottom: 29 / 3734
  3111. }
  3112. },
  3113. frontNsfw: {
  3114. height: math.unit(4, "meter"),
  3115. weight: math.unit(150, "kg"),
  3116. name: "Front (NSFW)",
  3117. image: {
  3118. source: "./media/characters/talan/front-nsfw.svg",
  3119. bottom: 29 / 3734
  3120. }
  3121. },
  3122. sideNsfw: {
  3123. height: math.unit(4, "meter"),
  3124. weight: math.unit(150, "kg"),
  3125. name: "Side (NSFW)",
  3126. image: {
  3127. source: "./media/characters/talan/side-nsfw.svg",
  3128. bottom: 29 / 3734
  3129. }
  3130. },
  3131. back: {
  3132. height: math.unit(4, "meter"),
  3133. weight: math.unit(150, "kg"),
  3134. name: "Back",
  3135. image: {
  3136. source: "./media/characters/talan/back.svg"
  3137. }
  3138. },
  3139. dickBottom: {
  3140. height: math.unit(0.621, "meter"),
  3141. name: "Dick (Bottom)",
  3142. image: {
  3143. source: "./media/characters/talan/dick-bottom.svg"
  3144. }
  3145. },
  3146. dickTop: {
  3147. height: math.unit(0.621, "meter"),
  3148. name: "Dick (Top)",
  3149. image: {
  3150. source: "./media/characters/talan/dick-top.svg"
  3151. }
  3152. },
  3153. dickSide: {
  3154. height: math.unit(0.305, "meter"),
  3155. name: "Dick (Side)",
  3156. image: {
  3157. source: "./media/characters/talan/dick-side.svg"
  3158. }
  3159. },
  3160. dickFront: {
  3161. height: math.unit(0.305, "meter"),
  3162. name: "Dick (Front)",
  3163. image: {
  3164. source: "./media/characters/talan/dick-front.svg"
  3165. }
  3166. },
  3167. },
  3168. [
  3169. {
  3170. name: "Normal",
  3171. height: math.unit(4, "meters")
  3172. },
  3173. {
  3174. name: "Macro",
  3175. height: math.unit(100, "meters")
  3176. },
  3177. {
  3178. name: "Megamacro",
  3179. height: math.unit(2, "miles"),
  3180. default: true
  3181. },
  3182. {
  3183. name: "Gigamacro",
  3184. height: math.unit(5000, "miles")
  3185. },
  3186. {
  3187. name: "Teramacro",
  3188. height: math.unit(100, "parsecs")
  3189. }
  3190. ]
  3191. ))
  3192. characterMakers.push(() => makeCharacter(
  3193. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3194. {
  3195. front: {
  3196. height: math.unit(2, "meter"),
  3197. weight: math.unit(90, "kg"),
  3198. name: "Front",
  3199. image: {
  3200. source: "./media/characters/gael'rathus/front.svg"
  3201. }
  3202. },
  3203. frontAlt: {
  3204. height: math.unit(2, "meter"),
  3205. weight: math.unit(90, "kg"),
  3206. name: "Front (alt)",
  3207. image: {
  3208. source: "./media/characters/gael'rathus/front-alt.svg"
  3209. }
  3210. },
  3211. frontAlt2: {
  3212. height: math.unit(2, "meter"),
  3213. weight: math.unit(90, "kg"),
  3214. name: "Front (alt 2)",
  3215. image: {
  3216. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3217. }
  3218. }
  3219. },
  3220. [
  3221. {
  3222. name: "Normal",
  3223. height: math.unit(9, "feet"),
  3224. default: true
  3225. },
  3226. {
  3227. name: "Large",
  3228. height: math.unit(25, "feet")
  3229. },
  3230. {
  3231. name: "Macro",
  3232. height: math.unit(0.25, "miles")
  3233. },
  3234. {
  3235. name: "Megamacro",
  3236. height: math.unit(10, "miles")
  3237. }
  3238. ]
  3239. ))
  3240. characterMakers.push(() => makeCharacter(
  3241. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3242. {
  3243. side: {
  3244. height: math.unit(2, "meter"),
  3245. weight: math.unit(140, "kg"),
  3246. name: "Side",
  3247. image: {
  3248. source: "./media/characters/sosha/side.svg",
  3249. bottom: 0.042
  3250. }
  3251. },
  3252. },
  3253. [
  3254. {
  3255. name: "Normal",
  3256. height: math.unit(12, "feet"),
  3257. default: true
  3258. }
  3259. ]
  3260. ))
  3261. characterMakers.push(() => makeCharacter(
  3262. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3263. {
  3264. side: {
  3265. height: math.unit(5 + 5 / 12, "feet"),
  3266. weight: math.unit(170, "kg"),
  3267. name: "Side",
  3268. image: {
  3269. source: "./media/characters/runnola/side.svg",
  3270. extra: 741 / 448,
  3271. bottom: 0.05
  3272. }
  3273. },
  3274. },
  3275. [
  3276. {
  3277. name: "Small",
  3278. height: math.unit(3, "feet")
  3279. },
  3280. {
  3281. name: "Normal",
  3282. height: math.unit(5 + 5 / 12, "feet"),
  3283. default: true
  3284. },
  3285. {
  3286. name: "Big",
  3287. height: math.unit(10, "feet")
  3288. },
  3289. ]
  3290. ))
  3291. characterMakers.push(() => makeCharacter(
  3292. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3293. {
  3294. front: {
  3295. height: math.unit(2, "meter"),
  3296. weight: math.unit(50, "kg"),
  3297. name: "Front",
  3298. image: {
  3299. source: "./media/characters/kurribird/front.svg",
  3300. bottom: 0.015
  3301. }
  3302. },
  3303. frontAlt: {
  3304. height: math.unit(1.5, "meter"),
  3305. weight: math.unit(50, "kg"),
  3306. name: "Front (Alt)",
  3307. image: {
  3308. source: "./media/characters/kurribird/front-alt.svg",
  3309. extra: 1.45
  3310. }
  3311. },
  3312. },
  3313. [
  3314. {
  3315. name: "Normal",
  3316. height: math.unit(7, "feet")
  3317. },
  3318. {
  3319. name: "Big",
  3320. height: math.unit(12, "feet"),
  3321. default: true
  3322. },
  3323. {
  3324. name: "Macro",
  3325. height: math.unit(1500, "feet")
  3326. },
  3327. {
  3328. name: "Megamacro",
  3329. height: math.unit(2, "miles")
  3330. }
  3331. ]
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3335. {
  3336. front: {
  3337. height: math.unit(2, "meter"),
  3338. weight: math.unit(80, "kg"),
  3339. name: "Front",
  3340. image: {
  3341. source: "./media/characters/elbial/front.svg",
  3342. extra: 1643 / 1556,
  3343. bottom: 60.2 / 1696
  3344. }
  3345. },
  3346. side: {
  3347. height: math.unit(2, "meter"),
  3348. weight: math.unit(80, "kg"),
  3349. name: "Side",
  3350. image: {
  3351. source: "./media/characters/elbial/side.svg",
  3352. extra: 1630 / 1565,
  3353. bottom: 71.5 / 1697
  3354. }
  3355. },
  3356. back: {
  3357. height: math.unit(2, "meter"),
  3358. weight: math.unit(80, "kg"),
  3359. name: "Back",
  3360. image: {
  3361. source: "./media/characters/elbial/back.svg",
  3362. extra: 1668 / 1595,
  3363. bottom: 5.6 / 1672
  3364. }
  3365. },
  3366. frontDressed: {
  3367. height: math.unit(2, "meter"),
  3368. weight: math.unit(80, "kg"),
  3369. name: "Front (Dressed)",
  3370. image: {
  3371. source: "./media/characters/elbial/front-dressed.svg",
  3372. extra: 1653 / 1584,
  3373. bottom: 57 / 1708
  3374. }
  3375. },
  3376. genitals: {
  3377. height: math.unit(2 / 3.367, "meter"),
  3378. name: "Genitals",
  3379. image: {
  3380. source: "./media/characters/elbial/genitals.svg"
  3381. }
  3382. },
  3383. },
  3384. [
  3385. {
  3386. name: "Large",
  3387. height: math.unit(100, "feet")
  3388. },
  3389. {
  3390. name: "Macro",
  3391. height: math.unit(500, "feet"),
  3392. default: true
  3393. },
  3394. {
  3395. name: "Megamacro",
  3396. height: math.unit(10, "miles")
  3397. },
  3398. {
  3399. name: "Gigamacro",
  3400. height: math.unit(25000, "miles")
  3401. },
  3402. {
  3403. name: "Full-Size",
  3404. height: math.unit(8000000, "gigaparsecs")
  3405. }
  3406. ]
  3407. ))
  3408. characterMakers.push(() => makeCharacter(
  3409. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3410. {
  3411. front: {
  3412. height: math.unit(2, "meter"),
  3413. weight: math.unit(60, "kg"),
  3414. name: "Front",
  3415. image: {
  3416. source: "./media/characters/noah/front.svg"
  3417. }
  3418. },
  3419. talons: {
  3420. height: math.unit(0.315, "meter"),
  3421. name: "Talons",
  3422. image: {
  3423. source: "./media/characters/noah/talons.svg"
  3424. }
  3425. }
  3426. },
  3427. [
  3428. {
  3429. name: "Large",
  3430. height: math.unit(50, "feet")
  3431. },
  3432. {
  3433. name: "Macro",
  3434. height: math.unit(750, "feet"),
  3435. default: true
  3436. },
  3437. {
  3438. name: "Megamacro",
  3439. height: math.unit(50, "miles")
  3440. },
  3441. {
  3442. name: "Gigamacro",
  3443. height: math.unit(100000, "miles")
  3444. },
  3445. {
  3446. name: "Full-Size",
  3447. height: math.unit(3000000000, "miles")
  3448. }
  3449. ]
  3450. ))
  3451. characterMakers.push(() => makeCharacter(
  3452. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3453. {
  3454. front: {
  3455. height: math.unit(2, "meter"),
  3456. weight: math.unit(80, "kg"),
  3457. name: "Front",
  3458. image: {
  3459. source: "./media/characters/natalya/front.svg"
  3460. }
  3461. },
  3462. back: {
  3463. height: math.unit(2, "meter"),
  3464. weight: math.unit(80, "kg"),
  3465. name: "Back",
  3466. image: {
  3467. source: "./media/characters/natalya/back.svg"
  3468. }
  3469. }
  3470. },
  3471. [
  3472. {
  3473. name: "Normal",
  3474. height: math.unit(150, "feet"),
  3475. default: true
  3476. },
  3477. {
  3478. name: "Megamacro",
  3479. height: math.unit(5, "miles")
  3480. },
  3481. {
  3482. name: "Full-Size",
  3483. height: math.unit(600, "kiloparsecs")
  3484. }
  3485. ]
  3486. ))
  3487. characterMakers.push(() => makeCharacter(
  3488. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3489. {
  3490. front: {
  3491. height: math.unit(2, "meter"),
  3492. weight: math.unit(50, "kg"),
  3493. name: "Front",
  3494. image: {
  3495. source: "./media/characters/erestrebah/front.svg",
  3496. extra: 208 / 193,
  3497. bottom: 0.055
  3498. }
  3499. },
  3500. back: {
  3501. height: math.unit(2, "meter"),
  3502. weight: math.unit(50, "kg"),
  3503. name: "Back",
  3504. image: {
  3505. source: "./media/characters/erestrebah/back.svg",
  3506. extra: 1.3
  3507. }
  3508. }
  3509. },
  3510. [
  3511. {
  3512. name: "Normal",
  3513. height: math.unit(10, "feet")
  3514. },
  3515. {
  3516. name: "Large",
  3517. height: math.unit(50, "feet"),
  3518. default: true
  3519. },
  3520. {
  3521. name: "Macro",
  3522. height: math.unit(300, "feet")
  3523. },
  3524. {
  3525. name: "Macro+",
  3526. height: math.unit(750, "feet")
  3527. },
  3528. {
  3529. name: "Megamacro",
  3530. height: math.unit(3, "miles")
  3531. }
  3532. ]
  3533. ))
  3534. characterMakers.push(() => makeCharacter(
  3535. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3536. {
  3537. front: {
  3538. height: math.unit(2, "meter"),
  3539. weight: math.unit(80, "kg"),
  3540. name: "Front",
  3541. image: {
  3542. source: "./media/characters/jennifer/front.svg",
  3543. bottom: 0.11,
  3544. extra: 1.16
  3545. }
  3546. },
  3547. frontAlt: {
  3548. height: math.unit(2, "meter"),
  3549. weight: math.unit(80, "kg"),
  3550. name: "Front (Alt)",
  3551. image: {
  3552. source: "./media/characters/jennifer/front-alt.svg"
  3553. }
  3554. }
  3555. },
  3556. [
  3557. {
  3558. name: "Canon Height",
  3559. height: math.unit(120, "feet"),
  3560. default: true
  3561. },
  3562. {
  3563. name: "Macro+",
  3564. height: math.unit(300, "feet")
  3565. },
  3566. {
  3567. name: "Megamacro",
  3568. height: math.unit(20000, "feet")
  3569. }
  3570. ]
  3571. ))
  3572. characterMakers.push(() => makeCharacter(
  3573. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3574. {
  3575. front: {
  3576. height: math.unit(2, "meter"),
  3577. weight: math.unit(50, "kg"),
  3578. name: "Front",
  3579. image: {
  3580. source: "./media/characters/kalista/front.svg",
  3581. extra: 1947 / 1700,
  3582. bottom: 76.6 / 1412.98
  3583. }
  3584. },
  3585. back: {
  3586. height: math.unit(2, "meter"),
  3587. weight: math.unit(50, "kg"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/kalista/back.svg",
  3591. extra: 1366 / 1156,
  3592. bottom: 33.9 / 1362.78
  3593. }
  3594. }
  3595. },
  3596. [
  3597. {
  3598. name: "Uncomfortably Small",
  3599. height: math.unit(10, "feet")
  3600. },
  3601. {
  3602. name: "Small",
  3603. height: math.unit(30, "feet")
  3604. },
  3605. {
  3606. name: "Macro",
  3607. height: math.unit(100, "feet"),
  3608. default: true
  3609. },
  3610. {
  3611. name: "Macro+",
  3612. height: math.unit(2000, "feet")
  3613. },
  3614. {
  3615. name: "True Form",
  3616. height: math.unit(8924, "miles")
  3617. }
  3618. ]
  3619. ))
  3620. characterMakers.push(() => makeCharacter(
  3621. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3622. {
  3623. front: {
  3624. height: math.unit(2, "meter"),
  3625. weight: math.unit(120, "kg"),
  3626. name: "Front",
  3627. image: {
  3628. source: "./media/characters/ggv/front.svg"
  3629. }
  3630. },
  3631. side: {
  3632. height: math.unit(2, "meter"),
  3633. weight: math.unit(120, "kg"),
  3634. name: "Side",
  3635. image: {
  3636. source: "./media/characters/ggv/side.svg"
  3637. }
  3638. }
  3639. },
  3640. [
  3641. {
  3642. name: "Extremely Puny",
  3643. height: math.unit(9 + 5 / 12, "feet")
  3644. },
  3645. {
  3646. name: "Horribly Small",
  3647. height: math.unit(47.7, "miles"),
  3648. default: true
  3649. },
  3650. {
  3651. name: "Reasonably Sized",
  3652. height: math.unit(25000, "parsecs")
  3653. },
  3654. {
  3655. name: "Slightly Uncompressed",
  3656. height: math.unit(7.77e31, "parsecs")
  3657. },
  3658. {
  3659. name: "Omniversal",
  3660. height: math.unit(1e300, "meters")
  3661. },
  3662. ]
  3663. ))
  3664. characterMakers.push(() => makeCharacter(
  3665. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3666. {
  3667. front: {
  3668. height: math.unit(2, "meter"),
  3669. weight: math.unit(75, "lb"),
  3670. name: "Front",
  3671. image: {
  3672. source: "./media/characters/napalm/front.svg"
  3673. }
  3674. },
  3675. back: {
  3676. height: math.unit(2, "meter"),
  3677. weight: math.unit(75, "lb"),
  3678. name: "Back",
  3679. image: {
  3680. source: "./media/characters/napalm/back.svg"
  3681. }
  3682. }
  3683. },
  3684. [
  3685. {
  3686. name: "Standard",
  3687. height: math.unit(55, "feet"),
  3688. default: true
  3689. }
  3690. ]
  3691. ))
  3692. characterMakers.push(() => makeCharacter(
  3693. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3694. {
  3695. front: {
  3696. height: math.unit(7 + 5 / 6, "feet"),
  3697. weight: math.unit(325, "lb"),
  3698. name: "Front",
  3699. image: {
  3700. source: "./media/characters/asana/front.svg",
  3701. extra: 1133 / 1060,
  3702. bottom: 15.2 / 1148.6
  3703. }
  3704. },
  3705. back: {
  3706. height: math.unit(7 + 5 / 6, "feet"),
  3707. weight: math.unit(325, "lb"),
  3708. name: "Back",
  3709. image: {
  3710. source: "./media/characters/asana/back.svg",
  3711. extra: 1114 / 1043,
  3712. bottom: 5 / 1120
  3713. }
  3714. },
  3715. dressedDark: {
  3716. height: math.unit(7 + 5 / 6, "feet"),
  3717. weight: math.unit(325, "lb"),
  3718. name: "Dressed (Dark)",
  3719. image: {
  3720. source: "./media/characters/asana/dressed-dark.svg",
  3721. extra: 1133 / 1060,
  3722. bottom: 15.2 / 1148.6
  3723. }
  3724. },
  3725. dressedLight: {
  3726. height: math.unit(7 + 5 / 6, "feet"),
  3727. weight: math.unit(325, "lb"),
  3728. name: "Dressed (Light)",
  3729. image: {
  3730. source: "./media/characters/asana/dressed-light.svg",
  3731. extra: 1133 / 1060,
  3732. bottom: 15.2 / 1148.6
  3733. }
  3734. },
  3735. },
  3736. [
  3737. {
  3738. name: "Standard",
  3739. height: math.unit(7 + 5 / 6, "feet"),
  3740. default: true
  3741. },
  3742. {
  3743. name: "Large",
  3744. height: math.unit(10, "meters")
  3745. },
  3746. {
  3747. name: "Macro",
  3748. height: math.unit(2500, "meters")
  3749. },
  3750. {
  3751. name: "Megamacro",
  3752. height: math.unit(5e6, "meters")
  3753. },
  3754. {
  3755. name: "Examacro",
  3756. height: math.unit(5e12, "lightyears")
  3757. },
  3758. {
  3759. name: "Max Size",
  3760. height: math.unit(1e31, "lightyears")
  3761. }
  3762. ]
  3763. ))
  3764. characterMakers.push(() => makeCharacter(
  3765. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3766. {
  3767. front: {
  3768. height: math.unit(2, "meter"),
  3769. weight: math.unit(60, "kg"),
  3770. name: "Front",
  3771. image: {
  3772. source: "./media/characters/ebony/front.svg",
  3773. bottom: 0.03,
  3774. extra: 1045 / 810 + 0.03
  3775. }
  3776. },
  3777. side: {
  3778. height: math.unit(2, "meter"),
  3779. weight: math.unit(60, "kg"),
  3780. name: "Side",
  3781. image: {
  3782. source: "./media/characters/ebony/side.svg",
  3783. bottom: 0.03,
  3784. extra: 1045 / 810 + 0.03
  3785. }
  3786. },
  3787. back: {
  3788. height: math.unit(2, "meter"),
  3789. weight: math.unit(60, "kg"),
  3790. name: "Back",
  3791. image: {
  3792. source: "./media/characters/ebony/back.svg",
  3793. bottom: 0.01,
  3794. extra: 1045 / 810 + 0.01
  3795. }
  3796. },
  3797. },
  3798. [
  3799. // TODO check why I did this lol
  3800. {
  3801. name: "Standard",
  3802. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3803. default: true
  3804. },
  3805. {
  3806. name: "Macro",
  3807. height: math.unit(200, "feet")
  3808. },
  3809. {
  3810. name: "Gigamacro",
  3811. height: math.unit(13000, "km")
  3812. }
  3813. ]
  3814. ))
  3815. characterMakers.push(() => makeCharacter(
  3816. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3817. {
  3818. front: {
  3819. height: math.unit(6, "feet"),
  3820. weight: math.unit(175, "lb"),
  3821. name: "Front",
  3822. image: {
  3823. source: "./media/characters/mountain/front.svg",
  3824. extra: 972 / 955,
  3825. bottom: 64 / 1036.6
  3826. }
  3827. },
  3828. back: {
  3829. height: math.unit(6, "feet"),
  3830. weight: math.unit(175, "lb"),
  3831. name: "Back",
  3832. image: {
  3833. source: "./media/characters/mountain/back.svg",
  3834. extra: 970 / 950,
  3835. bottom: 28.25 / 999
  3836. }
  3837. },
  3838. },
  3839. [
  3840. {
  3841. name: "Large",
  3842. height: math.unit(20, "meters")
  3843. },
  3844. {
  3845. name: "Macro",
  3846. height: math.unit(300, "meters")
  3847. },
  3848. {
  3849. name: "Gigamacro",
  3850. height: math.unit(10000, "km"),
  3851. default: true
  3852. },
  3853. {
  3854. name: "Examacro",
  3855. height: math.unit(10e9, "lightyears")
  3856. }
  3857. ]
  3858. ))
  3859. characterMakers.push(() => makeCharacter(
  3860. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3861. {
  3862. front: {
  3863. height: math.unit(8, "feet"),
  3864. weight: math.unit(500, "lb"),
  3865. name: "Front",
  3866. image: {
  3867. source: "./media/characters/rick/front.svg"
  3868. }
  3869. }
  3870. },
  3871. [
  3872. {
  3873. name: "Normal",
  3874. height: math.unit(8, "feet"),
  3875. default: true
  3876. },
  3877. {
  3878. name: "Macro",
  3879. height: math.unit(5, "km")
  3880. }
  3881. ]
  3882. ))
  3883. characterMakers.push(() => makeCharacter(
  3884. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3885. {
  3886. front: {
  3887. height: math.unit(8, "feet"),
  3888. weight: math.unit(120, "lb"),
  3889. name: "Front",
  3890. image: {
  3891. source: "./media/characters/ona/front.svg"
  3892. }
  3893. },
  3894. frontAlt: {
  3895. height: math.unit(8, "feet"),
  3896. weight: math.unit(120, "lb"),
  3897. name: "Front (Alt)",
  3898. image: {
  3899. source: "./media/characters/ona/front-alt.svg"
  3900. }
  3901. },
  3902. back: {
  3903. height: math.unit(8, "feet"),
  3904. weight: math.unit(120, "lb"),
  3905. name: "Back",
  3906. image: {
  3907. source: "./media/characters/ona/back.svg"
  3908. }
  3909. },
  3910. foot: {
  3911. height: math.unit(1.1, "feet"),
  3912. name: "Foot",
  3913. image: {
  3914. source: "./media/characters/ona/foot.svg"
  3915. }
  3916. }
  3917. },
  3918. [
  3919. {
  3920. name: "Megamacro",
  3921. height: math.unit(70, "km"),
  3922. default: true
  3923. },
  3924. {
  3925. name: "Gigamacro",
  3926. height: math.unit(681818, "miles")
  3927. },
  3928. {
  3929. name: "Examacro",
  3930. height: math.unit(3800000, "lightyears")
  3931. },
  3932. ]
  3933. ))
  3934. characterMakers.push(() => makeCharacter(
  3935. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3936. {
  3937. front: {
  3938. height: math.unit(12, "feet"),
  3939. weight: math.unit(3000, "lb"),
  3940. name: "Front",
  3941. image: {
  3942. source: "./media/characters/mech/front.svg",
  3943. extra: 2900 / 2770,
  3944. bottom: 110 / 3010
  3945. }
  3946. },
  3947. back: {
  3948. height: math.unit(12, "feet"),
  3949. weight: math.unit(3000, "lb"),
  3950. name: "Back",
  3951. image: {
  3952. source: "./media/characters/mech/back.svg",
  3953. extra: 3011 / 2890,
  3954. bottom: 94 / 3105
  3955. }
  3956. },
  3957. maw: {
  3958. height: math.unit(3.07, "feet"),
  3959. name: "Maw",
  3960. image: {
  3961. source: "./media/characters/mech/maw.svg"
  3962. }
  3963. },
  3964. head: {
  3965. height: math.unit(2.82, "feet"),
  3966. name: "Head",
  3967. image: {
  3968. source: "./media/characters/mech/head.svg"
  3969. }
  3970. },
  3971. dick: {
  3972. height: math.unit(1.43, "feet"),
  3973. name: "Dick",
  3974. image: {
  3975. source: "./media/characters/mech/dick.svg"
  3976. }
  3977. },
  3978. },
  3979. [
  3980. {
  3981. name: "Normal",
  3982. height: math.unit(12, "feet")
  3983. },
  3984. {
  3985. name: "Macro",
  3986. height: math.unit(300, "feet"),
  3987. default: true
  3988. },
  3989. {
  3990. name: "Macro+",
  3991. height: math.unit(1500, "feet")
  3992. },
  3993. ]
  3994. ))
  3995. characterMakers.push(() => makeCharacter(
  3996. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3997. {
  3998. front: {
  3999. height: math.unit(1.3, "meter"),
  4000. weight: math.unit(30, "kg"),
  4001. name: "Front",
  4002. image: {
  4003. source: "./media/characters/gregory/front.svg",
  4004. }
  4005. }
  4006. },
  4007. [
  4008. {
  4009. name: "Normal",
  4010. height: math.unit(1.3, "meter"),
  4011. default: true
  4012. },
  4013. {
  4014. name: "Macro",
  4015. height: math.unit(20, "meter")
  4016. }
  4017. ]
  4018. ))
  4019. characterMakers.push(() => makeCharacter(
  4020. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4021. {
  4022. front: {
  4023. height: math.unit(2.8, "meter"),
  4024. weight: math.unit(200, "kg"),
  4025. name: "Front",
  4026. image: {
  4027. source: "./media/characters/elory/front.svg",
  4028. }
  4029. }
  4030. },
  4031. [
  4032. {
  4033. name: "Normal",
  4034. height: math.unit(2.8, "meter"),
  4035. default: true
  4036. },
  4037. {
  4038. name: "Macro",
  4039. height: math.unit(38, "meter")
  4040. }
  4041. ]
  4042. ))
  4043. characterMakers.push(() => makeCharacter(
  4044. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4045. {
  4046. front: {
  4047. height: math.unit(470, "feet"),
  4048. weight: math.unit(924, "tons"),
  4049. name: "Front",
  4050. image: {
  4051. source: "./media/characters/angelpatamon/front.svg",
  4052. }
  4053. }
  4054. },
  4055. [
  4056. {
  4057. name: "Normal",
  4058. height: math.unit(470, "feet"),
  4059. default: true
  4060. },
  4061. {
  4062. name: "Deity Size I",
  4063. height: math.unit(28651.2, "km")
  4064. },
  4065. {
  4066. name: "Deity Size II",
  4067. height: math.unit(171907.2, "km")
  4068. }
  4069. ]
  4070. ))
  4071. characterMakers.push(() => makeCharacter(
  4072. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4073. {
  4074. side: {
  4075. height: math.unit(7.2, "meter"),
  4076. weight: math.unit(8.2, "tons"),
  4077. name: "Side",
  4078. image: {
  4079. source: "./media/characters/cryae/side.svg",
  4080. extra: 3500 / 1500
  4081. }
  4082. }
  4083. },
  4084. [
  4085. {
  4086. name: "Normal",
  4087. height: math.unit(7.2, "meter"),
  4088. default: true
  4089. }
  4090. ]
  4091. ))
  4092. characterMakers.push(() => makeCharacter(
  4093. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4094. {
  4095. front: {
  4096. height: math.unit(6, "feet"),
  4097. weight: math.unit(175, "lb"),
  4098. name: "Front",
  4099. image: {
  4100. source: "./media/characters/xera/front.svg",
  4101. extra: 2377 / 1972,
  4102. bottom: 75.5 / 2452
  4103. }
  4104. },
  4105. side: {
  4106. height: math.unit(6, "feet"),
  4107. weight: math.unit(175, "lb"),
  4108. name: "Side",
  4109. image: {
  4110. source: "./media/characters/xera/side.svg",
  4111. extra: 2345 / 2019,
  4112. bottom: 39.7 / 2384
  4113. }
  4114. },
  4115. back: {
  4116. height: math.unit(6, "feet"),
  4117. weight: math.unit(175, "lb"),
  4118. name: "Back",
  4119. image: {
  4120. source: "./media/characters/xera/back.svg",
  4121. extra: 2095 / 1984,
  4122. bottom: 67 / 2166
  4123. }
  4124. },
  4125. },
  4126. [
  4127. {
  4128. name: "Small",
  4129. height: math.unit(10, "feet")
  4130. },
  4131. {
  4132. name: "Macro",
  4133. height: math.unit(500, "meters"),
  4134. default: true
  4135. },
  4136. {
  4137. name: "Macro+",
  4138. height: math.unit(10, "km")
  4139. },
  4140. {
  4141. name: "Gigamacro",
  4142. height: math.unit(25000, "km")
  4143. },
  4144. {
  4145. name: "Teramacro",
  4146. height: math.unit(3e6, "km")
  4147. }
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4152. {
  4153. front: {
  4154. height: math.unit(6, "feet"),
  4155. weight: math.unit(175, "lb"),
  4156. name: "Front",
  4157. image: {
  4158. source: "./media/characters/nebula/front.svg",
  4159. extra: 2566 / 2362,
  4160. bottom: 81 / 2644
  4161. }
  4162. }
  4163. },
  4164. [
  4165. {
  4166. name: "Small",
  4167. height: math.unit(4.5, "meters")
  4168. },
  4169. {
  4170. name: "Macro",
  4171. height: math.unit(1500, "meters"),
  4172. default: true
  4173. },
  4174. {
  4175. name: "Megamacro",
  4176. height: math.unit(150, "km")
  4177. },
  4178. {
  4179. name: "Gigamacro",
  4180. height: math.unit(27000, "km")
  4181. }
  4182. ]
  4183. ))
  4184. characterMakers.push(() => makeCharacter(
  4185. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4186. {
  4187. front: {
  4188. height: math.unit(6, "feet"),
  4189. weight: math.unit(225, "lb"),
  4190. name: "Front",
  4191. image: {
  4192. source: "./media/characters/abysgar/front.svg"
  4193. }
  4194. }
  4195. },
  4196. [
  4197. {
  4198. name: "Small",
  4199. height: math.unit(4.5, "meters")
  4200. },
  4201. {
  4202. name: "Macro",
  4203. height: math.unit(1250, "meters"),
  4204. default: true
  4205. },
  4206. {
  4207. name: "Megamacro",
  4208. height: math.unit(125, "km")
  4209. },
  4210. {
  4211. name: "Gigamacro",
  4212. height: math.unit(26000, "km")
  4213. }
  4214. ]
  4215. ))
  4216. characterMakers.push(() => makeCharacter(
  4217. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4218. {
  4219. front: {
  4220. height: math.unit(6, "feet"),
  4221. weight: math.unit(180, "lb"),
  4222. name: "Front",
  4223. image: {
  4224. source: "./media/characters/yakuz/front.svg"
  4225. }
  4226. }
  4227. },
  4228. [
  4229. {
  4230. name: "Small",
  4231. height: math.unit(5, "meters")
  4232. },
  4233. {
  4234. name: "Macro",
  4235. height: math.unit(1500, "meters"),
  4236. default: true
  4237. },
  4238. {
  4239. name: "Megamacro",
  4240. height: math.unit(200, "km")
  4241. },
  4242. {
  4243. name: "Gigamacro",
  4244. height: math.unit(100000, "km")
  4245. }
  4246. ]
  4247. ))
  4248. characterMakers.push(() => makeCharacter(
  4249. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4250. {
  4251. front: {
  4252. height: math.unit(6, "feet"),
  4253. weight: math.unit(175, "lb"),
  4254. name: "Front",
  4255. image: {
  4256. source: "./media/characters/mirova/front.svg",
  4257. extra: 3334 / 3071,
  4258. bottom: 42 / 3375.6
  4259. }
  4260. }
  4261. },
  4262. [
  4263. {
  4264. name: "Small",
  4265. height: math.unit(5, "meters")
  4266. },
  4267. {
  4268. name: "Macro",
  4269. height: math.unit(900, "meters"),
  4270. default: true
  4271. },
  4272. {
  4273. name: "Megamacro",
  4274. height: math.unit(135, "km")
  4275. },
  4276. {
  4277. name: "Gigamacro",
  4278. height: math.unit(20000, "km")
  4279. }
  4280. ]
  4281. ))
  4282. characterMakers.push(() => makeCharacter(
  4283. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4284. {
  4285. side: {
  4286. height: math.unit(28.35, "feet"),
  4287. weight: math.unit(99.75, "tons"),
  4288. name: "Side",
  4289. image: {
  4290. source: "./media/characters/asana-mech/side.svg",
  4291. extra: 923 / 699,
  4292. bottom: 50 / 975
  4293. }
  4294. },
  4295. chaingun: {
  4296. height: math.unit(7, "feet"),
  4297. weight: math.unit(2400, "lb"),
  4298. name: "Chaingun",
  4299. image: {
  4300. source: "./media/characters/asana-mech/chaingun.svg"
  4301. }
  4302. },
  4303. laser: {
  4304. height: math.unit(7.12, "feet"),
  4305. weight: math.unit(2000, "lb"),
  4306. name: "Laser",
  4307. image: {
  4308. source: "./media/characters/asana-mech/laser.svg"
  4309. }
  4310. },
  4311. },
  4312. [
  4313. {
  4314. name: "Normal",
  4315. height: math.unit(28.35, "feet"),
  4316. default: true
  4317. },
  4318. {
  4319. name: "Macro",
  4320. height: math.unit(2500, "feet")
  4321. },
  4322. {
  4323. name: "Megamacro",
  4324. height: math.unit(25, "miles")
  4325. },
  4326. {
  4327. name: "Examacro",
  4328. height: math.unit(6e8, "lightyears")
  4329. },
  4330. ]
  4331. ))
  4332. characterMakers.push(() => makeCharacter(
  4333. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4334. {
  4335. front: {
  4336. height: math.unit(5, "meters"),
  4337. weight: math.unit(1000, "kg"),
  4338. name: "Front",
  4339. image: {
  4340. source: "./media/characters/asche/front.svg",
  4341. extra: 1258 / 1190,
  4342. bottom: 47 / 1305
  4343. }
  4344. },
  4345. frontUnderwear: {
  4346. height: math.unit(5, "meters"),
  4347. weight: math.unit(1000, "kg"),
  4348. name: "Front (Underwear)",
  4349. image: {
  4350. source: "./media/characters/asche/front-underwear.svg",
  4351. extra: 1258 / 1190,
  4352. bottom: 47 / 1305
  4353. }
  4354. },
  4355. frontDressed: {
  4356. height: math.unit(5, "meters"),
  4357. weight: math.unit(1000, "kg"),
  4358. name: "Front (Dressed)",
  4359. image: {
  4360. source: "./media/characters/asche/front-dressed.svg",
  4361. extra: 1258 / 1190,
  4362. bottom: 47 / 1305
  4363. }
  4364. },
  4365. frontArmor: {
  4366. height: math.unit(5, "meters"),
  4367. weight: math.unit(1000, "kg"),
  4368. name: "Front (Armored)",
  4369. image: {
  4370. source: "./media/characters/asche/front-armored.svg",
  4371. extra: 1374 / 1308,
  4372. bottom: 23 / 1397
  4373. }
  4374. },
  4375. mp724: {
  4376. height: math.unit(0.96, "meters"),
  4377. weight: math.unit(38, "kg"),
  4378. name: "H&K MP724",
  4379. image: {
  4380. source: "./media/characters/asche/h&k-mp724.svg"
  4381. }
  4382. },
  4383. side: {
  4384. height: math.unit(5, "meters"),
  4385. weight: math.unit(1000, "kg"),
  4386. name: "Side",
  4387. image: {
  4388. source: "./media/characters/asche/side.svg",
  4389. extra: 1717 / 1609,
  4390. bottom: 0.005
  4391. }
  4392. },
  4393. back: {
  4394. height: math.unit(5, "meters"),
  4395. weight: math.unit(1000, "kg"),
  4396. name: "Back",
  4397. image: {
  4398. source: "./media/characters/asche/back.svg",
  4399. extra: 1570 / 1501
  4400. }
  4401. },
  4402. },
  4403. [
  4404. {
  4405. name: "DEFCON 5",
  4406. height: math.unit(5, "meters")
  4407. },
  4408. {
  4409. name: "DEFCON 4",
  4410. height: math.unit(500, "meters"),
  4411. default: true
  4412. },
  4413. {
  4414. name: "DEFCON 3",
  4415. height: math.unit(5, "km")
  4416. },
  4417. {
  4418. name: "DEFCON 2",
  4419. height: math.unit(500, "km")
  4420. },
  4421. {
  4422. name: "DEFCON 1",
  4423. height: math.unit(500000, "km")
  4424. },
  4425. {
  4426. name: "DEFCON 0",
  4427. height: math.unit(3, "gigaparsecs")
  4428. },
  4429. ]
  4430. ))
  4431. characterMakers.push(() => makeCharacter(
  4432. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4433. {
  4434. front: {
  4435. height: math.unit(2, "meters"),
  4436. weight: math.unit(76, "kg"),
  4437. name: "Front",
  4438. image: {
  4439. source: "./media/characters/gale/front.svg"
  4440. }
  4441. },
  4442. frontAlt1: {
  4443. height: math.unit(2, "meters"),
  4444. weight: math.unit(76, "kg"),
  4445. name: "Front (Alt 1)",
  4446. image: {
  4447. source: "./media/characters/gale/front-alt-1.svg"
  4448. }
  4449. },
  4450. frontAlt2: {
  4451. height: math.unit(2, "meters"),
  4452. weight: math.unit(76, "kg"),
  4453. name: "Front (Alt 2)",
  4454. image: {
  4455. source: "./media/characters/gale/front-alt-2.svg"
  4456. }
  4457. },
  4458. },
  4459. [
  4460. {
  4461. name: "Normal",
  4462. height: math.unit(7, "feet")
  4463. },
  4464. {
  4465. name: "Macro",
  4466. height: math.unit(150, "feet"),
  4467. default: true
  4468. },
  4469. {
  4470. name: "Macro+",
  4471. height: math.unit(300, "feet")
  4472. },
  4473. ]
  4474. ))
  4475. characterMakers.push(() => makeCharacter(
  4476. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4477. {
  4478. front: {
  4479. height: math.unit(2, "meters"),
  4480. weight: math.unit(76, "kg"),
  4481. name: "Front",
  4482. image: {
  4483. source: "./media/characters/draylen/front.svg"
  4484. }
  4485. }
  4486. },
  4487. [
  4488. {
  4489. name: "Macro",
  4490. height: math.unit(150, "feet"),
  4491. default: true
  4492. }
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(7 + 9 / 12, "feet"),
  4500. weight: math.unit(379, "lbs"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/chez/front.svg"
  4504. }
  4505. },
  4506. side: {
  4507. height: math.unit(7 + 9 / 12, "feet"),
  4508. weight: math.unit(379, "lbs"),
  4509. name: "Side",
  4510. image: {
  4511. source: "./media/characters/chez/side.svg"
  4512. }
  4513. }
  4514. },
  4515. [
  4516. {
  4517. name: "Normal",
  4518. height: math.unit(7 + 9 / 12, "feet"),
  4519. default: true
  4520. },
  4521. {
  4522. name: "God King",
  4523. height: math.unit(9750000, "meters")
  4524. }
  4525. ]
  4526. ))
  4527. characterMakers.push(() => makeCharacter(
  4528. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4529. {
  4530. front: {
  4531. height: math.unit(6, "feet"),
  4532. weight: math.unit(275, "lbs"),
  4533. name: "Front",
  4534. image: {
  4535. source: "./media/characters/kaylum/front.svg",
  4536. bottom: 0.01,
  4537. extra: 1166 / 1031
  4538. }
  4539. },
  4540. frontWingless: {
  4541. height: math.unit(6, "feet"),
  4542. weight: math.unit(275, "lbs"),
  4543. name: "Front (Wingless)",
  4544. image: {
  4545. source: "./media/characters/kaylum/front-wingless.svg",
  4546. bottom: 0.01,
  4547. extra: 1117 / 1031
  4548. }
  4549. }
  4550. },
  4551. [
  4552. {
  4553. name: "Normal",
  4554. height: math.unit(3.05, "meters")
  4555. },
  4556. {
  4557. name: "Master",
  4558. height: math.unit(5.5, "meters")
  4559. },
  4560. {
  4561. name: "Rampage",
  4562. height: math.unit(19, "meters")
  4563. },
  4564. {
  4565. name: "Macro Lite",
  4566. height: math.unit(37, "meters")
  4567. },
  4568. {
  4569. name: "Hyper Predator",
  4570. height: math.unit(61, "meters")
  4571. },
  4572. {
  4573. name: "Macro",
  4574. height: math.unit(138, "meters"),
  4575. default: true
  4576. }
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(6, "feet"),
  4584. weight: math.unit(150, "lbs"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/geta/front.svg"
  4588. }
  4589. }
  4590. },
  4591. [
  4592. {
  4593. name: "Micro",
  4594. height: math.unit(3, "inches"),
  4595. default: true
  4596. },
  4597. {
  4598. name: "Normal",
  4599. height: math.unit(5 + 5 / 12, "feet")
  4600. }
  4601. ]
  4602. ))
  4603. characterMakers.push(() => makeCharacter(
  4604. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4605. {
  4606. front: {
  4607. height: math.unit(6, "feet"),
  4608. weight: math.unit(300, "lbs"),
  4609. name: "Front",
  4610. image: {
  4611. source: "./media/characters/tyrnn/front.svg"
  4612. }
  4613. }
  4614. },
  4615. [
  4616. {
  4617. name: "Main Height",
  4618. height: math.unit(355, "feet"),
  4619. default: true
  4620. },
  4621. {
  4622. name: "Fave. Height",
  4623. height: math.unit(2400, "feet")
  4624. }
  4625. ]
  4626. ))
  4627. characterMakers.push(() => makeCharacter(
  4628. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4629. {
  4630. front: {
  4631. height: math.unit(6, "feet"),
  4632. weight: math.unit(300, "lbs"),
  4633. name: "Front",
  4634. image: {
  4635. source: "./media/characters/appledectomy/front.svg"
  4636. }
  4637. }
  4638. },
  4639. [
  4640. {
  4641. name: "Macro",
  4642. height: math.unit(2500, "feet")
  4643. },
  4644. {
  4645. name: "Megamacro",
  4646. height: math.unit(50, "miles"),
  4647. default: true
  4648. },
  4649. {
  4650. name: "Gigamacro",
  4651. height: math.unit(5000, "miles")
  4652. },
  4653. {
  4654. name: "Teramacro",
  4655. height: math.unit(250000, "miles")
  4656. },
  4657. ]
  4658. ))
  4659. characterMakers.push(() => makeCharacter(
  4660. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4661. {
  4662. front: {
  4663. height: math.unit(6, "feet"),
  4664. weight: math.unit(200, "lbs"),
  4665. name: "Front",
  4666. image: {
  4667. source: "./media/characters/vulpes/front.svg",
  4668. extra: 573 / 543,
  4669. bottom: 0.033
  4670. }
  4671. },
  4672. side: {
  4673. height: math.unit(6, "feet"),
  4674. weight: math.unit(200, "lbs"),
  4675. name: "Side",
  4676. image: {
  4677. source: "./media/characters/vulpes/side.svg",
  4678. extra: 577 / 549,
  4679. bottom: 11 / 588
  4680. }
  4681. },
  4682. back: {
  4683. height: math.unit(6, "feet"),
  4684. weight: math.unit(200, "lbs"),
  4685. name: "Back",
  4686. image: {
  4687. source: "./media/characters/vulpes/back.svg",
  4688. extra: 573 / 549,
  4689. bottom: 20 / 593
  4690. }
  4691. },
  4692. feet: {
  4693. height: math.unit(1.276, "feet"),
  4694. name: "Feet",
  4695. image: {
  4696. source: "./media/characters/vulpes/feet.svg"
  4697. }
  4698. },
  4699. maw: {
  4700. height: math.unit(1.18, "feet"),
  4701. name: "Maw",
  4702. image: {
  4703. source: "./media/characters/vulpes/maw.svg"
  4704. }
  4705. },
  4706. },
  4707. [
  4708. {
  4709. name: "Micro",
  4710. height: math.unit(2, "inches")
  4711. },
  4712. {
  4713. name: "Normal",
  4714. height: math.unit(6.3, "feet")
  4715. },
  4716. {
  4717. name: "Macro",
  4718. height: math.unit(850, "feet")
  4719. },
  4720. {
  4721. name: "Megamacro",
  4722. height: math.unit(7500, "feet"),
  4723. default: true
  4724. },
  4725. {
  4726. name: "Gigamacro",
  4727. height: math.unit(570000, "miles")
  4728. }
  4729. ]
  4730. ))
  4731. characterMakers.push(() => makeCharacter(
  4732. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4733. {
  4734. front: {
  4735. height: math.unit(6, "feet"),
  4736. weight: math.unit(210, "lbs"),
  4737. name: "Front",
  4738. image: {
  4739. source: "./media/characters/rain-fallen/front.svg"
  4740. }
  4741. },
  4742. side: {
  4743. height: math.unit(6, "feet"),
  4744. weight: math.unit(210, "lbs"),
  4745. name: "Side",
  4746. image: {
  4747. source: "./media/characters/rain-fallen/side.svg"
  4748. }
  4749. },
  4750. back: {
  4751. height: math.unit(6, "feet"),
  4752. weight: math.unit(210, "lbs"),
  4753. name: "Back",
  4754. image: {
  4755. source: "./media/characters/rain-fallen/back.svg"
  4756. }
  4757. },
  4758. feral: {
  4759. height: math.unit(9, "feet"),
  4760. weight: math.unit(700, "lbs"),
  4761. name: "Feral",
  4762. image: {
  4763. source: "./media/characters/rain-fallen/feral.svg"
  4764. }
  4765. },
  4766. },
  4767. [
  4768. {
  4769. name: "Meddling with Mortals",
  4770. height: math.unit(8 + 8/12, "feet")
  4771. },
  4772. {
  4773. name: "Normal",
  4774. height: math.unit(5, "meter")
  4775. },
  4776. {
  4777. name: "Macro",
  4778. height: math.unit(150, "meter"),
  4779. default: true
  4780. },
  4781. {
  4782. name: "Megamacro",
  4783. height: math.unit(278e6, "meter")
  4784. },
  4785. {
  4786. name: "Gigamacro",
  4787. height: math.unit(2e9, "meter")
  4788. },
  4789. {
  4790. name: "Teramacro",
  4791. height: math.unit(8e12, "meter")
  4792. },
  4793. {
  4794. name: "Devourer",
  4795. height: math.unit(14, "zettameters")
  4796. },
  4797. {
  4798. name: "Scarlet King",
  4799. height: math.unit(18, "yottameters")
  4800. },
  4801. {
  4802. name: "Void",
  4803. height: math.unit(1e88, "yottameters")
  4804. }
  4805. ]
  4806. ))
  4807. characterMakers.push(() => makeCharacter(
  4808. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4809. {
  4810. standing: {
  4811. height: math.unit(6, "feet"),
  4812. weight: math.unit(180, "lbs"),
  4813. name: "Standing",
  4814. image: {
  4815. source: "./media/characters/zaakira/standing.svg",
  4816. extra: 1599/1504,
  4817. bottom: 39/1638
  4818. }
  4819. },
  4820. laying: {
  4821. height: math.unit(3, "feet"),
  4822. weight: math.unit(180, "lbs"),
  4823. name: "Laying",
  4824. image: {
  4825. source: "./media/characters/zaakira/laying.svg"
  4826. }
  4827. },
  4828. },
  4829. [
  4830. {
  4831. name: "Normal",
  4832. height: math.unit(12, "feet")
  4833. },
  4834. {
  4835. name: "Macro",
  4836. height: math.unit(279, "feet"),
  4837. default: true
  4838. }
  4839. ]
  4840. ))
  4841. characterMakers.push(() => makeCharacter(
  4842. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4843. {
  4844. femSfw: {
  4845. height: math.unit(8, "feet"),
  4846. weight: math.unit(350, "lb"),
  4847. name: "Fem",
  4848. image: {
  4849. source: "./media/characters/sigvald/fem-sfw.svg",
  4850. extra: 182 / 164,
  4851. bottom: 8.7 / 190.5
  4852. }
  4853. },
  4854. femNsfw: {
  4855. height: math.unit(8, "feet"),
  4856. weight: math.unit(350, "lb"),
  4857. name: "Fem (NSFW)",
  4858. image: {
  4859. source: "./media/characters/sigvald/fem-nsfw.svg",
  4860. extra: 182 / 164,
  4861. bottom: 8.7 / 190.5
  4862. }
  4863. },
  4864. maleNsfw: {
  4865. height: math.unit(8, "feet"),
  4866. weight: math.unit(350, "lb"),
  4867. name: "Male (NSFW)",
  4868. image: {
  4869. source: "./media/characters/sigvald/male-nsfw.svg",
  4870. extra: 182 / 164,
  4871. bottom: 8.7 / 190.5
  4872. }
  4873. },
  4874. hermNsfw: {
  4875. height: math.unit(8, "feet"),
  4876. weight: math.unit(350, "lb"),
  4877. name: "Herm (NSFW)",
  4878. image: {
  4879. source: "./media/characters/sigvald/herm-nsfw.svg",
  4880. extra: 182 / 164,
  4881. bottom: 8.7 / 190.5
  4882. }
  4883. },
  4884. dick: {
  4885. height: math.unit(2.36, "feet"),
  4886. name: "Dick",
  4887. image: {
  4888. source: "./media/characters/sigvald/dick.svg"
  4889. }
  4890. },
  4891. eye: {
  4892. height: math.unit(0.31, "feet"),
  4893. name: "Eye",
  4894. image: {
  4895. source: "./media/characters/sigvald/eye.svg"
  4896. }
  4897. },
  4898. mouth: {
  4899. height: math.unit(0.92, "feet"),
  4900. name: "Mouth",
  4901. image: {
  4902. source: "./media/characters/sigvald/mouth.svg"
  4903. }
  4904. },
  4905. paws: {
  4906. height: math.unit(2.2, "feet"),
  4907. name: "Paws",
  4908. image: {
  4909. source: "./media/characters/sigvald/paws.svg"
  4910. }
  4911. }
  4912. },
  4913. [
  4914. {
  4915. name: "Normal",
  4916. height: math.unit(8, "feet")
  4917. },
  4918. {
  4919. name: "Large",
  4920. height: math.unit(12, "feet")
  4921. },
  4922. {
  4923. name: "Larger",
  4924. height: math.unit(20, "feet")
  4925. },
  4926. {
  4927. name: "Macro",
  4928. height: math.unit(150, "feet")
  4929. },
  4930. {
  4931. name: "Macro+",
  4932. height: math.unit(200, "feet"),
  4933. default: true
  4934. },
  4935. ]
  4936. ))
  4937. characterMakers.push(() => makeCharacter(
  4938. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4939. {
  4940. side: {
  4941. height: math.unit(12, "feet"),
  4942. weight: math.unit(2000, "kg"),
  4943. name: "Side",
  4944. image: {
  4945. source: "./media/characters/scott/side.svg",
  4946. extra: 754 / 724,
  4947. bottom: 0.069
  4948. }
  4949. },
  4950. upright: {
  4951. height: math.unit(12, "feet"),
  4952. weight: math.unit(2000, "kg"),
  4953. name: "Upright",
  4954. image: {
  4955. source: "./media/characters/scott/upright.svg",
  4956. extra: 3881 / 3722,
  4957. bottom: 0.05
  4958. }
  4959. },
  4960. },
  4961. [
  4962. {
  4963. name: "Normal",
  4964. height: math.unit(12, "feet"),
  4965. default: true
  4966. },
  4967. ]
  4968. ))
  4969. characterMakers.push(() => makeCharacter(
  4970. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4971. {
  4972. side: {
  4973. height: math.unit(8, "meters"),
  4974. weight: math.unit(84755, "lbs"),
  4975. name: "Side",
  4976. image: {
  4977. source: "./media/characters/tobias/side.svg",
  4978. extra: 1474 / 1096,
  4979. bottom: 38.9 / 1513.1235
  4980. }
  4981. },
  4982. },
  4983. [
  4984. {
  4985. name: "Normal",
  4986. height: math.unit(8, "meters"),
  4987. default: true
  4988. },
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4993. {
  4994. front: {
  4995. height: math.unit(5.5, "feet"),
  4996. weight: math.unit(400, "lbs"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/kieran/front.svg",
  5000. extra: 2694 / 2364,
  5001. bottom: 217 / 2908
  5002. }
  5003. },
  5004. side: {
  5005. height: math.unit(5.5, "feet"),
  5006. weight: math.unit(400, "lbs"),
  5007. name: "Side",
  5008. image: {
  5009. source: "./media/characters/kieran/side.svg",
  5010. extra: 875 / 777,
  5011. bottom: 84.6 / 959
  5012. }
  5013. },
  5014. },
  5015. [
  5016. {
  5017. name: "Normal",
  5018. height: math.unit(5.5, "feet"),
  5019. default: true
  5020. },
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5025. {
  5026. side: {
  5027. height: math.unit(2, "meters"),
  5028. weight: math.unit(70, "kg"),
  5029. name: "Side",
  5030. image: {
  5031. source: "./media/characters/sanya/side.svg",
  5032. bottom: 0.02,
  5033. extra: 1.02
  5034. }
  5035. },
  5036. },
  5037. [
  5038. {
  5039. name: "Small",
  5040. height: math.unit(2, "meters")
  5041. },
  5042. {
  5043. name: "Normal",
  5044. height: math.unit(3, "meters")
  5045. },
  5046. {
  5047. name: "Macro",
  5048. height: math.unit(16, "meters"),
  5049. default: true
  5050. },
  5051. ]
  5052. ))
  5053. characterMakers.push(() => makeCharacter(
  5054. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5055. {
  5056. front: {
  5057. height: math.unit(2, "meters"),
  5058. weight: math.unit(120, "kg"),
  5059. name: "Front",
  5060. image: {
  5061. source: "./media/characters/miranda/front.svg",
  5062. extra: 195 / 185,
  5063. bottom: 10.9 / 206.5
  5064. }
  5065. },
  5066. back: {
  5067. height: math.unit(2, "meters"),
  5068. weight: math.unit(120, "kg"),
  5069. name: "Back",
  5070. image: {
  5071. source: "./media/characters/miranda/back.svg",
  5072. extra: 201 / 193,
  5073. bottom: 2.3 / 203.7
  5074. }
  5075. },
  5076. },
  5077. [
  5078. {
  5079. name: "Normal",
  5080. height: math.unit(10, "feet"),
  5081. default: true
  5082. }
  5083. ]
  5084. ))
  5085. characterMakers.push(() => makeCharacter(
  5086. { name: "James", species: ["deer"], tags: ["anthro"] },
  5087. {
  5088. side: {
  5089. height: math.unit(2, "meters"),
  5090. weight: math.unit(100, "kg"),
  5091. name: "Front",
  5092. image: {
  5093. source: "./media/characters/james/front.svg",
  5094. extra: 10 / 8.5
  5095. }
  5096. },
  5097. },
  5098. [
  5099. {
  5100. name: "Normal",
  5101. height: math.unit(8.5, "feet"),
  5102. default: true
  5103. }
  5104. ]
  5105. ))
  5106. characterMakers.push(() => makeCharacter(
  5107. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5108. {
  5109. side: {
  5110. height: math.unit(9.5, "feet"),
  5111. weight: math.unit(2500, "lbs"),
  5112. name: "Side",
  5113. image: {
  5114. source: "./media/characters/heather/side.svg"
  5115. }
  5116. },
  5117. },
  5118. [
  5119. {
  5120. name: "Normal",
  5121. height: math.unit(9.5, "feet"),
  5122. default: true
  5123. }
  5124. ]
  5125. ))
  5126. characterMakers.push(() => makeCharacter(
  5127. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5128. {
  5129. side: {
  5130. height: math.unit(6.5, "feet"),
  5131. weight: math.unit(400, "lbs"),
  5132. name: "Side",
  5133. image: {
  5134. source: "./media/characters/lukas/side.svg",
  5135. extra: 7.25 / 6.5
  5136. }
  5137. },
  5138. },
  5139. [
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(6.5, "feet"),
  5143. default: true
  5144. }
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5149. {
  5150. side: {
  5151. height: math.unit(5, "feet"),
  5152. weight: math.unit(3000, "lbs"),
  5153. name: "Side",
  5154. image: {
  5155. source: "./media/characters/louise/side.svg"
  5156. }
  5157. },
  5158. },
  5159. [
  5160. {
  5161. name: "Normal",
  5162. height: math.unit(5, "feet"),
  5163. default: true
  5164. }
  5165. ]
  5166. ))
  5167. characterMakers.push(() => makeCharacter(
  5168. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5169. {
  5170. side: {
  5171. height: math.unit(6, "feet"),
  5172. weight: math.unit(150, "lbs"),
  5173. name: "Side",
  5174. image: {
  5175. source: "./media/characters/ramona/side.svg"
  5176. }
  5177. },
  5178. },
  5179. [
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(5.3, "meters"),
  5183. default: true
  5184. },
  5185. {
  5186. name: "Macro",
  5187. height: math.unit(20, "stories")
  5188. },
  5189. {
  5190. name: "Macro+",
  5191. height: math.unit(50, "stories")
  5192. },
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5197. {
  5198. standing: {
  5199. height: math.unit(5.75, "feet"),
  5200. weight: math.unit(160, "lbs"),
  5201. name: "Standing",
  5202. image: {
  5203. source: "./media/characters/deerpuff/standing.svg",
  5204. extra: 682 / 624
  5205. }
  5206. },
  5207. sitting: {
  5208. height: math.unit(5.75 / 1.79, "feet"),
  5209. weight: math.unit(160, "lbs"),
  5210. name: "Sitting",
  5211. image: {
  5212. source: "./media/characters/deerpuff/sitting.svg",
  5213. bottom: 44 / 400,
  5214. extra: 1
  5215. }
  5216. },
  5217. taurLaying: {
  5218. height: math.unit(6, "feet"),
  5219. weight: math.unit(400, "lbs"),
  5220. name: "Taur (Laying)",
  5221. image: {
  5222. source: "./media/characters/deerpuff/taur-laying.svg"
  5223. }
  5224. },
  5225. },
  5226. [
  5227. {
  5228. name: "Puffball",
  5229. height: math.unit(6, "inches")
  5230. },
  5231. {
  5232. name: "Normalpuff",
  5233. height: math.unit(5.75, "feet")
  5234. },
  5235. {
  5236. name: "Macropuff",
  5237. height: math.unit(1500, "feet"),
  5238. default: true
  5239. },
  5240. {
  5241. name: "Megapuff",
  5242. height: math.unit(500, "miles")
  5243. },
  5244. {
  5245. name: "Gigapuff",
  5246. height: math.unit(250000, "miles")
  5247. },
  5248. {
  5249. name: "Omegapuff",
  5250. height: math.unit(1000, "lightyears")
  5251. },
  5252. ]
  5253. ))
  5254. characterMakers.push(() => makeCharacter(
  5255. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5256. {
  5257. stomping: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(170, "lbs"),
  5260. name: "Stomping",
  5261. image: {
  5262. source: "./media/characters/vivian/stomping.svg"
  5263. }
  5264. },
  5265. sitting: {
  5266. height: math.unit(6 / 1.75, "feet"),
  5267. weight: math.unit(170, "lbs"),
  5268. name: "Sitting",
  5269. image: {
  5270. source: "./media/characters/vivian/sitting.svg",
  5271. bottom: 1 / 6.4,
  5272. extra: 1,
  5273. }
  5274. },
  5275. },
  5276. [
  5277. {
  5278. name: "Normal",
  5279. height: math.unit(7, "feet"),
  5280. default: true
  5281. },
  5282. {
  5283. name: "Macro",
  5284. height: math.unit(10, "stories")
  5285. },
  5286. {
  5287. name: "Macro+",
  5288. height: math.unit(30, "stories")
  5289. },
  5290. {
  5291. name: "Megamacro",
  5292. height: math.unit(10, "miles")
  5293. },
  5294. {
  5295. name: "Megamacro+",
  5296. height: math.unit(2750000, "meters")
  5297. },
  5298. ]
  5299. ))
  5300. characterMakers.push(() => makeCharacter(
  5301. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5302. {
  5303. front: {
  5304. height: math.unit(6, "feet"),
  5305. weight: math.unit(160, "lbs"),
  5306. name: "Front",
  5307. image: {
  5308. source: "./media/characters/prince/front.svg",
  5309. extra: 3400 / 3000
  5310. }
  5311. },
  5312. jumping: {
  5313. height: math.unit(6, "feet"),
  5314. weight: math.unit(160, "lbs"),
  5315. name: "Jumping",
  5316. image: {
  5317. source: "./media/characters/prince/jump.svg",
  5318. extra: 2555 / 2134
  5319. }
  5320. },
  5321. },
  5322. [
  5323. {
  5324. name: "Normal",
  5325. height: math.unit(7.75, "feet"),
  5326. default: true
  5327. },
  5328. {
  5329. name: "Not cute",
  5330. height: math.unit(17, "feet")
  5331. },
  5332. {
  5333. name: "I said NOT",
  5334. height: math.unit(91, "feet")
  5335. },
  5336. {
  5337. name: "Please stop",
  5338. height: math.unit(560, "feet")
  5339. },
  5340. {
  5341. name: "What have you done",
  5342. height: math.unit(2200, "feet")
  5343. },
  5344. {
  5345. name: "Deer God",
  5346. height: math.unit(3.6, "miles")
  5347. },
  5348. ]
  5349. ))
  5350. characterMakers.push(() => makeCharacter(
  5351. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5352. {
  5353. standing: {
  5354. height: math.unit(6, "feet"),
  5355. weight: math.unit(300, "lbs"),
  5356. name: "Standing",
  5357. image: {
  5358. source: "./media/characters/psymon/standing.svg",
  5359. extra: 1888 / 1810,
  5360. bottom: 0.05
  5361. }
  5362. },
  5363. slithering: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(300, "lbs"),
  5366. name: "Slithering",
  5367. image: {
  5368. source: "./media/characters/psymon/slithering.svg",
  5369. extra: 1330 / 1224
  5370. }
  5371. },
  5372. slitheringAlt: {
  5373. height: math.unit(6, "feet"),
  5374. weight: math.unit(300, "lbs"),
  5375. name: "Slithering (Alt)",
  5376. image: {
  5377. source: "./media/characters/psymon/slithering-alt.svg",
  5378. extra: 1330 / 1224
  5379. }
  5380. },
  5381. },
  5382. [
  5383. {
  5384. name: "Normal",
  5385. height: math.unit(11.25, "feet"),
  5386. default: true
  5387. },
  5388. {
  5389. name: "Large",
  5390. height: math.unit(27, "feet")
  5391. },
  5392. {
  5393. name: "Giant",
  5394. height: math.unit(87, "feet")
  5395. },
  5396. {
  5397. name: "Macro",
  5398. height: math.unit(365, "feet")
  5399. },
  5400. {
  5401. name: "Megamacro",
  5402. height: math.unit(3, "miles")
  5403. },
  5404. {
  5405. name: "World Serpent",
  5406. height: math.unit(8000, "miles")
  5407. },
  5408. ]
  5409. ))
  5410. characterMakers.push(() => makeCharacter(
  5411. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5412. {
  5413. front: {
  5414. height: math.unit(6, "feet"),
  5415. weight: math.unit(180, "lbs"),
  5416. name: "Front",
  5417. image: {
  5418. source: "./media/characters/daimos/front.svg",
  5419. extra: 4160 / 3897,
  5420. bottom: 0.021
  5421. }
  5422. }
  5423. },
  5424. [
  5425. {
  5426. name: "Normal",
  5427. height: math.unit(8, "feet"),
  5428. default: true
  5429. },
  5430. {
  5431. name: "Big Dog",
  5432. height: math.unit(22, "feet")
  5433. },
  5434. {
  5435. name: "Macro",
  5436. height: math.unit(127, "feet")
  5437. },
  5438. {
  5439. name: "Megamacro",
  5440. height: math.unit(3600, "feet")
  5441. },
  5442. ]
  5443. ))
  5444. characterMakers.push(() => makeCharacter(
  5445. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5446. {
  5447. side: {
  5448. height: math.unit(6, "feet"),
  5449. weight: math.unit(180, "lbs"),
  5450. name: "Side",
  5451. image: {
  5452. source: "./media/characters/blake/side.svg",
  5453. extra: 1212 / 1120,
  5454. bottom: 0.05
  5455. }
  5456. },
  5457. crouched: {
  5458. height: math.unit(6 * 0.57, "feet"),
  5459. weight: math.unit(180, "lbs"),
  5460. name: "Crouched",
  5461. image: {
  5462. source: "./media/characters/blake/crouched.svg",
  5463. extra: 840 / 587,
  5464. bottom: 0.04
  5465. }
  5466. },
  5467. bent: {
  5468. height: math.unit(6 * 0.75, "feet"),
  5469. weight: math.unit(180, "lbs"),
  5470. name: "Bent",
  5471. image: {
  5472. source: "./media/characters/blake/bent.svg",
  5473. extra: 592 / 544,
  5474. bottom: 0.035
  5475. }
  5476. },
  5477. },
  5478. [
  5479. {
  5480. name: "Normal",
  5481. height: math.unit(8 + 1 / 6, "feet"),
  5482. default: true
  5483. },
  5484. {
  5485. name: "Big Backside",
  5486. height: math.unit(37, "feet")
  5487. },
  5488. {
  5489. name: "Subway Shredder",
  5490. height: math.unit(72, "feet")
  5491. },
  5492. {
  5493. name: "City Carver",
  5494. height: math.unit(1675, "feet")
  5495. },
  5496. {
  5497. name: "Tectonic Tweaker",
  5498. height: math.unit(2300, "miles")
  5499. },
  5500. ]
  5501. ))
  5502. characterMakers.push(() => makeCharacter(
  5503. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5504. {
  5505. front: {
  5506. height: math.unit(6, "feet"),
  5507. weight: math.unit(180, "lbs"),
  5508. name: "Front",
  5509. image: {
  5510. source: "./media/characters/guisetto/front.svg",
  5511. extra: 856 / 817,
  5512. bottom: 0.06
  5513. }
  5514. },
  5515. airborne: {
  5516. height: math.unit(6, "feet"),
  5517. weight: math.unit(180, "lbs"),
  5518. name: "Airborne",
  5519. image: {
  5520. source: "./media/characters/guisetto/airborne.svg",
  5521. extra: 584 / 525
  5522. }
  5523. },
  5524. },
  5525. [
  5526. {
  5527. name: "Normal",
  5528. height: math.unit(10 + 11 / 12, "feet"),
  5529. default: true
  5530. },
  5531. {
  5532. name: "Large",
  5533. height: math.unit(35, "feet")
  5534. },
  5535. {
  5536. name: "Macro",
  5537. height: math.unit(475, "feet")
  5538. },
  5539. ]
  5540. ))
  5541. characterMakers.push(() => makeCharacter(
  5542. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5543. {
  5544. front: {
  5545. height: math.unit(6, "feet"),
  5546. weight: math.unit(180, "lbs"),
  5547. name: "Front",
  5548. image: {
  5549. source: "./media/characters/luxor/front.svg",
  5550. extra: 2940 / 2152
  5551. }
  5552. },
  5553. back: {
  5554. height: math.unit(6, "feet"),
  5555. weight: math.unit(180, "lbs"),
  5556. name: "Back",
  5557. image: {
  5558. source: "./media/characters/luxor/back.svg",
  5559. extra: 1083 / 960
  5560. }
  5561. },
  5562. },
  5563. [
  5564. {
  5565. name: "Normal",
  5566. height: math.unit(5 + 5 / 6, "feet"),
  5567. default: true
  5568. },
  5569. {
  5570. name: "Lamp",
  5571. height: math.unit(50, "feet")
  5572. },
  5573. {
  5574. name: "Lämp",
  5575. height: math.unit(300, "feet")
  5576. },
  5577. {
  5578. name: "The sun is a lamp",
  5579. height: math.unit(250000, "miles")
  5580. },
  5581. ]
  5582. ))
  5583. characterMakers.push(() => makeCharacter(
  5584. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5585. {
  5586. front: {
  5587. height: math.unit(6, "feet"),
  5588. weight: math.unit(50, "lbs"),
  5589. name: "Front",
  5590. image: {
  5591. source: "./media/characters/huoyan/front.svg"
  5592. }
  5593. },
  5594. side: {
  5595. height: math.unit(6, "feet"),
  5596. weight: math.unit(180, "lbs"),
  5597. name: "Side",
  5598. image: {
  5599. source: "./media/characters/huoyan/side.svg"
  5600. }
  5601. },
  5602. },
  5603. [
  5604. {
  5605. name: "Chef",
  5606. height: math.unit(9, "feet")
  5607. },
  5608. {
  5609. name: "Normal",
  5610. height: math.unit(65, "feet"),
  5611. default: true
  5612. },
  5613. {
  5614. name: "Macro",
  5615. height: math.unit(780, "feet")
  5616. },
  5617. {
  5618. name: "Flaming Mountain",
  5619. height: math.unit(4.8, "miles")
  5620. },
  5621. {
  5622. name: "Celestial",
  5623. height: math.unit(765000, "miles")
  5624. },
  5625. ]
  5626. ))
  5627. characterMakers.push(() => makeCharacter(
  5628. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5629. {
  5630. front: {
  5631. height: math.unit(5 + 3 / 4, "feet"),
  5632. weight: math.unit(120, "lbs"),
  5633. name: "Front",
  5634. image: {
  5635. source: "./media/characters/tails/front.svg"
  5636. }
  5637. }
  5638. },
  5639. [
  5640. {
  5641. name: "Normal",
  5642. height: math.unit(5 + 3 / 4, "feet"),
  5643. default: true
  5644. }
  5645. ]
  5646. ))
  5647. characterMakers.push(() => makeCharacter(
  5648. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5649. {
  5650. front: {
  5651. height: math.unit(4, "feet"),
  5652. weight: math.unit(50, "lbs"),
  5653. name: "Front",
  5654. image: {
  5655. source: "./media/characters/rainy/front.svg"
  5656. }
  5657. }
  5658. },
  5659. [
  5660. {
  5661. name: "Macro",
  5662. height: math.unit(800, "feet"),
  5663. default: true
  5664. }
  5665. ]
  5666. ))
  5667. characterMakers.push(() => makeCharacter(
  5668. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5669. {
  5670. front: {
  5671. height: math.unit(6, "feet"),
  5672. weight: math.unit(150, "lbs"),
  5673. name: "Front",
  5674. image: {
  5675. source: "./media/characters/rainier/front.svg"
  5676. }
  5677. }
  5678. },
  5679. [
  5680. {
  5681. name: "Micro",
  5682. height: math.unit(2, "mm"),
  5683. default: true
  5684. }
  5685. ]
  5686. ))
  5687. characterMakers.push(() => makeCharacter(
  5688. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5689. {
  5690. front: {
  5691. height: math.unit(8 + 4/12, "feet"),
  5692. name: "Front",
  5693. image: {
  5694. source: "./media/characters/andy-renard/front.svg",
  5695. extra: 1839/1726,
  5696. bottom: 134/1973
  5697. }
  5698. },
  5699. back: {
  5700. height: math.unit(8 + 4/12, "feet"),
  5701. name: "Back",
  5702. image: {
  5703. source: "./media/characters/andy-renard/back.svg",
  5704. extra: 1838/1710,
  5705. bottom: 105/1943
  5706. }
  5707. },
  5708. },
  5709. [
  5710. {
  5711. name: "Tall",
  5712. height: math.unit(8 + 4/12, "feet")
  5713. },
  5714. {
  5715. name: "Mini Macro",
  5716. height: math.unit(15, "feet"),
  5717. default: true
  5718. },
  5719. {
  5720. name: "Macro",
  5721. height: math.unit(100, "feet")
  5722. },
  5723. {
  5724. name: "Mega Macro",
  5725. height: math.unit(1000, "feet")
  5726. },
  5727. {
  5728. name: "Giga Macro",
  5729. height: math.unit(10, "miles")
  5730. },
  5731. {
  5732. name: "God Macro",
  5733. height: math.unit(1, "multiverse")
  5734. },
  5735. ]
  5736. ))
  5737. characterMakers.push(() => makeCharacter(
  5738. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5739. {
  5740. front: {
  5741. height: math.unit(6, "feet"),
  5742. weight: math.unit(210, "lbs"),
  5743. name: "Front",
  5744. image: {
  5745. source: "./media/characters/cimmaron/front-sfw.svg",
  5746. extra: 701 / 676,
  5747. bottom: 0.046
  5748. }
  5749. },
  5750. back: {
  5751. height: math.unit(6, "feet"),
  5752. weight: math.unit(210, "lbs"),
  5753. name: "Back",
  5754. image: {
  5755. source: "./media/characters/cimmaron/back-sfw.svg",
  5756. extra: 701 / 676,
  5757. bottom: 0.046
  5758. }
  5759. },
  5760. frontNsfw: {
  5761. height: math.unit(6, "feet"),
  5762. weight: math.unit(210, "lbs"),
  5763. name: "Front (NSFW)",
  5764. image: {
  5765. source: "./media/characters/cimmaron/front-nsfw.svg",
  5766. extra: 701 / 676,
  5767. bottom: 0.046
  5768. }
  5769. },
  5770. backNsfw: {
  5771. height: math.unit(6, "feet"),
  5772. weight: math.unit(210, "lbs"),
  5773. name: "Back (NSFW)",
  5774. image: {
  5775. source: "./media/characters/cimmaron/back-nsfw.svg",
  5776. extra: 701 / 676,
  5777. bottom: 0.046
  5778. }
  5779. },
  5780. dick: {
  5781. height: math.unit(1.714, "feet"),
  5782. name: "Dick",
  5783. image: {
  5784. source: "./media/characters/cimmaron/dick.svg"
  5785. }
  5786. },
  5787. },
  5788. [
  5789. {
  5790. name: "Normal",
  5791. height: math.unit(6, "feet"),
  5792. default: true
  5793. },
  5794. {
  5795. name: "Macro Mayor",
  5796. height: math.unit(350, "meters")
  5797. },
  5798. ]
  5799. ))
  5800. characterMakers.push(() => makeCharacter(
  5801. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5802. {
  5803. front: {
  5804. height: math.unit(6, "feet"),
  5805. weight: math.unit(200, "lbs"),
  5806. name: "Front",
  5807. image: {
  5808. source: "./media/characters/akari/front.svg",
  5809. extra: 962 / 901,
  5810. bottom: 0.04
  5811. }
  5812. }
  5813. },
  5814. [
  5815. {
  5816. name: "Micro",
  5817. height: math.unit(5, "inches"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Normal",
  5822. height: math.unit(7, "feet")
  5823. },
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5828. {
  5829. front: {
  5830. height: math.unit(6, "feet"),
  5831. weight: math.unit(140, "lbs"),
  5832. name: "Front",
  5833. image: {
  5834. source: "./media/characters/cynosura/front.svg",
  5835. extra: 896 / 847
  5836. }
  5837. },
  5838. back: {
  5839. height: math.unit(6, "feet"),
  5840. weight: math.unit(140, "lbs"),
  5841. name: "Back",
  5842. image: {
  5843. source: "./media/characters/cynosura/back.svg",
  5844. extra: 1365 / 1250
  5845. }
  5846. },
  5847. },
  5848. [
  5849. {
  5850. name: "Micro",
  5851. height: math.unit(4, "inches")
  5852. },
  5853. {
  5854. name: "Normal",
  5855. height: math.unit(5.75, "feet"),
  5856. default: true
  5857. },
  5858. {
  5859. name: "Tall",
  5860. height: math.unit(10, "feet")
  5861. },
  5862. {
  5863. name: "Big",
  5864. height: math.unit(20, "feet")
  5865. },
  5866. {
  5867. name: "Macro",
  5868. height: math.unit(50, "feet")
  5869. },
  5870. ]
  5871. ))
  5872. characterMakers.push(() => makeCharacter(
  5873. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5874. {
  5875. front: {
  5876. height: math.unit(13 + 2/12, "feet"),
  5877. weight: math.unit(800, "kg"),
  5878. name: "Front",
  5879. image: {
  5880. source: "./media/characters/gin/front.svg",
  5881. extra: 1312/1191,
  5882. bottom: 45/1357
  5883. }
  5884. },
  5885. mouth: {
  5886. height: math.unit(2.39 * 1.8, "feet"),
  5887. name: "Mouth",
  5888. image: {
  5889. source: "./media/characters/gin/mouth.svg"
  5890. }
  5891. },
  5892. hand: {
  5893. height: math.unit(1.57 * 2.19, "feet"),
  5894. name: "Hand",
  5895. image: {
  5896. source: "./media/characters/gin/hand.svg"
  5897. }
  5898. },
  5899. foot: {
  5900. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5901. name: "Foot",
  5902. image: {
  5903. source: "./media/characters/gin/foot.svg"
  5904. }
  5905. },
  5906. sole: {
  5907. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5908. name: "Sole",
  5909. image: {
  5910. source: "./media/characters/gin/sole.svg"
  5911. }
  5912. },
  5913. },
  5914. [
  5915. {
  5916. name: "Very Small",
  5917. height: math.unit(13 + 2 / 12, "feet")
  5918. },
  5919. {
  5920. name: "Micro",
  5921. height: math.unit(600, "miles")
  5922. },
  5923. {
  5924. name: "Regular",
  5925. height: math.unit(20, "earths"),
  5926. default: true
  5927. },
  5928. {
  5929. name: "Macro",
  5930. height: math.unit(2.2, "solarradii")
  5931. },
  5932. {
  5933. name: "Teramacro",
  5934. height: math.unit(1.2, "galaxies")
  5935. },
  5936. {
  5937. name: "Omegamacro",
  5938. height: math.unit(200, "universes")
  5939. },
  5940. ]
  5941. ))
  5942. characterMakers.push(() => makeCharacter(
  5943. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5944. {
  5945. front: {
  5946. height: math.unit(6 + 1 / 6, "feet"),
  5947. weight: math.unit(178, "lbs"),
  5948. name: "Front",
  5949. image: {
  5950. source: "./media/characters/guy/front.svg"
  5951. }
  5952. }
  5953. },
  5954. [
  5955. {
  5956. name: "Normal",
  5957. height: math.unit(6 + 1 / 6, "feet"),
  5958. default: true
  5959. },
  5960. {
  5961. name: "Large",
  5962. height: math.unit(25 + 7 / 12, "feet")
  5963. },
  5964. {
  5965. name: "Macro",
  5966. height: math.unit(60 + 9 / 12, "feet")
  5967. },
  5968. {
  5969. name: "Macro+",
  5970. height: math.unit(246, "feet")
  5971. },
  5972. {
  5973. name: "Macro++",
  5974. height: math.unit(878, "feet")
  5975. }
  5976. ]
  5977. ))
  5978. characterMakers.push(() => makeCharacter(
  5979. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5980. {
  5981. front: {
  5982. height: math.unit(9, "feet"),
  5983. weight: math.unit(800, "lbs"),
  5984. name: "Front",
  5985. image: {
  5986. source: "./media/characters/tiberius/front.svg",
  5987. extra: 2295 / 2071
  5988. }
  5989. },
  5990. back: {
  5991. height: math.unit(9, "feet"),
  5992. weight: math.unit(800, "lbs"),
  5993. name: "Back",
  5994. image: {
  5995. source: "./media/characters/tiberius/back.svg",
  5996. extra: 2373 / 2160
  5997. }
  5998. },
  5999. },
  6000. [
  6001. {
  6002. name: "Normal",
  6003. height: math.unit(9, "feet"),
  6004. default: true
  6005. }
  6006. ]
  6007. ))
  6008. characterMakers.push(() => makeCharacter(
  6009. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6010. {
  6011. front: {
  6012. height: math.unit(6, "feet"),
  6013. weight: math.unit(600, "lbs"),
  6014. name: "Front",
  6015. image: {
  6016. source: "./media/characters/surgo/front.svg",
  6017. extra: 3591 / 2227
  6018. }
  6019. },
  6020. back: {
  6021. height: math.unit(6, "feet"),
  6022. weight: math.unit(600, "lbs"),
  6023. name: "Back",
  6024. image: {
  6025. source: "./media/characters/surgo/back.svg",
  6026. extra: 3557 / 2228
  6027. }
  6028. },
  6029. laying: {
  6030. height: math.unit(6 * 0.85, "feet"),
  6031. weight: math.unit(600, "lbs"),
  6032. name: "Laying",
  6033. image: {
  6034. source: "./media/characters/surgo/laying.svg"
  6035. }
  6036. },
  6037. },
  6038. [
  6039. {
  6040. name: "Normal",
  6041. height: math.unit(6, "feet"),
  6042. default: true
  6043. }
  6044. ]
  6045. ))
  6046. characterMakers.push(() => makeCharacter(
  6047. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6048. {
  6049. side: {
  6050. height: math.unit(6, "feet"),
  6051. weight: math.unit(150, "lbs"),
  6052. name: "Side",
  6053. image: {
  6054. source: "./media/characters/cibus/side.svg",
  6055. extra: 800 / 400
  6056. }
  6057. },
  6058. },
  6059. [
  6060. {
  6061. name: "Normal",
  6062. height: math.unit(6, "feet"),
  6063. default: true
  6064. }
  6065. ]
  6066. ))
  6067. characterMakers.push(() => makeCharacter(
  6068. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6069. {
  6070. front: {
  6071. height: math.unit(6, "feet"),
  6072. weight: math.unit(240, "lbs"),
  6073. name: "Front",
  6074. image: {
  6075. source: "./media/characters/nibbles/front.svg"
  6076. }
  6077. },
  6078. side: {
  6079. height: math.unit(6, "feet"),
  6080. weight: math.unit(240, "lbs"),
  6081. name: "Side",
  6082. image: {
  6083. source: "./media/characters/nibbles/side.svg"
  6084. }
  6085. },
  6086. },
  6087. [
  6088. {
  6089. name: "Normal",
  6090. height: math.unit(9, "feet"),
  6091. default: true
  6092. }
  6093. ]
  6094. ))
  6095. characterMakers.push(() => makeCharacter(
  6096. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6097. {
  6098. side: {
  6099. height: math.unit(5 + 1 / 6, "feet"),
  6100. weight: math.unit(130, "lbs"),
  6101. name: "Side",
  6102. image: {
  6103. source: "./media/characters/rikky/side.svg",
  6104. extra: 851 / 801
  6105. }
  6106. },
  6107. },
  6108. [
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(5 + 1 / 6, "feet")
  6112. },
  6113. {
  6114. name: "Macro",
  6115. height: math.unit(152, "feet"),
  6116. default: true
  6117. },
  6118. {
  6119. name: "Megamacro",
  6120. height: math.unit(7, "miles")
  6121. }
  6122. ]
  6123. ))
  6124. characterMakers.push(() => makeCharacter(
  6125. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6126. {
  6127. side: {
  6128. height: math.unit(370, "cm"),
  6129. weight: math.unit(350, "lbs"),
  6130. name: "Side",
  6131. image: {
  6132. source: "./media/characters/malfressa/side.svg"
  6133. }
  6134. },
  6135. walking: {
  6136. height: math.unit(370, "cm"),
  6137. weight: math.unit(350, "lbs"),
  6138. name: "Walking",
  6139. image: {
  6140. source: "./media/characters/malfressa/walking.svg"
  6141. }
  6142. },
  6143. feral: {
  6144. height: math.unit(2500, "cm"),
  6145. weight: math.unit(100000, "lbs"),
  6146. name: "Feral",
  6147. image: {
  6148. source: "./media/characters/malfressa/feral.svg",
  6149. extra: 2108 / 837,
  6150. bottom: 0.02
  6151. }
  6152. },
  6153. },
  6154. [
  6155. {
  6156. name: "Normal",
  6157. height: math.unit(370, "cm")
  6158. },
  6159. {
  6160. name: "Macro",
  6161. height: math.unit(300, "meters"),
  6162. default: true
  6163. }
  6164. ]
  6165. ))
  6166. characterMakers.push(() => makeCharacter(
  6167. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6168. {
  6169. front: {
  6170. height: math.unit(6, "feet"),
  6171. weight: math.unit(60, "kg"),
  6172. name: "Front",
  6173. image: {
  6174. source: "./media/characters/jaro/front.svg"
  6175. }
  6176. },
  6177. back: {
  6178. height: math.unit(6, "feet"),
  6179. weight: math.unit(60, "kg"),
  6180. name: "Back",
  6181. image: {
  6182. source: "./media/characters/jaro/back.svg"
  6183. }
  6184. },
  6185. },
  6186. [
  6187. {
  6188. name: "Micro",
  6189. height: math.unit(7, "inches")
  6190. },
  6191. {
  6192. name: "Normal",
  6193. height: math.unit(5.5, "feet"),
  6194. default: true
  6195. },
  6196. {
  6197. name: "Minimacro",
  6198. height: math.unit(20, "feet")
  6199. },
  6200. {
  6201. name: "Macro",
  6202. height: math.unit(200, "meters")
  6203. }
  6204. ]
  6205. ))
  6206. characterMakers.push(() => makeCharacter(
  6207. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6208. {
  6209. front: {
  6210. height: math.unit(6, "feet"),
  6211. weight: math.unit(195, "lb"),
  6212. name: "Front",
  6213. image: {
  6214. source: "./media/characters/rogue/front.svg"
  6215. }
  6216. },
  6217. },
  6218. [
  6219. {
  6220. name: "Macro",
  6221. height: math.unit(90, "feet"),
  6222. default: true
  6223. },
  6224. ]
  6225. ))
  6226. characterMakers.push(() => makeCharacter(
  6227. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6228. {
  6229. front: {
  6230. height: math.unit(5 + 8 / 12, "feet"),
  6231. weight: math.unit(140, "lb"),
  6232. name: "Front",
  6233. image: {
  6234. source: "./media/characters/piper/front.svg",
  6235. extra: 3948/3655,
  6236. bottom: 0/3948
  6237. }
  6238. },
  6239. },
  6240. [
  6241. {
  6242. name: "Micro",
  6243. height: math.unit(2, "inches")
  6244. },
  6245. {
  6246. name: "Normal",
  6247. height: math.unit(5 + 8 / 12, "feet")
  6248. },
  6249. {
  6250. name: "Macro",
  6251. height: math.unit(250, "feet"),
  6252. default: true
  6253. },
  6254. {
  6255. name: "Megamacro",
  6256. height: math.unit(7, "miles")
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(6, "feet"),
  6265. weight: math.unit(220, "lb"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/gemini/front.svg"
  6269. }
  6270. },
  6271. back: {
  6272. height: math.unit(6, "feet"),
  6273. weight: math.unit(220, "lb"),
  6274. name: "Back",
  6275. image: {
  6276. source: "./media/characters/gemini/back.svg"
  6277. }
  6278. },
  6279. kneeling: {
  6280. height: math.unit(6 / 1.5, "feet"),
  6281. weight: math.unit(220, "lb"),
  6282. name: "Kneeling",
  6283. image: {
  6284. source: "./media/characters/gemini/kneeling.svg",
  6285. bottom: 0.02
  6286. }
  6287. },
  6288. },
  6289. [
  6290. {
  6291. name: "Macro",
  6292. height: math.unit(300, "meters"),
  6293. default: true
  6294. },
  6295. {
  6296. name: "Megamacro",
  6297. height: math.unit(6900, "meters")
  6298. },
  6299. ]
  6300. ))
  6301. characterMakers.push(() => makeCharacter(
  6302. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6303. {
  6304. anthro: {
  6305. height: math.unit(2.35, "meters"),
  6306. weight: math.unit(73, "kg"),
  6307. name: "Anthro",
  6308. image: {
  6309. source: "./media/characters/alicia/anthro.svg",
  6310. extra: 2571 / 2385,
  6311. bottom: 75 / 2648
  6312. }
  6313. },
  6314. paw: {
  6315. height: math.unit(1.32, "feet"),
  6316. name: "Paw",
  6317. image: {
  6318. source: "./media/characters/alicia/paw.svg"
  6319. }
  6320. },
  6321. feral: {
  6322. height: math.unit(1.69, "meters"),
  6323. weight: math.unit(73, "kg"),
  6324. name: "Feral",
  6325. image: {
  6326. source: "./media/characters/alicia/feral.svg",
  6327. extra: 2123 / 1715,
  6328. bottom: 222 / 2349
  6329. }
  6330. },
  6331. },
  6332. [
  6333. {
  6334. name: "Normal",
  6335. height: math.unit(2.35, "meters")
  6336. },
  6337. {
  6338. name: "Macro",
  6339. height: math.unit(60, "meters"),
  6340. default: true
  6341. },
  6342. {
  6343. name: "Megamacro",
  6344. height: math.unit(10000, "kilometers")
  6345. },
  6346. ]
  6347. ))
  6348. characterMakers.push(() => makeCharacter(
  6349. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6350. {
  6351. front: {
  6352. height: math.unit(7, "feet"),
  6353. weight: math.unit(250, "lbs"),
  6354. name: "Front",
  6355. image: {
  6356. source: "./media/characters/archy/front.svg"
  6357. }
  6358. }
  6359. },
  6360. [
  6361. {
  6362. name: "Micro",
  6363. height: math.unit(1, "inch")
  6364. },
  6365. {
  6366. name: "Shorty",
  6367. height: math.unit(5, "feet")
  6368. },
  6369. {
  6370. name: "Normal",
  6371. height: math.unit(7, "feet")
  6372. },
  6373. {
  6374. name: "Macro",
  6375. height: math.unit(600, "meters"),
  6376. default: true
  6377. },
  6378. {
  6379. name: "Megamacro",
  6380. height: math.unit(1, "mile")
  6381. },
  6382. ]
  6383. ))
  6384. characterMakers.push(() => makeCharacter(
  6385. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6386. {
  6387. front: {
  6388. height: math.unit(1.65, "meters"),
  6389. weight: math.unit(74, "kg"),
  6390. name: "Front",
  6391. image: {
  6392. source: "./media/characters/berri/front.svg",
  6393. extra: 857 / 837,
  6394. bottom: 18 / 877
  6395. }
  6396. },
  6397. bum: {
  6398. height: math.unit(1.46, "feet"),
  6399. name: "Bum",
  6400. image: {
  6401. source: "./media/characters/berri/bum.svg"
  6402. }
  6403. },
  6404. mouth: {
  6405. height: math.unit(0.44, "feet"),
  6406. name: "Mouth",
  6407. image: {
  6408. source: "./media/characters/berri/mouth.svg"
  6409. }
  6410. },
  6411. paw: {
  6412. height: math.unit(0.826, "feet"),
  6413. name: "Paw",
  6414. image: {
  6415. source: "./media/characters/berri/paw.svg"
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Normal",
  6422. height: math.unit(1.65, "meters")
  6423. },
  6424. {
  6425. name: "Macro",
  6426. height: math.unit(60, "m"),
  6427. default: true
  6428. },
  6429. {
  6430. name: "Megamacro",
  6431. height: math.unit(9.213, "km")
  6432. },
  6433. {
  6434. name: "Planet Eater",
  6435. height: math.unit(489, "megameters")
  6436. },
  6437. {
  6438. name: "Teramacro",
  6439. height: math.unit(2471635000000, "meters")
  6440. },
  6441. {
  6442. name: "Examacro",
  6443. height: math.unit(8.0624e+26, "meters")
  6444. }
  6445. ]
  6446. ))
  6447. characterMakers.push(() => makeCharacter(
  6448. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6449. {
  6450. front: {
  6451. height: math.unit(1.72, "meters"),
  6452. weight: math.unit(68, "kg"),
  6453. name: "Front",
  6454. image: {
  6455. source: "./media/characters/lexi/front.svg"
  6456. }
  6457. }
  6458. },
  6459. [
  6460. {
  6461. name: "Very Smol",
  6462. height: math.unit(10, "mm")
  6463. },
  6464. {
  6465. name: "Micro",
  6466. height: math.unit(6.8, "cm"),
  6467. default: true
  6468. },
  6469. {
  6470. name: "Normal",
  6471. height: math.unit(1.72, "m")
  6472. }
  6473. ]
  6474. ))
  6475. characterMakers.push(() => makeCharacter(
  6476. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6477. {
  6478. front: {
  6479. height: math.unit(1.69, "meters"),
  6480. weight: math.unit(68, "kg"),
  6481. name: "Front",
  6482. image: {
  6483. source: "./media/characters/martin/front.svg",
  6484. extra: 596 / 581
  6485. }
  6486. }
  6487. },
  6488. [
  6489. {
  6490. name: "Micro",
  6491. height: math.unit(6.85, "cm"),
  6492. default: true
  6493. },
  6494. {
  6495. name: "Normal",
  6496. height: math.unit(1.69, "m")
  6497. }
  6498. ]
  6499. ))
  6500. characterMakers.push(() => makeCharacter(
  6501. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6502. {
  6503. front: {
  6504. height: math.unit(1.69, "meters"),
  6505. weight: math.unit(68, "kg"),
  6506. name: "Front",
  6507. image: {
  6508. source: "./media/characters/juno/front.svg"
  6509. }
  6510. }
  6511. },
  6512. [
  6513. {
  6514. name: "Micro",
  6515. height: math.unit(7, "cm")
  6516. },
  6517. {
  6518. name: "Normal",
  6519. height: math.unit(1.89, "m")
  6520. },
  6521. {
  6522. name: "Macro",
  6523. height: math.unit(353, "meters"),
  6524. default: true
  6525. }
  6526. ]
  6527. ))
  6528. characterMakers.push(() => makeCharacter(
  6529. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6530. {
  6531. front: {
  6532. height: math.unit(1.93, "meters"),
  6533. weight: math.unit(83, "kg"),
  6534. name: "Front",
  6535. image: {
  6536. source: "./media/characters/samantha/front.svg"
  6537. }
  6538. },
  6539. frontClothed: {
  6540. height: math.unit(1.93, "meters"),
  6541. weight: math.unit(83, "kg"),
  6542. name: "Front (Clothed)",
  6543. image: {
  6544. source: "./media/characters/samantha/front-clothed.svg"
  6545. }
  6546. },
  6547. back: {
  6548. height: math.unit(1.93, "meters"),
  6549. weight: math.unit(83, "kg"),
  6550. name: "Back",
  6551. image: {
  6552. source: "./media/characters/samantha/back.svg"
  6553. }
  6554. },
  6555. },
  6556. [
  6557. {
  6558. name: "Normal",
  6559. height: math.unit(1.93, "m")
  6560. },
  6561. {
  6562. name: "Macro",
  6563. height: math.unit(74, "meters"),
  6564. default: true
  6565. },
  6566. {
  6567. name: "Macro+",
  6568. height: math.unit(223, "meters"),
  6569. },
  6570. {
  6571. name: "Megamacro",
  6572. height: math.unit(8381, "meters"),
  6573. },
  6574. {
  6575. name: "Megamacro+",
  6576. height: math.unit(12000, "kilometers")
  6577. },
  6578. ]
  6579. ))
  6580. characterMakers.push(() => makeCharacter(
  6581. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6582. {
  6583. front: {
  6584. height: math.unit(1.92, "meters"),
  6585. weight: math.unit(80, "kg"),
  6586. name: "Front",
  6587. image: {
  6588. source: "./media/characters/dr-clay/front.svg"
  6589. }
  6590. },
  6591. frontClothed: {
  6592. height: math.unit(1.92, "meters"),
  6593. weight: math.unit(80, "kg"),
  6594. name: "Front (Clothed)",
  6595. image: {
  6596. source: "./media/characters/dr-clay/front-clothed.svg"
  6597. }
  6598. }
  6599. },
  6600. [
  6601. {
  6602. name: "Normal",
  6603. height: math.unit(1.92, "m")
  6604. },
  6605. {
  6606. name: "Macro",
  6607. height: math.unit(214, "meters"),
  6608. default: true
  6609. },
  6610. {
  6611. name: "Macro+",
  6612. height: math.unit(12.237, "meters"),
  6613. },
  6614. {
  6615. name: "Megamacro",
  6616. height: math.unit(557, "megameters"),
  6617. },
  6618. {
  6619. name: "Unimaginable",
  6620. height: math.unit(120e9, "lightyears")
  6621. },
  6622. ]
  6623. ))
  6624. characterMakers.push(() => makeCharacter(
  6625. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6626. {
  6627. front: {
  6628. height: math.unit(2, "meters"),
  6629. weight: math.unit(80, "kg"),
  6630. name: "Front",
  6631. image: {
  6632. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6633. }
  6634. }
  6635. },
  6636. [
  6637. {
  6638. name: "Teramacro",
  6639. height: math.unit(500000, "lightyears"),
  6640. default: true
  6641. },
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6646. {
  6647. crux: {
  6648. height: math.unit(2, "meters"),
  6649. weight: math.unit(150, "kg"),
  6650. name: "Crux",
  6651. image: {
  6652. source: "./media/characters/vemus/crux.svg",
  6653. extra: 1074/936,
  6654. bottom: 23/1097
  6655. }
  6656. },
  6657. skunkTanuki: {
  6658. height: math.unit(2, "meters"),
  6659. weight: math.unit(150, "kg"),
  6660. name: "Skunk-Tanuki",
  6661. image: {
  6662. source: "./media/characters/vemus/skunk-tanuki.svg",
  6663. extra: 926/893,
  6664. bottom: 20/946
  6665. }
  6666. },
  6667. },
  6668. [
  6669. {
  6670. name: "Normal",
  6671. height: math.unit(3.75, "meters"),
  6672. default: true
  6673. },
  6674. {
  6675. name: "Big",
  6676. height: math.unit(8, "meters")
  6677. },
  6678. {
  6679. name: "Macro",
  6680. height: math.unit(100, "meters")
  6681. },
  6682. {
  6683. name: "Macro+",
  6684. height: math.unit(1500, "meters")
  6685. },
  6686. {
  6687. name: "Stellar",
  6688. height: math.unit(14e8, "meters")
  6689. },
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6694. {
  6695. front: {
  6696. height: math.unit(2, "meters"),
  6697. weight: math.unit(70, "kg"),
  6698. name: "Front",
  6699. image: {
  6700. source: "./media/characters/beherit/front.svg",
  6701. extra: 1408 / 1242
  6702. }
  6703. }
  6704. },
  6705. [
  6706. {
  6707. name: "Normal",
  6708. height: math.unit(6, "feet")
  6709. },
  6710. {
  6711. name: "Lorg",
  6712. height: math.unit(25, "feet"),
  6713. default: true
  6714. },
  6715. {
  6716. name: "Lorger",
  6717. height: math.unit(75, "feet")
  6718. },
  6719. {
  6720. name: "Macro",
  6721. height: math.unit(200, "meters")
  6722. },
  6723. ]
  6724. ))
  6725. characterMakers.push(() => makeCharacter(
  6726. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6727. {
  6728. front: {
  6729. height: math.unit(2, "meters"),
  6730. weight: math.unit(150, "kg"),
  6731. name: "Front",
  6732. image: {
  6733. source: "./media/characters/everett/front.svg",
  6734. extra: 2038 / 1737,
  6735. bottom: 0.03
  6736. }
  6737. },
  6738. paw: {
  6739. height: math.unit(2 / 3.6, "meters"),
  6740. name: "Paw",
  6741. image: {
  6742. source: "./media/characters/everett/paw.svg"
  6743. }
  6744. },
  6745. },
  6746. [
  6747. {
  6748. name: "Normal",
  6749. height: math.unit(15, "feet"),
  6750. default: true
  6751. },
  6752. {
  6753. name: "Lorg",
  6754. height: math.unit(70, "feet"),
  6755. default: true
  6756. },
  6757. {
  6758. name: "Lorger",
  6759. height: math.unit(250, "feet")
  6760. },
  6761. {
  6762. name: "Macro",
  6763. height: math.unit(500, "meters")
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6769. {
  6770. front: {
  6771. height: math.unit(2, "meters"),
  6772. weight: math.unit(86, "kg"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/rose/front.svg",
  6776. extra: 1785/1636,
  6777. bottom: 30/1815
  6778. }
  6779. },
  6780. frontSporty: {
  6781. height: math.unit(2, "meters"),
  6782. weight: math.unit(86, "kg"),
  6783. name: "Front (Sporty)",
  6784. image: {
  6785. source: "./media/characters/rose/front-sporty.svg",
  6786. extra: 350/335,
  6787. bottom: 10/360
  6788. }
  6789. },
  6790. frontAlt: {
  6791. height: math.unit(1.6, "meters"),
  6792. weight: math.unit(86, "kg"),
  6793. name: "Front (Alt)",
  6794. image: {
  6795. source: "./media/characters/rose/front-alt.svg",
  6796. extra: 299/283,
  6797. bottom: 3/302
  6798. }
  6799. },
  6800. plush: {
  6801. height: math.unit(2, "meters"),
  6802. weight: math.unit(86/3, "kg"),
  6803. name: "Plush",
  6804. image: {
  6805. source: "./media/characters/rose/plush.svg",
  6806. extra: 361/337,
  6807. bottom: 11/372
  6808. }
  6809. },
  6810. },
  6811. [
  6812. {
  6813. name: "True Micro",
  6814. height: math.unit(9, "cm")
  6815. },
  6816. {
  6817. name: "Micro",
  6818. height: math.unit(16, "cm")
  6819. },
  6820. {
  6821. name: "Normal",
  6822. height: math.unit(1.85, "meters"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Mini-Macro",
  6827. height: math.unit(5, "meters")
  6828. },
  6829. {
  6830. name: "Macro",
  6831. height: math.unit(15, "meters")
  6832. },
  6833. {
  6834. name: "True Macro",
  6835. height: math.unit(40, "meters")
  6836. },
  6837. {
  6838. name: "City Scale",
  6839. height: math.unit(1, "km")
  6840. },
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(2, "meters"),
  6848. weight: math.unit(350, "lbs"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/regal/front.svg"
  6852. }
  6853. },
  6854. back: {
  6855. height: math.unit(2, "meters"),
  6856. weight: math.unit(350, "lbs"),
  6857. name: "Back",
  6858. image: {
  6859. source: "./media/characters/regal/back.svg"
  6860. }
  6861. },
  6862. },
  6863. [
  6864. {
  6865. name: "Macro",
  6866. height: math.unit(350, "feet"),
  6867. default: true
  6868. }
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6873. {
  6874. front: {
  6875. height: math.unit(4 + 11 / 12, "feet"),
  6876. weight: math.unit(100, "lbs"),
  6877. name: "Front",
  6878. image: {
  6879. source: "./media/characters/opal/front.svg"
  6880. }
  6881. },
  6882. frontAlt: {
  6883. height: math.unit(4 + 11 / 12, "feet"),
  6884. weight: math.unit(100, "lbs"),
  6885. name: "Front (Alt)",
  6886. image: {
  6887. source: "./media/characters/opal/front-alt.svg"
  6888. }
  6889. },
  6890. },
  6891. [
  6892. {
  6893. name: "Small",
  6894. height: math.unit(4 + 11 / 12, "feet")
  6895. },
  6896. {
  6897. name: "Normal",
  6898. height: math.unit(20, "feet"),
  6899. default: true
  6900. },
  6901. {
  6902. name: "Macro",
  6903. height: math.unit(120, "feet")
  6904. },
  6905. {
  6906. name: "Megamacro",
  6907. height: math.unit(80, "miles")
  6908. },
  6909. {
  6910. name: "True Size",
  6911. height: math.unit(100000, "lightyears")
  6912. },
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6917. {
  6918. front: {
  6919. height: math.unit(6, "feet"),
  6920. weight: math.unit(200, "lbs"),
  6921. name: "Front",
  6922. image: {
  6923. source: "./media/characters/vector-wuff/front.svg"
  6924. }
  6925. }
  6926. },
  6927. [
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(2.8, "meters")
  6931. },
  6932. {
  6933. name: "Macro",
  6934. height: math.unit(450, "meters"),
  6935. default: true
  6936. },
  6937. {
  6938. name: "Megamacro",
  6939. height: math.unit(15, "kilometers")
  6940. }
  6941. ]
  6942. ))
  6943. characterMakers.push(() => makeCharacter(
  6944. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6945. {
  6946. front: {
  6947. height: math.unit(6, "feet"),
  6948. weight: math.unit(256, "lbs"),
  6949. name: "Front",
  6950. image: {
  6951. source: "./media/characters/dannik/front.svg"
  6952. }
  6953. }
  6954. },
  6955. [
  6956. {
  6957. name: "Macro",
  6958. height: math.unit(69.57, "meters"),
  6959. default: true
  6960. },
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6965. {
  6966. front: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(120, "lbs"),
  6969. name: "Front",
  6970. image: {
  6971. source: "./media/characters/azura-saharah/front.svg"
  6972. }
  6973. },
  6974. back: {
  6975. height: math.unit(6, "feet"),
  6976. weight: math.unit(120, "lbs"),
  6977. name: "Back",
  6978. image: {
  6979. source: "./media/characters/azura-saharah/back.svg"
  6980. }
  6981. },
  6982. },
  6983. [
  6984. {
  6985. name: "Macro",
  6986. height: math.unit(100, "feet"),
  6987. default: true
  6988. },
  6989. ]
  6990. ))
  6991. characterMakers.push(() => makeCharacter(
  6992. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6993. {
  6994. side: {
  6995. height: math.unit(5 + 4 / 12, "feet"),
  6996. weight: math.unit(163, "lbs"),
  6997. name: "Side",
  6998. image: {
  6999. source: "./media/characters/kennedy/side.svg"
  7000. }
  7001. }
  7002. },
  7003. [
  7004. {
  7005. name: "Standard Doggo",
  7006. height: math.unit(5 + 4 / 12, "feet")
  7007. },
  7008. {
  7009. name: "Big Doggo",
  7010. height: math.unit(25 + 3 / 12, "feet"),
  7011. default: true
  7012. },
  7013. ]
  7014. ))
  7015. characterMakers.push(() => makeCharacter(
  7016. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7017. {
  7018. front: {
  7019. height: math.unit(6, "feet"),
  7020. weight: math.unit(90, "lbs"),
  7021. name: "Front",
  7022. image: {
  7023. source: "./media/characters/odi-lunar/front.svg"
  7024. }
  7025. }
  7026. },
  7027. [
  7028. {
  7029. name: "Micro",
  7030. height: math.unit(3, "inches"),
  7031. default: true
  7032. },
  7033. {
  7034. name: "Normal",
  7035. height: math.unit(5.5, "feet")
  7036. }
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7041. {
  7042. back: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(220, "lbs"),
  7045. name: "Back",
  7046. image: {
  7047. source: "./media/characters/mandake/back.svg"
  7048. }
  7049. }
  7050. },
  7051. [
  7052. {
  7053. name: "Normal",
  7054. height: math.unit(7, "feet"),
  7055. default: true
  7056. },
  7057. {
  7058. name: "Macro",
  7059. height: math.unit(78, "feet")
  7060. },
  7061. {
  7062. name: "Macro+",
  7063. height: math.unit(300, "meters")
  7064. },
  7065. {
  7066. name: "Macro++",
  7067. height: math.unit(2400, "feet")
  7068. },
  7069. {
  7070. name: "Megamacro",
  7071. height: math.unit(5167, "meters")
  7072. },
  7073. {
  7074. name: "Gigamacro",
  7075. height: math.unit(41769, "miles")
  7076. },
  7077. ]
  7078. ))
  7079. characterMakers.push(() => makeCharacter(
  7080. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7081. {
  7082. front: {
  7083. height: math.unit(6, "feet"),
  7084. weight: math.unit(120, "lbs"),
  7085. name: "Front",
  7086. image: {
  7087. source: "./media/characters/yozey/front.svg"
  7088. }
  7089. },
  7090. frontAlt: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(120, "lbs"),
  7093. name: "Front (Alt)",
  7094. image: {
  7095. source: "./media/characters/yozey/front-alt.svg"
  7096. }
  7097. },
  7098. side: {
  7099. height: math.unit(6, "feet"),
  7100. weight: math.unit(120, "lbs"),
  7101. name: "Side",
  7102. image: {
  7103. source: "./media/characters/yozey/side.svg"
  7104. }
  7105. },
  7106. },
  7107. [
  7108. {
  7109. name: "Micro",
  7110. height: math.unit(3, "inches"),
  7111. default: true
  7112. },
  7113. {
  7114. name: "Normal",
  7115. height: math.unit(6, "feet")
  7116. }
  7117. ]
  7118. ))
  7119. characterMakers.push(() => makeCharacter(
  7120. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7121. {
  7122. front: {
  7123. height: math.unit(6, "feet"),
  7124. weight: math.unit(103, "lbs"),
  7125. name: "Front",
  7126. image: {
  7127. source: "./media/characters/valeska-voss/front.svg"
  7128. }
  7129. }
  7130. },
  7131. [
  7132. {
  7133. name: "Mini-Sized Sub",
  7134. height: math.unit(3.1, "inches")
  7135. },
  7136. {
  7137. name: "Mid-Sized Sub",
  7138. height: math.unit(6.2, "inches")
  7139. },
  7140. {
  7141. name: "Full-Sized Sub",
  7142. height: math.unit(9.3, "inches")
  7143. },
  7144. {
  7145. name: "Normal",
  7146. height: math.unit(5 + 2 / 12, "foot"),
  7147. default: true
  7148. },
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7153. {
  7154. front: {
  7155. height: math.unit(6, "feet"),
  7156. weight: math.unit(160, "lbs"),
  7157. name: "Front",
  7158. image: {
  7159. source: "./media/characters/gene-zeta/front.svg",
  7160. extra: 3006 / 2826,
  7161. bottom: 182 / 3188
  7162. }
  7163. }
  7164. },
  7165. [
  7166. {
  7167. name: "Micro",
  7168. height: math.unit(6, "inches")
  7169. },
  7170. {
  7171. name: "Normal",
  7172. height: math.unit(5 + 11 / 12, "foot"),
  7173. default: true
  7174. },
  7175. {
  7176. name: "Macro",
  7177. height: math.unit(140, "feet")
  7178. },
  7179. {
  7180. name: "Supercharged",
  7181. height: math.unit(2500, "feet")
  7182. },
  7183. ]
  7184. ))
  7185. characterMakers.push(() => makeCharacter(
  7186. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7187. {
  7188. front: {
  7189. height: math.unit(6, "feet"),
  7190. weight: math.unit(350, "lbs"),
  7191. name: "Front",
  7192. image: {
  7193. source: "./media/characters/razinox/front.svg",
  7194. extra: 1686 / 1548,
  7195. bottom: 28.2 / 1868
  7196. }
  7197. },
  7198. back: {
  7199. height: math.unit(6, "feet"),
  7200. weight: math.unit(350, "lbs"),
  7201. name: "Back",
  7202. image: {
  7203. source: "./media/characters/razinox/back.svg",
  7204. extra: 1660 / 1590,
  7205. bottom: 15 / 1665
  7206. }
  7207. },
  7208. },
  7209. [
  7210. {
  7211. name: "Normal",
  7212. height: math.unit(10 + 8 / 12, "foot")
  7213. },
  7214. {
  7215. name: "Minimacro",
  7216. height: math.unit(15, "foot")
  7217. },
  7218. {
  7219. name: "Macro",
  7220. height: math.unit(60, "foot"),
  7221. default: true
  7222. },
  7223. {
  7224. name: "Megamacro",
  7225. height: math.unit(5, "miles")
  7226. },
  7227. {
  7228. name: "Gigamacro",
  7229. height: math.unit(6000, "miles")
  7230. },
  7231. ]
  7232. ))
  7233. characterMakers.push(() => makeCharacter(
  7234. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7235. {
  7236. front: {
  7237. height: math.unit(6, "feet"),
  7238. weight: math.unit(150, "lbs"),
  7239. name: "Front",
  7240. image: {
  7241. source: "./media/characters/cobalt/front.svg"
  7242. }
  7243. }
  7244. },
  7245. [
  7246. {
  7247. name: "Normal",
  7248. height: math.unit(8 + 1 / 12, "foot")
  7249. },
  7250. {
  7251. name: "Macro",
  7252. height: math.unit(111, "foot"),
  7253. default: true
  7254. },
  7255. {
  7256. name: "Supracosmic",
  7257. height: math.unit(1e42, "feet")
  7258. },
  7259. ]
  7260. ))
  7261. characterMakers.push(() => makeCharacter(
  7262. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7263. {
  7264. front: {
  7265. height: math.unit(6, "feet"),
  7266. weight: math.unit(140, "lbs"),
  7267. name: "Front",
  7268. image: {
  7269. source: "./media/characters/amanda/front.svg"
  7270. }
  7271. }
  7272. },
  7273. [
  7274. {
  7275. name: "Micro",
  7276. height: math.unit(5, "inches"),
  7277. default: true
  7278. },
  7279. ]
  7280. ))
  7281. characterMakers.push(() => makeCharacter(
  7282. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7283. {
  7284. front: {
  7285. height: math.unit(2.75, "meters"),
  7286. weight: math.unit(1200, "lb"),
  7287. name: "Front",
  7288. image: {
  7289. source: "./media/characters/teal/front.svg",
  7290. extra: 2463 / 2320,
  7291. bottom: 166 / 2629
  7292. }
  7293. },
  7294. back: {
  7295. height: math.unit(2.75, "meters"),
  7296. weight: math.unit(1200, "lb"),
  7297. name: "Back",
  7298. image: {
  7299. source: "./media/characters/teal/back.svg",
  7300. extra: 2580 / 2489,
  7301. bottom: 151 / 2731
  7302. }
  7303. },
  7304. sitting: {
  7305. height: math.unit(1.9, "meters"),
  7306. weight: math.unit(1200, "lb"),
  7307. name: "Sitting",
  7308. image: {
  7309. source: "./media/characters/teal/sitting.svg",
  7310. extra: 623 / 590,
  7311. bottom: 121 / 744
  7312. }
  7313. },
  7314. standing: {
  7315. height: math.unit(2.75, "meters"),
  7316. weight: math.unit(1200, "lb"),
  7317. name: "Standing",
  7318. image: {
  7319. source: "./media/characters/teal/standing.svg",
  7320. extra: 923 / 893,
  7321. bottom: 60 / 983
  7322. }
  7323. },
  7324. stretching: {
  7325. height: math.unit(3.65, "meters"),
  7326. weight: math.unit(1200, "lb"),
  7327. name: "Stretching",
  7328. image: {
  7329. source: "./media/characters/teal/stretching.svg",
  7330. extra: 1276 / 1244,
  7331. bottom: 0 / 1276
  7332. }
  7333. },
  7334. legged: {
  7335. height: math.unit(1.3, "meters"),
  7336. weight: math.unit(100, "lb"),
  7337. name: "Legged",
  7338. image: {
  7339. source: "./media/characters/teal/legged.svg",
  7340. extra: 462 / 437,
  7341. bottom: 24 / 486
  7342. }
  7343. },
  7344. naga: {
  7345. height: math.unit(5.4, "meters"),
  7346. weight: math.unit(4000, "lb"),
  7347. name: "Naga",
  7348. image: {
  7349. source: "./media/characters/teal/naga.svg",
  7350. extra: 1902 / 1858,
  7351. bottom: 0 / 1902
  7352. }
  7353. },
  7354. hand: {
  7355. height: math.unit(0.52, "meters"),
  7356. name: "Hand",
  7357. image: {
  7358. source: "./media/characters/teal/hand.svg"
  7359. }
  7360. },
  7361. maw: {
  7362. height: math.unit(0.43, "meters"),
  7363. name: "Maw",
  7364. image: {
  7365. source: "./media/characters/teal/maw.svg"
  7366. }
  7367. },
  7368. slit: {
  7369. height: math.unit(0.25, "meters"),
  7370. name: "Slit",
  7371. image: {
  7372. source: "./media/characters/teal/slit.svg"
  7373. }
  7374. },
  7375. },
  7376. [
  7377. {
  7378. name: "Normal",
  7379. height: math.unit(2.75, "meters"),
  7380. default: true
  7381. },
  7382. {
  7383. name: "Macro",
  7384. height: math.unit(300, "feet")
  7385. },
  7386. {
  7387. name: "Macro+",
  7388. height: math.unit(2000, "feet")
  7389. },
  7390. ]
  7391. ))
  7392. characterMakers.push(() => makeCharacter(
  7393. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7394. {
  7395. frontCat: {
  7396. height: math.unit(6, "feet"),
  7397. weight: math.unit(180, "lbs"),
  7398. name: "Front (Cat)",
  7399. image: {
  7400. source: "./media/characters/ravin-amulet/front-cat.svg"
  7401. }
  7402. },
  7403. frontCatAlt: {
  7404. height: math.unit(6, "feet"),
  7405. weight: math.unit(180, "lbs"),
  7406. name: "Front (Alt, Cat)",
  7407. image: {
  7408. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7409. }
  7410. },
  7411. frontWerewolf: {
  7412. height: math.unit(6 * 1.2, "feet"),
  7413. weight: math.unit(225, "lbs"),
  7414. name: "Front (Werewolf)",
  7415. image: {
  7416. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7417. }
  7418. },
  7419. backWerewolf: {
  7420. height: math.unit(6 * 1.2, "feet"),
  7421. weight: math.unit(225, "lbs"),
  7422. name: "Back (Werewolf)",
  7423. image: {
  7424. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Nano",
  7431. height: math.unit(1, "micrometer")
  7432. },
  7433. {
  7434. name: "Micro",
  7435. height: math.unit(1, "inch")
  7436. },
  7437. {
  7438. name: "Normal",
  7439. height: math.unit(6, "feet"),
  7440. default: true
  7441. },
  7442. {
  7443. name: "Macro",
  7444. height: math.unit(60, "feet")
  7445. }
  7446. ]
  7447. ))
  7448. characterMakers.push(() => makeCharacter(
  7449. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7450. {
  7451. front: {
  7452. height: math.unit(6, "feet"),
  7453. weight: math.unit(165, "lbs"),
  7454. name: "Front",
  7455. image: {
  7456. source: "./media/characters/fluoresce/front.svg"
  7457. }
  7458. }
  7459. },
  7460. [
  7461. {
  7462. name: "Micro",
  7463. height: math.unit(6, "cm")
  7464. },
  7465. {
  7466. name: "Normal",
  7467. height: math.unit(5 + 7 / 12, "feet"),
  7468. default: true
  7469. },
  7470. {
  7471. name: "Macro",
  7472. height: math.unit(56, "feet")
  7473. },
  7474. {
  7475. name: "Megamacro",
  7476. height: math.unit(1.9, "miles")
  7477. },
  7478. ]
  7479. ))
  7480. characterMakers.push(() => makeCharacter(
  7481. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7482. {
  7483. front: {
  7484. height: math.unit(9 + 6 / 12, "feet"),
  7485. weight: math.unit(523, "lbs"),
  7486. name: "Side",
  7487. image: {
  7488. source: "./media/characters/aurora/side.svg"
  7489. }
  7490. }
  7491. },
  7492. [
  7493. {
  7494. name: "Normal",
  7495. height: math.unit(9 + 6 / 12, "feet")
  7496. },
  7497. {
  7498. name: "Macro",
  7499. height: math.unit(96, "feet"),
  7500. default: true
  7501. },
  7502. {
  7503. name: "Macro+",
  7504. height: math.unit(243, "feet")
  7505. },
  7506. ]
  7507. ))
  7508. characterMakers.push(() => makeCharacter(
  7509. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7510. {
  7511. front: {
  7512. height: math.unit(194, "cm"),
  7513. weight: math.unit(90, "kg"),
  7514. name: "Front",
  7515. image: {
  7516. source: "./media/characters/ranek/front.svg"
  7517. }
  7518. },
  7519. side: {
  7520. height: math.unit(194, "cm"),
  7521. weight: math.unit(90, "kg"),
  7522. name: "Side",
  7523. image: {
  7524. source: "./media/characters/ranek/side.svg"
  7525. }
  7526. },
  7527. back: {
  7528. height: math.unit(194, "cm"),
  7529. weight: math.unit(90, "kg"),
  7530. name: "Back",
  7531. image: {
  7532. source: "./media/characters/ranek/back.svg"
  7533. }
  7534. },
  7535. feral: {
  7536. height: math.unit(30, "cm"),
  7537. weight: math.unit(1.6, "lbs"),
  7538. name: "Feral",
  7539. image: {
  7540. source: "./media/characters/ranek/feral.svg"
  7541. }
  7542. },
  7543. },
  7544. [
  7545. {
  7546. name: "Normal",
  7547. height: math.unit(194, "cm"),
  7548. default: true
  7549. },
  7550. {
  7551. name: "Macro",
  7552. height: math.unit(100, "meters")
  7553. },
  7554. ]
  7555. ))
  7556. characterMakers.push(() => makeCharacter(
  7557. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7558. {
  7559. front: {
  7560. height: math.unit(5 + 6 / 12, "feet"),
  7561. weight: math.unit(153, "lbs"),
  7562. name: "Front",
  7563. image: {
  7564. source: "./media/characters/andrew-cooper/front.svg"
  7565. }
  7566. },
  7567. },
  7568. [
  7569. {
  7570. name: "Nano",
  7571. height: math.unit(1, "mm")
  7572. },
  7573. {
  7574. name: "Micro",
  7575. height: math.unit(2, "inches")
  7576. },
  7577. {
  7578. name: "Normal",
  7579. height: math.unit(5 + 6 / 12, "feet"),
  7580. default: true
  7581. }
  7582. ]
  7583. ))
  7584. characterMakers.push(() => makeCharacter(
  7585. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7586. {
  7587. front: {
  7588. height: math.unit(6, "feet"),
  7589. weight: math.unit(180, "lbs"),
  7590. name: "Front",
  7591. image: {
  7592. source: "./media/characters/akane-sato/front.svg",
  7593. extra: 1219 / 1140
  7594. }
  7595. },
  7596. back: {
  7597. height: math.unit(6, "feet"),
  7598. weight: math.unit(180, "lbs"),
  7599. name: "Back",
  7600. image: {
  7601. source: "./media/characters/akane-sato/back.svg",
  7602. extra: 1219 / 1170
  7603. }
  7604. },
  7605. },
  7606. [
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(2.5, "meters")
  7610. },
  7611. {
  7612. name: "Macro",
  7613. height: math.unit(250, "meters"),
  7614. default: true
  7615. },
  7616. {
  7617. name: "Megamacro",
  7618. height: math.unit(25, "km")
  7619. },
  7620. ]
  7621. ))
  7622. characterMakers.push(() => makeCharacter(
  7623. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7624. {
  7625. front: {
  7626. height: math.unit(6, "feet"),
  7627. weight: math.unit(65, "kg"),
  7628. name: "Front",
  7629. image: {
  7630. source: "./media/characters/rook/front.svg",
  7631. extra: 960 / 950
  7632. }
  7633. }
  7634. },
  7635. [
  7636. {
  7637. name: "Normal",
  7638. height: math.unit(8.8, "feet")
  7639. },
  7640. {
  7641. name: "Macro",
  7642. height: math.unit(88, "feet"),
  7643. default: true
  7644. },
  7645. {
  7646. name: "Megamacro",
  7647. height: math.unit(8, "miles")
  7648. },
  7649. ]
  7650. ))
  7651. characterMakers.push(() => makeCharacter(
  7652. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7653. {
  7654. front: {
  7655. height: math.unit(12 + 2 / 12, "feet"),
  7656. weight: math.unit(808, "lbs"),
  7657. name: "Front",
  7658. image: {
  7659. source: "./media/characters/prodigy/front.svg"
  7660. }
  7661. }
  7662. },
  7663. [
  7664. {
  7665. name: "Normal",
  7666. height: math.unit(12 + 2 / 12, "feet"),
  7667. default: true
  7668. },
  7669. {
  7670. name: "Macro",
  7671. height: math.unit(143, "feet")
  7672. },
  7673. {
  7674. name: "Macro+",
  7675. height: math.unit(400, "feet")
  7676. },
  7677. ]
  7678. ))
  7679. characterMakers.push(() => makeCharacter(
  7680. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7681. {
  7682. front: {
  7683. height: math.unit(6, "feet"),
  7684. weight: math.unit(225, "lbs"),
  7685. name: "Front",
  7686. image: {
  7687. source: "./media/characters/daniel/front.svg"
  7688. }
  7689. },
  7690. leaning: {
  7691. height: math.unit(6, "feet"),
  7692. weight: math.unit(225, "lbs"),
  7693. name: "Leaning",
  7694. image: {
  7695. source: "./media/characters/daniel/leaning.svg"
  7696. }
  7697. },
  7698. },
  7699. [
  7700. {
  7701. name: "Macro",
  7702. height: math.unit(1000, "feet"),
  7703. default: true
  7704. },
  7705. ]
  7706. ))
  7707. characterMakers.push(() => makeCharacter(
  7708. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7709. {
  7710. front: {
  7711. height: math.unit(6, "feet"),
  7712. weight: math.unit(88, "lbs"),
  7713. name: "Front",
  7714. image: {
  7715. source: "./media/characters/chiros/front.svg",
  7716. extra: 306 / 226
  7717. }
  7718. },
  7719. side: {
  7720. height: math.unit(6, "feet"),
  7721. weight: math.unit(88, "lbs"),
  7722. name: "Side",
  7723. image: {
  7724. source: "./media/characters/chiros/side.svg",
  7725. extra: 306 / 226
  7726. }
  7727. },
  7728. },
  7729. [
  7730. {
  7731. name: "Normal",
  7732. height: math.unit(6, "cm"),
  7733. default: true
  7734. },
  7735. ]
  7736. ))
  7737. characterMakers.push(() => makeCharacter(
  7738. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7739. {
  7740. front: {
  7741. height: math.unit(6, "feet"),
  7742. weight: math.unit(100, "lbs"),
  7743. name: "Front",
  7744. image: {
  7745. source: "./media/characters/selka/front.svg",
  7746. extra: 947 / 887
  7747. }
  7748. }
  7749. },
  7750. [
  7751. {
  7752. name: "Normal",
  7753. height: math.unit(5, "cm"),
  7754. default: true
  7755. },
  7756. ]
  7757. ))
  7758. characterMakers.push(() => makeCharacter(
  7759. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7760. {
  7761. front: {
  7762. height: math.unit(8 + 3 / 12, "feet"),
  7763. weight: math.unit(424, "lbs"),
  7764. name: "Front",
  7765. image: {
  7766. source: "./media/characters/verin/front.svg",
  7767. extra: 1845 / 1550
  7768. }
  7769. },
  7770. frontArmored: {
  7771. height: math.unit(8 + 3 / 12, "feet"),
  7772. weight: math.unit(424, "lbs"),
  7773. name: "Front (Armored)",
  7774. image: {
  7775. source: "./media/characters/verin/front-armor.svg",
  7776. extra: 1845 / 1550,
  7777. bottom: 0.01
  7778. }
  7779. },
  7780. back: {
  7781. height: math.unit(8 + 3 / 12, "feet"),
  7782. weight: math.unit(424, "lbs"),
  7783. name: "Back",
  7784. image: {
  7785. source: "./media/characters/verin/back.svg",
  7786. bottom: 0.1,
  7787. extra: 1
  7788. }
  7789. },
  7790. foot: {
  7791. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7792. name: "Foot",
  7793. image: {
  7794. source: "./media/characters/verin/foot.svg"
  7795. }
  7796. },
  7797. },
  7798. [
  7799. {
  7800. name: "Normal",
  7801. height: math.unit(8 + 3 / 12, "feet")
  7802. },
  7803. {
  7804. name: "Minimacro",
  7805. height: math.unit(21, "feet"),
  7806. default: true
  7807. },
  7808. {
  7809. name: "Macro",
  7810. height: math.unit(626, "feet")
  7811. },
  7812. ]
  7813. ))
  7814. characterMakers.push(() => makeCharacter(
  7815. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7816. {
  7817. front: {
  7818. height: math.unit(2.718, "meters"),
  7819. weight: math.unit(150, "lbs"),
  7820. name: "Front",
  7821. image: {
  7822. source: "./media/characters/sovrim-terraquian/front.svg"
  7823. }
  7824. },
  7825. back: {
  7826. height: math.unit(2.718, "meters"),
  7827. weight: math.unit(150, "lbs"),
  7828. name: "Back",
  7829. image: {
  7830. source: "./media/characters/sovrim-terraquian/back.svg"
  7831. }
  7832. }
  7833. },
  7834. [
  7835. {
  7836. name: "Micro",
  7837. height: math.unit(2, "inches")
  7838. },
  7839. {
  7840. name: "Small",
  7841. height: math.unit(1, "meter")
  7842. },
  7843. {
  7844. name: "Normal",
  7845. height: math.unit(Math.E, "meters"),
  7846. default: true
  7847. },
  7848. {
  7849. name: "Macro",
  7850. height: math.unit(20, "meters")
  7851. },
  7852. {
  7853. name: "Macro+",
  7854. height: math.unit(400, "meters")
  7855. },
  7856. ]
  7857. ))
  7858. characterMakers.push(() => makeCharacter(
  7859. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7860. {
  7861. front: {
  7862. height: math.unit(7, "feet"),
  7863. weight: math.unit(489, "lbs"),
  7864. name: "Front",
  7865. image: {
  7866. source: "./media/characters/reece-silvermane/front.svg",
  7867. bottom: 0.02,
  7868. extra: 1
  7869. }
  7870. },
  7871. },
  7872. [
  7873. {
  7874. name: "Macro",
  7875. height: math.unit(1.5, "miles"),
  7876. default: true
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(6, "feet"),
  7885. weight: math.unit(78, "kg"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/kane/front.svg",
  7889. extra: 978 / 899
  7890. }
  7891. },
  7892. },
  7893. [
  7894. {
  7895. name: "Normal",
  7896. height: math.unit(2.1, "m"),
  7897. },
  7898. {
  7899. name: "Macro",
  7900. height: math.unit(1, "km"),
  7901. default: true
  7902. },
  7903. ]
  7904. ))
  7905. characterMakers.push(() => makeCharacter(
  7906. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7907. {
  7908. front: {
  7909. height: math.unit(6, "feet"),
  7910. weight: math.unit(200, "kg"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/tegon/front.svg",
  7914. bottom: 0.01,
  7915. extra: 1
  7916. }
  7917. },
  7918. },
  7919. [
  7920. {
  7921. name: "Micro",
  7922. height: math.unit(1, "inch")
  7923. },
  7924. {
  7925. name: "Normal",
  7926. height: math.unit(6 + 3 / 12, "feet"),
  7927. default: true
  7928. },
  7929. {
  7930. name: "Macro",
  7931. height: math.unit(300, "feet")
  7932. },
  7933. {
  7934. name: "Megamacro",
  7935. height: math.unit(69, "miles")
  7936. },
  7937. ]
  7938. ))
  7939. characterMakers.push(() => makeCharacter(
  7940. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7941. {
  7942. side: {
  7943. height: math.unit(6, "feet"),
  7944. weight: math.unit(2304, "lbs"),
  7945. name: "Side",
  7946. image: {
  7947. source: "./media/characters/arcturax/side.svg",
  7948. extra: 790 / 376,
  7949. bottom: 0.01
  7950. }
  7951. },
  7952. },
  7953. [
  7954. {
  7955. name: "Micro",
  7956. height: math.unit(2, "inch")
  7957. },
  7958. {
  7959. name: "Normal",
  7960. height: math.unit(6, "feet")
  7961. },
  7962. {
  7963. name: "Macro",
  7964. height: math.unit(39, "feet"),
  7965. default: true
  7966. },
  7967. {
  7968. name: "Megamacro",
  7969. height: math.unit(7, "miles")
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7975. {
  7976. front: {
  7977. height: math.unit(6, "feet"),
  7978. weight: math.unit(50, "lbs"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/sentri/front.svg",
  7982. extra: 1750 / 1570,
  7983. bottom: 0.025
  7984. }
  7985. },
  7986. frontAlt: {
  7987. height: math.unit(6, "feet"),
  7988. weight: math.unit(50, "lbs"),
  7989. name: "Front (Alt)",
  7990. image: {
  7991. source: "./media/characters/sentri/front-alt.svg",
  7992. extra: 1750 / 1570,
  7993. bottom: 0.025
  7994. }
  7995. },
  7996. },
  7997. [
  7998. {
  7999. name: "Normal",
  8000. height: math.unit(15, "feet"),
  8001. default: true
  8002. },
  8003. {
  8004. name: "Macro",
  8005. height: math.unit(2500, "feet")
  8006. }
  8007. ]
  8008. ))
  8009. characterMakers.push(() => makeCharacter(
  8010. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8011. {
  8012. front: {
  8013. height: math.unit(5 + 8 / 12, "feet"),
  8014. weight: math.unit(130, "lbs"),
  8015. name: "Front",
  8016. image: {
  8017. source: "./media/characters/corvin/front.svg",
  8018. extra: 1803 / 1629
  8019. }
  8020. },
  8021. frontShirt: {
  8022. height: math.unit(5 + 8 / 12, "feet"),
  8023. weight: math.unit(130, "lbs"),
  8024. name: "Front (Shirt)",
  8025. image: {
  8026. source: "./media/characters/corvin/front-shirt.svg",
  8027. extra: 1803 / 1629
  8028. }
  8029. },
  8030. frontPoncho: {
  8031. height: math.unit(5 + 8 / 12, "feet"),
  8032. weight: math.unit(130, "lbs"),
  8033. name: "Front (Poncho)",
  8034. image: {
  8035. source: "./media/characters/corvin/front-poncho.svg",
  8036. extra: 1803 / 1629
  8037. }
  8038. },
  8039. side: {
  8040. height: math.unit(5 + 8 / 12, "feet"),
  8041. weight: math.unit(130, "lbs"),
  8042. name: "Side",
  8043. image: {
  8044. source: "./media/characters/corvin/side.svg",
  8045. extra: 1012 / 945
  8046. }
  8047. },
  8048. back: {
  8049. height: math.unit(5 + 8 / 12, "feet"),
  8050. weight: math.unit(130, "lbs"),
  8051. name: "Back",
  8052. image: {
  8053. source: "./media/characters/corvin/back.svg",
  8054. extra: 1803 / 1629
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Micro",
  8061. height: math.unit(3, "inches")
  8062. },
  8063. {
  8064. name: "Normal",
  8065. height: math.unit(5 + 8 / 12, "feet")
  8066. },
  8067. {
  8068. name: "Macro",
  8069. height: math.unit(300, "feet"),
  8070. default: true
  8071. },
  8072. {
  8073. name: "Megamacro",
  8074. height: math.unit(500, "miles")
  8075. }
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(6, "feet"),
  8083. weight: math.unit(135, "lbs"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/q/front.svg",
  8087. extra: 854 / 752,
  8088. bottom: 0.005
  8089. }
  8090. },
  8091. back: {
  8092. height: math.unit(6, "feet"),
  8093. weight: math.unit(130, "lbs"),
  8094. name: "Back",
  8095. image: {
  8096. source: "./media/characters/q/back.svg",
  8097. extra: 854 / 752
  8098. }
  8099. },
  8100. },
  8101. [
  8102. {
  8103. name: "Macro",
  8104. height: math.unit(90, "feet"),
  8105. default: true
  8106. },
  8107. {
  8108. name: "Extra Macro",
  8109. height: math.unit(300, "feet"),
  8110. },
  8111. {
  8112. name: "BIG WALF",
  8113. height: math.unit(750, "feet"),
  8114. },
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8119. {
  8120. front: {
  8121. height: math.unit(6, "feet"),
  8122. weight: math.unit(150, "lbs"),
  8123. name: "Front",
  8124. image: {
  8125. source: "./media/characters/carley/front.svg",
  8126. extra: 3927 / 3540,
  8127. bottom: 29.2 / 735
  8128. }
  8129. }
  8130. },
  8131. [
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(6 + 3 / 12, "feet")
  8135. },
  8136. {
  8137. name: "Macro",
  8138. height: math.unit(185, "feet"),
  8139. default: true
  8140. },
  8141. {
  8142. name: "Megamacro",
  8143. height: math.unit(8, "miles"),
  8144. },
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8149. {
  8150. front: {
  8151. height: math.unit(3, "feet"),
  8152. weight: math.unit(28, "lbs"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/citrine/front.svg"
  8156. }
  8157. }
  8158. },
  8159. [
  8160. {
  8161. name: "Normal",
  8162. height: math.unit(3, "feet"),
  8163. default: true
  8164. }
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8169. {
  8170. front: {
  8171. height: math.unit(14, "feet"),
  8172. weight: math.unit(1450, "kg"),
  8173. capacity: math.unit(15, "people"),
  8174. name: "Front",
  8175. image: {
  8176. source: "./media/characters/aura-starwind/front.svg",
  8177. extra: 1440/1327,
  8178. bottom: 11/1451
  8179. }
  8180. },
  8181. side: {
  8182. height: math.unit(14, "feet"),
  8183. weight: math.unit(1450, "kg"),
  8184. capacity: math.unit(15, "people"),
  8185. name: "Side",
  8186. image: {
  8187. source: "./media/characters/aura-starwind/side.svg",
  8188. extra: 1654 / 1497
  8189. }
  8190. },
  8191. taur: {
  8192. height: math.unit(18, "feet"),
  8193. weight: math.unit(5500, "kg"),
  8194. capacity: math.unit(50, "people"),
  8195. name: "Taur",
  8196. image: {
  8197. source: "./media/characters/aura-starwind/taur.svg",
  8198. extra: 1760 / 1650
  8199. }
  8200. },
  8201. feral: {
  8202. height: math.unit(46, "feet"),
  8203. weight: math.unit(25000, "kg"),
  8204. capacity: math.unit(120, "people"),
  8205. name: "Feral",
  8206. image: {
  8207. source: "./media/characters/aura-starwind/feral.svg"
  8208. }
  8209. },
  8210. },
  8211. [
  8212. {
  8213. name: "Normal",
  8214. height: math.unit(14, "feet"),
  8215. default: true
  8216. },
  8217. {
  8218. name: "Macro",
  8219. height: math.unit(50, "meters")
  8220. },
  8221. {
  8222. name: "Megamacro",
  8223. height: math.unit(5000, "meters")
  8224. },
  8225. {
  8226. name: "Gigamacro",
  8227. height: math.unit(100000, "kilometers")
  8228. },
  8229. ]
  8230. ))
  8231. characterMakers.push(() => makeCharacter(
  8232. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8233. {
  8234. front: {
  8235. height: math.unit(2 + 7 / 12, "feet"),
  8236. weight: math.unit(32, "lbs"),
  8237. name: "Front",
  8238. image: {
  8239. source: "./media/characters/rivet/front.svg",
  8240. extra: 1716 / 1658,
  8241. bottom: 0.03
  8242. }
  8243. },
  8244. foot: {
  8245. height: math.unit(0.551, "feet"),
  8246. name: "Rivet's Foot",
  8247. image: {
  8248. source: "./media/characters/rivet/foot.svg"
  8249. },
  8250. rename: true
  8251. }
  8252. },
  8253. [
  8254. {
  8255. name: "Micro",
  8256. height: math.unit(1.5, "inches"),
  8257. },
  8258. {
  8259. name: "Normal",
  8260. height: math.unit(2 + 7 / 12, "feet"),
  8261. default: true
  8262. },
  8263. {
  8264. name: "Macro",
  8265. height: math.unit(85, "feet")
  8266. },
  8267. {
  8268. name: "Megamacro",
  8269. height: math.unit(2.2, "km")
  8270. }
  8271. ]
  8272. ))
  8273. characterMakers.push(() => makeCharacter(
  8274. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8275. {
  8276. front: {
  8277. height: math.unit(5 + 9 / 12, "feet"),
  8278. weight: math.unit(150, "lbs"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/coffee/front.svg",
  8282. extra: 3666 / 3032,
  8283. bottom: 0.04
  8284. }
  8285. },
  8286. foot: {
  8287. height: math.unit(1.29, "feet"),
  8288. name: "Foot",
  8289. image: {
  8290. source: "./media/characters/coffee/foot.svg"
  8291. }
  8292. },
  8293. },
  8294. [
  8295. {
  8296. name: "Micro",
  8297. height: math.unit(2, "inches"),
  8298. },
  8299. {
  8300. name: "Normal",
  8301. height: math.unit(5 + 9 / 12, "feet"),
  8302. default: true
  8303. },
  8304. {
  8305. name: "Macro",
  8306. height: math.unit(800, "feet")
  8307. },
  8308. {
  8309. name: "Megamacro",
  8310. height: math.unit(25, "miles")
  8311. }
  8312. ]
  8313. ))
  8314. characterMakers.push(() => makeCharacter(
  8315. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8316. {
  8317. front: {
  8318. height: math.unit(6, "feet"),
  8319. weight: math.unit(200, "lbs"),
  8320. name: "Front",
  8321. image: {
  8322. source: "./media/characters/chari-gal/front.svg",
  8323. extra: 1568 / 1385,
  8324. bottom: 0.047
  8325. }
  8326. },
  8327. gigantamax: {
  8328. height: math.unit(6 * 16, "feet"),
  8329. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8330. name: "Gigantamax",
  8331. image: {
  8332. source: "./media/characters/chari-gal/gigantamax.svg",
  8333. extra: 1124 / 888,
  8334. bottom: 0.03
  8335. }
  8336. },
  8337. },
  8338. [
  8339. {
  8340. name: "Normal",
  8341. height: math.unit(5 + 7 / 12, "feet")
  8342. },
  8343. {
  8344. name: "Macro",
  8345. height: math.unit(200, "feet"),
  8346. default: true
  8347. }
  8348. ]
  8349. ))
  8350. characterMakers.push(() => makeCharacter(
  8351. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8352. {
  8353. front: {
  8354. height: math.unit(6, "feet"),
  8355. weight: math.unit(150, "lbs"),
  8356. name: "Front",
  8357. image: {
  8358. source: "./media/characters/nova/front.svg",
  8359. extra: 5000 / 4722,
  8360. bottom: 0.02
  8361. }
  8362. }
  8363. },
  8364. [
  8365. {
  8366. name: "Micro-",
  8367. height: math.unit(0.8, "inches")
  8368. },
  8369. {
  8370. name: "Micro",
  8371. height: math.unit(2, "inches"),
  8372. default: true
  8373. },
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8378. {
  8379. front: {
  8380. height: math.unit(3 + 1 / 12, "feet"),
  8381. weight: math.unit(21.7, "lbs"),
  8382. name: "Front",
  8383. image: {
  8384. source: "./media/characters/argent/front.svg",
  8385. extra: 1471 / 1331,
  8386. bottom: 100.8 / 1575.5
  8387. }
  8388. }
  8389. },
  8390. [
  8391. {
  8392. name: "Micro",
  8393. height: math.unit(2, "inches")
  8394. },
  8395. {
  8396. name: "Normal",
  8397. height: math.unit(3 + 1 / 12, "feet"),
  8398. default: true
  8399. },
  8400. {
  8401. name: "Macro",
  8402. height: math.unit(120, "feet")
  8403. },
  8404. ]
  8405. ))
  8406. characterMakers.push(() => makeCharacter(
  8407. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8408. {
  8409. lamp: {
  8410. height: math.unit(7 * 1559 / 989, "feet"),
  8411. name: "Magic Lamp",
  8412. image: {
  8413. source: "./media/characters/mira-al-cul/lamp.svg",
  8414. extra: 1617 / 1559
  8415. }
  8416. },
  8417. front: {
  8418. height: math.unit(7, "feet"),
  8419. name: "Front",
  8420. image: {
  8421. source: "./media/characters/mira-al-cul/front.svg",
  8422. extra: 1044 / 990
  8423. }
  8424. },
  8425. },
  8426. [
  8427. {
  8428. name: "Heavily Restricted",
  8429. height: math.unit(7 * 1559 / 989, "feet")
  8430. },
  8431. {
  8432. name: "Freshly Freed",
  8433. height: math.unit(50 * 1559 / 989, "feet")
  8434. },
  8435. {
  8436. name: "World Encompassing",
  8437. height: math.unit(10000 * 1559 / 989, "miles")
  8438. },
  8439. {
  8440. name: "Galactic",
  8441. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8442. },
  8443. {
  8444. name: "Palmed Universe",
  8445. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8446. default: true
  8447. },
  8448. {
  8449. name: "Multiversal Matriarch",
  8450. height: math.unit(8.87e10, "yottameters")
  8451. },
  8452. {
  8453. name: "Void Mother",
  8454. height: math.unit(3.14e110, "yottaparsecs")
  8455. },
  8456. {
  8457. name: "Toying with Transcendence",
  8458. height: math.unit(1e307, "meters")
  8459. },
  8460. ]
  8461. ))
  8462. characterMakers.push(() => makeCharacter(
  8463. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8464. {
  8465. front: {
  8466. height: math.unit(17 + 1 / 12, "feet"),
  8467. weight: math.unit(476.2 * 5, "lbs"),
  8468. name: "Front",
  8469. image: {
  8470. source: "./media/characters/kuro-shi-uchū/front.svg",
  8471. extra: 2329 / 1835,
  8472. bottom: 0.02
  8473. }
  8474. },
  8475. },
  8476. [
  8477. {
  8478. name: "Micro",
  8479. height: math.unit(2, "inches")
  8480. },
  8481. {
  8482. name: "Normal",
  8483. height: math.unit(12, "meters")
  8484. },
  8485. {
  8486. name: "Planetary",
  8487. height: math.unit(0.00929, "AU"),
  8488. default: true
  8489. },
  8490. {
  8491. name: "Universal",
  8492. height: math.unit(20, "gigaparsecs")
  8493. },
  8494. ]
  8495. ))
  8496. characterMakers.push(() => makeCharacter(
  8497. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8498. {
  8499. front: {
  8500. height: math.unit(5 + 2 / 12, "feet"),
  8501. weight: math.unit(120, "lbs"),
  8502. name: "Front",
  8503. image: {
  8504. source: "./media/characters/katherine/front.svg",
  8505. extra: 2075 / 1969
  8506. }
  8507. },
  8508. dress: {
  8509. height: math.unit(5 + 2 / 12, "feet"),
  8510. weight: math.unit(120, "lbs"),
  8511. name: "Dress",
  8512. image: {
  8513. source: "./media/characters/katherine/dress.svg",
  8514. extra: 2258 / 2064
  8515. }
  8516. },
  8517. },
  8518. [
  8519. {
  8520. name: "Micro",
  8521. height: math.unit(1, "inches"),
  8522. default: true
  8523. },
  8524. {
  8525. name: "Normal",
  8526. height: math.unit(5 + 2 / 12, "feet")
  8527. },
  8528. {
  8529. name: "Macro",
  8530. height: math.unit(100, "meters")
  8531. },
  8532. {
  8533. name: "Megamacro",
  8534. height: math.unit(80, "miles")
  8535. },
  8536. ]
  8537. ))
  8538. characterMakers.push(() => makeCharacter(
  8539. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8540. {
  8541. front: {
  8542. height: math.unit(7 + 8 / 12, "feet"),
  8543. weight: math.unit(250, "lbs"),
  8544. name: "Front",
  8545. image: {
  8546. source: "./media/characters/yevis/front.svg",
  8547. extra: 1938 / 1755
  8548. }
  8549. }
  8550. },
  8551. [
  8552. {
  8553. name: "Mortal",
  8554. height: math.unit(7 + 8 / 12, "feet")
  8555. },
  8556. {
  8557. name: "Battle",
  8558. height: math.unit(25 + 11 / 12, "feet")
  8559. },
  8560. {
  8561. name: "Wrath",
  8562. height: math.unit(1654 + 11 / 12, "feet")
  8563. },
  8564. {
  8565. name: "Planet Destroyer",
  8566. height: math.unit(12000, "miles")
  8567. },
  8568. {
  8569. name: "Galaxy Conqueror",
  8570. height: math.unit(1.45, "zettameters"),
  8571. default: true
  8572. },
  8573. {
  8574. name: "Universal War",
  8575. height: math.unit(184, "gigaparsecs")
  8576. },
  8577. {
  8578. name: "Eternity War",
  8579. height: math.unit(1.98e55, "yottaparsecs")
  8580. },
  8581. ]
  8582. ))
  8583. characterMakers.push(() => makeCharacter(
  8584. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8585. {
  8586. front: {
  8587. height: math.unit(5 + 8 / 12, "feet"),
  8588. weight: math.unit(63, "kg"),
  8589. name: "Front",
  8590. image: {
  8591. source: "./media/characters/xavier/front.svg",
  8592. extra: 944 / 883
  8593. }
  8594. },
  8595. frontStretch: {
  8596. height: math.unit(5 + 8 / 12, "feet"),
  8597. weight: math.unit(63, "kg"),
  8598. name: "Stretching",
  8599. image: {
  8600. source: "./media/characters/xavier/front-stretch.svg",
  8601. extra: 962 / 820
  8602. }
  8603. },
  8604. },
  8605. [
  8606. {
  8607. name: "Normal",
  8608. height: math.unit(5 + 8 / 12, "feet")
  8609. },
  8610. {
  8611. name: "Macro",
  8612. height: math.unit(100, "meters"),
  8613. default: true
  8614. },
  8615. {
  8616. name: "McLargeHuge",
  8617. height: math.unit(10, "miles")
  8618. },
  8619. ]
  8620. ))
  8621. characterMakers.push(() => makeCharacter(
  8622. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8623. {
  8624. front: {
  8625. height: math.unit(5 + 5 / 12, "feet"),
  8626. weight: math.unit(150, "lb"),
  8627. name: "Front",
  8628. image: {
  8629. source: "./media/characters/joshii/front.svg",
  8630. extra: 765 / 653,
  8631. bottom: 51 / 816
  8632. }
  8633. },
  8634. foot: {
  8635. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8636. name: "Foot",
  8637. image: {
  8638. source: "./media/characters/joshii/foot.svg"
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Micro",
  8645. height: math.unit(2, "inches"),
  8646. default: true
  8647. },
  8648. {
  8649. name: "Normal",
  8650. height: math.unit(5 + 5 / 12, "feet")
  8651. },
  8652. {
  8653. name: "Macro",
  8654. height: math.unit(785, "feet")
  8655. },
  8656. {
  8657. name: "Megamacro",
  8658. height: math.unit(24.5, "miles")
  8659. },
  8660. ]
  8661. ))
  8662. characterMakers.push(() => makeCharacter(
  8663. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8664. {
  8665. front: {
  8666. height: math.unit(6, "feet"),
  8667. weight: math.unit(150, "lb"),
  8668. name: "Front",
  8669. image: {
  8670. source: "./media/characters/goddess-elizabeth/front.svg",
  8671. extra: 1800 / 1525,
  8672. bottom: 0.005
  8673. }
  8674. },
  8675. foot: {
  8676. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8677. name: "Foot",
  8678. image: {
  8679. source: "./media/characters/goddess-elizabeth/foot.svg"
  8680. }
  8681. },
  8682. mouth: {
  8683. height: math.unit(6, "feet"),
  8684. name: "Mouth",
  8685. image: {
  8686. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8687. }
  8688. },
  8689. },
  8690. [
  8691. {
  8692. name: "Micro",
  8693. height: math.unit(12, "feet")
  8694. },
  8695. {
  8696. name: "Normal",
  8697. height: math.unit(80, "miles"),
  8698. default: true
  8699. },
  8700. {
  8701. name: "Macro",
  8702. height: math.unit(15000, "parsecs")
  8703. },
  8704. ]
  8705. ))
  8706. characterMakers.push(() => makeCharacter(
  8707. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8708. {
  8709. front: {
  8710. height: math.unit(5 + 9 / 12, "feet"),
  8711. weight: math.unit(144, "lb"),
  8712. name: "Front",
  8713. image: {
  8714. source: "./media/characters/kara/front.svg"
  8715. }
  8716. },
  8717. feet: {
  8718. height: math.unit(6 / 6.765, "feet"),
  8719. name: "Kara's Feet",
  8720. rename: true,
  8721. image: {
  8722. source: "./media/characters/kara/feet.svg"
  8723. }
  8724. },
  8725. },
  8726. [
  8727. {
  8728. name: "Normal",
  8729. height: math.unit(5 + 9 / 12, "feet")
  8730. },
  8731. {
  8732. name: "Macro",
  8733. height: math.unit(174, "feet"),
  8734. default: true
  8735. },
  8736. ]
  8737. ))
  8738. characterMakers.push(() => makeCharacter(
  8739. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8740. {
  8741. front: {
  8742. height: math.unit(18, "feet"),
  8743. weight: math.unit(4050, "lb"),
  8744. name: "Front",
  8745. image: {
  8746. source: "./media/characters/tyrone/front.svg",
  8747. extra: 2405 / 2270,
  8748. bottom: 182 / 2587
  8749. }
  8750. },
  8751. },
  8752. [
  8753. {
  8754. name: "Normal",
  8755. height: math.unit(18, "feet"),
  8756. default: true
  8757. },
  8758. {
  8759. name: "Macro",
  8760. height: math.unit(300, "feet")
  8761. },
  8762. {
  8763. name: "Megamacro",
  8764. height: math.unit(15, "km")
  8765. },
  8766. {
  8767. name: "Gigamacro",
  8768. height: math.unit(500, "km")
  8769. },
  8770. {
  8771. name: "Teramacro",
  8772. height: math.unit(0.5, "gigameters")
  8773. },
  8774. {
  8775. name: "Omnimacro",
  8776. height: math.unit(1e252, "yottauniverse")
  8777. },
  8778. ]
  8779. ))
  8780. characterMakers.push(() => makeCharacter(
  8781. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8782. {
  8783. front: {
  8784. height: math.unit(7 + 8 / 12, "feet"),
  8785. weight: math.unit(120, "lb"),
  8786. name: "Front",
  8787. image: {
  8788. source: "./media/characters/danny/front.svg",
  8789. extra: 1490 / 1350
  8790. }
  8791. },
  8792. back: {
  8793. height: math.unit(7 + 8 / 12, "feet"),
  8794. weight: math.unit(120, "lb"),
  8795. name: "Back",
  8796. image: {
  8797. source: "./media/characters/danny/back.svg",
  8798. extra: 1490 / 1350
  8799. }
  8800. },
  8801. },
  8802. [
  8803. {
  8804. name: "Normal",
  8805. height: math.unit(7 + 8 / 12, "feet"),
  8806. default: true
  8807. },
  8808. ]
  8809. ))
  8810. characterMakers.push(() => makeCharacter(
  8811. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8812. {
  8813. front: {
  8814. height: math.unit(3.5, "inches"),
  8815. weight: math.unit(19, "grams"),
  8816. name: "Front",
  8817. image: {
  8818. source: "./media/characters/mallow/front.svg",
  8819. extra: 471 / 431
  8820. }
  8821. },
  8822. back: {
  8823. height: math.unit(3.5, "inches"),
  8824. weight: math.unit(19, "grams"),
  8825. name: "Back",
  8826. image: {
  8827. source: "./media/characters/mallow/back.svg",
  8828. extra: 471 / 431
  8829. }
  8830. },
  8831. },
  8832. [
  8833. {
  8834. name: "Normal",
  8835. height: math.unit(3.5, "inches"),
  8836. default: true
  8837. },
  8838. ]
  8839. ))
  8840. characterMakers.push(() => makeCharacter(
  8841. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8842. {
  8843. front: {
  8844. height: math.unit(9, "feet"),
  8845. weight: math.unit(230, "kg"),
  8846. name: "Front",
  8847. image: {
  8848. source: "./media/characters/starry-aqua/front.svg"
  8849. }
  8850. },
  8851. back: {
  8852. height: math.unit(9, "feet"),
  8853. weight: math.unit(230, "kg"),
  8854. name: "Back",
  8855. image: {
  8856. source: "./media/characters/starry-aqua/back.svg"
  8857. }
  8858. },
  8859. hand: {
  8860. height: math.unit(9 * 0.1168, "feet"),
  8861. name: "Hand",
  8862. image: {
  8863. source: "./media/characters/starry-aqua/hand.svg"
  8864. }
  8865. },
  8866. foot: {
  8867. height: math.unit(9 * 0.18, "feet"),
  8868. name: "Foot",
  8869. image: {
  8870. source: "./media/characters/starry-aqua/foot.svg"
  8871. }
  8872. }
  8873. },
  8874. [
  8875. {
  8876. name: "Micro",
  8877. height: math.unit(3, "inches")
  8878. },
  8879. {
  8880. name: "Normal",
  8881. height: math.unit(9, "feet")
  8882. },
  8883. {
  8884. name: "Macro",
  8885. height: math.unit(300, "feet"),
  8886. default: true
  8887. },
  8888. {
  8889. name: "Megamacro",
  8890. height: math.unit(3200, "feet")
  8891. }
  8892. ]
  8893. ))
  8894. characterMakers.push(() => makeCharacter(
  8895. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8896. {
  8897. front: {
  8898. height: math.unit(6, "feet"),
  8899. weight: math.unit(230, "lb"),
  8900. name: "Front",
  8901. image: {
  8902. source: "./media/characters/luka/front.svg",
  8903. extra: 1,
  8904. bottom: 0.025
  8905. }
  8906. },
  8907. },
  8908. [
  8909. {
  8910. name: "Normal",
  8911. height: math.unit(12 + 8 / 12, "feet"),
  8912. default: true
  8913. },
  8914. {
  8915. name: "Minimacro",
  8916. height: math.unit(20, "feet")
  8917. },
  8918. {
  8919. name: "Macro",
  8920. height: math.unit(250, "feet")
  8921. },
  8922. {
  8923. name: "Megamacro",
  8924. height: math.unit(5, "miles")
  8925. },
  8926. {
  8927. name: "Gigamacro",
  8928. height: math.unit(8000, "miles")
  8929. },
  8930. ]
  8931. ))
  8932. characterMakers.push(() => makeCharacter(
  8933. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8934. {
  8935. front: {
  8936. height: math.unit(6, "feet"),
  8937. weight: math.unit(150, "lb"),
  8938. name: "Front",
  8939. image: {
  8940. source: "./media/characters/natalie-nightring/front.svg",
  8941. extra: 1,
  8942. bottom: 0.06
  8943. }
  8944. },
  8945. },
  8946. [
  8947. {
  8948. name: "Uh Oh",
  8949. height: math.unit(0.1, "mm")
  8950. },
  8951. {
  8952. name: "Small",
  8953. height: math.unit(3, "inches")
  8954. },
  8955. {
  8956. name: "Human Scale",
  8957. height: math.unit(6, "feet")
  8958. },
  8959. {
  8960. name: "Librarian",
  8961. height: math.unit(50, "feet"),
  8962. default: true
  8963. },
  8964. {
  8965. name: "Immense",
  8966. height: math.unit(200, "miles")
  8967. },
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8972. {
  8973. front: {
  8974. height: math.unit(6, "feet"),
  8975. weight: math.unit(180, "lbs"),
  8976. name: "Front",
  8977. image: {
  8978. source: "./media/characters/danni-rosie/front.svg",
  8979. extra: 1260 / 1128,
  8980. bottom: 0.022
  8981. }
  8982. },
  8983. },
  8984. [
  8985. {
  8986. name: "Micro",
  8987. height: math.unit(2, "inches"),
  8988. default: true
  8989. },
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8994. {
  8995. front: {
  8996. height: math.unit(5 + 9 / 12, "feet"),
  8997. weight: math.unit(220, "lb"),
  8998. name: "Front",
  8999. image: {
  9000. source: "./media/characters/samantha-kruse/front.svg",
  9001. extra: (985 / 935),
  9002. bottom: 0.03
  9003. }
  9004. },
  9005. frontUndressed: {
  9006. height: math.unit(5 + 9 / 12, "feet"),
  9007. weight: math.unit(220, "lb"),
  9008. name: "Front (Undressed)",
  9009. image: {
  9010. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9011. extra: (973 / 923),
  9012. bottom: 0.025
  9013. }
  9014. },
  9015. fat: {
  9016. height: math.unit(5 + 9 / 12, "feet"),
  9017. weight: math.unit(900, "lb"),
  9018. name: "Front (Fat)",
  9019. image: {
  9020. source: "./media/characters/samantha-kruse/fat.svg",
  9021. extra: 2688 / 2561
  9022. }
  9023. },
  9024. },
  9025. [
  9026. {
  9027. name: "Normal",
  9028. height: math.unit(5 + 9 / 12, "feet"),
  9029. default: true
  9030. }
  9031. ]
  9032. ))
  9033. characterMakers.push(() => makeCharacter(
  9034. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9035. {
  9036. back: {
  9037. height: math.unit(5 + 4 / 12, "feet"),
  9038. weight: math.unit(4963, "lb"),
  9039. name: "Back",
  9040. image: {
  9041. source: "./media/characters/amelia-rosie/back.svg",
  9042. extra: 1113 / 963,
  9043. bottom: 0.01
  9044. }
  9045. },
  9046. },
  9047. [
  9048. {
  9049. name: "Level 0",
  9050. height: math.unit(5 + 4 / 12, "feet")
  9051. },
  9052. {
  9053. name: "Level 1",
  9054. height: math.unit(164597, "feet"),
  9055. default: true
  9056. },
  9057. {
  9058. name: "Level 2",
  9059. height: math.unit(956243, "miles")
  9060. },
  9061. {
  9062. name: "Level 3",
  9063. height: math.unit(29421709423, "miles")
  9064. },
  9065. {
  9066. name: "Level 4",
  9067. height: math.unit(154, "lightyears")
  9068. },
  9069. {
  9070. name: "Level 5",
  9071. height: math.unit(4738272, "lightyears")
  9072. },
  9073. {
  9074. name: "Level 6",
  9075. height: math.unit(145787152896, "lightyears")
  9076. },
  9077. ]
  9078. ))
  9079. characterMakers.push(() => makeCharacter(
  9080. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9081. {
  9082. front: {
  9083. height: math.unit(5 + 11 / 12, "feet"),
  9084. weight: math.unit(65, "kg"),
  9085. name: "Front",
  9086. image: {
  9087. source: "./media/characters/rook-kitara/front.svg",
  9088. extra: 1347 / 1274,
  9089. bottom: 0.005
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Totally Unfair",
  9096. height: math.unit(1.8, "mm")
  9097. },
  9098. {
  9099. name: "Lap Rookie",
  9100. height: math.unit(1.4, "feet")
  9101. },
  9102. {
  9103. name: "Normal",
  9104. height: math.unit(5 + 11 / 12, "feet"),
  9105. default: true
  9106. },
  9107. {
  9108. name: "How Did This Happen",
  9109. height: math.unit(80, "miles")
  9110. }
  9111. ]
  9112. ))
  9113. characterMakers.push(() => makeCharacter(
  9114. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9115. {
  9116. front: {
  9117. height: math.unit(7, "feet"),
  9118. weight: math.unit(300, "lb"),
  9119. name: "Front",
  9120. image: {
  9121. source: "./media/characters/pisces/front.svg",
  9122. extra: 2255 / 2115,
  9123. bottom: 0.03
  9124. }
  9125. },
  9126. back: {
  9127. height: math.unit(7, "feet"),
  9128. weight: math.unit(300, "lb"),
  9129. name: "Back",
  9130. image: {
  9131. source: "./media/characters/pisces/back.svg",
  9132. extra: 2146 / 2055,
  9133. bottom: 0.04
  9134. }
  9135. },
  9136. },
  9137. [
  9138. {
  9139. name: "Normal",
  9140. height: math.unit(7, "feet"),
  9141. default: true
  9142. },
  9143. {
  9144. name: "Swimming Pool",
  9145. height: math.unit(12.2, "meters")
  9146. },
  9147. {
  9148. name: "Olympic Swimming Pool",
  9149. height: math.unit(56.3, "meters")
  9150. },
  9151. {
  9152. name: "Lake Superior",
  9153. height: math.unit(93900, "meters")
  9154. },
  9155. {
  9156. name: "Mediterranean Sea",
  9157. height: math.unit(644457, "meters")
  9158. },
  9159. {
  9160. name: "World's Oceans",
  9161. height: math.unit(4567491, "meters")
  9162. },
  9163. ]
  9164. ))
  9165. characterMakers.push(() => makeCharacter(
  9166. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9167. {
  9168. front: {
  9169. height: math.unit(2.3, "meters"),
  9170. weight: math.unit(120, "kg"),
  9171. name: "Front",
  9172. image: {
  9173. source: "./media/characters/zelas/front.svg"
  9174. }
  9175. },
  9176. side: {
  9177. height: math.unit(2.3, "meters"),
  9178. weight: math.unit(120, "kg"),
  9179. name: "Side",
  9180. image: {
  9181. source: "./media/characters/zelas/side.svg"
  9182. }
  9183. },
  9184. back: {
  9185. height: math.unit(2.3, "meters"),
  9186. weight: math.unit(120, "kg"),
  9187. name: "Back",
  9188. image: {
  9189. source: "./media/characters/zelas/back.svg"
  9190. }
  9191. },
  9192. foot: {
  9193. height: math.unit(1.116, "feet"),
  9194. name: "Foot",
  9195. image: {
  9196. source: "./media/characters/zelas/foot.svg"
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(2.3, "meters")
  9204. },
  9205. {
  9206. name: "Macro",
  9207. height: math.unit(30, "meters"),
  9208. default: true
  9209. },
  9210. ]
  9211. ))
  9212. characterMakers.push(() => makeCharacter(
  9213. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9214. {
  9215. front: {
  9216. height: math.unit(1, "inch"),
  9217. weight: math.unit(0.21, "grams"),
  9218. name: "Front",
  9219. image: {
  9220. source: "./media/characters/talbot/front.svg",
  9221. extra: 594 / 544
  9222. }
  9223. },
  9224. },
  9225. [
  9226. {
  9227. name: "Micro",
  9228. height: math.unit(1, "inch"),
  9229. default: true
  9230. },
  9231. ]
  9232. ))
  9233. characterMakers.push(() => makeCharacter(
  9234. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9235. {
  9236. front: {
  9237. height: math.unit(3 + 3 / 12, "feet"),
  9238. weight: math.unit(51.8, "lb"),
  9239. name: "Front",
  9240. image: {
  9241. source: "./media/characters/fliss/front.svg",
  9242. extra: 840 / 640
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Teeny Tiny",
  9249. height: math.unit(1, "mm")
  9250. },
  9251. {
  9252. name: "Small",
  9253. height: math.unit(1, "inch"),
  9254. default: true
  9255. },
  9256. {
  9257. name: "Standard Sylveon",
  9258. height: math.unit(3 + 3 / 12, "feet")
  9259. },
  9260. {
  9261. name: "Large Nuisance",
  9262. height: math.unit(33, "feet")
  9263. },
  9264. {
  9265. name: "City Filler",
  9266. height: math.unit(3000, "feet")
  9267. },
  9268. {
  9269. name: "New Horizon",
  9270. height: math.unit(6000, "miles")
  9271. },
  9272. ]
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9276. {
  9277. front: {
  9278. height: math.unit(5, "cm"),
  9279. weight: math.unit(1.94, "g"),
  9280. name: "Front",
  9281. image: {
  9282. source: "./media/characters/fleta/front.svg",
  9283. extra: 835 / 803
  9284. }
  9285. },
  9286. back: {
  9287. height: math.unit(5, "cm"),
  9288. weight: math.unit(1.94, "g"),
  9289. name: "Back",
  9290. image: {
  9291. source: "./media/characters/fleta/back.svg",
  9292. extra: 835 / 803
  9293. }
  9294. },
  9295. },
  9296. [
  9297. {
  9298. name: "Micro",
  9299. height: math.unit(5, "cm"),
  9300. default: true
  9301. },
  9302. ]
  9303. ))
  9304. characterMakers.push(() => makeCharacter(
  9305. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9306. {
  9307. front: {
  9308. height: math.unit(6, "feet"),
  9309. weight: math.unit(225, "lb"),
  9310. name: "Front",
  9311. image: {
  9312. source: "./media/characters/dominic/front.svg",
  9313. extra: 1770 / 1620,
  9314. bottom: 0.025
  9315. }
  9316. },
  9317. back: {
  9318. height: math.unit(6, "feet"),
  9319. weight: math.unit(225, "lb"),
  9320. name: "Back",
  9321. image: {
  9322. source: "./media/characters/dominic/back.svg",
  9323. extra: 1745 / 1620,
  9324. bottom: 0.065
  9325. }
  9326. },
  9327. },
  9328. [
  9329. {
  9330. name: "Nano",
  9331. height: math.unit(0.1, "mm")
  9332. },
  9333. {
  9334. name: "Micro-",
  9335. height: math.unit(1, "mm")
  9336. },
  9337. {
  9338. name: "Micro",
  9339. height: math.unit(4, "inches")
  9340. },
  9341. {
  9342. name: "Normal",
  9343. height: math.unit(6 + 4 / 12, "feet"),
  9344. default: true
  9345. },
  9346. {
  9347. name: "Macro",
  9348. height: math.unit(115, "feet")
  9349. },
  9350. {
  9351. name: "Macro+",
  9352. height: math.unit(955, "feet")
  9353. },
  9354. {
  9355. name: "Megamacro",
  9356. height: math.unit(8990, "feet")
  9357. },
  9358. {
  9359. name: "Gigmacro",
  9360. height: math.unit(9310, "miles")
  9361. },
  9362. {
  9363. name: "Teramacro",
  9364. height: math.unit(1567005010, "miles")
  9365. },
  9366. {
  9367. name: "Examacro",
  9368. height: math.unit(1425, "parsecs")
  9369. },
  9370. ]
  9371. ))
  9372. characterMakers.push(() => makeCharacter(
  9373. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9374. {
  9375. front: {
  9376. height: math.unit(400, "feet"),
  9377. weight: math.unit(44444444, "lb"),
  9378. name: "Front",
  9379. image: {
  9380. source: "./media/characters/major-colonel/front.svg"
  9381. }
  9382. },
  9383. back: {
  9384. height: math.unit(400, "feet"),
  9385. weight: math.unit(44444444, "lb"),
  9386. name: "Back",
  9387. image: {
  9388. source: "./media/characters/major-colonel/back.svg"
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Macro",
  9395. height: math.unit(400, "feet"),
  9396. default: true
  9397. },
  9398. ]
  9399. ))
  9400. characterMakers.push(() => makeCharacter(
  9401. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9402. {
  9403. catFront: {
  9404. height: math.unit(6, "feet"),
  9405. weight: math.unit(120, "lb"),
  9406. name: "Front (Cat Side)",
  9407. image: {
  9408. source: "./media/characters/axel-lycan/cat-front.svg",
  9409. extra: 430 / 402,
  9410. bottom: 43 / 472.35
  9411. }
  9412. },
  9413. catBack: {
  9414. height: math.unit(6, "feet"),
  9415. weight: math.unit(120, "lb"),
  9416. name: "Back (Cat Side)",
  9417. image: {
  9418. source: "./media/characters/axel-lycan/cat-back.svg",
  9419. extra: 447 / 419,
  9420. bottom: 23.3 / 469
  9421. }
  9422. },
  9423. wolfFront: {
  9424. height: math.unit(6, "feet"),
  9425. weight: math.unit(120, "lb"),
  9426. name: "Front (Wolf Side)",
  9427. image: {
  9428. source: "./media/characters/axel-lycan/wolf-front.svg",
  9429. extra: 485 / 456,
  9430. bottom: 19 / 504
  9431. }
  9432. },
  9433. wolfBack: {
  9434. height: math.unit(6, "feet"),
  9435. weight: math.unit(120, "lb"),
  9436. name: "Back (Wolf Side)",
  9437. image: {
  9438. source: "./media/characters/axel-lycan/wolf-back.svg",
  9439. extra: 475 / 438,
  9440. bottom: 39.2 / 514
  9441. }
  9442. },
  9443. },
  9444. [
  9445. {
  9446. name: "Macro",
  9447. height: math.unit(1, "km"),
  9448. default: true
  9449. },
  9450. ]
  9451. ))
  9452. characterMakers.push(() => makeCharacter(
  9453. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9454. {
  9455. front: {
  9456. height: math.unit(5 + 9 / 12, "feet"),
  9457. weight: math.unit(175, "lb"),
  9458. name: "Front",
  9459. image: {
  9460. source: "./media/characters/vanrel-hyena/front.svg",
  9461. extra: 1086 / 1010,
  9462. bottom: 0.04
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Normal",
  9469. height: math.unit(5 + 9 / 12, "feet"),
  9470. default: true
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9476. {
  9477. front: {
  9478. height: math.unit(6, "feet"),
  9479. weight: math.unit(103, "lb"),
  9480. name: "Front",
  9481. image: {
  9482. source: "./media/characters/abbott-absol/front.svg",
  9483. extra: 2010 / 1842
  9484. }
  9485. },
  9486. },
  9487. [
  9488. {
  9489. name: "Megamicro",
  9490. height: math.unit(0.1, "mm")
  9491. },
  9492. {
  9493. name: "Micro",
  9494. height: math.unit(1, "inch")
  9495. },
  9496. {
  9497. name: "Normal",
  9498. height: math.unit(6, "feet"),
  9499. default: true
  9500. },
  9501. ]
  9502. ))
  9503. characterMakers.push(() => makeCharacter(
  9504. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9505. {
  9506. front: {
  9507. height: math.unit(6, "feet"),
  9508. weight: math.unit(264, "lb"),
  9509. name: "Front",
  9510. image: {
  9511. source: "./media/characters/hector/front.svg",
  9512. extra: 2280 / 2130,
  9513. bottom: 0.07
  9514. }
  9515. },
  9516. },
  9517. [
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(12.25, "foot"),
  9521. default: true
  9522. },
  9523. {
  9524. name: "Macro",
  9525. height: math.unit(160, "feet")
  9526. },
  9527. ]
  9528. ))
  9529. characterMakers.push(() => makeCharacter(
  9530. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9531. {
  9532. front: {
  9533. height: math.unit(6, "feet"),
  9534. weight: math.unit(150, "lb"),
  9535. name: "Front",
  9536. image: {
  9537. source: "./media/characters/sal/front.svg",
  9538. extra: 1846 / 1699,
  9539. bottom: 0.04
  9540. }
  9541. },
  9542. },
  9543. [
  9544. {
  9545. name: "Megamacro",
  9546. height: math.unit(10, "miles"),
  9547. default: true
  9548. },
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9553. {
  9554. front: {
  9555. height: math.unit(3, "meters"),
  9556. weight: math.unit(450, "kg"),
  9557. name: "front",
  9558. image: {
  9559. source: "./media/characters/ranger/front.svg",
  9560. extra: 2401 / 2243,
  9561. bottom: 0.05
  9562. }
  9563. },
  9564. },
  9565. [
  9566. {
  9567. name: "Normal",
  9568. height: math.unit(3, "meters"),
  9569. default: true
  9570. },
  9571. ]
  9572. ))
  9573. characterMakers.push(() => makeCharacter(
  9574. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9575. {
  9576. front: {
  9577. height: math.unit(14, "feet"),
  9578. weight: math.unit(800, "kg"),
  9579. name: "Front",
  9580. image: {
  9581. source: "./media/characters/theresa/front.svg",
  9582. extra: 3575 / 3346,
  9583. bottom: 0.03
  9584. }
  9585. },
  9586. },
  9587. [
  9588. {
  9589. name: "Normal",
  9590. height: math.unit(14, "feet"),
  9591. default: true
  9592. },
  9593. ]
  9594. ))
  9595. characterMakers.push(() => makeCharacter(
  9596. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9597. {
  9598. front: {
  9599. height: math.unit(6, "feet"),
  9600. weight: math.unit(3, "kg"),
  9601. name: "Front",
  9602. image: {
  9603. source: "./media/characters/ine/front.svg",
  9604. extra: 678 / 539,
  9605. bottom: 0.023
  9606. }
  9607. },
  9608. },
  9609. [
  9610. {
  9611. name: "Normal",
  9612. height: math.unit(2.265, "feet"),
  9613. default: true
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9619. {
  9620. front: {
  9621. height: math.unit(5, "feet"),
  9622. weight: math.unit(30, "kg"),
  9623. name: "Front",
  9624. image: {
  9625. source: "./media/characters/vial/front.svg",
  9626. extra: 1365 / 1277,
  9627. bottom: 0.04
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Normal",
  9634. height: math.unit(5, "feet"),
  9635. default: true
  9636. },
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9641. {
  9642. side: {
  9643. height: math.unit(3.4, "meters"),
  9644. weight: math.unit(1000, "lb"),
  9645. name: "Side",
  9646. image: {
  9647. source: "./media/characters/rovoska/side.svg",
  9648. extra: 4403 / 1515
  9649. }
  9650. },
  9651. },
  9652. [
  9653. {
  9654. name: "Normal",
  9655. height: math.unit(3.4, "meters"),
  9656. default: true
  9657. },
  9658. ]
  9659. ))
  9660. characterMakers.push(() => makeCharacter(
  9661. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9662. {
  9663. front: {
  9664. height: math.unit(8, "feet"),
  9665. weight: math.unit(315, "lb"),
  9666. name: "Front",
  9667. image: {
  9668. source: "./media/characters/gunner-rotthbauer/front.svg"
  9669. }
  9670. },
  9671. back: {
  9672. height: math.unit(8, "feet"),
  9673. weight: math.unit(315, "lb"),
  9674. name: "Back",
  9675. image: {
  9676. source: "./media/characters/gunner-rotthbauer/back.svg"
  9677. }
  9678. },
  9679. },
  9680. [
  9681. {
  9682. name: "Micro",
  9683. height: math.unit(3.5, "inches")
  9684. },
  9685. {
  9686. name: "Normal",
  9687. height: math.unit(8, "feet"),
  9688. default: true
  9689. },
  9690. {
  9691. name: "Macro",
  9692. height: math.unit(250, "feet")
  9693. },
  9694. {
  9695. name: "Megamacro",
  9696. height: math.unit(1, "AU")
  9697. },
  9698. ]
  9699. ))
  9700. characterMakers.push(() => makeCharacter(
  9701. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9702. {
  9703. front: {
  9704. height: math.unit(5 + 5 / 12, "feet"),
  9705. weight: math.unit(140, "lb"),
  9706. name: "Front",
  9707. image: {
  9708. source: "./media/characters/allatia/front.svg",
  9709. extra: 1227 / 1180,
  9710. bottom: 0.027
  9711. }
  9712. },
  9713. },
  9714. [
  9715. {
  9716. name: "Normal",
  9717. height: math.unit(5 + 5 / 12, "feet")
  9718. },
  9719. {
  9720. name: "Macro",
  9721. height: math.unit(250, "feet"),
  9722. default: true
  9723. },
  9724. {
  9725. name: "Megamacro",
  9726. height: math.unit(8, "miles")
  9727. }
  9728. ]
  9729. ))
  9730. characterMakers.push(() => makeCharacter(
  9731. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9732. {
  9733. front: {
  9734. height: math.unit(6, "feet"),
  9735. weight: math.unit(120, "lb"),
  9736. name: "Front",
  9737. image: {
  9738. source: "./media/characters/tene/front.svg",
  9739. extra: 1728 / 1578,
  9740. bottom: 0.022
  9741. }
  9742. },
  9743. stomping: {
  9744. height: math.unit(2.025, "meters"),
  9745. weight: math.unit(120, "lb"),
  9746. name: "Stomping",
  9747. image: {
  9748. source: "./media/characters/tene/stomping.svg",
  9749. extra: 938 / 873,
  9750. bottom: 0.01
  9751. }
  9752. },
  9753. sitting: {
  9754. height: math.unit(1, "meter"),
  9755. weight: math.unit(120, "lb"),
  9756. name: "Sitting",
  9757. image: {
  9758. source: "./media/characters/tene/sitting.svg",
  9759. extra: 437 / 415,
  9760. bottom: 0.1
  9761. }
  9762. },
  9763. feral: {
  9764. height: math.unit(3.9, "feet"),
  9765. weight: math.unit(250, "lb"),
  9766. name: "Feral",
  9767. image: {
  9768. source: "./media/characters/tene/feral.svg",
  9769. extra: 717 / 458,
  9770. bottom: 0.179
  9771. }
  9772. },
  9773. },
  9774. [
  9775. {
  9776. name: "Normal",
  9777. height: math.unit(6, "feet")
  9778. },
  9779. {
  9780. name: "Macro",
  9781. height: math.unit(300, "feet"),
  9782. default: true
  9783. },
  9784. {
  9785. name: "Megamacro",
  9786. height: math.unit(5, "miles")
  9787. },
  9788. ]
  9789. ))
  9790. characterMakers.push(() => makeCharacter(
  9791. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9792. {
  9793. side: {
  9794. height: math.unit(6, "feet"),
  9795. name: "Side",
  9796. image: {
  9797. source: "./media/characters/evander/side.svg",
  9798. extra: 877 / 477
  9799. }
  9800. },
  9801. },
  9802. [
  9803. {
  9804. name: "Normal",
  9805. height: math.unit(0.83, "meters"),
  9806. default: true
  9807. },
  9808. ]
  9809. ))
  9810. characterMakers.push(() => makeCharacter(
  9811. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9812. {
  9813. front: {
  9814. height: math.unit(12, "feet"),
  9815. weight: math.unit(1000, "lb"),
  9816. name: "Front",
  9817. image: {
  9818. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9819. extra: 1762 / 1611
  9820. }
  9821. },
  9822. back: {
  9823. height: math.unit(12, "feet"),
  9824. weight: math.unit(1000, "lb"),
  9825. name: "Back",
  9826. image: {
  9827. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9828. extra: 1762 / 1611
  9829. }
  9830. },
  9831. },
  9832. [
  9833. {
  9834. name: "Normal",
  9835. height: math.unit(12, "feet"),
  9836. default: true
  9837. },
  9838. {
  9839. name: "Kaiju",
  9840. height: math.unit(150, "feet")
  9841. },
  9842. ]
  9843. ))
  9844. characterMakers.push(() => makeCharacter(
  9845. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9846. {
  9847. front: {
  9848. height: math.unit(6, "feet"),
  9849. weight: math.unit(150, "lb"),
  9850. name: "Front",
  9851. image: {
  9852. source: "./media/characters/zero-alurus/front.svg"
  9853. }
  9854. },
  9855. back: {
  9856. height: math.unit(6, "feet"),
  9857. weight: math.unit(150, "lb"),
  9858. name: "Back",
  9859. image: {
  9860. source: "./media/characters/zero-alurus/back.svg"
  9861. }
  9862. },
  9863. },
  9864. [
  9865. {
  9866. name: "Normal",
  9867. height: math.unit(5 + 10 / 12, "feet")
  9868. },
  9869. {
  9870. name: "Macro",
  9871. height: math.unit(60, "feet"),
  9872. default: true
  9873. },
  9874. {
  9875. name: "Macro+",
  9876. height: math.unit(450, "feet")
  9877. },
  9878. ]
  9879. ))
  9880. characterMakers.push(() => makeCharacter(
  9881. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9882. {
  9883. front: {
  9884. height: math.unit(6, "feet"),
  9885. weight: math.unit(200, "lb"),
  9886. name: "Front",
  9887. image: {
  9888. source: "./media/characters/mega-shi/front.svg",
  9889. extra: 1279 / 1250,
  9890. bottom: 0.02
  9891. }
  9892. },
  9893. back: {
  9894. height: math.unit(6, "feet"),
  9895. weight: math.unit(200, "lb"),
  9896. name: "Back",
  9897. image: {
  9898. source: "./media/characters/mega-shi/back.svg",
  9899. extra: 1279 / 1250,
  9900. bottom: 0.02
  9901. }
  9902. },
  9903. },
  9904. [
  9905. {
  9906. name: "Micro",
  9907. height: math.unit(16 + 6 / 12, "feet")
  9908. },
  9909. {
  9910. name: "Third Dimension",
  9911. height: math.unit(40, "meters")
  9912. },
  9913. {
  9914. name: "Normal",
  9915. height: math.unit(660, "feet"),
  9916. default: true
  9917. },
  9918. {
  9919. name: "Megamacro",
  9920. height: math.unit(10, "miles")
  9921. },
  9922. {
  9923. name: "Planetary Launch",
  9924. height: math.unit(500, "miles")
  9925. },
  9926. {
  9927. name: "Interstellar",
  9928. height: math.unit(1e9, "miles")
  9929. },
  9930. {
  9931. name: "Leaving the Universe",
  9932. height: math.unit(1, "gigaparsec")
  9933. },
  9934. {
  9935. name: "Travelling Universes",
  9936. height: math.unit(30e15, "parsecs")
  9937. },
  9938. ]
  9939. ))
  9940. characterMakers.push(() => makeCharacter(
  9941. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9942. {
  9943. front: {
  9944. height: math.unit(6, "feet"),
  9945. weight: math.unit(150, "lb"),
  9946. name: "Front",
  9947. image: {
  9948. source: "./media/characters/odyssey/front.svg",
  9949. extra: 1782 / 1582,
  9950. bottom: 0.01
  9951. }
  9952. },
  9953. side: {
  9954. height: math.unit(5.7, "feet"),
  9955. weight: math.unit(140, "lb"),
  9956. name: "Side",
  9957. image: {
  9958. source: "./media/characters/odyssey/side.svg",
  9959. extra: 6462 / 5700
  9960. }
  9961. },
  9962. },
  9963. [
  9964. {
  9965. name: "Normal",
  9966. height: math.unit(5 + 4 / 12, "feet")
  9967. },
  9968. {
  9969. name: "Macro",
  9970. height: math.unit(1, "km")
  9971. },
  9972. {
  9973. name: "Megamacro",
  9974. height: math.unit(3000, "km")
  9975. },
  9976. {
  9977. name: "Gigamacro",
  9978. height: math.unit(1, "AU"),
  9979. default: true
  9980. },
  9981. {
  9982. name: "Omniversal",
  9983. height: math.unit(100e14, "lightyears")
  9984. },
  9985. ]
  9986. ))
  9987. characterMakers.push(() => makeCharacter(
  9988. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9989. {
  9990. front: {
  9991. height: math.unit(6, "feet"),
  9992. weight: math.unit(300, "lb"),
  9993. name: "Front",
  9994. image: {
  9995. source: "./media/characters/mekuto/front.svg",
  9996. extra: 921 / 832,
  9997. bottom: 0.03
  9998. }
  9999. },
  10000. hand: {
  10001. height: math.unit(6 / 10.24, "feet"),
  10002. name: "Hand",
  10003. image: {
  10004. source: "./media/characters/mekuto/hand.svg"
  10005. }
  10006. },
  10007. foot: {
  10008. height: math.unit(6 / 5.05, "feet"),
  10009. name: "Foot",
  10010. image: {
  10011. source: "./media/characters/mekuto/foot.svg"
  10012. }
  10013. },
  10014. },
  10015. [
  10016. {
  10017. name: "Minimicro",
  10018. height: math.unit(0.2, "inches")
  10019. },
  10020. {
  10021. name: "Micro",
  10022. height: math.unit(1.5, "inches")
  10023. },
  10024. {
  10025. name: "Normal",
  10026. height: math.unit(5 + 11 / 12, "feet"),
  10027. default: true
  10028. },
  10029. {
  10030. name: "Minimacro",
  10031. height: math.unit(17 + 9 / 12, "feet")
  10032. },
  10033. {
  10034. name: "Macro",
  10035. height: math.unit(177.5, "feet")
  10036. },
  10037. {
  10038. name: "Megamacro",
  10039. height: math.unit(152, "miles")
  10040. },
  10041. ]
  10042. ))
  10043. characterMakers.push(() => makeCharacter(
  10044. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10045. {
  10046. front: {
  10047. height: math.unit(6.5, "inches"),
  10048. weight: math.unit(13, "oz"),
  10049. name: "Front",
  10050. image: {
  10051. source: "./media/characters/dafydd-tomos/front.svg",
  10052. extra: 2990 / 2603,
  10053. bottom: 0.03
  10054. }
  10055. },
  10056. },
  10057. [
  10058. {
  10059. name: "Micro",
  10060. height: math.unit(6.5, "inches"),
  10061. default: true
  10062. },
  10063. ]
  10064. ))
  10065. characterMakers.push(() => makeCharacter(
  10066. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10067. {
  10068. front: {
  10069. height: math.unit(6, "feet"),
  10070. weight: math.unit(150, "lb"),
  10071. name: "Front",
  10072. image: {
  10073. source: "./media/characters/splinter/front.svg",
  10074. extra: 2990 / 2882,
  10075. bottom: 0.04
  10076. }
  10077. },
  10078. back: {
  10079. height: math.unit(6, "feet"),
  10080. weight: math.unit(150, "lb"),
  10081. name: "Back",
  10082. image: {
  10083. source: "./media/characters/splinter/back.svg",
  10084. extra: 2990 / 2882,
  10085. bottom: 0.04
  10086. }
  10087. },
  10088. },
  10089. [
  10090. {
  10091. name: "Normal",
  10092. height: math.unit(6, "feet")
  10093. },
  10094. {
  10095. name: "Macro",
  10096. height: math.unit(230, "meters"),
  10097. default: true
  10098. },
  10099. ]
  10100. ))
  10101. characterMakers.push(() => makeCharacter(
  10102. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10103. {
  10104. front: {
  10105. height: math.unit(4 + 10 / 12, "feet"),
  10106. weight: math.unit(480, "lb"),
  10107. name: "Front",
  10108. image: {
  10109. source: "./media/characters/snow-gabumon/front.svg",
  10110. extra: 1140 / 963,
  10111. bottom: 0.058
  10112. }
  10113. },
  10114. back: {
  10115. height: math.unit(4 + 10 / 12, "feet"),
  10116. weight: math.unit(480, "lb"),
  10117. name: "Back",
  10118. image: {
  10119. source: "./media/characters/snow-gabumon/back.svg",
  10120. extra: 1115 / 962,
  10121. bottom: 0.041
  10122. }
  10123. },
  10124. frontUndresed: {
  10125. height: math.unit(4 + 10 / 12, "feet"),
  10126. weight: math.unit(480, "lb"),
  10127. name: "Front (Undressed)",
  10128. image: {
  10129. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10130. extra: 1061 / 960,
  10131. bottom: 0.045
  10132. }
  10133. },
  10134. },
  10135. [
  10136. {
  10137. name: "Micro",
  10138. height: math.unit(1, "inch")
  10139. },
  10140. {
  10141. name: "Normal",
  10142. height: math.unit(4 + 10 / 12, "feet"),
  10143. default: true
  10144. },
  10145. {
  10146. name: "Macro",
  10147. height: math.unit(200, "feet")
  10148. },
  10149. {
  10150. name: "Megamacro",
  10151. height: math.unit(120, "miles")
  10152. },
  10153. {
  10154. name: "Gigamacro",
  10155. height: math.unit(9800, "miles")
  10156. },
  10157. ]
  10158. ))
  10159. characterMakers.push(() => makeCharacter(
  10160. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10161. {
  10162. front: {
  10163. height: math.unit(1.7, "meters"),
  10164. weight: math.unit(140, "lb"),
  10165. name: "Front",
  10166. image: {
  10167. source: "./media/characters/moody/front.svg",
  10168. extra: 3226 / 3007,
  10169. bottom: 0.087
  10170. }
  10171. },
  10172. },
  10173. [
  10174. {
  10175. name: "Micro",
  10176. height: math.unit(1, "mm")
  10177. },
  10178. {
  10179. name: "Normal",
  10180. height: math.unit(1.7, "meters"),
  10181. default: true
  10182. },
  10183. {
  10184. name: "Macro",
  10185. height: math.unit(80, "meters")
  10186. },
  10187. {
  10188. name: "Macro+",
  10189. height: math.unit(500, "meters")
  10190. },
  10191. ]
  10192. ))
  10193. characterMakers.push(() => makeCharacter(
  10194. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10195. {
  10196. front: {
  10197. height: math.unit(6, "feet"),
  10198. weight: math.unit(150, "lb"),
  10199. name: "Front",
  10200. image: {
  10201. source: "./media/characters/zyas/front.svg",
  10202. extra: 1180 / 1120,
  10203. bottom: 0.045
  10204. }
  10205. },
  10206. },
  10207. [
  10208. {
  10209. name: "Normal",
  10210. height: math.unit(10, "feet"),
  10211. default: true
  10212. },
  10213. {
  10214. name: "Macro",
  10215. height: math.unit(500, "feet")
  10216. },
  10217. {
  10218. name: "Megamacro",
  10219. height: math.unit(5, "miles")
  10220. },
  10221. {
  10222. name: "Teramacro",
  10223. height: math.unit(150000, "miles")
  10224. },
  10225. ]
  10226. ))
  10227. characterMakers.push(() => makeCharacter(
  10228. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10229. {
  10230. front: {
  10231. height: math.unit(6, "feet"),
  10232. weight: math.unit(150, "lb"),
  10233. name: "Front",
  10234. image: {
  10235. source: "./media/characters/cuon/front.svg",
  10236. extra: 1390 / 1320,
  10237. bottom: 0.008
  10238. }
  10239. },
  10240. },
  10241. [
  10242. {
  10243. name: "Micro",
  10244. height: math.unit(3, "inches")
  10245. },
  10246. {
  10247. name: "Normal",
  10248. height: math.unit(18 + 9 / 12, "feet"),
  10249. default: true
  10250. },
  10251. {
  10252. name: "Macro",
  10253. height: math.unit(360, "feet")
  10254. },
  10255. {
  10256. name: "Megamacro",
  10257. height: math.unit(360, "miles")
  10258. },
  10259. ]
  10260. ))
  10261. characterMakers.push(() => makeCharacter(
  10262. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10263. {
  10264. front: {
  10265. height: math.unit(2.4, "meters"),
  10266. weight: math.unit(70, "kg"),
  10267. name: "Front",
  10268. image: {
  10269. source: "./media/characters/nyanuxk/front.svg",
  10270. extra: 1172 / 1084,
  10271. bottom: 0.065
  10272. }
  10273. },
  10274. side: {
  10275. height: math.unit(2.4, "meters"),
  10276. weight: math.unit(70, "kg"),
  10277. name: "Side",
  10278. image: {
  10279. source: "./media/characters/nyanuxk/side.svg",
  10280. extra: 1190 / 1132,
  10281. bottom: 0.007
  10282. }
  10283. },
  10284. back: {
  10285. height: math.unit(2.4, "meters"),
  10286. weight: math.unit(70, "kg"),
  10287. name: "Back",
  10288. image: {
  10289. source: "./media/characters/nyanuxk/back.svg",
  10290. extra: 1200 / 1141,
  10291. bottom: 0.015
  10292. }
  10293. },
  10294. foot: {
  10295. height: math.unit(0.52, "meters"),
  10296. name: "Foot",
  10297. image: {
  10298. source: "./media/characters/nyanuxk/foot.svg"
  10299. }
  10300. },
  10301. },
  10302. [
  10303. {
  10304. name: "Micro",
  10305. height: math.unit(2, "cm")
  10306. },
  10307. {
  10308. name: "Normal",
  10309. height: math.unit(2.4, "meters"),
  10310. default: true
  10311. },
  10312. {
  10313. name: "Smaller Macro",
  10314. height: math.unit(120, "meters")
  10315. },
  10316. {
  10317. name: "Bigger Macro",
  10318. height: math.unit(1.2, "km")
  10319. },
  10320. {
  10321. name: "Megamacro",
  10322. height: math.unit(15, "kilometers")
  10323. },
  10324. {
  10325. name: "Gigamacro",
  10326. height: math.unit(2000, "km")
  10327. },
  10328. {
  10329. name: "Teramacro",
  10330. height: math.unit(500000, "km")
  10331. },
  10332. ]
  10333. ))
  10334. characterMakers.push(() => makeCharacter(
  10335. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10336. {
  10337. side: {
  10338. height: math.unit(6, "feet"),
  10339. name: "Side",
  10340. image: {
  10341. source: "./media/characters/ailbhe/side.svg",
  10342. extra: 757 / 464,
  10343. bottom: 0.041
  10344. }
  10345. },
  10346. },
  10347. [
  10348. {
  10349. name: "Normal",
  10350. height: math.unit(1.07, "meters"),
  10351. default: true
  10352. },
  10353. ]
  10354. ))
  10355. characterMakers.push(() => makeCharacter(
  10356. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10357. {
  10358. front: {
  10359. height: math.unit(6, "feet"),
  10360. weight: math.unit(120, "kg"),
  10361. name: "Front",
  10362. image: {
  10363. source: "./media/characters/zevulfius/front.svg",
  10364. extra: 965 / 903
  10365. }
  10366. },
  10367. side: {
  10368. height: math.unit(6, "feet"),
  10369. weight: math.unit(120, "kg"),
  10370. name: "Side",
  10371. image: {
  10372. source: "./media/characters/zevulfius/side.svg",
  10373. extra: 939 / 900
  10374. }
  10375. },
  10376. back: {
  10377. height: math.unit(6, "feet"),
  10378. weight: math.unit(120, "kg"),
  10379. name: "Back",
  10380. image: {
  10381. source: "./media/characters/zevulfius/back.svg",
  10382. extra: 918 / 854,
  10383. bottom: 0.005
  10384. }
  10385. },
  10386. foot: {
  10387. height: math.unit(6 / 3.72, "feet"),
  10388. name: "Foot",
  10389. image: {
  10390. source: "./media/characters/zevulfius/foot.svg"
  10391. }
  10392. },
  10393. },
  10394. [
  10395. {
  10396. name: "Macro",
  10397. height: math.unit(750, "meters")
  10398. },
  10399. {
  10400. name: "Megamacro",
  10401. height: math.unit(20, "km"),
  10402. default: true
  10403. },
  10404. {
  10405. name: "Gigamacro",
  10406. height: math.unit(2000, "km")
  10407. },
  10408. {
  10409. name: "Teramacro",
  10410. height: math.unit(250000, "km")
  10411. },
  10412. ]
  10413. ))
  10414. characterMakers.push(() => makeCharacter(
  10415. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10416. {
  10417. front: {
  10418. height: math.unit(100, "feet"),
  10419. weight: math.unit(350, "kg"),
  10420. name: "Front",
  10421. image: {
  10422. source: "./media/characters/rikes/front.svg",
  10423. extra: 1565 / 1483,
  10424. bottom: 0.017
  10425. }
  10426. },
  10427. },
  10428. [
  10429. {
  10430. name: "Macro",
  10431. height: math.unit(100, "feet"),
  10432. default: true
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10438. {
  10439. anthro: {
  10440. height: math.unit(8, "feet"),
  10441. weight: math.unit(120, "kg"),
  10442. name: "Anthro",
  10443. image: {
  10444. source: "./media/characters/adam-silver-mane/anthro.svg",
  10445. extra: 5743 / 5339,
  10446. bottom: 0.07
  10447. }
  10448. },
  10449. taur: {
  10450. height: math.unit(16, "feet"),
  10451. weight: math.unit(1500, "kg"),
  10452. name: "Taur",
  10453. image: {
  10454. source: "./media/characters/adam-silver-mane/taur.svg",
  10455. extra: 1713 / 1571,
  10456. bottom: 0.01
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Normal",
  10463. height: math.unit(8, "feet")
  10464. },
  10465. {
  10466. name: "Minimacro",
  10467. height: math.unit(80, "feet")
  10468. },
  10469. {
  10470. name: "Macro",
  10471. height: math.unit(800, "feet"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Megamacro",
  10476. height: math.unit(8000, "feet")
  10477. },
  10478. {
  10479. name: "Gigamacro",
  10480. height: math.unit(800, "miles")
  10481. },
  10482. {
  10483. name: "Teramacro",
  10484. height: math.unit(80000, "miles")
  10485. },
  10486. {
  10487. name: "Celestial",
  10488. height: math.unit(8e6, "miles")
  10489. },
  10490. {
  10491. name: "Star Dragon",
  10492. height: math.unit(800000, "parsecs")
  10493. },
  10494. {
  10495. name: "Godly",
  10496. height: math.unit(800, "teraparsecs")
  10497. },
  10498. ]
  10499. ))
  10500. characterMakers.push(() => makeCharacter(
  10501. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10502. {
  10503. front: {
  10504. height: math.unit(6, "feet"),
  10505. weight: math.unit(150, "lb"),
  10506. name: "Front",
  10507. image: {
  10508. source: "./media/characters/ky'owin/front.svg",
  10509. extra: 3888 / 3068,
  10510. bottom: 0.015
  10511. }
  10512. },
  10513. },
  10514. [
  10515. {
  10516. name: "Normal",
  10517. height: math.unit(6 + 8 / 12, "feet")
  10518. },
  10519. {
  10520. name: "Large",
  10521. height: math.unit(68, "feet")
  10522. },
  10523. {
  10524. name: "Macro",
  10525. height: math.unit(132, "feet")
  10526. },
  10527. {
  10528. name: "Macro+",
  10529. height: math.unit(340, "feet")
  10530. },
  10531. {
  10532. name: "Macro++",
  10533. height: math.unit(680, "feet"),
  10534. default: true
  10535. },
  10536. {
  10537. name: "Megamacro",
  10538. height: math.unit(1, "mile")
  10539. },
  10540. {
  10541. name: "Megamacro+",
  10542. height: math.unit(10, "miles")
  10543. },
  10544. ]
  10545. ))
  10546. characterMakers.push(() => makeCharacter(
  10547. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10548. {
  10549. front: {
  10550. height: math.unit(4, "feet"),
  10551. weight: math.unit(50, "lb"),
  10552. name: "Front",
  10553. image: {
  10554. source: "./media/characters/mal/front.svg",
  10555. extra: 785 / 724,
  10556. bottom: 0.07
  10557. }
  10558. },
  10559. },
  10560. [
  10561. {
  10562. name: "Micro",
  10563. height: math.unit(4, "inches")
  10564. },
  10565. {
  10566. name: "Normal",
  10567. height: math.unit(4, "feet"),
  10568. default: true
  10569. },
  10570. {
  10571. name: "Macro",
  10572. height: math.unit(200, "feet")
  10573. },
  10574. ]
  10575. ))
  10576. characterMakers.push(() => makeCharacter(
  10577. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10578. {
  10579. front: {
  10580. height: math.unit(6, "feet"),
  10581. weight: math.unit(150, "lb"),
  10582. name: "Front",
  10583. image: {
  10584. source: "./media/characters/jordan-deware/front.svg",
  10585. extra: 1191 / 1012
  10586. }
  10587. },
  10588. },
  10589. [
  10590. {
  10591. name: "Nano",
  10592. height: math.unit(0.01, "mm")
  10593. },
  10594. {
  10595. name: "Minimicro",
  10596. height: math.unit(1, "mm")
  10597. },
  10598. {
  10599. name: "Micro",
  10600. height: math.unit(0.5, "inches")
  10601. },
  10602. {
  10603. name: "Normal",
  10604. height: math.unit(4, "feet"),
  10605. default: true
  10606. },
  10607. {
  10608. name: "Minimacro",
  10609. height: math.unit(40, "meters")
  10610. },
  10611. {
  10612. name: "Small Macro",
  10613. height: math.unit(400, "meters")
  10614. },
  10615. {
  10616. name: "Macro",
  10617. height: math.unit(4, "miles")
  10618. },
  10619. {
  10620. name: "Megamacro",
  10621. height: math.unit(40, "miles")
  10622. },
  10623. {
  10624. name: "Megamacro+",
  10625. height: math.unit(400, "miles")
  10626. },
  10627. {
  10628. name: "Gigamacro",
  10629. height: math.unit(400000, "miles")
  10630. },
  10631. ]
  10632. ))
  10633. characterMakers.push(() => makeCharacter(
  10634. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10635. {
  10636. side: {
  10637. height: math.unit(6, "feet"),
  10638. weight: math.unit(150, "lb"),
  10639. name: "Side",
  10640. image: {
  10641. source: "./media/characters/kimiko/side.svg",
  10642. extra: 600 / 358
  10643. }
  10644. },
  10645. },
  10646. [
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(15, "feet"),
  10650. default: true
  10651. },
  10652. {
  10653. name: "Macro",
  10654. height: math.unit(220, "feet")
  10655. },
  10656. {
  10657. name: "Macro+",
  10658. height: math.unit(1450, "feet")
  10659. },
  10660. {
  10661. name: "Megamacro",
  10662. height: math.unit(11500, "feet")
  10663. },
  10664. {
  10665. name: "Gigamacro",
  10666. height: math.unit(9500, "miles")
  10667. },
  10668. {
  10669. name: "Teramacro",
  10670. height: math.unit(2208005005, "miles")
  10671. },
  10672. {
  10673. name: "Examacro",
  10674. height: math.unit(2750, "parsecs")
  10675. },
  10676. {
  10677. name: "Zettamacro",
  10678. height: math.unit(101500, "parsecs")
  10679. },
  10680. ]
  10681. ))
  10682. characterMakers.push(() => makeCharacter(
  10683. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10684. {
  10685. front: {
  10686. height: math.unit(6, "feet"),
  10687. weight: math.unit(70, "kg"),
  10688. name: "Front",
  10689. image: {
  10690. source: "./media/characters/andrew-sleepy/front.svg"
  10691. }
  10692. },
  10693. side: {
  10694. height: math.unit(6, "feet"),
  10695. weight: math.unit(70, "kg"),
  10696. name: "Side",
  10697. image: {
  10698. source: "./media/characters/andrew-sleepy/side.svg"
  10699. }
  10700. },
  10701. },
  10702. [
  10703. {
  10704. name: "Micro",
  10705. height: math.unit(1, "mm"),
  10706. default: true
  10707. },
  10708. ]
  10709. ))
  10710. characterMakers.push(() => makeCharacter(
  10711. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10712. {
  10713. front: {
  10714. height: math.unit(6, "feet"),
  10715. weight: math.unit(150, "lb"),
  10716. name: "Front",
  10717. image: {
  10718. source: "./media/characters/judio/front.svg",
  10719. extra: 1258 / 1110
  10720. }
  10721. },
  10722. },
  10723. [
  10724. {
  10725. name: "Normal",
  10726. height: math.unit(5 + 6 / 12, "feet")
  10727. },
  10728. {
  10729. name: "Macro",
  10730. height: math.unit(1000, "feet"),
  10731. default: true
  10732. },
  10733. {
  10734. name: "Megamacro",
  10735. height: math.unit(10, "miles")
  10736. },
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10741. {
  10742. front: {
  10743. height: math.unit(6, "feet"),
  10744. weight: math.unit(68, "kg"),
  10745. name: "Front",
  10746. image: {
  10747. source: "./media/characters/nomaxice/front.svg",
  10748. extra: 1498 / 1073,
  10749. bottom: 0.075
  10750. }
  10751. },
  10752. foot: {
  10753. height: math.unit(1.1, "feet"),
  10754. name: "Foot",
  10755. image: {
  10756. source: "./media/characters/nomaxice/foot.svg"
  10757. }
  10758. },
  10759. },
  10760. [
  10761. {
  10762. name: "Micro",
  10763. height: math.unit(8, "cm")
  10764. },
  10765. {
  10766. name: "Norm",
  10767. height: math.unit(1.82, "m")
  10768. },
  10769. {
  10770. name: "Norm+",
  10771. height: math.unit(8.8, "feet")
  10772. },
  10773. {
  10774. name: "Big",
  10775. height: math.unit(8, "meters"),
  10776. default: true
  10777. },
  10778. {
  10779. name: "Macro",
  10780. height: math.unit(18, "meters")
  10781. },
  10782. {
  10783. name: "Macro+",
  10784. height: math.unit(88, "meters")
  10785. },
  10786. ]
  10787. ))
  10788. characterMakers.push(() => makeCharacter(
  10789. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10790. {
  10791. front: {
  10792. height: math.unit(12, "feet"),
  10793. weight: math.unit(1.5, "tons"),
  10794. name: "Front",
  10795. image: {
  10796. source: "./media/characters/dydros/front.svg",
  10797. extra: 863 / 800,
  10798. bottom: 0.015
  10799. }
  10800. },
  10801. back: {
  10802. height: math.unit(12, "feet"),
  10803. weight: math.unit(1.5, "tons"),
  10804. name: "Back",
  10805. image: {
  10806. source: "./media/characters/dydros/back.svg",
  10807. extra: 900 / 843,
  10808. bottom: 0.005
  10809. }
  10810. },
  10811. },
  10812. [
  10813. {
  10814. name: "Normal",
  10815. height: math.unit(12, "feet"),
  10816. default: true
  10817. },
  10818. ]
  10819. ))
  10820. characterMakers.push(() => makeCharacter(
  10821. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10822. {
  10823. front: {
  10824. height: math.unit(6, "feet"),
  10825. weight: math.unit(100, "kg"),
  10826. name: "Front",
  10827. image: {
  10828. source: "./media/characters/riggi/front.svg",
  10829. extra: 5787 / 5303
  10830. }
  10831. },
  10832. hyper: {
  10833. height: math.unit(6 * 5 / 3, "feet"),
  10834. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10835. name: "Hyper",
  10836. image: {
  10837. source: "./media/characters/riggi/hyper.svg",
  10838. extra: 3595 / 3485
  10839. }
  10840. },
  10841. },
  10842. [
  10843. {
  10844. name: "Small Macro",
  10845. height: math.unit(50, "feet")
  10846. },
  10847. {
  10848. name: "Default",
  10849. height: math.unit(200, "feet"),
  10850. default: true
  10851. },
  10852. {
  10853. name: "Loom",
  10854. height: math.unit(10000, "feet")
  10855. },
  10856. {
  10857. name: "Cruising Altitude",
  10858. height: math.unit(30000, "feet")
  10859. },
  10860. {
  10861. name: "Megamacro",
  10862. height: math.unit(100, "miles")
  10863. },
  10864. {
  10865. name: "Continent Sized",
  10866. height: math.unit(2800, "miles")
  10867. },
  10868. {
  10869. name: "Earth Sized",
  10870. height: math.unit(8000, "miles")
  10871. },
  10872. ]
  10873. ))
  10874. characterMakers.push(() => makeCharacter(
  10875. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10876. {
  10877. front: {
  10878. height: math.unit(6, "feet"),
  10879. weight: math.unit(250, "lb"),
  10880. name: "Front",
  10881. image: {
  10882. source: "./media/characters/alexi/front.svg",
  10883. extra: 3483 / 3291,
  10884. bottom: 0.04
  10885. }
  10886. },
  10887. back: {
  10888. height: math.unit(6, "feet"),
  10889. weight: math.unit(250, "lb"),
  10890. name: "Back",
  10891. image: {
  10892. source: "./media/characters/alexi/back.svg",
  10893. extra: 3533 / 3356,
  10894. bottom: 0.021
  10895. }
  10896. },
  10897. frontTransforming: {
  10898. height: math.unit(8.58, "feet"),
  10899. weight: math.unit(1300, "lb"),
  10900. name: "Transforming",
  10901. image: {
  10902. source: "./media/characters/alexi/front-transforming.svg",
  10903. extra: 437 / 409,
  10904. bottom: 19 / 458.66
  10905. }
  10906. },
  10907. frontTransformed: {
  10908. height: math.unit(12.5, "feet"),
  10909. weight: math.unit(4000, "lb"),
  10910. name: "Transformed",
  10911. image: {
  10912. source: "./media/characters/alexi/front-transformed.svg",
  10913. extra: 639 / 614,
  10914. bottom: 30.55 / 671
  10915. }
  10916. },
  10917. },
  10918. [
  10919. {
  10920. name: "Normal",
  10921. height: math.unit(14, "feet"),
  10922. default: true
  10923. },
  10924. {
  10925. name: "Minimacro",
  10926. height: math.unit(30, "meters")
  10927. },
  10928. {
  10929. name: "Macro",
  10930. height: math.unit(500, "meters")
  10931. },
  10932. {
  10933. name: "Megamacro",
  10934. height: math.unit(9000, "km")
  10935. },
  10936. {
  10937. name: "Teramacro",
  10938. height: math.unit(384000, "km")
  10939. },
  10940. ]
  10941. ))
  10942. characterMakers.push(() => makeCharacter(
  10943. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10944. {
  10945. front: {
  10946. height: math.unit(6, "feet"),
  10947. weight: math.unit(150, "lb"),
  10948. name: "Front",
  10949. image: {
  10950. source: "./media/characters/kayroo/front.svg",
  10951. extra: 1153 / 1038,
  10952. bottom: 0.06
  10953. }
  10954. },
  10955. foot: {
  10956. height: math.unit(6, "feet"),
  10957. weight: math.unit(150, "lb"),
  10958. name: "Foot",
  10959. image: {
  10960. source: "./media/characters/kayroo/foot.svg"
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Normal",
  10967. height: math.unit(8, "feet"),
  10968. default: true
  10969. },
  10970. {
  10971. name: "Minimacro",
  10972. height: math.unit(250, "feet")
  10973. },
  10974. {
  10975. name: "Macro",
  10976. height: math.unit(2800, "feet")
  10977. },
  10978. {
  10979. name: "Megamacro",
  10980. height: math.unit(5200, "feet")
  10981. },
  10982. {
  10983. name: "Gigamacro",
  10984. height: math.unit(27000, "feet")
  10985. },
  10986. {
  10987. name: "Omega",
  10988. height: math.unit(45000, "feet")
  10989. },
  10990. ]
  10991. ))
  10992. characterMakers.push(() => makeCharacter(
  10993. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10994. {
  10995. front: {
  10996. height: math.unit(18, "feet"),
  10997. weight: math.unit(5800, "lb"),
  10998. name: "Front",
  10999. image: {
  11000. source: "./media/characters/rhys/front.svg",
  11001. extra: 3386 / 3090,
  11002. bottom: 0.07
  11003. }
  11004. },
  11005. },
  11006. [
  11007. {
  11008. name: "Normal",
  11009. height: math.unit(18, "feet"),
  11010. default: true
  11011. },
  11012. {
  11013. name: "Working Size",
  11014. height: math.unit(200, "feet")
  11015. },
  11016. {
  11017. name: "Demolition Size",
  11018. height: math.unit(2000, "feet")
  11019. },
  11020. {
  11021. name: "Maximum Licensed Size",
  11022. height: math.unit(5, "miles")
  11023. },
  11024. {
  11025. name: "Maximum Observed Size",
  11026. height: math.unit(10, "yottameters")
  11027. },
  11028. ]
  11029. ))
  11030. characterMakers.push(() => makeCharacter(
  11031. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11032. {
  11033. front: {
  11034. height: math.unit(6, "feet"),
  11035. weight: math.unit(250, "lb"),
  11036. name: "Front",
  11037. image: {
  11038. source: "./media/characters/toto/front.svg",
  11039. extra: 527 / 479,
  11040. bottom: 0.05
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Micro",
  11047. height: math.unit(3, "feet")
  11048. },
  11049. {
  11050. name: "Normal",
  11051. height: math.unit(10, "feet")
  11052. },
  11053. {
  11054. name: "Macro",
  11055. height: math.unit(150, "feet"),
  11056. default: true
  11057. },
  11058. {
  11059. name: "Megamacro",
  11060. height: math.unit(1200, "feet")
  11061. },
  11062. ]
  11063. ))
  11064. characterMakers.push(() => makeCharacter(
  11065. { name: "King", species: ["lion"], tags: ["anthro"] },
  11066. {
  11067. back: {
  11068. height: math.unit(6, "feet"),
  11069. weight: math.unit(150, "lb"),
  11070. name: "Back",
  11071. image: {
  11072. source: "./media/characters/king/back.svg"
  11073. }
  11074. },
  11075. },
  11076. [
  11077. {
  11078. name: "Micro",
  11079. height: math.unit(2, "inches")
  11080. },
  11081. {
  11082. name: "Normal",
  11083. height: math.unit(8, "feet")
  11084. },
  11085. {
  11086. name: "Macro",
  11087. height: math.unit(200, "feet"),
  11088. default: true
  11089. },
  11090. {
  11091. name: "Megamacro",
  11092. height: math.unit(50, "miles")
  11093. },
  11094. ]
  11095. ))
  11096. characterMakers.push(() => makeCharacter(
  11097. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11098. {
  11099. anthro: {
  11100. height: math.unit(6 + 5 / 12, "feet"),
  11101. weight: math.unit(280, "lb"),
  11102. name: "Anthro",
  11103. image: {
  11104. source: "./media/characters/cordite/anthro.svg",
  11105. extra: 1986 / 1905,
  11106. bottom: 0.025
  11107. }
  11108. },
  11109. feral: {
  11110. height: math.unit(2, "feet"),
  11111. weight: math.unit(90, "lb"),
  11112. name: "Feral",
  11113. image: {
  11114. source: "./media/characters/cordite/feral.svg",
  11115. extra: 1260 / 755,
  11116. bottom: 0.05
  11117. }
  11118. },
  11119. },
  11120. [
  11121. {
  11122. name: "Normal",
  11123. height: math.unit(6 + 5 / 12, "feet"),
  11124. default: true
  11125. },
  11126. ]
  11127. ))
  11128. characterMakers.push(() => makeCharacter(
  11129. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11130. {
  11131. front: {
  11132. height: math.unit(6, "feet"),
  11133. weight: math.unit(150, "lb"),
  11134. name: "Front",
  11135. image: {
  11136. source: "./media/characters/pianostrong/front.svg",
  11137. extra: 6577 / 6254,
  11138. bottom: 0.02
  11139. }
  11140. },
  11141. side: {
  11142. height: math.unit(6, "feet"),
  11143. weight: math.unit(150, "lb"),
  11144. name: "Side",
  11145. image: {
  11146. source: "./media/characters/pianostrong/side.svg",
  11147. extra: 6106 / 5730
  11148. }
  11149. },
  11150. back: {
  11151. height: math.unit(6, "feet"),
  11152. weight: math.unit(150, "lb"),
  11153. name: "Back",
  11154. image: {
  11155. source: "./media/characters/pianostrong/back.svg",
  11156. extra: 6085 / 5733,
  11157. bottom: 0.01
  11158. }
  11159. },
  11160. },
  11161. [
  11162. {
  11163. name: "Macro",
  11164. height: math.unit(100, "feet")
  11165. },
  11166. {
  11167. name: "Macro+",
  11168. height: math.unit(300, "feet"),
  11169. default: true
  11170. },
  11171. {
  11172. name: "Macro++",
  11173. height: math.unit(1000, "feet")
  11174. },
  11175. ]
  11176. ))
  11177. characterMakers.push(() => makeCharacter(
  11178. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11179. {
  11180. front: {
  11181. height: math.unit(6, "feet"),
  11182. weight: math.unit(150, "lb"),
  11183. name: "Front",
  11184. image: {
  11185. source: "./media/characters/kona/front.svg",
  11186. extra: 2960 / 2629,
  11187. bottom: 0.005
  11188. }
  11189. },
  11190. },
  11191. [
  11192. {
  11193. name: "Normal",
  11194. height: math.unit(11 + 8 / 12, "feet")
  11195. },
  11196. {
  11197. name: "Macro",
  11198. height: math.unit(850, "feet"),
  11199. default: true
  11200. },
  11201. {
  11202. name: "Macro+",
  11203. height: math.unit(1.5, "km"),
  11204. default: true
  11205. },
  11206. {
  11207. name: "Megamacro",
  11208. height: math.unit(80, "miles")
  11209. },
  11210. {
  11211. name: "Gigamacro",
  11212. height: math.unit(3500, "miles")
  11213. },
  11214. ]
  11215. ))
  11216. characterMakers.push(() => makeCharacter(
  11217. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11218. {
  11219. side: {
  11220. height: math.unit(1.9, "meters"),
  11221. weight: math.unit(326, "kg"),
  11222. name: "Side",
  11223. image: {
  11224. source: "./media/characters/levi/side.svg",
  11225. extra: 1704 / 1334,
  11226. bottom: 0.02
  11227. }
  11228. },
  11229. },
  11230. [
  11231. {
  11232. name: "Normal",
  11233. height: math.unit(1.9, "meters"),
  11234. default: true
  11235. },
  11236. {
  11237. name: "Macro",
  11238. height: math.unit(20, "meters")
  11239. },
  11240. {
  11241. name: "Macro+",
  11242. height: math.unit(200, "meters")
  11243. },
  11244. {
  11245. name: "Megamacro",
  11246. height: math.unit(2, "km")
  11247. },
  11248. {
  11249. name: "Megamacro+",
  11250. height: math.unit(20, "km")
  11251. },
  11252. {
  11253. name: "Gigamacro",
  11254. height: math.unit(2500, "km")
  11255. },
  11256. {
  11257. name: "Gigamacro+",
  11258. height: math.unit(120000, "km")
  11259. },
  11260. {
  11261. name: "Teramacro",
  11262. height: math.unit(7.77e6, "km")
  11263. },
  11264. ]
  11265. ))
  11266. characterMakers.push(() => makeCharacter(
  11267. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11268. {
  11269. front: {
  11270. height: math.unit(6 + 4/12, "feet"),
  11271. weight: math.unit(190, "lb"),
  11272. name: "Front",
  11273. image: {
  11274. source: "./media/characters/bmc/front.svg",
  11275. extra: 1626/1472,
  11276. bottom: 79/1705
  11277. }
  11278. },
  11279. back: {
  11280. height: math.unit(6 + 4/12, "feet"),
  11281. weight: math.unit(190, "lb"),
  11282. name: "Back",
  11283. image: {
  11284. source: "./media/characters/bmc/back.svg",
  11285. extra: 1640/1479,
  11286. bottom: 45/1685
  11287. }
  11288. },
  11289. frontArmor: {
  11290. height: math.unit(6 + 4/12, "feet"),
  11291. weight: math.unit(190, "lb"),
  11292. name: "Front-armor",
  11293. image: {
  11294. source: "./media/characters/bmc/front-armor.svg",
  11295. extra: 1538/1468,
  11296. bottom: 79/1617
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Human-sized",
  11303. height: math.unit(6 + 4 / 12, "feet")
  11304. },
  11305. {
  11306. name: "Interactive Size",
  11307. height: math.unit(25, "feet")
  11308. },
  11309. {
  11310. name: "Small",
  11311. height: math.unit(250, "feet")
  11312. },
  11313. {
  11314. name: "Normal",
  11315. height: math.unit(1250, "feet"),
  11316. default: true
  11317. },
  11318. {
  11319. name: "Good Day",
  11320. height: math.unit(88, "miles")
  11321. },
  11322. {
  11323. name: "Largest Measured Size",
  11324. height: math.unit(105.960, "galaxies")
  11325. },
  11326. ]
  11327. ))
  11328. characterMakers.push(() => makeCharacter(
  11329. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11330. {
  11331. front: {
  11332. height: math.unit(20, "feet"),
  11333. weight: math.unit(2016, "kg"),
  11334. name: "Front",
  11335. image: {
  11336. source: "./media/characters/sven-the-kaiju/front.svg",
  11337. extra: 1277/1250,
  11338. bottom: 35/1312
  11339. }
  11340. },
  11341. mouth: {
  11342. height: math.unit(1.85, "feet"),
  11343. name: "Mouth",
  11344. image: {
  11345. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Fairy",
  11352. height: math.unit(6, "inches")
  11353. },
  11354. {
  11355. name: "Normal",
  11356. height: math.unit(20, "feet"),
  11357. default: true
  11358. },
  11359. {
  11360. name: "Rampage",
  11361. height: math.unit(200, "feet")
  11362. },
  11363. {
  11364. name: "Archfey Forest Guardian",
  11365. height: math.unit(1, "mile")
  11366. },
  11367. ]
  11368. ))
  11369. characterMakers.push(() => makeCharacter(
  11370. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11371. {
  11372. front: {
  11373. height: math.unit(4, "meters"),
  11374. weight: math.unit(2, "tons"),
  11375. name: "Front",
  11376. image: {
  11377. source: "./media/characters/marik/front.svg",
  11378. extra: 1057 / 1003,
  11379. bottom: 0.08
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Normal",
  11386. height: math.unit(4, "meters"),
  11387. default: true
  11388. },
  11389. {
  11390. name: "Macro",
  11391. height: math.unit(20, "meters")
  11392. },
  11393. {
  11394. name: "Megamacro",
  11395. height: math.unit(50, "km")
  11396. },
  11397. {
  11398. name: "Gigamacro",
  11399. height: math.unit(100, "km")
  11400. },
  11401. {
  11402. name: "Alpha Macro",
  11403. height: math.unit(7.88e7, "yottameters")
  11404. },
  11405. ]
  11406. ))
  11407. characterMakers.push(() => makeCharacter(
  11408. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11409. {
  11410. front: {
  11411. height: math.unit(6, "feet"),
  11412. weight: math.unit(110, "lb"),
  11413. name: "Front",
  11414. image: {
  11415. source: "./media/characters/mel/front.svg",
  11416. extra: 736 / 617,
  11417. bottom: 0.017
  11418. }
  11419. },
  11420. },
  11421. [
  11422. {
  11423. name: "Pico",
  11424. height: math.unit(3, "pm")
  11425. },
  11426. {
  11427. name: "Nano",
  11428. height: math.unit(3, "nm")
  11429. },
  11430. {
  11431. name: "Micro",
  11432. height: math.unit(0.3, "mm"),
  11433. default: true
  11434. },
  11435. {
  11436. name: "Micro+",
  11437. height: math.unit(3, "mm")
  11438. },
  11439. {
  11440. name: "Normal",
  11441. height: math.unit(5 + 10.5 / 12, "feet")
  11442. },
  11443. ]
  11444. ))
  11445. characterMakers.push(() => makeCharacter(
  11446. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11447. {
  11448. kaiju: {
  11449. height: math.unit(1.75, "meters"),
  11450. weight: math.unit(55, "kg"),
  11451. name: "Kaiju",
  11452. image: {
  11453. source: "./media/characters/lykonous/kaiju.svg",
  11454. extra: 1055 / 946,
  11455. bottom: 0.135
  11456. }
  11457. },
  11458. },
  11459. [
  11460. {
  11461. name: "Normal",
  11462. height: math.unit(2.5, "meters"),
  11463. default: true
  11464. },
  11465. {
  11466. name: "Kaiju Dragon",
  11467. height: math.unit(60, "meters")
  11468. },
  11469. {
  11470. name: "Mega Kaiju",
  11471. height: math.unit(120, "km")
  11472. },
  11473. {
  11474. name: "Giga Kaiju",
  11475. height: math.unit(200, "megameters")
  11476. },
  11477. {
  11478. name: "Terra Kaiju",
  11479. height: math.unit(400, "gigameters")
  11480. },
  11481. {
  11482. name: "Kaiju Dragon God",
  11483. height: math.unit(13000, "exaparsecs")
  11484. },
  11485. ]
  11486. ))
  11487. characterMakers.push(() => makeCharacter(
  11488. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11489. {
  11490. front: {
  11491. height: math.unit(6, "feet"),
  11492. weight: math.unit(150, "lb"),
  11493. name: "Front",
  11494. image: {
  11495. source: "./media/characters/blü/front.svg",
  11496. extra: 1883 / 1564,
  11497. bottom: 0.031
  11498. }
  11499. },
  11500. },
  11501. [
  11502. {
  11503. name: "Normal",
  11504. height: math.unit(13, "feet"),
  11505. default: true
  11506. },
  11507. {
  11508. name: "Big Boi",
  11509. height: math.unit(150, "meters")
  11510. },
  11511. {
  11512. name: "Mini Stomper",
  11513. height: math.unit(300, "meters")
  11514. },
  11515. {
  11516. name: "Macro",
  11517. height: math.unit(1000, "meters")
  11518. },
  11519. {
  11520. name: "Megamacro",
  11521. height: math.unit(11000, "meters")
  11522. },
  11523. {
  11524. name: "Gigamacro",
  11525. height: math.unit(11000, "km")
  11526. },
  11527. {
  11528. name: "Teramacro",
  11529. height: math.unit(420000, "km")
  11530. },
  11531. {
  11532. name: "Examacro",
  11533. height: math.unit(120, "parsecs")
  11534. },
  11535. {
  11536. name: "God Tho",
  11537. height: math.unit(98000000000, "parsecs")
  11538. },
  11539. ]
  11540. ))
  11541. characterMakers.push(() => makeCharacter(
  11542. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11543. {
  11544. taurFront: {
  11545. height: math.unit(6, "feet"),
  11546. weight: math.unit(200, "lb"),
  11547. name: "Taur (Front)",
  11548. image: {
  11549. source: "./media/characters/scales/taur-front.svg",
  11550. extra: 1,
  11551. bottom: 0.05
  11552. }
  11553. },
  11554. taurBack: {
  11555. height: math.unit(6, "feet"),
  11556. weight: math.unit(200, "lb"),
  11557. name: "Taur (Back)",
  11558. image: {
  11559. source: "./media/characters/scales/taur-back.svg",
  11560. extra: 1,
  11561. bottom: 0.08
  11562. }
  11563. },
  11564. anthro: {
  11565. height: math.unit(6 * 7 / 12, "feet"),
  11566. weight: math.unit(100, "lb"),
  11567. name: "Anthro",
  11568. image: {
  11569. source: "./media/characters/scales/anthro.svg",
  11570. extra: 1,
  11571. bottom: 0.06
  11572. }
  11573. },
  11574. },
  11575. [
  11576. {
  11577. name: "Normal",
  11578. height: math.unit(12, "feet"),
  11579. default: true
  11580. },
  11581. ]
  11582. ))
  11583. characterMakers.push(() => makeCharacter(
  11584. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11585. {
  11586. front: {
  11587. height: math.unit(6, "feet"),
  11588. weight: math.unit(150, "lb"),
  11589. name: "Front",
  11590. image: {
  11591. source: "./media/characters/koragos/front.svg",
  11592. extra: 841 / 794,
  11593. bottom: 0.035
  11594. }
  11595. },
  11596. back: {
  11597. height: math.unit(6, "feet"),
  11598. weight: math.unit(150, "lb"),
  11599. name: "Back",
  11600. image: {
  11601. source: "./media/characters/koragos/back.svg",
  11602. extra: 841 / 810,
  11603. bottom: 0.022
  11604. }
  11605. },
  11606. },
  11607. [
  11608. {
  11609. name: "Normal",
  11610. height: math.unit(6 + 11 / 12, "feet"),
  11611. default: true
  11612. },
  11613. {
  11614. name: "Macro",
  11615. height: math.unit(490, "feet")
  11616. },
  11617. {
  11618. name: "Megamacro",
  11619. height: math.unit(10, "miles")
  11620. },
  11621. {
  11622. name: "Gigamacro",
  11623. height: math.unit(50, "miles")
  11624. },
  11625. ]
  11626. ))
  11627. characterMakers.push(() => makeCharacter(
  11628. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11629. {
  11630. front: {
  11631. height: math.unit(6, "feet"),
  11632. weight: math.unit(250, "lb"),
  11633. name: "Front",
  11634. image: {
  11635. source: "./media/characters/xylrem/front.svg",
  11636. extra: 3323 / 3050,
  11637. bottom: 0.065
  11638. }
  11639. },
  11640. },
  11641. [
  11642. {
  11643. name: "Micro",
  11644. height: math.unit(4, "feet")
  11645. },
  11646. {
  11647. name: "Normal",
  11648. height: math.unit(16, "feet"),
  11649. default: true
  11650. },
  11651. {
  11652. name: "Macro",
  11653. height: math.unit(2720, "feet")
  11654. },
  11655. {
  11656. name: "Megamacro",
  11657. height: math.unit(25000, "miles")
  11658. },
  11659. ]
  11660. ))
  11661. characterMakers.push(() => makeCharacter(
  11662. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11663. {
  11664. front: {
  11665. height: math.unit(8, "feet"),
  11666. weight: math.unit(250, "kg"),
  11667. name: "Front",
  11668. image: {
  11669. source: "./media/characters/ikideru/front.svg",
  11670. extra: 930 / 870,
  11671. bottom: 0.087
  11672. }
  11673. },
  11674. back: {
  11675. height: math.unit(8, "feet"),
  11676. weight: math.unit(250, "kg"),
  11677. name: "Back",
  11678. image: {
  11679. source: "./media/characters/ikideru/back.svg",
  11680. extra: 919 / 852,
  11681. bottom: 0.055
  11682. }
  11683. },
  11684. },
  11685. [
  11686. {
  11687. name: "Rare",
  11688. height: math.unit(8, "feet"),
  11689. default: true
  11690. },
  11691. {
  11692. name: "Playful Loom",
  11693. height: math.unit(80, "feet")
  11694. },
  11695. {
  11696. name: "City Leaner",
  11697. height: math.unit(230, "feet")
  11698. },
  11699. {
  11700. name: "Megamacro",
  11701. height: math.unit(2500, "feet")
  11702. },
  11703. {
  11704. name: "Gigamacro",
  11705. height: math.unit(26400, "feet")
  11706. },
  11707. {
  11708. name: "Tectonic Shifter",
  11709. height: math.unit(1.7, "megameters")
  11710. },
  11711. {
  11712. name: "Planet Carer",
  11713. height: math.unit(21, "megameters")
  11714. },
  11715. {
  11716. name: "God",
  11717. height: math.unit(11157.22, "parsecs")
  11718. },
  11719. ]
  11720. ))
  11721. characterMakers.push(() => makeCharacter(
  11722. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11723. {
  11724. front: {
  11725. height: math.unit(6, "feet"),
  11726. weight: math.unit(120, "lb"),
  11727. name: "Front",
  11728. image: {
  11729. source: "./media/characters/neo/front.svg"
  11730. }
  11731. },
  11732. },
  11733. [
  11734. {
  11735. name: "Micro",
  11736. height: math.unit(2, "inches"),
  11737. default: true
  11738. },
  11739. {
  11740. name: "Human Size",
  11741. height: math.unit(5 + 8 / 12, "feet")
  11742. },
  11743. ]
  11744. ))
  11745. characterMakers.push(() => makeCharacter(
  11746. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11747. {
  11748. front: {
  11749. height: math.unit(13 + 10 / 12, "feet"),
  11750. weight: math.unit(5320, "lb"),
  11751. name: "Front",
  11752. image: {
  11753. source: "./media/characters/chauncey-chantz/front.svg",
  11754. extra: 1587 / 1435,
  11755. bottom: 0.02
  11756. }
  11757. },
  11758. },
  11759. [
  11760. {
  11761. name: "Normal",
  11762. height: math.unit(13 + 10 / 12, "feet"),
  11763. default: true
  11764. },
  11765. {
  11766. name: "Macro",
  11767. height: math.unit(45, "feet")
  11768. },
  11769. {
  11770. name: "Megamacro",
  11771. height: math.unit(250, "miles")
  11772. },
  11773. {
  11774. name: "Planetary",
  11775. height: math.unit(10000, "miles")
  11776. },
  11777. {
  11778. name: "Galactic",
  11779. height: math.unit(40000, "parsecs")
  11780. },
  11781. {
  11782. name: "Universal",
  11783. height: math.unit(1, "yottameter")
  11784. },
  11785. ]
  11786. ))
  11787. characterMakers.push(() => makeCharacter(
  11788. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11789. {
  11790. front: {
  11791. height: math.unit(6, "feet"),
  11792. weight: math.unit(150, "lb"),
  11793. name: "Front",
  11794. image: {
  11795. source: "./media/characters/epifox/front.svg",
  11796. extra: 1,
  11797. bottom: 0.075
  11798. }
  11799. },
  11800. },
  11801. [
  11802. {
  11803. name: "Micro",
  11804. height: math.unit(6, "inches")
  11805. },
  11806. {
  11807. name: "Normal",
  11808. height: math.unit(12, "feet"),
  11809. default: true
  11810. },
  11811. {
  11812. name: "Macro",
  11813. height: math.unit(3810, "feet")
  11814. },
  11815. {
  11816. name: "Megamacro",
  11817. height: math.unit(500, "miles")
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11823. {
  11824. front: {
  11825. height: math.unit(1.8796, "m"),
  11826. weight: math.unit(230, "lb"),
  11827. name: "Front",
  11828. image: {
  11829. source: "./media/characters/colin-t/front.svg",
  11830. extra: 1272 / 1193,
  11831. bottom: 0.07
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Micro",
  11838. height: math.unit(0.571, "meters")
  11839. },
  11840. {
  11841. name: "Normal",
  11842. height: math.unit(1.8796, "meters"),
  11843. default: true
  11844. },
  11845. {
  11846. name: "Tall",
  11847. height: math.unit(4, "meters")
  11848. },
  11849. {
  11850. name: "Macro",
  11851. height: math.unit(67.241, "meters")
  11852. },
  11853. {
  11854. name: "Megamacro",
  11855. height: math.unit(371.856, "meters")
  11856. },
  11857. {
  11858. name: "Planetary",
  11859. height: math.unit(12631.5689, "km")
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11865. {
  11866. front: {
  11867. height: math.unit(1.85, "meters"),
  11868. weight: math.unit(80, "kg"),
  11869. name: "Front",
  11870. image: {
  11871. source: "./media/characters/matvei/front.svg",
  11872. extra: 614 / 594,
  11873. bottom: 0.01
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(1.85, "meters"),
  11881. default: true
  11882. },
  11883. ]
  11884. ))
  11885. characterMakers.push(() => makeCharacter(
  11886. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11887. {
  11888. front: {
  11889. height: math.unit(5 + 9 / 12, "feet"),
  11890. weight: math.unit(70, "lb"),
  11891. name: "Front",
  11892. image: {
  11893. source: "./media/characters/quincy/front.svg",
  11894. extra: 3041 / 2751
  11895. }
  11896. },
  11897. back: {
  11898. height: math.unit(5 + 9 / 12, "feet"),
  11899. weight: math.unit(70, "lb"),
  11900. name: "Back",
  11901. image: {
  11902. source: "./media/characters/quincy/back.svg",
  11903. extra: 3041 / 2751
  11904. }
  11905. },
  11906. flying: {
  11907. height: math.unit(5 + 4 / 12, "feet"),
  11908. weight: math.unit(70, "lb"),
  11909. name: "Flying",
  11910. image: {
  11911. source: "./media/characters/quincy/flying.svg",
  11912. extra: 1044 / 930
  11913. }
  11914. },
  11915. },
  11916. [
  11917. {
  11918. name: "Micro",
  11919. height: math.unit(3, "cm")
  11920. },
  11921. {
  11922. name: "Normal",
  11923. height: math.unit(5 + 9 / 12, "feet")
  11924. },
  11925. {
  11926. name: "Macro",
  11927. height: math.unit(200, "meters"),
  11928. default: true
  11929. },
  11930. {
  11931. name: "Megamacro",
  11932. height: math.unit(1000, "meters")
  11933. },
  11934. ]
  11935. ))
  11936. characterMakers.push(() => makeCharacter(
  11937. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11938. {
  11939. front: {
  11940. height: math.unit(3 + 11/12, "feet"),
  11941. weight: math.unit(50, "lb"),
  11942. name: "Front",
  11943. image: {
  11944. source: "./media/characters/vanrel/front.svg",
  11945. extra: 1104/949,
  11946. bottom: 52/1156
  11947. }
  11948. },
  11949. back: {
  11950. height: math.unit(3 + 11/12, "feet"),
  11951. weight: math.unit(50, "lb"),
  11952. name: "Back",
  11953. image: {
  11954. source: "./media/characters/vanrel/back.svg",
  11955. extra: 1119/976,
  11956. bottom: 37/1156
  11957. }
  11958. },
  11959. tome: {
  11960. height: math.unit(1.35, "feet"),
  11961. weight: math.unit(10, "lb"),
  11962. name: "Vanrel's Tome",
  11963. rename: true,
  11964. image: {
  11965. source: "./media/characters/vanrel/tome.svg"
  11966. }
  11967. },
  11968. beans: {
  11969. height: math.unit(0.89, "feet"),
  11970. name: "Beans",
  11971. image: {
  11972. source: "./media/characters/vanrel/beans.svg"
  11973. }
  11974. },
  11975. },
  11976. [
  11977. {
  11978. name: "Normal",
  11979. height: math.unit(3 + 11/12, "feet"),
  11980. default: true
  11981. },
  11982. ]
  11983. ))
  11984. characterMakers.push(() => makeCharacter(
  11985. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11986. {
  11987. front: {
  11988. height: math.unit(7 + 5 / 12, "feet"),
  11989. name: "Front",
  11990. image: {
  11991. source: "./media/characters/kuiper-vanrel/front.svg",
  11992. extra: 1219/1169,
  11993. bottom: 69/1288
  11994. }
  11995. },
  11996. back: {
  11997. height: math.unit(7 + 5 / 12, "feet"),
  11998. name: "Back",
  11999. image: {
  12000. source: "./media/characters/kuiper-vanrel/back.svg",
  12001. extra: 1236/1193,
  12002. bottom: 27/1263
  12003. }
  12004. },
  12005. foot: {
  12006. height: math.unit(0.55, "meters"),
  12007. name: "Foot",
  12008. image: {
  12009. source: "./media/characters/kuiper-vanrel/foot.svg",
  12010. }
  12011. },
  12012. battle: {
  12013. height: math.unit(6.824, "feet"),
  12014. name: "Battle",
  12015. image: {
  12016. source: "./media/characters/kuiper-vanrel/battle.svg",
  12017. extra: 1466 / 1327,
  12018. bottom: 29 / 1492.5
  12019. }
  12020. },
  12021. meerkui: {
  12022. height: math.unit(18, "inches"),
  12023. name: "Meerkui",
  12024. image: {
  12025. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12026. extra: 1354/1289,
  12027. bottom: 69/1423
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Normal",
  12034. height: math.unit(7 + 5 / 12, "feet"),
  12035. default: true
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12041. {
  12042. front: {
  12043. height: math.unit(8 + 5 / 12, "feet"),
  12044. name: "Front",
  12045. image: {
  12046. source: "./media/characters/keset-vanrel/front.svg",
  12047. extra: 1231/1148,
  12048. bottom: 82/1313
  12049. }
  12050. },
  12051. back: {
  12052. height: math.unit(8 + 5 / 12, "feet"),
  12053. name: "Back",
  12054. image: {
  12055. source: "./media/characters/keset-vanrel/back.svg",
  12056. extra: 1240/1174,
  12057. bottom: 33/1273
  12058. }
  12059. },
  12060. hand: {
  12061. height: math.unit(0.6, "meters"),
  12062. name: "Hand",
  12063. image: {
  12064. source: "./media/characters/keset-vanrel/hand.svg"
  12065. }
  12066. },
  12067. foot: {
  12068. height: math.unit(0.94978, "meters"),
  12069. name: "Foot",
  12070. image: {
  12071. source: "./media/characters/keset-vanrel/foot.svg"
  12072. }
  12073. },
  12074. battle: {
  12075. height: math.unit(7.408, "feet"),
  12076. name: "Battle",
  12077. image: {
  12078. source: "./media/characters/keset-vanrel/battle.svg",
  12079. extra: 1890 / 1386,
  12080. bottom: 73.28 / 1970
  12081. }
  12082. },
  12083. },
  12084. [
  12085. {
  12086. name: "Normal",
  12087. height: math.unit(8 + 5 / 12, "feet"),
  12088. default: true
  12089. },
  12090. ]
  12091. ))
  12092. characterMakers.push(() => makeCharacter(
  12093. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12094. {
  12095. front: {
  12096. height: math.unit(6, "feet"),
  12097. weight: math.unit(150, "lb"),
  12098. name: "Front",
  12099. image: {
  12100. source: "./media/characters/neos/front.svg",
  12101. extra: 1696 / 992,
  12102. bottom: 0.14
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Normal",
  12109. height: math.unit(54, "cm"),
  12110. default: true
  12111. },
  12112. {
  12113. name: "Macro",
  12114. height: math.unit(100, "m")
  12115. },
  12116. {
  12117. name: "Megamacro",
  12118. height: math.unit(10, "km")
  12119. },
  12120. {
  12121. name: "Megamacro+",
  12122. height: math.unit(100, "km")
  12123. },
  12124. {
  12125. name: "Gigamacro",
  12126. height: math.unit(100, "Mm")
  12127. },
  12128. {
  12129. name: "Teramacro",
  12130. height: math.unit(100, "Gm")
  12131. },
  12132. {
  12133. name: "Examacro",
  12134. height: math.unit(100, "Em")
  12135. },
  12136. {
  12137. name: "Godly",
  12138. height: math.unit(10000, "Ym")
  12139. },
  12140. {
  12141. name: "Beyond Godly",
  12142. height: math.unit(25, "multiverses")
  12143. },
  12144. ]
  12145. ))
  12146. characterMakers.push(() => makeCharacter(
  12147. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12148. {
  12149. feminine: {
  12150. height: math.unit(5, "feet"),
  12151. weight: math.unit(100, "lb"),
  12152. name: "Feminine",
  12153. image: {
  12154. source: "./media/characters/sammy-mouse/feminine.svg",
  12155. extra: 2526 / 2425,
  12156. bottom: 0.123
  12157. }
  12158. },
  12159. masculine: {
  12160. height: math.unit(5, "feet"),
  12161. weight: math.unit(100, "lb"),
  12162. name: "Masculine",
  12163. image: {
  12164. source: "./media/characters/sammy-mouse/masculine.svg",
  12165. extra: 2526 / 2425,
  12166. bottom: 0.123
  12167. }
  12168. },
  12169. },
  12170. [
  12171. {
  12172. name: "Micro",
  12173. height: math.unit(5, "inches")
  12174. },
  12175. {
  12176. name: "Normal",
  12177. height: math.unit(5, "feet"),
  12178. default: true
  12179. },
  12180. {
  12181. name: "Macro",
  12182. height: math.unit(60, "feet")
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12188. {
  12189. front: {
  12190. height: math.unit(4, "feet"),
  12191. weight: math.unit(50, "lb"),
  12192. name: "Front",
  12193. image: {
  12194. source: "./media/characters/kole/front.svg",
  12195. extra: 1423 / 1303,
  12196. bottom: 0.025
  12197. }
  12198. },
  12199. back: {
  12200. height: math.unit(4, "feet"),
  12201. weight: math.unit(50, "lb"),
  12202. name: "Back",
  12203. image: {
  12204. source: "./media/characters/kole/back.svg",
  12205. extra: 1426 / 1280,
  12206. bottom: 0.02
  12207. }
  12208. },
  12209. },
  12210. [
  12211. {
  12212. name: "Normal",
  12213. height: math.unit(4, "feet"),
  12214. default: true
  12215. },
  12216. ]
  12217. ))
  12218. characterMakers.push(() => makeCharacter(
  12219. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12220. {
  12221. front: {
  12222. height: math.unit(2.5, "feet"),
  12223. weight: math.unit(32, "lb"),
  12224. name: "Front",
  12225. image: {
  12226. source: "./media/characters/rufran/front.svg",
  12227. extra: 1313/885,
  12228. bottom: 94/1407
  12229. }
  12230. },
  12231. side: {
  12232. height: math.unit(2.5, "feet"),
  12233. weight: math.unit(32, "lb"),
  12234. name: "Side",
  12235. image: {
  12236. source: "./media/characters/rufran/side.svg",
  12237. extra: 1109/852,
  12238. bottom: 118/1227
  12239. }
  12240. },
  12241. back: {
  12242. height: math.unit(2.5, "feet"),
  12243. weight: math.unit(32, "lb"),
  12244. name: "Back",
  12245. image: {
  12246. source: "./media/characters/rufran/back.svg",
  12247. extra: 1280/878,
  12248. bottom: 131/1411
  12249. }
  12250. },
  12251. mouth: {
  12252. height: math.unit(1.13, "feet"),
  12253. name: "Mouth",
  12254. image: {
  12255. source: "./media/characters/rufran/mouth.svg"
  12256. }
  12257. },
  12258. foot: {
  12259. height: math.unit(1.33, "feet"),
  12260. name: "Foot",
  12261. image: {
  12262. source: "./media/characters/rufran/foot.svg"
  12263. }
  12264. },
  12265. koboldFront: {
  12266. height: math.unit(2 + 6 / 12, "feet"),
  12267. weight: math.unit(20, "lb"),
  12268. name: "Front (Kobold)",
  12269. image: {
  12270. source: "./media/characters/rufran/kobold-front.svg",
  12271. extra: 2041 / 1839,
  12272. bottom: 0.055
  12273. }
  12274. },
  12275. koboldBack: {
  12276. height: math.unit(2 + 6 / 12, "feet"),
  12277. weight: math.unit(20, "lb"),
  12278. name: "Back (Kobold)",
  12279. image: {
  12280. source: "./media/characters/rufran/kobold-back.svg",
  12281. extra: 2054 / 1839,
  12282. bottom: 0.01
  12283. }
  12284. },
  12285. koboldHand: {
  12286. height: math.unit(0.2166, "meters"),
  12287. name: "Hand (Kobold)",
  12288. image: {
  12289. source: "./media/characters/rufran/kobold-hand.svg"
  12290. }
  12291. },
  12292. koboldFoot: {
  12293. height: math.unit(0.185, "meters"),
  12294. name: "Foot (Kobold)",
  12295. image: {
  12296. source: "./media/characters/rufran/kobold-foot.svg"
  12297. }
  12298. },
  12299. },
  12300. [
  12301. {
  12302. name: "Micro",
  12303. height: math.unit(1, "inch")
  12304. },
  12305. {
  12306. name: "Normal",
  12307. height: math.unit(2 + 6 / 12, "feet"),
  12308. default: true
  12309. },
  12310. {
  12311. name: "Big",
  12312. height: math.unit(60, "feet")
  12313. },
  12314. {
  12315. name: "Macro",
  12316. height: math.unit(325, "feet")
  12317. },
  12318. ]
  12319. ))
  12320. characterMakers.push(() => makeCharacter(
  12321. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12322. {
  12323. front: {
  12324. height: math.unit(0.3, "meters"),
  12325. weight: math.unit(3.5, "kg"),
  12326. name: "Front",
  12327. image: {
  12328. source: "./media/characters/chip/front.svg",
  12329. extra: 748 / 674
  12330. }
  12331. },
  12332. },
  12333. [
  12334. {
  12335. name: "Micro",
  12336. height: math.unit(1, "inch"),
  12337. default: true
  12338. },
  12339. ]
  12340. ))
  12341. characterMakers.push(() => makeCharacter(
  12342. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12343. {
  12344. side: {
  12345. height: math.unit(2.3, "meters"),
  12346. weight: math.unit(3500, "lb"),
  12347. name: "Side",
  12348. image: {
  12349. source: "./media/characters/torvid/side.svg",
  12350. extra: 1972 / 722,
  12351. bottom: 0.035
  12352. }
  12353. },
  12354. },
  12355. [
  12356. {
  12357. name: "Normal",
  12358. height: math.unit(2.3, "meters"),
  12359. default: true
  12360. },
  12361. ]
  12362. ))
  12363. characterMakers.push(() => makeCharacter(
  12364. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12365. {
  12366. front: {
  12367. height: math.unit(2, "meters"),
  12368. weight: math.unit(150.5, "kg"),
  12369. name: "Front",
  12370. image: {
  12371. source: "./media/characters/susan/front.svg",
  12372. extra: 693 / 635,
  12373. bottom: 0.05
  12374. }
  12375. },
  12376. },
  12377. [
  12378. {
  12379. name: "Megamacro",
  12380. height: math.unit(505, "miles"),
  12381. default: true
  12382. },
  12383. ]
  12384. ))
  12385. characterMakers.push(() => makeCharacter(
  12386. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12387. {
  12388. front: {
  12389. height: math.unit(6, "feet"),
  12390. weight: math.unit(150, "lb"),
  12391. name: "Front",
  12392. image: {
  12393. source: "./media/characters/raindrops/front.svg",
  12394. extra: 2655 / 2461,
  12395. bottom: 49 / 2705
  12396. }
  12397. },
  12398. back: {
  12399. height: math.unit(6, "feet"),
  12400. weight: math.unit(150, "lb"),
  12401. name: "Back",
  12402. image: {
  12403. source: "./media/characters/raindrops/back.svg",
  12404. extra: 2574 / 2400,
  12405. bottom: 65 / 2634
  12406. }
  12407. },
  12408. },
  12409. [
  12410. {
  12411. name: "Micro",
  12412. height: math.unit(6, "inches")
  12413. },
  12414. {
  12415. name: "Normal",
  12416. height: math.unit(6 + 2 / 12, "feet")
  12417. },
  12418. {
  12419. name: "Macro",
  12420. height: math.unit(131, "feet"),
  12421. default: true
  12422. },
  12423. {
  12424. name: "Megamacro",
  12425. height: math.unit(15, "miles")
  12426. },
  12427. {
  12428. name: "Gigamacro",
  12429. height: math.unit(4000, "miles")
  12430. },
  12431. {
  12432. name: "Teramacro",
  12433. height: math.unit(315000, "miles")
  12434. },
  12435. ]
  12436. ))
  12437. characterMakers.push(() => makeCharacter(
  12438. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12439. {
  12440. front: {
  12441. height: math.unit(2.794, "meters"),
  12442. weight: math.unit(325, "kg"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/tezwa/front.svg",
  12446. extra: 2083 / 1906,
  12447. bottom: 0.031
  12448. }
  12449. },
  12450. foot: {
  12451. height: math.unit(0.687, "meters"),
  12452. name: "Foot",
  12453. image: {
  12454. source: "./media/characters/tezwa/foot.svg"
  12455. }
  12456. },
  12457. },
  12458. [
  12459. {
  12460. name: "Normal",
  12461. height: math.unit(9 + 2 / 12, "feet"),
  12462. default: true
  12463. },
  12464. ]
  12465. ))
  12466. characterMakers.push(() => makeCharacter(
  12467. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12468. {
  12469. front: {
  12470. height: math.unit(58, "feet"),
  12471. weight: math.unit(89000, "lb"),
  12472. name: "Front",
  12473. image: {
  12474. source: "./media/characters/typhus/front.svg",
  12475. extra: 816 / 800,
  12476. bottom: 0.065
  12477. }
  12478. },
  12479. },
  12480. [
  12481. {
  12482. name: "Macro",
  12483. height: math.unit(58, "feet"),
  12484. default: true
  12485. },
  12486. ]
  12487. ))
  12488. characterMakers.push(() => makeCharacter(
  12489. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12490. {
  12491. front: {
  12492. height: math.unit(12, "feet"),
  12493. weight: math.unit(6, "tonnes"),
  12494. name: "Front",
  12495. image: {
  12496. source: "./media/characters/lyra-von-wulf/front.svg",
  12497. extra: 1,
  12498. bottom: 0.10
  12499. }
  12500. },
  12501. frontMecha: {
  12502. height: math.unit(12, "feet"),
  12503. weight: math.unit(12, "tonnes"),
  12504. name: "Front (Mecha)",
  12505. image: {
  12506. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12507. extra: 1,
  12508. bottom: 0.042
  12509. }
  12510. },
  12511. maw: {
  12512. height: math.unit(2.2, "feet"),
  12513. name: "Maw",
  12514. image: {
  12515. source: "./media/characters/lyra-von-wulf/maw.svg"
  12516. }
  12517. },
  12518. },
  12519. [
  12520. {
  12521. name: "Normal",
  12522. height: math.unit(12, "feet"),
  12523. default: true
  12524. },
  12525. {
  12526. name: "Classic",
  12527. height: math.unit(50, "feet")
  12528. },
  12529. {
  12530. name: "Macro",
  12531. height: math.unit(500, "feet")
  12532. },
  12533. {
  12534. name: "Megamacro",
  12535. height: math.unit(1, "mile")
  12536. },
  12537. {
  12538. name: "Gigamacro",
  12539. height: math.unit(400, "miles")
  12540. },
  12541. {
  12542. name: "Teramacro",
  12543. height: math.unit(22000, "miles")
  12544. },
  12545. {
  12546. name: "Solarmacro",
  12547. height: math.unit(8600000, "miles")
  12548. },
  12549. {
  12550. name: "Galactic",
  12551. height: math.unit(1057000, "lightyears")
  12552. },
  12553. ]
  12554. ))
  12555. characterMakers.push(() => makeCharacter(
  12556. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12557. {
  12558. front: {
  12559. height: math.unit(6 + 10 / 12, "feet"),
  12560. weight: math.unit(150, "lb"),
  12561. name: "Front",
  12562. image: {
  12563. source: "./media/characters/dixon/front.svg",
  12564. extra: 3361 / 3209,
  12565. bottom: 0.01
  12566. }
  12567. },
  12568. },
  12569. [
  12570. {
  12571. name: "Normal",
  12572. height: math.unit(6 + 10 / 12, "feet"),
  12573. default: true
  12574. },
  12575. {
  12576. name: "Big",
  12577. height: math.unit(12, "meters")
  12578. },
  12579. {
  12580. name: "Macro",
  12581. height: math.unit(500, "meters")
  12582. },
  12583. {
  12584. name: "Megamacro",
  12585. height: math.unit(2, "km")
  12586. },
  12587. ]
  12588. ))
  12589. characterMakers.push(() => makeCharacter(
  12590. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12591. {
  12592. front: {
  12593. height: math.unit(185, "cm"),
  12594. weight: math.unit(68, "kg"),
  12595. name: "Front",
  12596. image: {
  12597. source: "./media/characters/kauko/front.svg",
  12598. extra: 1455 / 1421,
  12599. bottom: 0.03
  12600. }
  12601. },
  12602. back: {
  12603. height: math.unit(185, "cm"),
  12604. weight: math.unit(68, "kg"),
  12605. name: "Back",
  12606. image: {
  12607. source: "./media/characters/kauko/back.svg",
  12608. extra: 1455 / 1421,
  12609. bottom: 0.004
  12610. }
  12611. },
  12612. },
  12613. [
  12614. {
  12615. name: "Normal",
  12616. height: math.unit(185, "cm"),
  12617. default: true
  12618. },
  12619. ]
  12620. ))
  12621. characterMakers.push(() => makeCharacter(
  12622. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12623. {
  12624. front: {
  12625. height: math.unit(6, "feet"),
  12626. weight: math.unit(150, "kg"),
  12627. name: "Front",
  12628. image: {
  12629. source: "./media/characters/varg/front.svg",
  12630. extra: 1108 / 1018,
  12631. bottom: 0.0375
  12632. }
  12633. },
  12634. },
  12635. [
  12636. {
  12637. name: "Normal",
  12638. height: math.unit(5, "meters")
  12639. },
  12640. {
  12641. name: "Macro",
  12642. height: math.unit(200, "meters")
  12643. },
  12644. {
  12645. name: "Megamacro",
  12646. height: math.unit(20, "kilometers")
  12647. },
  12648. {
  12649. name: "True Size",
  12650. height: math.unit(211, "km"),
  12651. default: true
  12652. },
  12653. {
  12654. name: "Gigamacro",
  12655. height: math.unit(1000, "km")
  12656. },
  12657. {
  12658. name: "Gigamacro+",
  12659. height: math.unit(8000, "km")
  12660. },
  12661. {
  12662. name: "Teramacro",
  12663. height: math.unit(1000000, "km")
  12664. },
  12665. ]
  12666. ))
  12667. characterMakers.push(() => makeCharacter(
  12668. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12669. {
  12670. front: {
  12671. height: math.unit(7 + 7 / 12, "feet"),
  12672. weight: math.unit(267, "lb"),
  12673. name: "Front",
  12674. image: {
  12675. source: "./media/characters/dayza/front.svg",
  12676. extra: 1262 / 1200,
  12677. bottom: 0.035
  12678. }
  12679. },
  12680. side: {
  12681. height: math.unit(7 + 7 / 12, "feet"),
  12682. weight: math.unit(267, "lb"),
  12683. name: "Side",
  12684. image: {
  12685. source: "./media/characters/dayza/side.svg",
  12686. extra: 1295 / 1245,
  12687. bottom: 0.05
  12688. }
  12689. },
  12690. back: {
  12691. height: math.unit(7 + 7 / 12, "feet"),
  12692. weight: math.unit(267, "lb"),
  12693. name: "Back",
  12694. image: {
  12695. source: "./media/characters/dayza/back.svg",
  12696. extra: 1241 / 1170
  12697. }
  12698. },
  12699. },
  12700. [
  12701. {
  12702. name: "Normal",
  12703. height: math.unit(7 + 7 / 12, "feet"),
  12704. default: true
  12705. },
  12706. {
  12707. name: "Macro",
  12708. height: math.unit(155, "feet")
  12709. },
  12710. ]
  12711. ))
  12712. characterMakers.push(() => makeCharacter(
  12713. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12714. {
  12715. front: {
  12716. height: math.unit(6 + 5 / 12, "feet"),
  12717. weight: math.unit(160, "lb"),
  12718. name: "Front",
  12719. image: {
  12720. source: "./media/characters/xanthos/front.svg",
  12721. extra: 1,
  12722. bottom: 0.04
  12723. }
  12724. },
  12725. back: {
  12726. height: math.unit(6 + 5 / 12, "feet"),
  12727. weight: math.unit(160, "lb"),
  12728. name: "Back",
  12729. image: {
  12730. source: "./media/characters/xanthos/back.svg",
  12731. extra: 1,
  12732. bottom: 0.03
  12733. }
  12734. },
  12735. hand: {
  12736. height: math.unit(0.928, "feet"),
  12737. name: "Hand",
  12738. image: {
  12739. source: "./media/characters/xanthos/hand.svg"
  12740. }
  12741. },
  12742. foot: {
  12743. height: math.unit(1.286, "feet"),
  12744. name: "Foot",
  12745. image: {
  12746. source: "./media/characters/xanthos/foot.svg"
  12747. }
  12748. },
  12749. },
  12750. [
  12751. {
  12752. name: "Normal",
  12753. height: math.unit(6 + 5 / 12, "feet"),
  12754. default: true
  12755. },
  12756. {
  12757. name: "Normal+",
  12758. height: math.unit(6, "meters")
  12759. },
  12760. {
  12761. name: "Macro",
  12762. height: math.unit(40, "feet")
  12763. },
  12764. {
  12765. name: "Macro+",
  12766. height: math.unit(200, "meters")
  12767. },
  12768. {
  12769. name: "Megamacro",
  12770. height: math.unit(20, "km")
  12771. },
  12772. {
  12773. name: "Megamacro+",
  12774. height: math.unit(100, "km")
  12775. },
  12776. {
  12777. name: "Gigamacro",
  12778. height: math.unit(200, "megameters")
  12779. },
  12780. {
  12781. name: "Gigamacro+",
  12782. height: math.unit(1.5, "gigameters")
  12783. },
  12784. ]
  12785. ))
  12786. characterMakers.push(() => makeCharacter(
  12787. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12788. {
  12789. front: {
  12790. height: math.unit(6 + 3 / 12, "feet"),
  12791. weight: math.unit(215, "lb"),
  12792. name: "Front",
  12793. image: {
  12794. source: "./media/characters/grynn/front.svg",
  12795. extra: 4627 / 4209,
  12796. bottom: 0.047
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Micro",
  12803. height: math.unit(6, "inches")
  12804. },
  12805. {
  12806. name: "Normal",
  12807. height: math.unit(6 + 3 / 12, "feet"),
  12808. default: true
  12809. },
  12810. {
  12811. name: "Big",
  12812. height: math.unit(104, "feet")
  12813. },
  12814. {
  12815. name: "Macro",
  12816. height: math.unit(944, "feet")
  12817. },
  12818. {
  12819. name: "Macro+",
  12820. height: math.unit(9480, "feet")
  12821. },
  12822. {
  12823. name: "Megamacro",
  12824. height: math.unit(78752, "feet")
  12825. },
  12826. {
  12827. name: "Megamacro+",
  12828. height: math.unit(630128, "feet")
  12829. },
  12830. {
  12831. name: "Megamacro++",
  12832. height: math.unit(3150695, "feet")
  12833. },
  12834. ]
  12835. ))
  12836. characterMakers.push(() => makeCharacter(
  12837. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12838. {
  12839. front: {
  12840. height: math.unit(7 + 5 / 12, "feet"),
  12841. weight: math.unit(450, "lb"),
  12842. name: "Front",
  12843. image: {
  12844. source: "./media/characters/mocha-aura/front.svg",
  12845. extra: 1907 / 1817,
  12846. bottom: 0.04
  12847. }
  12848. },
  12849. back: {
  12850. height: math.unit(7 + 5 / 12, "feet"),
  12851. weight: math.unit(450, "lb"),
  12852. name: "Back",
  12853. image: {
  12854. source: "./media/characters/mocha-aura/back.svg",
  12855. extra: 1900 / 1825,
  12856. bottom: 0.045
  12857. }
  12858. },
  12859. },
  12860. [
  12861. {
  12862. name: "Nano",
  12863. height: math.unit(1, "nm")
  12864. },
  12865. {
  12866. name: "Megamicro",
  12867. height: math.unit(1, "mm")
  12868. },
  12869. {
  12870. name: "Micro",
  12871. height: math.unit(3, "inches")
  12872. },
  12873. {
  12874. name: "Normal",
  12875. height: math.unit(7 + 5 / 12, "feet"),
  12876. default: true
  12877. },
  12878. {
  12879. name: "Macro",
  12880. height: math.unit(30, "feet")
  12881. },
  12882. {
  12883. name: "Megamacro",
  12884. height: math.unit(3500, "feet")
  12885. },
  12886. {
  12887. name: "Teramacro",
  12888. height: math.unit(500000, "miles")
  12889. },
  12890. {
  12891. name: "Petamacro",
  12892. height: math.unit(50000000000000000, "parsecs")
  12893. },
  12894. ]
  12895. ))
  12896. characterMakers.push(() => makeCharacter(
  12897. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12898. {
  12899. front: {
  12900. height: math.unit(6, "feet"),
  12901. weight: math.unit(150, "lb"),
  12902. name: "Front",
  12903. image: {
  12904. source: "./media/characters/ilisha-devya/front.svg",
  12905. extra: 1,
  12906. bottom: 0.175
  12907. }
  12908. },
  12909. back: {
  12910. height: math.unit(6, "feet"),
  12911. weight: math.unit(150, "lb"),
  12912. name: "Back",
  12913. image: {
  12914. source: "./media/characters/ilisha-devya/back.svg",
  12915. extra: 1,
  12916. bottom: 0.015
  12917. }
  12918. },
  12919. },
  12920. [
  12921. {
  12922. name: "Macro",
  12923. height: math.unit(500, "feet"),
  12924. default: true
  12925. },
  12926. {
  12927. name: "Megamacro",
  12928. height: math.unit(10, "miles")
  12929. },
  12930. {
  12931. name: "Gigamacro",
  12932. height: math.unit(100000, "miles")
  12933. },
  12934. {
  12935. name: "Examacro",
  12936. height: math.unit(1e9, "lightyears")
  12937. },
  12938. {
  12939. name: "Omniversal",
  12940. height: math.unit(1e33, "lightyears")
  12941. },
  12942. {
  12943. name: "Beyond Infinite",
  12944. height: math.unit(1e100, "lightyears")
  12945. },
  12946. ]
  12947. ))
  12948. characterMakers.push(() => makeCharacter(
  12949. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12950. {
  12951. Side: {
  12952. height: math.unit(6, "feet"),
  12953. weight: math.unit(150, "lb"),
  12954. name: "Side",
  12955. image: {
  12956. source: "./media/characters/mira/side.svg",
  12957. extra: 900 / 799,
  12958. bottom: 0.02
  12959. }
  12960. },
  12961. },
  12962. [
  12963. {
  12964. name: "Human Size",
  12965. height: math.unit(6, "feet")
  12966. },
  12967. {
  12968. name: "Macro",
  12969. height: math.unit(100, "feet"),
  12970. default: true
  12971. },
  12972. {
  12973. name: "Megamacro",
  12974. height: math.unit(10, "miles")
  12975. },
  12976. {
  12977. name: "Gigamacro",
  12978. height: math.unit(25000, "miles")
  12979. },
  12980. {
  12981. name: "Teramacro",
  12982. height: math.unit(300, "AU")
  12983. },
  12984. {
  12985. name: "Full Size",
  12986. height: math.unit(4.5e10, "lightyears")
  12987. },
  12988. ]
  12989. ))
  12990. characterMakers.push(() => makeCharacter(
  12991. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12992. {
  12993. front: {
  12994. height: math.unit(6, "feet"),
  12995. weight: math.unit(150, "lb"),
  12996. name: "Front",
  12997. image: {
  12998. source: "./media/characters/holly/front.svg",
  12999. extra: 639 / 606
  13000. }
  13001. },
  13002. back: {
  13003. height: math.unit(6, "feet"),
  13004. weight: math.unit(150, "lb"),
  13005. name: "Back",
  13006. image: {
  13007. source: "./media/characters/holly/back.svg",
  13008. extra: 623 / 598
  13009. }
  13010. },
  13011. frontWorking: {
  13012. height: math.unit(6, "feet"),
  13013. weight: math.unit(150, "lb"),
  13014. name: "Front (Working)",
  13015. image: {
  13016. source: "./media/characters/holly/front-working.svg",
  13017. extra: 607 / 577,
  13018. bottom: 0.048
  13019. }
  13020. },
  13021. },
  13022. [
  13023. {
  13024. name: "Normal",
  13025. height: math.unit(12 + 3 / 12, "feet"),
  13026. default: true
  13027. },
  13028. ]
  13029. ))
  13030. characterMakers.push(() => makeCharacter(
  13031. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13032. {
  13033. front: {
  13034. height: math.unit(6, "feet"),
  13035. weight: math.unit(150, "lb"),
  13036. name: "Front",
  13037. image: {
  13038. source: "./media/characters/porter/front.svg",
  13039. extra: 1,
  13040. bottom: 0.01
  13041. }
  13042. },
  13043. frontRobes: {
  13044. height: math.unit(6, "feet"),
  13045. weight: math.unit(150, "lb"),
  13046. name: "Front (Robes)",
  13047. image: {
  13048. source: "./media/characters/porter/front-robes.svg",
  13049. extra: 1.01,
  13050. bottom: 0.01
  13051. }
  13052. },
  13053. },
  13054. [
  13055. {
  13056. name: "Normal",
  13057. height: math.unit(11 + 9 / 12, "feet"),
  13058. default: true
  13059. },
  13060. ]
  13061. ))
  13062. characterMakers.push(() => makeCharacter(
  13063. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13064. {
  13065. legendary: {
  13066. height: math.unit(6, "feet"),
  13067. weight: math.unit(150, "lb"),
  13068. name: "Legendary",
  13069. image: {
  13070. source: "./media/characters/lucy/legendary.svg",
  13071. extra: 1355 / 1100,
  13072. bottom: 0.045
  13073. }
  13074. },
  13075. },
  13076. [
  13077. {
  13078. name: "Legendary",
  13079. height: math.unit(86882 * 2, "miles"),
  13080. default: true
  13081. },
  13082. ]
  13083. ))
  13084. characterMakers.push(() => makeCharacter(
  13085. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13086. {
  13087. front: {
  13088. height: math.unit(6, "feet"),
  13089. weight: math.unit(150, "lb"),
  13090. name: "Front",
  13091. image: {
  13092. source: "./media/characters/drusilla/front.svg",
  13093. extra: 678 / 635,
  13094. bottom: 0.03
  13095. }
  13096. },
  13097. back: {
  13098. height: math.unit(6, "feet"),
  13099. weight: math.unit(150, "lb"),
  13100. name: "Back",
  13101. image: {
  13102. source: "./media/characters/drusilla/back.svg",
  13103. extra: 678 / 635,
  13104. bottom: 0.005
  13105. }
  13106. },
  13107. },
  13108. [
  13109. {
  13110. name: "Macro",
  13111. height: math.unit(100, "feet")
  13112. },
  13113. {
  13114. name: "Canon Height",
  13115. height: math.unit(2000, "feet"),
  13116. default: true
  13117. },
  13118. ]
  13119. ))
  13120. characterMakers.push(() => makeCharacter(
  13121. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13122. {
  13123. front: {
  13124. height: math.unit(6, "feet"),
  13125. weight: math.unit(180, "lb"),
  13126. name: "Front",
  13127. image: {
  13128. source: "./media/characters/renard-thatch/front.svg",
  13129. extra: 2411 / 2275,
  13130. bottom: 0.01
  13131. }
  13132. },
  13133. frontPosing: {
  13134. height: math.unit(6, "feet"),
  13135. weight: math.unit(180, "lb"),
  13136. name: "Front (Posing)",
  13137. image: {
  13138. source: "./media/characters/renard-thatch/front-posing.svg",
  13139. extra: 2381 / 2261,
  13140. bottom: 0.01
  13141. }
  13142. },
  13143. back: {
  13144. height: math.unit(6, "feet"),
  13145. weight: math.unit(180, "lb"),
  13146. name: "Back",
  13147. image: {
  13148. source: "./media/characters/renard-thatch/back.svg",
  13149. extra: 2428 / 2288
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Micro",
  13156. height: math.unit(3, "inches")
  13157. },
  13158. {
  13159. name: "Default",
  13160. height: math.unit(6, "feet"),
  13161. default: true
  13162. },
  13163. {
  13164. name: "Macro",
  13165. height: math.unit(75, "feet")
  13166. },
  13167. ]
  13168. ))
  13169. characterMakers.push(() => makeCharacter(
  13170. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13171. {
  13172. front: {
  13173. height: math.unit(1450, "feet"),
  13174. weight: math.unit(1.21e6, "tons"),
  13175. name: "Front",
  13176. image: {
  13177. source: "./media/characters/sekvra/front.svg",
  13178. extra: 1,
  13179. bottom: 0.03
  13180. }
  13181. },
  13182. frontClothed: {
  13183. height: math.unit(1450, "feet"),
  13184. weight: math.unit(1.21e6, "tons"),
  13185. name: "Front (Clothed)",
  13186. image: {
  13187. source: "./media/characters/sekvra/front-clothed.svg",
  13188. extra: 1,
  13189. bottom: 0.03
  13190. }
  13191. },
  13192. side: {
  13193. height: math.unit(1450, "feet"),
  13194. weight: math.unit(1.21e6, "tons"),
  13195. name: "Side",
  13196. image: {
  13197. source: "./media/characters/sekvra/side.svg",
  13198. extra: 1,
  13199. bottom: 0.025
  13200. }
  13201. },
  13202. back: {
  13203. height: math.unit(1450, "feet"),
  13204. weight: math.unit(1.21e6, "tons"),
  13205. name: "Back",
  13206. image: {
  13207. source: "./media/characters/sekvra/back.svg",
  13208. extra: 1,
  13209. bottom: 0.005
  13210. }
  13211. },
  13212. },
  13213. [
  13214. {
  13215. name: "Macro",
  13216. height: math.unit(1450, "feet"),
  13217. default: true
  13218. },
  13219. {
  13220. name: "Megamacro",
  13221. height: math.unit(15000, "feet")
  13222. },
  13223. ]
  13224. ))
  13225. characterMakers.push(() => makeCharacter(
  13226. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13227. {
  13228. front: {
  13229. height: math.unit(6, "feet"),
  13230. weight: math.unit(150, "lb"),
  13231. name: "Front",
  13232. image: {
  13233. source: "./media/characters/carmine/front.svg",
  13234. extra: 1,
  13235. bottom: 0.035
  13236. }
  13237. },
  13238. frontArmor: {
  13239. height: math.unit(6, "feet"),
  13240. weight: math.unit(150, "lb"),
  13241. name: "Front (Armor)",
  13242. image: {
  13243. source: "./media/characters/carmine/front-armor.svg",
  13244. extra: 1,
  13245. bottom: 0.035
  13246. }
  13247. },
  13248. },
  13249. [
  13250. {
  13251. name: "Large",
  13252. height: math.unit(1, "mile")
  13253. },
  13254. {
  13255. name: "Huge",
  13256. height: math.unit(40, "miles"),
  13257. default: true
  13258. },
  13259. {
  13260. name: "Colossal",
  13261. height: math.unit(2500, "miles")
  13262. },
  13263. ]
  13264. ))
  13265. characterMakers.push(() => makeCharacter(
  13266. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13267. {
  13268. front: {
  13269. height: math.unit(6, "feet"),
  13270. weight: math.unit(150, "lb"),
  13271. name: "Front",
  13272. image: {
  13273. source: "./media/characters/elyssia/front.svg",
  13274. extra: 2201 / 2035,
  13275. bottom: 0.05
  13276. }
  13277. },
  13278. frontClothed: {
  13279. height: math.unit(6, "feet"),
  13280. weight: math.unit(150, "lb"),
  13281. name: "Front (Clothed)",
  13282. image: {
  13283. source: "./media/characters/elyssia/front-clothed.svg",
  13284. extra: 2201 / 2035,
  13285. bottom: 0.05
  13286. }
  13287. },
  13288. back: {
  13289. height: math.unit(6, "feet"),
  13290. weight: math.unit(150, "lb"),
  13291. name: "Back",
  13292. image: {
  13293. source: "./media/characters/elyssia/back.svg",
  13294. extra: 2201 / 2035,
  13295. bottom: 0.013
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Smaller",
  13302. height: math.unit(150, "feet")
  13303. },
  13304. {
  13305. name: "Standard",
  13306. height: math.unit(1400, "feet"),
  13307. default: true
  13308. },
  13309. {
  13310. name: "Distracted",
  13311. height: math.unit(15000, "feet")
  13312. },
  13313. ]
  13314. ))
  13315. characterMakers.push(() => makeCharacter(
  13316. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13317. {
  13318. front: {
  13319. height: math.unit(7 + 4 / 12, "feet"),
  13320. weight: math.unit(500, "lb"),
  13321. name: "Front",
  13322. image: {
  13323. source: "./media/characters/geno-maxwell/front.svg",
  13324. extra: 2207 / 2040,
  13325. bottom: 0.015
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Micro",
  13332. height: math.unit(3, "inches")
  13333. },
  13334. {
  13335. name: "Normal",
  13336. height: math.unit(7 + 4 / 12, "feet"),
  13337. default: true
  13338. },
  13339. {
  13340. name: "Macro",
  13341. height: math.unit(220, "feet")
  13342. },
  13343. {
  13344. name: "Megamacro",
  13345. height: math.unit(11, "miles")
  13346. },
  13347. ]
  13348. ))
  13349. characterMakers.push(() => makeCharacter(
  13350. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13351. {
  13352. front: {
  13353. height: math.unit(7 + 4 / 12, "feet"),
  13354. weight: math.unit(500, "lb"),
  13355. name: "Front",
  13356. image: {
  13357. source: "./media/characters/regena-maxwell/front.svg",
  13358. extra: 3115 / 2770,
  13359. bottom: 0.02
  13360. }
  13361. },
  13362. },
  13363. [
  13364. {
  13365. name: "Normal",
  13366. height: math.unit(7 + 4 / 12, "feet"),
  13367. default: true
  13368. },
  13369. {
  13370. name: "Macro",
  13371. height: math.unit(220, "feet")
  13372. },
  13373. {
  13374. name: "Megamacro",
  13375. height: math.unit(11, "miles")
  13376. },
  13377. ]
  13378. ))
  13379. characterMakers.push(() => makeCharacter(
  13380. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13381. {
  13382. front: {
  13383. height: math.unit(6, "feet"),
  13384. weight: math.unit(150, "lb"),
  13385. name: "Front",
  13386. image: {
  13387. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13388. extra: 860 / 690,
  13389. bottom: 0.03
  13390. }
  13391. },
  13392. },
  13393. [
  13394. {
  13395. name: "Normal",
  13396. height: math.unit(1.7, "meters"),
  13397. default: true
  13398. },
  13399. ]
  13400. ))
  13401. characterMakers.push(() => makeCharacter(
  13402. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13403. {
  13404. front: {
  13405. height: math.unit(6, "feet"),
  13406. weight: math.unit(150, "lb"),
  13407. name: "Front",
  13408. image: {
  13409. source: "./media/characters/quilly/front.svg",
  13410. extra: 890 / 776
  13411. }
  13412. },
  13413. },
  13414. [
  13415. {
  13416. name: "Gigamacro",
  13417. height: math.unit(404090, "miles"),
  13418. default: true
  13419. },
  13420. ]
  13421. ))
  13422. characterMakers.push(() => makeCharacter(
  13423. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13424. {
  13425. front: {
  13426. height: math.unit(7 + 8 / 12, "feet"),
  13427. weight: math.unit(350, "lb"),
  13428. name: "Front",
  13429. image: {
  13430. source: "./media/characters/tempest/front.svg",
  13431. extra: 1175 / 1086,
  13432. bottom: 0.02
  13433. }
  13434. },
  13435. },
  13436. [
  13437. {
  13438. name: "Normal",
  13439. height: math.unit(7 + 8 / 12, "feet"),
  13440. default: true
  13441. },
  13442. ]
  13443. ))
  13444. characterMakers.push(() => makeCharacter(
  13445. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13446. {
  13447. side: {
  13448. height: math.unit(4 + 5 / 12, "feet"),
  13449. weight: math.unit(80, "lb"),
  13450. name: "Side",
  13451. image: {
  13452. source: "./media/characters/rodger/side.svg",
  13453. extra: 1235 / 1118
  13454. }
  13455. },
  13456. },
  13457. [
  13458. {
  13459. name: "Micro",
  13460. height: math.unit(1, "inch")
  13461. },
  13462. {
  13463. name: "Normal",
  13464. height: math.unit(4 + 5 / 12, "feet"),
  13465. default: true
  13466. },
  13467. {
  13468. name: "Macro",
  13469. height: math.unit(120, "feet")
  13470. },
  13471. ]
  13472. ))
  13473. characterMakers.push(() => makeCharacter(
  13474. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13475. {
  13476. front: {
  13477. height: math.unit(6, "feet"),
  13478. weight: math.unit(150, "lb"),
  13479. name: "Front",
  13480. image: {
  13481. source: "./media/characters/danyel/front.svg",
  13482. extra: 1185 / 1123,
  13483. bottom: 0.05
  13484. }
  13485. },
  13486. },
  13487. [
  13488. {
  13489. name: "Shrunken",
  13490. height: math.unit(0.5, "mm")
  13491. },
  13492. {
  13493. name: "Micro",
  13494. height: math.unit(1, "mm"),
  13495. default: true
  13496. },
  13497. {
  13498. name: "Upsized",
  13499. height: math.unit(5 + 5 / 12, "feet")
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13505. {
  13506. front: {
  13507. height: math.unit(5 + 6 / 12, "feet"),
  13508. weight: math.unit(200, "lb"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/vivian-bijoux/front.svg",
  13512. extra: 1,
  13513. bottom: 0.072
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Normal",
  13520. height: math.unit(5 + 6 / 12, "feet"),
  13521. default: true
  13522. },
  13523. {
  13524. name: "Bad Dream",
  13525. height: math.unit(500, "feet")
  13526. },
  13527. {
  13528. name: "Nightmare",
  13529. height: math.unit(500, "miles")
  13530. },
  13531. ]
  13532. ))
  13533. characterMakers.push(() => makeCharacter(
  13534. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13535. {
  13536. front: {
  13537. height: math.unit(6 + 1 / 12, "feet"),
  13538. weight: math.unit(260, "lb"),
  13539. name: "Front",
  13540. image: {
  13541. source: "./media/characters/zeta/front.svg",
  13542. extra: 1968 / 1889,
  13543. bottom: 0.06
  13544. }
  13545. },
  13546. back: {
  13547. height: math.unit(6 + 1 / 12, "feet"),
  13548. weight: math.unit(260, "lb"),
  13549. name: "Back",
  13550. image: {
  13551. source: "./media/characters/zeta/back.svg",
  13552. extra: 1944 / 1858,
  13553. bottom: 0.03
  13554. }
  13555. },
  13556. hand: {
  13557. height: math.unit(1.112, "feet"),
  13558. name: "Hand",
  13559. image: {
  13560. source: "./media/characters/zeta/hand.svg"
  13561. }
  13562. },
  13563. foot: {
  13564. height: math.unit(1.48, "feet"),
  13565. name: "Foot",
  13566. image: {
  13567. source: "./media/characters/zeta/foot.svg"
  13568. }
  13569. },
  13570. },
  13571. [
  13572. {
  13573. name: "Micro",
  13574. height: math.unit(6, "inches")
  13575. },
  13576. {
  13577. name: "Normal",
  13578. height: math.unit(6 + 1 / 12, "feet"),
  13579. default: true
  13580. },
  13581. {
  13582. name: "Macro",
  13583. height: math.unit(20, "feet")
  13584. },
  13585. ]
  13586. ))
  13587. characterMakers.push(() => makeCharacter(
  13588. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13589. {
  13590. front: {
  13591. height: math.unit(6, "feet"),
  13592. weight: math.unit(150, "lb"),
  13593. name: "Front",
  13594. image: {
  13595. source: "./media/characters/jamie-larsen/front.svg",
  13596. extra: 962 / 933,
  13597. bottom: 0.02
  13598. }
  13599. },
  13600. back: {
  13601. height: math.unit(6, "feet"),
  13602. weight: math.unit(150, "lb"),
  13603. name: "Back",
  13604. image: {
  13605. source: "./media/characters/jamie-larsen/back.svg",
  13606. extra: 997 / 946
  13607. }
  13608. },
  13609. },
  13610. [
  13611. {
  13612. name: "Macro",
  13613. height: math.unit(28 + 7 / 12, "feet"),
  13614. default: true
  13615. },
  13616. {
  13617. name: "Macro+",
  13618. height: math.unit(180, "feet")
  13619. },
  13620. {
  13621. name: "Megamacro",
  13622. height: math.unit(10, "miles")
  13623. },
  13624. {
  13625. name: "Gigamacro",
  13626. height: math.unit(200000, "miles")
  13627. },
  13628. ]
  13629. ))
  13630. characterMakers.push(() => makeCharacter(
  13631. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13632. {
  13633. front: {
  13634. height: math.unit(6, "feet"),
  13635. weight: math.unit(120, "lb"),
  13636. name: "Front",
  13637. image: {
  13638. source: "./media/characters/vance/front.svg",
  13639. extra: 1980 / 1890,
  13640. bottom: 0.09
  13641. }
  13642. },
  13643. back: {
  13644. height: math.unit(6, "feet"),
  13645. weight: math.unit(120, "lb"),
  13646. name: "Back",
  13647. image: {
  13648. source: "./media/characters/vance/back.svg",
  13649. extra: 2081 / 1994,
  13650. bottom: 0.014
  13651. }
  13652. },
  13653. hand: {
  13654. height: math.unit(0.88, "feet"),
  13655. name: "Hand",
  13656. image: {
  13657. source: "./media/characters/vance/hand.svg"
  13658. }
  13659. },
  13660. foot: {
  13661. height: math.unit(0.64, "feet"),
  13662. name: "Foot",
  13663. image: {
  13664. source: "./media/characters/vance/foot.svg"
  13665. }
  13666. },
  13667. },
  13668. [
  13669. {
  13670. name: "Small",
  13671. height: math.unit(90, "feet"),
  13672. default: true
  13673. },
  13674. {
  13675. name: "Macro",
  13676. height: math.unit(100, "meters")
  13677. },
  13678. {
  13679. name: "Megamacro",
  13680. height: math.unit(15, "miles")
  13681. },
  13682. ]
  13683. ))
  13684. characterMakers.push(() => makeCharacter(
  13685. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13686. {
  13687. front: {
  13688. height: math.unit(6, "feet"),
  13689. weight: math.unit(180, "lb"),
  13690. name: "Front",
  13691. image: {
  13692. source: "./media/characters/xochitl/front.svg",
  13693. extra: 2297 / 2261,
  13694. bottom: 0.065
  13695. }
  13696. },
  13697. back: {
  13698. height: math.unit(6, "feet"),
  13699. weight: math.unit(180, "lb"),
  13700. name: "Back",
  13701. image: {
  13702. source: "./media/characters/xochitl/back.svg",
  13703. extra: 2386 / 2354,
  13704. bottom: 0.01
  13705. }
  13706. },
  13707. foot: {
  13708. height: math.unit(6 / 5 * 1.15, "feet"),
  13709. weight: math.unit(150, "lb"),
  13710. name: "Foot",
  13711. image: {
  13712. source: "./media/characters/xochitl/foot.svg"
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Macro",
  13719. height: math.unit(80, "feet")
  13720. },
  13721. {
  13722. name: "Macro+",
  13723. height: math.unit(400, "feet"),
  13724. default: true
  13725. },
  13726. {
  13727. name: "Gigamacro",
  13728. height: math.unit(80000, "miles")
  13729. },
  13730. {
  13731. name: "Gigamacro+",
  13732. height: math.unit(400000, "miles")
  13733. },
  13734. {
  13735. name: "Teramacro",
  13736. height: math.unit(300, "AU")
  13737. },
  13738. ]
  13739. ))
  13740. characterMakers.push(() => makeCharacter(
  13741. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13742. {
  13743. front: {
  13744. height: math.unit(6, "feet"),
  13745. weight: math.unit(150, "lb"),
  13746. name: "Front",
  13747. image: {
  13748. source: "./media/characters/vincent/front.svg",
  13749. extra: 1130 / 1080,
  13750. bottom: 0.055
  13751. }
  13752. },
  13753. beak: {
  13754. height: math.unit(6 * 0.1, "feet"),
  13755. name: "Beak",
  13756. image: {
  13757. source: "./media/characters/vincent/beak.svg"
  13758. }
  13759. },
  13760. hand: {
  13761. height: math.unit(6 * 0.85, "feet"),
  13762. weight: math.unit(150, "lb"),
  13763. name: "Hand",
  13764. image: {
  13765. source: "./media/characters/vincent/hand.svg"
  13766. }
  13767. },
  13768. foot: {
  13769. height: math.unit(6 * 0.19, "feet"),
  13770. weight: math.unit(150, "lb"),
  13771. name: "Foot",
  13772. image: {
  13773. source: "./media/characters/vincent/foot.svg"
  13774. }
  13775. },
  13776. },
  13777. [
  13778. {
  13779. name: "Base",
  13780. height: math.unit(6 + 5 / 12, "feet"),
  13781. default: true
  13782. },
  13783. {
  13784. name: "Macro",
  13785. height: math.unit(300, "feet")
  13786. },
  13787. {
  13788. name: "Megamacro",
  13789. height: math.unit(2, "miles")
  13790. },
  13791. {
  13792. name: "Gigamacro",
  13793. height: math.unit(1000, "miles")
  13794. },
  13795. ]
  13796. ))
  13797. characterMakers.push(() => makeCharacter(
  13798. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13799. {
  13800. front: {
  13801. height: math.unit(2, "meters"),
  13802. weight: math.unit(500, "kg"),
  13803. name: "Front",
  13804. image: {
  13805. source: "./media/characters/coatl/front.svg",
  13806. extra: 3948 / 3500,
  13807. bottom: 0.082
  13808. }
  13809. },
  13810. },
  13811. [
  13812. {
  13813. name: "Normal",
  13814. height: math.unit(4, "meters")
  13815. },
  13816. {
  13817. name: "Macro",
  13818. height: math.unit(100, "meters"),
  13819. default: true
  13820. },
  13821. {
  13822. name: "Macro+",
  13823. height: math.unit(300, "meters")
  13824. },
  13825. {
  13826. name: "Megamacro",
  13827. height: math.unit(3, "gigameters")
  13828. },
  13829. {
  13830. name: "Megamacro+",
  13831. height: math.unit(300, "terameters")
  13832. },
  13833. {
  13834. name: "Megamacro++",
  13835. height: math.unit(3, "lightyears")
  13836. },
  13837. ]
  13838. ))
  13839. characterMakers.push(() => makeCharacter(
  13840. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13841. {
  13842. front: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(50, "kg"),
  13845. name: "front",
  13846. image: {
  13847. source: "./media/characters/shiroryu/front.svg",
  13848. extra: 1990 / 1935
  13849. }
  13850. },
  13851. },
  13852. [
  13853. {
  13854. name: "Mortal Mingling",
  13855. height: math.unit(3, "meters")
  13856. },
  13857. {
  13858. name: "Kaiju-ish",
  13859. height: math.unit(250, "meters")
  13860. },
  13861. {
  13862. name: "Somewhat Godly",
  13863. height: math.unit(400, "km"),
  13864. default: true
  13865. },
  13866. {
  13867. name: "Planetary",
  13868. height: math.unit(300, "megameters")
  13869. },
  13870. {
  13871. name: "Galaxy-dwarfing",
  13872. height: math.unit(450, "kiloparsecs")
  13873. },
  13874. {
  13875. name: "Universe Eater",
  13876. height: math.unit(150, "gigaparsecs")
  13877. },
  13878. {
  13879. name: "Almost Immeasurable",
  13880. height: math.unit(1.3e266, "yottaparsecs")
  13881. },
  13882. ]
  13883. ))
  13884. characterMakers.push(() => makeCharacter(
  13885. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13886. {
  13887. front: {
  13888. height: math.unit(6, "feet"),
  13889. weight: math.unit(150, "lb"),
  13890. name: "Front",
  13891. image: {
  13892. source: "./media/characters/umeko/front.svg",
  13893. extra: 1,
  13894. bottom: 0.019
  13895. }
  13896. },
  13897. frontArmored: {
  13898. height: math.unit(6, "feet"),
  13899. weight: math.unit(150, "lb"),
  13900. name: "Front (Armored)",
  13901. image: {
  13902. source: "./media/characters/umeko/front-armored.svg",
  13903. extra: 1,
  13904. bottom: 0.021
  13905. }
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Macro",
  13911. height: math.unit(220, "feet"),
  13912. default: true
  13913. },
  13914. {
  13915. name: "Guardian Dragon",
  13916. height: math.unit(50, "miles")
  13917. },
  13918. {
  13919. name: "Cosmic",
  13920. height: math.unit(800000, "miles")
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(6, "feet"),
  13929. weight: math.unit(150, "lb"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/cassidy/front.svg",
  13933. extra: 1,
  13934. bottom: 0.043
  13935. }
  13936. },
  13937. },
  13938. [
  13939. {
  13940. name: "Canon Height",
  13941. height: math.unit(120, "feet"),
  13942. default: true
  13943. },
  13944. {
  13945. name: "Macro+",
  13946. height: math.unit(400, "feet")
  13947. },
  13948. {
  13949. name: "Macro++",
  13950. height: math.unit(4000, "feet")
  13951. },
  13952. {
  13953. name: "Megamacro",
  13954. height: math.unit(3, "miles")
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(6, "feet"),
  13963. weight: math.unit(150, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/isaac/front.svg",
  13967. extra: 896 / 815,
  13968. bottom: 0.11
  13969. }
  13970. },
  13971. },
  13972. [
  13973. {
  13974. name: "Human Size",
  13975. height: math.unit(8, "feet"),
  13976. default: true
  13977. },
  13978. {
  13979. name: "Macro",
  13980. height: math.unit(400, "feet")
  13981. },
  13982. {
  13983. name: "Megamacro",
  13984. height: math.unit(50, "miles")
  13985. },
  13986. {
  13987. name: "Canon Height",
  13988. height: math.unit(200, "AU")
  13989. },
  13990. ]
  13991. ))
  13992. characterMakers.push(() => makeCharacter(
  13993. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13994. {
  13995. front: {
  13996. height: math.unit(6, "feet"),
  13997. weight: math.unit(72, "kg"),
  13998. name: "Front",
  13999. image: {
  14000. source: "./media/characters/sleekit/front.svg",
  14001. extra: 4693 / 4487,
  14002. bottom: 0.012
  14003. }
  14004. },
  14005. },
  14006. [
  14007. {
  14008. name: "Minimum Height",
  14009. height: math.unit(10, "meters")
  14010. },
  14011. {
  14012. name: "Smaller",
  14013. height: math.unit(25, "meters")
  14014. },
  14015. {
  14016. name: "Larger",
  14017. height: math.unit(38, "meters"),
  14018. default: true
  14019. },
  14020. {
  14021. name: "Maximum height",
  14022. height: math.unit(100, "meters")
  14023. },
  14024. ]
  14025. ))
  14026. characterMakers.push(() => makeCharacter(
  14027. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14028. {
  14029. front: {
  14030. height: math.unit(6, "feet"),
  14031. weight: math.unit(150, "lb"),
  14032. name: "Front",
  14033. image: {
  14034. source: "./media/characters/nillia/front.svg",
  14035. extra: 2195 / 2037,
  14036. bottom: 0.005
  14037. }
  14038. },
  14039. back: {
  14040. height: math.unit(6, "feet"),
  14041. weight: math.unit(150, "lb"),
  14042. name: "Back",
  14043. image: {
  14044. source: "./media/characters/nillia/back.svg",
  14045. extra: 2195 / 2037,
  14046. bottom: 0.005
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Canon Height",
  14053. height: math.unit(489, "feet"),
  14054. default: true
  14055. }
  14056. ]
  14057. ))
  14058. characterMakers.push(() => makeCharacter(
  14059. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14060. {
  14061. front: {
  14062. height: math.unit(6, "feet"),
  14063. weight: math.unit(150, "lb"),
  14064. name: "Front",
  14065. image: {
  14066. source: "./media/characters/mesmyriza/front.svg",
  14067. extra: 2067 / 1784,
  14068. bottom: 0.035
  14069. }
  14070. },
  14071. foot: {
  14072. height: math.unit(6 / (250 / 35), "feet"),
  14073. name: "Foot",
  14074. image: {
  14075. source: "./media/characters/mesmyriza/foot.svg"
  14076. }
  14077. },
  14078. },
  14079. [
  14080. {
  14081. name: "Macro",
  14082. height: math.unit(457, "meters"),
  14083. default: true
  14084. },
  14085. {
  14086. name: "Megamacro",
  14087. height: math.unit(8, "megameters")
  14088. },
  14089. ]
  14090. ))
  14091. characterMakers.push(() => makeCharacter(
  14092. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14093. {
  14094. front: {
  14095. height: math.unit(6, "feet"),
  14096. weight: math.unit(250, "lb"),
  14097. name: "Front",
  14098. image: {
  14099. source: "./media/characters/saudade/front.svg",
  14100. extra: 1172 / 1139,
  14101. bottom: 0.035
  14102. }
  14103. },
  14104. },
  14105. [
  14106. {
  14107. name: "Micro",
  14108. height: math.unit(3, "inches")
  14109. },
  14110. {
  14111. name: "Normal",
  14112. height: math.unit(6, "feet"),
  14113. default: true
  14114. },
  14115. {
  14116. name: "Macro",
  14117. height: math.unit(50, "feet")
  14118. },
  14119. {
  14120. name: "Megamacro",
  14121. height: math.unit(2800, "feet")
  14122. },
  14123. ]
  14124. ))
  14125. characterMakers.push(() => makeCharacter(
  14126. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14127. {
  14128. front: {
  14129. height: math.unit(5 + 4 / 12, "feet"),
  14130. weight: math.unit(100, "lb"),
  14131. name: "Front",
  14132. image: {
  14133. source: "./media/characters/keireer/front.svg",
  14134. extra: 716 / 666,
  14135. bottom: 0.05
  14136. }
  14137. },
  14138. },
  14139. [
  14140. {
  14141. name: "Normal",
  14142. height: math.unit(5 + 4 / 12, "feet"),
  14143. default: true
  14144. },
  14145. ]
  14146. ))
  14147. characterMakers.push(() => makeCharacter(
  14148. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14149. {
  14150. front: {
  14151. height: math.unit(6, "feet"),
  14152. weight: math.unit(90, "kg"),
  14153. name: "Front",
  14154. image: {
  14155. source: "./media/characters/mirja/front.svg",
  14156. extra: 1789 / 1683,
  14157. bottom: 0.05
  14158. }
  14159. },
  14160. frontDressed: {
  14161. height: math.unit(6, "feet"),
  14162. weight: math.unit(90, "lb"),
  14163. name: "Front (Dressed)",
  14164. image: {
  14165. source: "./media/characters/mirja/front-dressed.svg",
  14166. extra: 1789 / 1683,
  14167. bottom: 0.05
  14168. }
  14169. },
  14170. back: {
  14171. height: math.unit(6, "feet"),
  14172. weight: math.unit(90, "lb"),
  14173. name: "Back",
  14174. image: {
  14175. source: "./media/characters/mirja/back.svg",
  14176. extra: 953 / 917,
  14177. bottom: 0.017
  14178. }
  14179. },
  14180. },
  14181. [
  14182. {
  14183. name: "\"Incognito\"",
  14184. height: math.unit(3, "meters")
  14185. },
  14186. {
  14187. name: "Strolling Size",
  14188. height: math.unit(15, "km")
  14189. },
  14190. {
  14191. name: "Larger Strolling Size",
  14192. height: math.unit(400, "km")
  14193. },
  14194. {
  14195. name: "Preferred Size",
  14196. height: math.unit(5000, "km")
  14197. },
  14198. {
  14199. name: "True Size",
  14200. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14201. default: true
  14202. },
  14203. ]
  14204. ))
  14205. characterMakers.push(() => makeCharacter(
  14206. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14207. {
  14208. front: {
  14209. height: math.unit(15, "feet"),
  14210. weight: math.unit(880, "kg"),
  14211. name: "Front",
  14212. image: {
  14213. source: "./media/characters/nightraver/front.svg",
  14214. extra: 2444 / 2160,
  14215. bottom: 0.027
  14216. }
  14217. },
  14218. back: {
  14219. height: math.unit(15, "feet"),
  14220. weight: math.unit(880, "kg"),
  14221. name: "Back",
  14222. image: {
  14223. source: "./media/characters/nightraver/back.svg",
  14224. extra: 2309 / 2180,
  14225. bottom: 0.005
  14226. }
  14227. },
  14228. sole: {
  14229. height: math.unit(2.878, "feet"),
  14230. name: "Sole",
  14231. image: {
  14232. source: "./media/characters/nightraver/sole.svg"
  14233. }
  14234. },
  14235. foot: {
  14236. height: math.unit(2.285, "feet"),
  14237. name: "Foot",
  14238. image: {
  14239. source: "./media/characters/nightraver/foot.svg"
  14240. }
  14241. },
  14242. maw: {
  14243. height: math.unit(2.67, "feet"),
  14244. name: "Maw",
  14245. image: {
  14246. source: "./media/characters/nightraver/maw.svg"
  14247. }
  14248. },
  14249. },
  14250. [
  14251. {
  14252. name: "Micro",
  14253. height: math.unit(1, "cm")
  14254. },
  14255. {
  14256. name: "Normal",
  14257. height: math.unit(15, "feet"),
  14258. default: true
  14259. },
  14260. {
  14261. name: "Macro",
  14262. height: math.unit(300, "feet")
  14263. },
  14264. {
  14265. name: "Megamacro",
  14266. height: math.unit(300, "miles")
  14267. },
  14268. {
  14269. name: "Gigamacro",
  14270. height: math.unit(10000, "miles")
  14271. },
  14272. ]
  14273. ))
  14274. characterMakers.push(() => makeCharacter(
  14275. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14276. {
  14277. side: {
  14278. height: math.unit(2, "inches"),
  14279. weight: math.unit(5, "grams"),
  14280. name: "Side",
  14281. image: {
  14282. source: "./media/characters/arc/side.svg"
  14283. }
  14284. },
  14285. },
  14286. [
  14287. {
  14288. name: "Micro",
  14289. height: math.unit(2, "inches"),
  14290. default: true
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14296. {
  14297. front: {
  14298. height: math.unit(1.1938, "meters"),
  14299. weight: math.unit(54, "kg"),
  14300. name: "Front",
  14301. image: {
  14302. source: "./media/characters/nebula-shahar/front.svg",
  14303. extra: 1642 / 1436,
  14304. bottom: 0.06
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Megamicro",
  14311. height: math.unit(0.3, "mm")
  14312. },
  14313. {
  14314. name: "Micro",
  14315. height: math.unit(3, "cm")
  14316. },
  14317. {
  14318. name: "Normal",
  14319. height: math.unit(138, "cm"),
  14320. default: true
  14321. },
  14322. {
  14323. name: "Macro",
  14324. height: math.unit(30, "m")
  14325. },
  14326. ]
  14327. ))
  14328. characterMakers.push(() => makeCharacter(
  14329. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14330. {
  14331. front: {
  14332. height: math.unit(5.24, "feet"),
  14333. weight: math.unit(150, "lb"),
  14334. name: "Front",
  14335. image: {
  14336. source: "./media/characters/shayla/front.svg",
  14337. extra: 1512 / 1414,
  14338. bottom: 0.01
  14339. }
  14340. },
  14341. back: {
  14342. height: math.unit(5.24, "feet"),
  14343. weight: math.unit(150, "lb"),
  14344. name: "Back",
  14345. image: {
  14346. source: "./media/characters/shayla/back.svg",
  14347. extra: 1512 / 1414
  14348. }
  14349. },
  14350. hand: {
  14351. height: math.unit(0.7781496062992126, "feet"),
  14352. name: "Hand",
  14353. image: {
  14354. source: "./media/characters/shayla/hand.svg"
  14355. }
  14356. },
  14357. foot: {
  14358. height: math.unit(1.4206036745406823, "feet"),
  14359. name: "Foot",
  14360. image: {
  14361. source: "./media/characters/shayla/foot.svg"
  14362. }
  14363. },
  14364. },
  14365. [
  14366. {
  14367. name: "Micro",
  14368. height: math.unit(0.32, "feet")
  14369. },
  14370. {
  14371. name: "Normal",
  14372. height: math.unit(5.24, "feet"),
  14373. default: true
  14374. },
  14375. {
  14376. name: "Macro",
  14377. height: math.unit(492.12, "feet")
  14378. },
  14379. {
  14380. name: "Megamacro",
  14381. height: math.unit(186.41, "miles")
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14387. {
  14388. front: {
  14389. height: math.unit(2.2, "m"),
  14390. weight: math.unit(120, "kg"),
  14391. name: "Front",
  14392. image: {
  14393. source: "./media/characters/pia-jr/front.svg",
  14394. extra: 1000 / 970,
  14395. bottom: 0.035
  14396. }
  14397. },
  14398. hand: {
  14399. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14400. name: "Hand",
  14401. image: {
  14402. source: "./media/characters/pia-jr/hand.svg"
  14403. }
  14404. },
  14405. paw: {
  14406. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14407. name: "Paw",
  14408. image: {
  14409. source: "./media/characters/pia-jr/paw.svg"
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Micro",
  14416. height: math.unit(1.2, "cm")
  14417. },
  14418. {
  14419. name: "Normal",
  14420. height: math.unit(2.2, "m"),
  14421. default: true
  14422. },
  14423. {
  14424. name: "Macro",
  14425. height: math.unit(180, "m")
  14426. },
  14427. {
  14428. name: "Megamacro",
  14429. height: math.unit(420, "km")
  14430. },
  14431. ]
  14432. ))
  14433. characterMakers.push(() => makeCharacter(
  14434. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14435. {
  14436. front: {
  14437. height: math.unit(2, "m"),
  14438. weight: math.unit(115, "kg"),
  14439. name: "Front",
  14440. image: {
  14441. source: "./media/characters/pia-sr/front.svg",
  14442. extra: 760 / 730,
  14443. bottom: 0.015
  14444. }
  14445. },
  14446. back: {
  14447. height: math.unit(2, "m"),
  14448. weight: math.unit(115, "kg"),
  14449. name: "Back",
  14450. image: {
  14451. source: "./media/characters/pia-sr/back.svg",
  14452. extra: 760 / 730,
  14453. bottom: 0.01
  14454. }
  14455. },
  14456. hand: {
  14457. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14458. name: "Hand",
  14459. image: {
  14460. source: "./media/characters/pia-sr/hand.svg"
  14461. }
  14462. },
  14463. foot: {
  14464. height: math.unit(1.83, "feet"),
  14465. name: "Foot",
  14466. image: {
  14467. source: "./media/characters/pia-sr/foot.svg"
  14468. }
  14469. },
  14470. },
  14471. [
  14472. {
  14473. name: "Micro",
  14474. height: math.unit(88, "mm")
  14475. },
  14476. {
  14477. name: "Normal",
  14478. height: math.unit(2, "m"),
  14479. default: true
  14480. },
  14481. {
  14482. name: "Macro",
  14483. height: math.unit(200, "m")
  14484. },
  14485. {
  14486. name: "Megamacro",
  14487. height: math.unit(420, "km")
  14488. },
  14489. ]
  14490. ))
  14491. characterMakers.push(() => makeCharacter(
  14492. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14493. {
  14494. front: {
  14495. height: math.unit(8 + 2 / 12, "feet"),
  14496. weight: math.unit(300, "lb"),
  14497. name: "Front",
  14498. image: {
  14499. source: "./media/characters/kibibyte/front.svg",
  14500. extra: 2221 / 2098,
  14501. bottom: 0.04
  14502. }
  14503. },
  14504. },
  14505. [
  14506. {
  14507. name: "Normal",
  14508. height: math.unit(8 + 2 / 12, "feet"),
  14509. default: true
  14510. },
  14511. {
  14512. name: "Socialable Macro",
  14513. height: math.unit(50, "feet")
  14514. },
  14515. {
  14516. name: "Macro",
  14517. height: math.unit(300, "feet")
  14518. },
  14519. {
  14520. name: "Megamacro",
  14521. height: math.unit(500, "miles")
  14522. },
  14523. ]
  14524. ))
  14525. characterMakers.push(() => makeCharacter(
  14526. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14527. {
  14528. front: {
  14529. height: math.unit(6, "feet"),
  14530. weight: math.unit(150, "lb"),
  14531. name: "Front",
  14532. image: {
  14533. source: "./media/characters/felix/front.svg",
  14534. extra: 762 / 722,
  14535. bottom: 0.02
  14536. }
  14537. },
  14538. frontClothed: {
  14539. height: math.unit(6, "feet"),
  14540. weight: math.unit(150, "lb"),
  14541. name: "Front (Clothed)",
  14542. image: {
  14543. source: "./media/characters/felix/front-clothed.svg",
  14544. extra: 762 / 722,
  14545. bottom: 0.02
  14546. }
  14547. },
  14548. },
  14549. [
  14550. {
  14551. name: "Normal",
  14552. height: math.unit(6 + 8 / 12, "feet"),
  14553. default: true
  14554. },
  14555. {
  14556. name: "Macro",
  14557. height: math.unit(2600, "feet")
  14558. },
  14559. {
  14560. name: "Megamacro",
  14561. height: math.unit(450, "miles")
  14562. },
  14563. ]
  14564. ))
  14565. characterMakers.push(() => makeCharacter(
  14566. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14567. {
  14568. front: {
  14569. height: math.unit(6 + 1 / 12, "feet"),
  14570. weight: math.unit(250, "lb"),
  14571. name: "Front",
  14572. image: {
  14573. source: "./media/characters/tobo/front.svg",
  14574. extra: 608 / 586,
  14575. bottom: 0.023
  14576. }
  14577. },
  14578. back: {
  14579. height: math.unit(6 + 1 / 12, "feet"),
  14580. weight: math.unit(250, "lb"),
  14581. name: "Back",
  14582. image: {
  14583. source: "./media/characters/tobo/back.svg",
  14584. extra: 608 / 586
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Nano",
  14591. height: math.unit(2, "nm")
  14592. },
  14593. {
  14594. name: "Megamicro",
  14595. height: math.unit(0.1, "mm")
  14596. },
  14597. {
  14598. name: "Micro",
  14599. height: math.unit(1, "inch"),
  14600. default: true
  14601. },
  14602. {
  14603. name: "Human-sized",
  14604. height: math.unit(6 + 1 / 12, "feet")
  14605. },
  14606. {
  14607. name: "Macro",
  14608. height: math.unit(250, "feet")
  14609. },
  14610. {
  14611. name: "Megamacro",
  14612. height: math.unit(75, "miles")
  14613. },
  14614. {
  14615. name: "Texas-sized",
  14616. height: math.unit(750, "miles")
  14617. },
  14618. {
  14619. name: "Teramacro",
  14620. height: math.unit(50000, "miles")
  14621. },
  14622. ]
  14623. ))
  14624. characterMakers.push(() => makeCharacter(
  14625. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14626. {
  14627. front: {
  14628. height: math.unit(6, "feet"),
  14629. weight: math.unit(269, "lb"),
  14630. name: "Front",
  14631. image: {
  14632. source: "./media/characters/danny-kapowsky/front.svg",
  14633. extra: 766 / 736,
  14634. bottom: 0.044
  14635. }
  14636. },
  14637. back: {
  14638. height: math.unit(6, "feet"),
  14639. weight: math.unit(269, "lb"),
  14640. name: "Back",
  14641. image: {
  14642. source: "./media/characters/danny-kapowsky/back.svg",
  14643. extra: 797 / 760,
  14644. bottom: 0.025
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Macro",
  14651. height: math.unit(150, "feet"),
  14652. default: true
  14653. },
  14654. {
  14655. name: "Macro+",
  14656. height: math.unit(200, "feet")
  14657. },
  14658. {
  14659. name: "Macro++",
  14660. height: math.unit(300, "feet")
  14661. },
  14662. {
  14663. name: "Macro+++",
  14664. height: math.unit(400, "feet")
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14670. {
  14671. side: {
  14672. height: math.unit(6, "feet"),
  14673. weight: math.unit(170, "lb"),
  14674. name: "Side",
  14675. image: {
  14676. source: "./media/characters/finn/side.svg",
  14677. extra: 1953 / 1807,
  14678. bottom: 0.057
  14679. }
  14680. },
  14681. },
  14682. [
  14683. {
  14684. name: "Megamacro",
  14685. height: math.unit(14445, "feet"),
  14686. default: true
  14687. },
  14688. ]
  14689. ))
  14690. characterMakers.push(() => makeCharacter(
  14691. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14692. {
  14693. front: {
  14694. height: math.unit(5 + 6 / 12, "feet"),
  14695. weight: math.unit(125, "lb"),
  14696. name: "Front",
  14697. image: {
  14698. source: "./media/characters/roy/front.svg",
  14699. extra: 1,
  14700. bottom: 0.11
  14701. }
  14702. },
  14703. },
  14704. [
  14705. {
  14706. name: "Micro",
  14707. height: math.unit(3, "inches"),
  14708. default: true
  14709. },
  14710. {
  14711. name: "Normal",
  14712. height: math.unit(5 + 6 / 12, "feet")
  14713. },
  14714. {
  14715. name: "Lesser Macro",
  14716. height: math.unit(60, "feet")
  14717. },
  14718. {
  14719. name: "Greater Macro",
  14720. height: math.unit(120, "feet")
  14721. },
  14722. ]
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14726. {
  14727. front: {
  14728. height: math.unit(6, "feet"),
  14729. weight: math.unit(100, "lb"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/aevsivs/front.svg",
  14733. extra: 1,
  14734. bottom: 0.03
  14735. }
  14736. },
  14737. back: {
  14738. height: math.unit(6, "feet"),
  14739. weight: math.unit(100, "lb"),
  14740. name: "Back",
  14741. image: {
  14742. source: "./media/characters/aevsivs/back.svg"
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Micro",
  14749. height: math.unit(2, "inches"),
  14750. default: true
  14751. },
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(5, "feet")
  14755. },
  14756. ]
  14757. ))
  14758. characterMakers.push(() => makeCharacter(
  14759. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14760. {
  14761. front: {
  14762. height: math.unit(5 + 7 / 12, "feet"),
  14763. weight: math.unit(159, "lb"),
  14764. name: "Front",
  14765. image: {
  14766. source: "./media/characters/hildegard/front.svg",
  14767. extra: 289 / 269,
  14768. bottom: 7.63 / 297.8
  14769. }
  14770. },
  14771. back: {
  14772. height: math.unit(5 + 7 / 12, "feet"),
  14773. weight: math.unit(159, "lb"),
  14774. name: "Back",
  14775. image: {
  14776. source: "./media/characters/hildegard/back.svg",
  14777. extra: 280 / 260,
  14778. bottom: 2.3 / 282
  14779. }
  14780. },
  14781. },
  14782. [
  14783. {
  14784. name: "Normal",
  14785. height: math.unit(5 + 7 / 12, "feet"),
  14786. default: true
  14787. },
  14788. ]
  14789. ))
  14790. characterMakers.push(() => makeCharacter(
  14791. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14792. {
  14793. bernard: {
  14794. height: math.unit(2 + 7 / 12, "feet"),
  14795. weight: math.unit(66, "lb"),
  14796. name: "Bernard",
  14797. rename: true,
  14798. image: {
  14799. source: "./media/characters/bernard-wilder/bernard.svg",
  14800. extra: 192 / 128,
  14801. bottom: 0.05
  14802. }
  14803. },
  14804. wilder: {
  14805. height: math.unit(5 + 8 / 12, "feet"),
  14806. weight: math.unit(143, "lb"),
  14807. name: "Wilder",
  14808. rename: true,
  14809. image: {
  14810. source: "./media/characters/bernard-wilder/wilder.svg",
  14811. extra: 361 / 312,
  14812. bottom: 0.02
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "Normal",
  14819. height: math.unit(2 + 7 / 12, "feet"),
  14820. default: true
  14821. },
  14822. ]
  14823. ))
  14824. characterMakers.push(() => makeCharacter(
  14825. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14826. {
  14827. anthro: {
  14828. height: math.unit(6 + 1 / 12, "feet"),
  14829. weight: math.unit(155, "lb"),
  14830. name: "Anthro",
  14831. image: {
  14832. source: "./media/characters/hearth/anthro.svg",
  14833. extra: 260 / 250,
  14834. bottom: 0.02
  14835. }
  14836. },
  14837. feral: {
  14838. height: math.unit(3.78, "feet"),
  14839. weight: math.unit(35, "kg"),
  14840. name: "Feral",
  14841. image: {
  14842. source: "./media/characters/hearth/feral.svg",
  14843. extra: 153 / 135,
  14844. bottom: 0.03
  14845. }
  14846. },
  14847. },
  14848. [
  14849. {
  14850. name: "Normal",
  14851. height: math.unit(6 + 1 / 12, "feet"),
  14852. default: true
  14853. },
  14854. ]
  14855. ))
  14856. characterMakers.push(() => makeCharacter(
  14857. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14858. {
  14859. front: {
  14860. height: math.unit(6, "feet"),
  14861. weight: math.unit(182, "lb"),
  14862. name: "Front",
  14863. image: {
  14864. source: "./media/characters/ingrid/front.svg",
  14865. extra: 294 / 268,
  14866. bottom: 0.027
  14867. }
  14868. },
  14869. },
  14870. [
  14871. {
  14872. name: "Normal",
  14873. height: math.unit(6, "feet"),
  14874. default: true
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14880. {
  14881. eevee: {
  14882. height: math.unit(2 + 10 / 12, "feet"),
  14883. weight: math.unit(86, "lb"),
  14884. name: "Malgam",
  14885. image: {
  14886. source: "./media/characters/malgam/eevee.svg",
  14887. extra: 218 / 180,
  14888. bottom: 0.2
  14889. }
  14890. },
  14891. sylveon: {
  14892. height: math.unit(4, "feet"),
  14893. weight: math.unit(101, "lb"),
  14894. name: "Future Malgam",
  14895. rename: true,
  14896. image: {
  14897. source: "./media/characters/malgam/sylveon.svg",
  14898. extra: 371 / 325,
  14899. bottom: 0.015
  14900. }
  14901. },
  14902. gigantamax: {
  14903. height: math.unit(50, "feet"),
  14904. name: "Gigantamax Malgam",
  14905. rename: true,
  14906. image: {
  14907. source: "./media/characters/malgam/gigantamax.svg"
  14908. }
  14909. },
  14910. },
  14911. [
  14912. {
  14913. name: "Normal",
  14914. height: math.unit(2 + 10 / 12, "feet"),
  14915. default: true
  14916. },
  14917. ]
  14918. ))
  14919. characterMakers.push(() => makeCharacter(
  14920. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14921. {
  14922. front: {
  14923. height: math.unit(5 + 11 / 12, "feet"),
  14924. weight: math.unit(188, "lb"),
  14925. name: "Front",
  14926. image: {
  14927. source: "./media/characters/fleur/front.svg",
  14928. extra: 309 / 283,
  14929. bottom: 0.007
  14930. }
  14931. },
  14932. },
  14933. [
  14934. {
  14935. name: "Normal",
  14936. height: math.unit(5 + 11 / 12, "feet"),
  14937. default: true
  14938. },
  14939. ]
  14940. ))
  14941. characterMakers.push(() => makeCharacter(
  14942. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14943. {
  14944. front: {
  14945. height: math.unit(5 + 4 / 12, "feet"),
  14946. weight: math.unit(122, "lb"),
  14947. name: "Front",
  14948. image: {
  14949. source: "./media/characters/jude/front.svg",
  14950. extra: 288 / 273,
  14951. bottom: 0.03
  14952. }
  14953. },
  14954. },
  14955. [
  14956. {
  14957. name: "Normal",
  14958. height: math.unit(5 + 4 / 12, "feet"),
  14959. default: true
  14960. },
  14961. ]
  14962. ))
  14963. characterMakers.push(() => makeCharacter(
  14964. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14965. {
  14966. front: {
  14967. height: math.unit(5 + 11 / 12, "feet"),
  14968. weight: math.unit(190, "lb"),
  14969. name: "Front",
  14970. image: {
  14971. source: "./media/characters/seara/front.svg",
  14972. extra: 1,
  14973. bottom: 0.05
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "Normal",
  14980. height: math.unit(5 + 11 / 12, "feet"),
  14981. default: true
  14982. },
  14983. ]
  14984. ))
  14985. characterMakers.push(() => makeCharacter(
  14986. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14987. {
  14988. front: {
  14989. height: math.unit(16 + 5 / 12, "feet"),
  14990. weight: math.unit(524, "lb"),
  14991. name: "Front",
  14992. image: {
  14993. source: "./media/characters/caspian/front.svg",
  14994. extra: 1,
  14995. bottom: 0.04
  14996. }
  14997. },
  14998. },
  14999. [
  15000. {
  15001. name: "Normal",
  15002. height: math.unit(16 + 5 / 12, "feet"),
  15003. default: true
  15004. },
  15005. ]
  15006. ))
  15007. characterMakers.push(() => makeCharacter(
  15008. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15009. {
  15010. front: {
  15011. height: math.unit(5 + 7 / 12, "feet"),
  15012. weight: math.unit(170, "lb"),
  15013. name: "Front",
  15014. image: {
  15015. source: "./media/characters/mika/front.svg",
  15016. extra: 1,
  15017. bottom: 0.016
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Normal",
  15024. height: math.unit(5 + 7 / 12, "feet"),
  15025. default: true
  15026. },
  15027. ]
  15028. ))
  15029. characterMakers.push(() => makeCharacter(
  15030. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15031. {
  15032. front: {
  15033. height: math.unit(6 + 2 / 12, "feet"),
  15034. weight: math.unit(268, "lb"),
  15035. name: "Front",
  15036. image: {
  15037. source: "./media/characters/sol/front.svg",
  15038. extra: 247 / 231,
  15039. bottom: 0.05
  15040. }
  15041. },
  15042. },
  15043. [
  15044. {
  15045. name: "Normal",
  15046. height: math.unit(6 + 2 / 12, "feet"),
  15047. default: true
  15048. },
  15049. ]
  15050. ))
  15051. characterMakers.push(() => makeCharacter(
  15052. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15053. {
  15054. buizel: {
  15055. height: math.unit(2 + 5 / 12, "feet"),
  15056. weight: math.unit(87, "lb"),
  15057. name: "Buizel",
  15058. image: {
  15059. source: "./media/characters/umiko/buizel.svg",
  15060. extra: 172 / 157,
  15061. bottom: 0.01
  15062. }
  15063. },
  15064. floatzel: {
  15065. height: math.unit(5 + 9 / 12, "feet"),
  15066. weight: math.unit(250, "lb"),
  15067. name: "Floatzel",
  15068. image: {
  15069. source: "./media/characters/umiko/floatzel.svg",
  15070. extra: 262 / 248
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(2 + 5 / 12, "feet"),
  15078. default: true
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15084. {
  15085. front: {
  15086. height: math.unit(6 + 2 / 12, "feet"),
  15087. weight: math.unit(146, "lb"),
  15088. name: "Front",
  15089. image: {
  15090. source: "./media/characters/iliac/front.svg",
  15091. extra: 389 / 365,
  15092. bottom: 0.035
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Normal",
  15099. height: math.unit(6 + 2 / 12, "feet"),
  15100. default: true
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15106. {
  15107. front: {
  15108. height: math.unit(6, "feet"),
  15109. weight: math.unit(170, "lb"),
  15110. name: "Front",
  15111. image: {
  15112. source: "./media/characters/topaz/front.svg",
  15113. extra: 317 / 303,
  15114. bottom: 0.055
  15115. }
  15116. },
  15117. },
  15118. [
  15119. {
  15120. name: "Normal",
  15121. height: math.unit(6, "feet"),
  15122. default: true
  15123. },
  15124. ]
  15125. ))
  15126. characterMakers.push(() => makeCharacter(
  15127. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15128. {
  15129. front: {
  15130. height: math.unit(5 + 11 / 12, "feet"),
  15131. weight: math.unit(144, "lb"),
  15132. name: "Front",
  15133. image: {
  15134. source: "./media/characters/gabriel/front.svg",
  15135. extra: 285 / 262,
  15136. bottom: 0.004
  15137. }
  15138. },
  15139. },
  15140. [
  15141. {
  15142. name: "Normal",
  15143. height: math.unit(5 + 11 / 12, "feet"),
  15144. default: true
  15145. },
  15146. ]
  15147. ))
  15148. characterMakers.push(() => makeCharacter(
  15149. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15150. {
  15151. side: {
  15152. height: math.unit(6 + 5 / 12, "feet"),
  15153. weight: math.unit(300, "lb"),
  15154. name: "Side",
  15155. image: {
  15156. source: "./media/characters/tempest-suicune/side.svg",
  15157. extra: 195 / 154,
  15158. bottom: 0.04
  15159. }
  15160. },
  15161. },
  15162. [
  15163. {
  15164. name: "Normal",
  15165. height: math.unit(6 + 5 / 12, "feet"),
  15166. default: true
  15167. },
  15168. ]
  15169. ))
  15170. characterMakers.push(() => makeCharacter(
  15171. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15172. {
  15173. front: {
  15174. height: math.unit(7 + 2 / 12, "feet"),
  15175. weight: math.unit(322, "lb"),
  15176. name: "Front",
  15177. image: {
  15178. source: "./media/characters/vulcan/front.svg",
  15179. extra: 154 / 147,
  15180. bottom: 0.04
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(7 + 2 / 12, "feet"),
  15188. default: true
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15194. {
  15195. front: {
  15196. height: math.unit(5 + 10 / 12, "feet"),
  15197. weight: math.unit(264, "lb"),
  15198. name: "Front",
  15199. image: {
  15200. source: "./media/characters/gault/front.svg",
  15201. extra: 161 / 140,
  15202. bottom: 0.028
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(5 + 10 / 12, "feet"),
  15210. default: true
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15216. {
  15217. front: {
  15218. height: math.unit(6, "feet"),
  15219. weight: math.unit(150, "lb"),
  15220. name: "Front",
  15221. image: {
  15222. source: "./media/characters/shard/front.svg",
  15223. extra: 273 / 238,
  15224. bottom: 0.02
  15225. }
  15226. },
  15227. },
  15228. [
  15229. {
  15230. name: "Normal",
  15231. height: math.unit(3 + 6 / 12, "feet"),
  15232. default: true
  15233. },
  15234. ]
  15235. ))
  15236. characterMakers.push(() => makeCharacter(
  15237. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15238. {
  15239. front: {
  15240. height: math.unit(5 + 11 / 12, "feet"),
  15241. weight: math.unit(146, "lb"),
  15242. name: "Front",
  15243. image: {
  15244. source: "./media/characters/ashe/front.svg",
  15245. extra: 400 / 373,
  15246. bottom: 0.01
  15247. }
  15248. },
  15249. },
  15250. [
  15251. {
  15252. name: "Normal",
  15253. height: math.unit(5 + 11 / 12, "feet"),
  15254. default: true
  15255. },
  15256. ]
  15257. ))
  15258. characterMakers.push(() => makeCharacter(
  15259. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15260. {
  15261. front: {
  15262. height: math.unit(5 + 5 / 12, "feet"),
  15263. weight: math.unit(135, "lb"),
  15264. name: "Front",
  15265. image: {
  15266. source: "./media/characters/beatrix/front.svg",
  15267. extra: 392 / 379,
  15268. bottom: 0.01
  15269. }
  15270. },
  15271. },
  15272. [
  15273. {
  15274. name: "Normal",
  15275. height: math.unit(6, "feet"),
  15276. default: true
  15277. },
  15278. ]
  15279. ))
  15280. characterMakers.push(() => makeCharacter(
  15281. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15282. {
  15283. front: {
  15284. height: math.unit(6, "feet"),
  15285. weight: math.unit(150, "lb"),
  15286. name: "Front",
  15287. image: {
  15288. source: "./media/characters/ignatius/front.svg",
  15289. extra: 245 / 222,
  15290. bottom: 0.01
  15291. }
  15292. },
  15293. },
  15294. [
  15295. {
  15296. name: "Normal",
  15297. height: math.unit(5 + 5 / 12, "feet"),
  15298. default: true
  15299. },
  15300. ]
  15301. ))
  15302. characterMakers.push(() => makeCharacter(
  15303. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15304. {
  15305. front: {
  15306. height: math.unit(6 + 2 / 12, "feet"),
  15307. weight: math.unit(138, "lb"),
  15308. name: "Front",
  15309. image: {
  15310. source: "./media/characters/mei-li/front.svg",
  15311. extra: 237 / 229,
  15312. bottom: 0.03
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(6 + 2 / 12, "feet"),
  15320. default: true
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15326. {
  15327. front: {
  15328. height: math.unit(2 + 4 / 12, "feet"),
  15329. weight: math.unit(62, "lb"),
  15330. name: "Front",
  15331. image: {
  15332. source: "./media/characters/puru/front.svg",
  15333. extra: 206 / 149,
  15334. bottom: 0.06
  15335. }
  15336. },
  15337. },
  15338. [
  15339. {
  15340. name: "Normal",
  15341. height: math.unit(2 + 4 / 12, "feet"),
  15342. default: true
  15343. },
  15344. ]
  15345. ))
  15346. characterMakers.push(() => makeCharacter(
  15347. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15348. {
  15349. anthro: {
  15350. height: math.unit(5 + 8/12, "feet"),
  15351. weight: math.unit(200, "lb"),
  15352. energyNeed: math.unit(2000, "kcal"),
  15353. name: "Anthro",
  15354. image: {
  15355. source: "./media/characters/kee/anthro.svg",
  15356. extra: 3251/3184,
  15357. bottom: 250/3501
  15358. }
  15359. },
  15360. taur: {
  15361. height: math.unit(11, "feet"),
  15362. weight: math.unit(500, "lb"),
  15363. energyNeed: math.unit(5000, "kcal"),
  15364. name: "Taur",
  15365. image: {
  15366. source: "./media/characters/kee/taur.svg",
  15367. extra: 1362/1320,
  15368. bottom: 83/1445
  15369. }
  15370. },
  15371. },
  15372. [
  15373. {
  15374. name: "Normal",
  15375. height: math.unit(5 + 8/12, "feet"),
  15376. default: true
  15377. },
  15378. {
  15379. name: "Macro",
  15380. height: math.unit(35, "feet")
  15381. },
  15382. ]
  15383. ))
  15384. characterMakers.push(() => makeCharacter(
  15385. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15386. {
  15387. anthro: {
  15388. height: math.unit(7, "feet"),
  15389. weight: math.unit(190, "lb"),
  15390. name: "Anthro",
  15391. image: {
  15392. source: "./media/characters/cobalt-dracha/anthro.svg",
  15393. extra: 231 / 225,
  15394. bottom: 0.04
  15395. }
  15396. },
  15397. feral: {
  15398. height: math.unit(9 + 7 / 12, "feet"),
  15399. weight: math.unit(294, "lb"),
  15400. name: "Feral",
  15401. image: {
  15402. source: "./media/characters/cobalt-dracha/feral.svg",
  15403. extra: 692 / 633,
  15404. bottom: 0.05
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(7, "feet"),
  15412. default: true
  15413. },
  15414. ]
  15415. ))
  15416. characterMakers.push(() => makeCharacter(
  15417. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15418. {
  15419. fallen: {
  15420. height: math.unit(11 + 8 / 12, "feet"),
  15421. weight: math.unit(485, "lb"),
  15422. name: "Java (Fallen)",
  15423. rename: true,
  15424. image: {
  15425. source: "./media/characters/java/fallen.svg",
  15426. extra: 226 / 208,
  15427. bottom: 0.005
  15428. }
  15429. },
  15430. godkin: {
  15431. height: math.unit(10 + 6 / 12, "feet"),
  15432. weight: math.unit(328, "lb"),
  15433. name: "Java (Godkin)",
  15434. rename: true,
  15435. image: {
  15436. source: "./media/characters/java/godkin.svg",
  15437. extra: 270 / 262,
  15438. bottom: 0.02
  15439. }
  15440. },
  15441. },
  15442. [
  15443. {
  15444. name: "Normal",
  15445. height: math.unit(11 + 8 / 12, "feet"),
  15446. default: true
  15447. },
  15448. ]
  15449. ))
  15450. characterMakers.push(() => makeCharacter(
  15451. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15452. {
  15453. front: {
  15454. height: math.unit(7 + 8 / 12, "feet"),
  15455. weight: math.unit(320, "lb"),
  15456. name: "Front",
  15457. image: {
  15458. source: "./media/characters/skoll/front.svg",
  15459. extra: 232 / 220,
  15460. bottom: 0.02
  15461. }
  15462. },
  15463. },
  15464. [
  15465. {
  15466. name: "Normal",
  15467. height: math.unit(7 + 8 / 12, "feet"),
  15468. default: true
  15469. },
  15470. ]
  15471. ))
  15472. characterMakers.push(() => makeCharacter(
  15473. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15474. {
  15475. front: {
  15476. height: math.unit(5 + 9 / 12, "feet"),
  15477. weight: math.unit(170, "lb"),
  15478. name: "Front",
  15479. image: {
  15480. source: "./media/characters/purna/front.svg",
  15481. extra: 239 / 229,
  15482. bottom: 0.01
  15483. }
  15484. },
  15485. },
  15486. [
  15487. {
  15488. name: "Normal",
  15489. height: math.unit(5 + 9 / 12, "feet"),
  15490. default: true
  15491. },
  15492. ]
  15493. ))
  15494. characterMakers.push(() => makeCharacter(
  15495. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15496. {
  15497. front: {
  15498. height: math.unit(5 + 9 / 12, "feet"),
  15499. weight: math.unit(142, "lb"),
  15500. name: "Front",
  15501. image: {
  15502. source: "./media/characters/kuva/front.svg",
  15503. extra: 281 / 271,
  15504. bottom: 0.006
  15505. }
  15506. },
  15507. },
  15508. [
  15509. {
  15510. name: "Normal",
  15511. height: math.unit(5 + 9 / 12, "feet"),
  15512. default: true
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15518. {
  15519. anthro: {
  15520. height: math.unit(9 + 2 / 12, "feet"),
  15521. weight: math.unit(270, "lb"),
  15522. name: "Anthro",
  15523. image: {
  15524. source: "./media/characters/embra/anthro.svg",
  15525. extra: 200 / 187,
  15526. bottom: 0.02
  15527. }
  15528. },
  15529. feral: {
  15530. height: math.unit(18 + 8 / 12, "feet"),
  15531. weight: math.unit(576, "lb"),
  15532. name: "Feral",
  15533. image: {
  15534. source: "./media/characters/embra/feral.svg",
  15535. extra: 152 / 137,
  15536. bottom: 0.037
  15537. }
  15538. },
  15539. },
  15540. [
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(9 + 2 / 12, "feet"),
  15544. default: true
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15550. {
  15551. anthro: {
  15552. height: math.unit(10 + 9 / 12, "feet"),
  15553. weight: math.unit(224, "lb"),
  15554. name: "Anthro",
  15555. image: {
  15556. source: "./media/characters/grottos/anthro.svg",
  15557. extra: 350 / 332,
  15558. bottom: 0.045
  15559. }
  15560. },
  15561. feral: {
  15562. height: math.unit(20 + 7 / 12, "feet"),
  15563. weight: math.unit(629, "lb"),
  15564. name: "Feral",
  15565. image: {
  15566. source: "./media/characters/grottos/feral.svg",
  15567. extra: 207 / 190,
  15568. bottom: 0.05
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Normal",
  15575. height: math.unit(10 + 9 / 12, "feet"),
  15576. default: true
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15582. {
  15583. anthro: {
  15584. height: math.unit(9 + 6 / 12, "feet"),
  15585. weight: math.unit(298, "lb"),
  15586. name: "Anthro",
  15587. image: {
  15588. source: "./media/characters/frifna/anthro.svg",
  15589. extra: 282 / 269,
  15590. bottom: 0.015
  15591. }
  15592. },
  15593. feral: {
  15594. height: math.unit(16 + 2 / 12, "feet"),
  15595. weight: math.unit(624, "lb"),
  15596. name: "Feral",
  15597. image: {
  15598. source: "./media/characters/frifna/feral.svg"
  15599. }
  15600. },
  15601. },
  15602. [
  15603. {
  15604. name: "Normal",
  15605. height: math.unit(9 + 6 / 12, "feet"),
  15606. default: true
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15612. {
  15613. front: {
  15614. height: math.unit(6 + 2 / 12, "feet"),
  15615. weight: math.unit(168, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/elise/front.svg",
  15619. extra: 276 / 271
  15620. }
  15621. },
  15622. },
  15623. [
  15624. {
  15625. name: "Normal",
  15626. height: math.unit(6 + 2 / 12, "feet"),
  15627. default: true
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15633. {
  15634. front: {
  15635. height: math.unit(5 + 10 / 12, "feet"),
  15636. weight: math.unit(210, "lb"),
  15637. name: "Front",
  15638. image: {
  15639. source: "./media/characters/glade/front.svg",
  15640. extra: 258 / 247,
  15641. bottom: 0.008
  15642. }
  15643. },
  15644. },
  15645. [
  15646. {
  15647. name: "Normal",
  15648. height: math.unit(5 + 10 / 12, "feet"),
  15649. default: true
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(5 + 10 / 12, "feet"),
  15658. weight: math.unit(129, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/rina/front.svg",
  15662. extra: 266 / 255,
  15663. bottom: 0.005
  15664. }
  15665. },
  15666. },
  15667. [
  15668. {
  15669. name: "Normal",
  15670. height: math.unit(5 + 10 / 12, "feet"),
  15671. default: true
  15672. },
  15673. ]
  15674. ))
  15675. characterMakers.push(() => makeCharacter(
  15676. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15677. {
  15678. front: {
  15679. height: math.unit(6 + 1 / 12, "feet"),
  15680. weight: math.unit(192, "lb"),
  15681. name: "Front",
  15682. image: {
  15683. source: "./media/characters/veronica/front.svg",
  15684. extra: 319 / 309,
  15685. bottom: 0.005
  15686. }
  15687. },
  15688. },
  15689. [
  15690. {
  15691. name: "Normal",
  15692. height: math.unit(6 + 1 / 12, "feet"),
  15693. default: true
  15694. },
  15695. ]
  15696. ))
  15697. characterMakers.push(() => makeCharacter(
  15698. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15699. {
  15700. front: {
  15701. height: math.unit(9 + 3 / 12, "feet"),
  15702. weight: math.unit(1100, "lb"),
  15703. name: "Front",
  15704. image: {
  15705. source: "./media/characters/braxton/front.svg",
  15706. extra: 1057 / 984,
  15707. bottom: 0.05
  15708. }
  15709. },
  15710. },
  15711. [
  15712. {
  15713. name: "Normal",
  15714. height: math.unit(9 + 3 / 12, "feet")
  15715. },
  15716. {
  15717. name: "Giant",
  15718. height: math.unit(300, "feet"),
  15719. default: true
  15720. },
  15721. {
  15722. name: "Macro",
  15723. height: math.unit(700, "feet")
  15724. },
  15725. {
  15726. name: "Megamacro",
  15727. height: math.unit(6000, "feet")
  15728. },
  15729. ]
  15730. ))
  15731. characterMakers.push(() => makeCharacter(
  15732. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15733. {
  15734. front: {
  15735. height: math.unit(6 + 7 / 12, "feet"),
  15736. weight: math.unit(150, "lb"),
  15737. name: "Front",
  15738. image: {
  15739. source: "./media/characters/blue-feyonics/front.svg",
  15740. extra: 1403 / 1306,
  15741. bottom: 0.047
  15742. }
  15743. },
  15744. },
  15745. [
  15746. {
  15747. name: "Normal",
  15748. height: math.unit(6 + 7 / 12, "feet"),
  15749. default: true
  15750. },
  15751. ]
  15752. ))
  15753. characterMakers.push(() => makeCharacter(
  15754. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15755. {
  15756. front: {
  15757. height: math.unit(1.8, "meters"),
  15758. weight: math.unit(60, "kg"),
  15759. name: "Front",
  15760. image: {
  15761. source: "./media/characters/maxwell/front.svg",
  15762. extra: 2060 / 1873
  15763. }
  15764. },
  15765. },
  15766. [
  15767. {
  15768. name: "Micro",
  15769. height: math.unit(1, "mm")
  15770. },
  15771. {
  15772. name: "Normal",
  15773. height: math.unit(1.8, "meter"),
  15774. default: true
  15775. },
  15776. {
  15777. name: "Macro",
  15778. height: math.unit(30, "meters")
  15779. },
  15780. {
  15781. name: "Megamacro",
  15782. height: math.unit(10, "km")
  15783. },
  15784. ]
  15785. ))
  15786. characterMakers.push(() => makeCharacter(
  15787. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15788. {
  15789. front: {
  15790. height: math.unit(6, "feet"),
  15791. weight: math.unit(150, "lb"),
  15792. name: "Front",
  15793. image: {
  15794. source: "./media/characters/jack/front.svg",
  15795. extra: 1754 / 1640,
  15796. bottom: 0.01
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Normal",
  15803. height: math.unit(80000, "feet"),
  15804. default: true
  15805. },
  15806. {
  15807. name: "Max size",
  15808. height: math.unit(10, "lightyears")
  15809. },
  15810. ]
  15811. ))
  15812. characterMakers.push(() => makeCharacter(
  15813. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15814. {
  15815. urban: {
  15816. height: math.unit(5, "feet"),
  15817. weight: math.unit(240, "lb"),
  15818. name: "Urban",
  15819. image: {
  15820. source: "./media/characters/cafat/urban.svg",
  15821. extra: 1223/1126,
  15822. bottom: 205/1428
  15823. }
  15824. },
  15825. summer: {
  15826. height: math.unit(5, "feet"),
  15827. weight: math.unit(240, "lb"),
  15828. name: "Summer",
  15829. image: {
  15830. source: "./media/characters/cafat/summer.svg",
  15831. extra: 1223/1126,
  15832. bottom: 205/1428
  15833. }
  15834. },
  15835. winter: {
  15836. height: math.unit(5, "feet"),
  15837. weight: math.unit(240, "lb"),
  15838. name: "Winter",
  15839. image: {
  15840. source: "./media/characters/cafat/winter.svg",
  15841. extra: 1223/1126,
  15842. bottom: 205/1428
  15843. }
  15844. },
  15845. lingerie: {
  15846. height: math.unit(5, "feet"),
  15847. weight: math.unit(240, "lb"),
  15848. name: "Lingerie",
  15849. image: {
  15850. source: "./media/characters/cafat/lingerie.svg",
  15851. extra: 1223/1126,
  15852. bottom: 205/1428
  15853. }
  15854. },
  15855. upright: {
  15856. height: math.unit(6.3, "feet"),
  15857. weight: math.unit(240, "lb"),
  15858. name: "Upright",
  15859. image: {
  15860. source: "./media/characters/cafat/upright.svg",
  15861. bottom: 0.01
  15862. }
  15863. },
  15864. uprightFull: {
  15865. height: math.unit(6.3, "feet"),
  15866. weight: math.unit(240, "lb"),
  15867. name: "Upright (Full)",
  15868. image: {
  15869. source: "./media/characters/cafat/upright-full.svg",
  15870. bottom: 0.01
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Small",
  15877. height: math.unit(5, "feet"),
  15878. default: true
  15879. },
  15880. {
  15881. name: "Large",
  15882. height: math.unit(13, "feet")
  15883. },
  15884. ]
  15885. ))
  15886. characterMakers.push(() => makeCharacter(
  15887. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15888. {
  15889. front: {
  15890. height: math.unit(6, "feet"),
  15891. weight: math.unit(150, "lb"),
  15892. name: "Front",
  15893. image: {
  15894. source: "./media/characters/verin-raharra/front.svg",
  15895. extra: 5019 / 4835,
  15896. bottom: 0.023
  15897. }
  15898. },
  15899. },
  15900. [
  15901. {
  15902. name: "Normal",
  15903. height: math.unit(7 + 5 / 12, "feet"),
  15904. default: true
  15905. },
  15906. {
  15907. name: "Upsized",
  15908. height: math.unit(20, "feet")
  15909. },
  15910. ]
  15911. ))
  15912. characterMakers.push(() => makeCharacter(
  15913. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15914. {
  15915. front: {
  15916. height: math.unit(7, "feet"),
  15917. weight: math.unit(230, "lb"),
  15918. name: "Front",
  15919. image: {
  15920. source: "./media/characters/nakata/front.svg",
  15921. extra: 1.005,
  15922. bottom: 0.01
  15923. }
  15924. },
  15925. },
  15926. [
  15927. {
  15928. name: "Normal",
  15929. height: math.unit(7, "feet"),
  15930. default: true
  15931. },
  15932. {
  15933. name: "Big",
  15934. height: math.unit(14, "feet")
  15935. },
  15936. {
  15937. name: "Macro",
  15938. height: math.unit(400, "feet")
  15939. },
  15940. ]
  15941. ))
  15942. characterMakers.push(() => makeCharacter(
  15943. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15944. {
  15945. front: {
  15946. height: math.unit(4.91, "feet"),
  15947. weight: math.unit(100, "lb"),
  15948. name: "Front",
  15949. image: {
  15950. source: "./media/characters/lily/front.svg",
  15951. extra: 1585 / 1415,
  15952. bottom: 0.02
  15953. }
  15954. },
  15955. },
  15956. [
  15957. {
  15958. name: "Normal",
  15959. height: math.unit(4.91, "feet"),
  15960. default: true
  15961. },
  15962. ]
  15963. ))
  15964. characterMakers.push(() => makeCharacter(
  15965. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15966. {
  15967. laying: {
  15968. height: math.unit(4 + 4 / 12, "feet"),
  15969. weight: math.unit(600, "lb"),
  15970. name: "Laying",
  15971. image: {
  15972. source: "./media/characters/sheila/laying.svg",
  15973. extra: 1333 / 1265,
  15974. bottom: 0.16
  15975. }
  15976. },
  15977. },
  15978. [
  15979. {
  15980. name: "Normal",
  15981. height: math.unit(4 + 4 / 12, "feet"),
  15982. default: true
  15983. },
  15984. ]
  15985. ))
  15986. characterMakers.push(() => makeCharacter(
  15987. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15988. {
  15989. front: {
  15990. height: math.unit(6, "feet"),
  15991. weight: math.unit(190, "lb"),
  15992. name: "Front",
  15993. image: {
  15994. source: "./media/characters/sax/front.svg",
  15995. extra: 1187 / 973,
  15996. bottom: 0.042
  15997. }
  15998. },
  15999. },
  16000. [
  16001. {
  16002. name: "Micro",
  16003. height: math.unit(4, "inches"),
  16004. default: true
  16005. },
  16006. ]
  16007. ))
  16008. characterMakers.push(() => makeCharacter(
  16009. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16010. {
  16011. front: {
  16012. height: math.unit(6, "feet"),
  16013. weight: math.unit(150, "lb"),
  16014. name: "Front",
  16015. image: {
  16016. source: "./media/characters/pandora/front.svg",
  16017. extra: 2720 / 2556,
  16018. bottom: 0.015
  16019. }
  16020. },
  16021. back: {
  16022. height: math.unit(6, "feet"),
  16023. weight: math.unit(150, "lb"),
  16024. name: "Back",
  16025. image: {
  16026. source: "./media/characters/pandora/back.svg",
  16027. extra: 2720 / 2556,
  16028. bottom: 0.01
  16029. }
  16030. },
  16031. beans: {
  16032. height: math.unit(6 / 8, "feet"),
  16033. name: "Beans",
  16034. image: {
  16035. source: "./media/characters/pandora/beans.svg"
  16036. }
  16037. },
  16038. collar: {
  16039. height: math.unit(0.31, "feet"),
  16040. name: "Collar",
  16041. image: {
  16042. source: "./media/characters/pandora/collar.svg"
  16043. }
  16044. },
  16045. skirt: {
  16046. height: math.unit(6, "feet"),
  16047. weight: math.unit(150, "lb"),
  16048. name: "Skirt",
  16049. image: {
  16050. source: "./media/characters/pandora/skirt.svg",
  16051. extra: 1622 / 1525,
  16052. bottom: 0.015
  16053. }
  16054. },
  16055. hoodie: {
  16056. height: math.unit(6, "feet"),
  16057. weight: math.unit(150, "lb"),
  16058. name: "Hoodie",
  16059. image: {
  16060. source: "./media/characters/pandora/hoodie.svg",
  16061. extra: 1622 / 1525,
  16062. bottom: 0.015
  16063. }
  16064. },
  16065. casual: {
  16066. height: math.unit(6, "feet"),
  16067. weight: math.unit(150, "lb"),
  16068. name: "Casual",
  16069. image: {
  16070. source: "./media/characters/pandora/casual.svg",
  16071. extra: 1622 / 1525,
  16072. bottom: 0.015
  16073. }
  16074. },
  16075. },
  16076. [
  16077. {
  16078. name: "Normal",
  16079. height: math.unit(6, "feet")
  16080. },
  16081. {
  16082. name: "Big Steppy",
  16083. height: math.unit(1, "km"),
  16084. default: true
  16085. },
  16086. {
  16087. name: "Galactic Steppy",
  16088. height: math.unit(2, "gigameters")
  16089. },
  16090. ]
  16091. ))
  16092. characterMakers.push(() => makeCharacter(
  16093. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16094. {
  16095. side: {
  16096. height: math.unit(10, "feet"),
  16097. weight: math.unit(800, "kg"),
  16098. name: "Side",
  16099. image: {
  16100. source: "./media/characters/venio-darcony/side.svg",
  16101. extra: 1373 / 1003,
  16102. bottom: 0.037
  16103. }
  16104. },
  16105. front: {
  16106. height: math.unit(19, "feet"),
  16107. weight: math.unit(800, "kg"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/venio-darcony/front.svg"
  16111. }
  16112. },
  16113. back: {
  16114. height: math.unit(19, "feet"),
  16115. weight: math.unit(800, "kg"),
  16116. name: "Back",
  16117. image: {
  16118. source: "./media/characters/venio-darcony/back.svg"
  16119. }
  16120. },
  16121. sideNsfw: {
  16122. height: math.unit(10, "feet"),
  16123. weight: math.unit(800, "kg"),
  16124. name: "Side (NSFW)",
  16125. image: {
  16126. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16127. extra: 1373 / 1003,
  16128. bottom: 0.037
  16129. }
  16130. },
  16131. frontNsfw: {
  16132. height: math.unit(19, "feet"),
  16133. weight: math.unit(800, "kg"),
  16134. name: "Front (NSFW)",
  16135. image: {
  16136. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16137. }
  16138. },
  16139. backNsfw: {
  16140. height: math.unit(19, "feet"),
  16141. weight: math.unit(800, "kg"),
  16142. name: "Back (NSFW)",
  16143. image: {
  16144. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16145. }
  16146. },
  16147. sideArmored: {
  16148. height: math.unit(10, "feet"),
  16149. weight: math.unit(800, "kg"),
  16150. name: "Side (Armored)",
  16151. image: {
  16152. source: "./media/characters/venio-darcony/side-armored.svg",
  16153. extra: 1373 / 1003,
  16154. bottom: 0.037
  16155. }
  16156. },
  16157. frontArmored: {
  16158. height: math.unit(19, "feet"),
  16159. weight: math.unit(900, "kg"),
  16160. name: "Front (Armored)",
  16161. image: {
  16162. source: "./media/characters/venio-darcony/front-armored.svg"
  16163. }
  16164. },
  16165. backArmored: {
  16166. height: math.unit(19, "feet"),
  16167. weight: math.unit(900, "kg"),
  16168. name: "Back (Armored)",
  16169. image: {
  16170. source: "./media/characters/venio-darcony/back-armored.svg"
  16171. }
  16172. },
  16173. sword: {
  16174. height: math.unit(10, "feet"),
  16175. weight: math.unit(50, "lb"),
  16176. name: "Sword",
  16177. image: {
  16178. source: "./media/characters/venio-darcony/sword.svg"
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Normal",
  16185. height: math.unit(10, "feet")
  16186. },
  16187. {
  16188. name: "Macro",
  16189. height: math.unit(130, "feet"),
  16190. default: true
  16191. },
  16192. {
  16193. name: "Macro+",
  16194. height: math.unit(240, "feet")
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16200. {
  16201. front: {
  16202. height: math.unit(6, "feet"),
  16203. weight: math.unit(150, "lb"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/veski/front.svg",
  16207. extra: 1299 / 1225,
  16208. bottom: 0.04
  16209. }
  16210. },
  16211. back: {
  16212. height: math.unit(6, "feet"),
  16213. weight: math.unit(150, "lb"),
  16214. name: "Back",
  16215. image: {
  16216. source: "./media/characters/veski/back.svg",
  16217. extra: 1299 / 1225,
  16218. bottom: 0.008
  16219. }
  16220. },
  16221. maw: {
  16222. height: math.unit(1.5 * 1.21, "feet"),
  16223. name: "Maw",
  16224. image: {
  16225. source: "./media/characters/veski/maw.svg"
  16226. }
  16227. },
  16228. },
  16229. [
  16230. {
  16231. name: "Macro",
  16232. height: math.unit(2, "km"),
  16233. default: true
  16234. },
  16235. ]
  16236. ))
  16237. characterMakers.push(() => makeCharacter(
  16238. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16239. {
  16240. front: {
  16241. height: math.unit(5 + 7 / 12, "feet"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/isabelle/front.svg",
  16245. extra: 2130 / 1976,
  16246. bottom: 0.05
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Supermicro",
  16253. height: math.unit(10, "micrometers")
  16254. },
  16255. {
  16256. name: "Micro",
  16257. height: math.unit(1, "inch")
  16258. },
  16259. {
  16260. name: "Tiny",
  16261. height: math.unit(5, "inches")
  16262. },
  16263. {
  16264. name: "Standard",
  16265. height: math.unit(5 + 7 / 12, "inches")
  16266. },
  16267. {
  16268. name: "Macro",
  16269. height: math.unit(80, "meters"),
  16270. default: true
  16271. },
  16272. {
  16273. name: "Megamacro",
  16274. height: math.unit(250, "meters")
  16275. },
  16276. {
  16277. name: "Gigamacro",
  16278. height: math.unit(5, "km")
  16279. },
  16280. {
  16281. name: "Cosmic",
  16282. height: math.unit(2.5e6, "miles")
  16283. },
  16284. ]
  16285. ))
  16286. characterMakers.push(() => makeCharacter(
  16287. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16288. {
  16289. front: {
  16290. height: math.unit(6, "feet"),
  16291. weight: math.unit(150, "lb"),
  16292. name: "Front",
  16293. image: {
  16294. source: "./media/characters/hanzo/front.svg",
  16295. extra: 374 / 344,
  16296. bottom: 0.02
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Normal",
  16303. height: math.unit(8, "feet"),
  16304. default: true
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16310. {
  16311. front: {
  16312. height: math.unit(7, "feet"),
  16313. weight: math.unit(130, "lb"),
  16314. name: "Front",
  16315. image: {
  16316. source: "./media/characters/anna/front.svg",
  16317. extra: 169 / 145,
  16318. bottom: 0.06
  16319. }
  16320. },
  16321. full: {
  16322. height: math.unit(4.96, "feet"),
  16323. weight: math.unit(220, "lb"),
  16324. name: "Full",
  16325. image: {
  16326. source: "./media/characters/anna/full.svg",
  16327. extra: 138 / 114,
  16328. bottom: 0.15
  16329. }
  16330. },
  16331. tongue: {
  16332. height: math.unit(2.53, "feet"),
  16333. name: "Tongue",
  16334. image: {
  16335. source: "./media/characters/anna/tongue.svg"
  16336. }
  16337. },
  16338. },
  16339. [
  16340. {
  16341. name: "Normal",
  16342. height: math.unit(7, "feet"),
  16343. default: true
  16344. },
  16345. ]
  16346. ))
  16347. characterMakers.push(() => makeCharacter(
  16348. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16349. {
  16350. front: {
  16351. height: math.unit(7, "feet"),
  16352. weight: math.unit(150, "lb"),
  16353. name: "Front",
  16354. image: {
  16355. source: "./media/characters/ian-corvid/front.svg",
  16356. extra: 150 / 142,
  16357. bottom: 0.02
  16358. }
  16359. },
  16360. back: {
  16361. height: math.unit(7, "feet"),
  16362. weight: math.unit(150, "lb"),
  16363. name: "Back",
  16364. image: {
  16365. source: "./media/characters/ian-corvid/back.svg",
  16366. extra: 150 / 143,
  16367. bottom: 0.01
  16368. }
  16369. },
  16370. stomping: {
  16371. height: math.unit(7, "feet"),
  16372. weight: math.unit(150, "lb"),
  16373. name: "Stomping",
  16374. image: {
  16375. source: "./media/characters/ian-corvid/stomping.svg",
  16376. extra: 76 / 72
  16377. }
  16378. },
  16379. sitting: {
  16380. height: math.unit(7 / 1.8, "feet"),
  16381. weight: math.unit(150, "lb"),
  16382. name: "Sitting",
  16383. image: {
  16384. source: "./media/characters/ian-corvid/sitting.svg",
  16385. extra: 1400 / 1269,
  16386. bottom: 0.15
  16387. }
  16388. },
  16389. },
  16390. [
  16391. {
  16392. name: "Tiny Microw",
  16393. height: math.unit(1, "inch")
  16394. },
  16395. {
  16396. name: "Microw",
  16397. height: math.unit(6, "inches")
  16398. },
  16399. {
  16400. name: "Crow",
  16401. height: math.unit(7 + 1 / 12, "feet"),
  16402. default: true
  16403. },
  16404. {
  16405. name: "Macrow",
  16406. height: math.unit(176, "feet")
  16407. },
  16408. ]
  16409. ))
  16410. characterMakers.push(() => makeCharacter(
  16411. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16412. {
  16413. front: {
  16414. height: math.unit(5 + 7 / 12, "feet"),
  16415. weight: math.unit(147, "lb"),
  16416. name: "Front",
  16417. image: {
  16418. source: "./media/characters/natalie-kellon/front.svg",
  16419. extra: 1214 / 1141,
  16420. bottom: 0.02
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Micro",
  16427. height: math.unit(1 / 16, "inch")
  16428. },
  16429. {
  16430. name: "Tiny",
  16431. height: math.unit(4, "inches")
  16432. },
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(5 + 7 / 12, "feet"),
  16436. default: true
  16437. },
  16438. {
  16439. name: "Amazon",
  16440. height: math.unit(12, "feet")
  16441. },
  16442. {
  16443. name: "Giantess",
  16444. height: math.unit(160, "meters")
  16445. },
  16446. {
  16447. name: "Titaness",
  16448. height: math.unit(800, "meters")
  16449. },
  16450. ]
  16451. ))
  16452. characterMakers.push(() => makeCharacter(
  16453. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16454. {
  16455. front: {
  16456. height: math.unit(6, "feet"),
  16457. weight: math.unit(150, "lb"),
  16458. name: "Front",
  16459. image: {
  16460. source: "./media/characters/alluria/front.svg",
  16461. extra: 806 / 738,
  16462. bottom: 0.01
  16463. }
  16464. },
  16465. side: {
  16466. height: math.unit(6, "feet"),
  16467. weight: math.unit(150, "lb"),
  16468. name: "Side",
  16469. image: {
  16470. source: "./media/characters/alluria/side.svg",
  16471. extra: 800 / 750,
  16472. }
  16473. },
  16474. back: {
  16475. height: math.unit(6, "feet"),
  16476. weight: math.unit(150, "lb"),
  16477. name: "Back",
  16478. image: {
  16479. source: "./media/characters/alluria/back.svg",
  16480. extra: 806 / 738,
  16481. }
  16482. },
  16483. frontMaid: {
  16484. height: math.unit(6, "feet"),
  16485. weight: math.unit(150, "lb"),
  16486. name: "Front (Maid)",
  16487. image: {
  16488. source: "./media/characters/alluria/front-maid.svg",
  16489. extra: 806 / 738,
  16490. bottom: 0.01
  16491. }
  16492. },
  16493. sideMaid: {
  16494. height: math.unit(6, "feet"),
  16495. weight: math.unit(150, "lb"),
  16496. name: "Side (Maid)",
  16497. image: {
  16498. source: "./media/characters/alluria/side-maid.svg",
  16499. extra: 800 / 750,
  16500. bottom: 0.005
  16501. }
  16502. },
  16503. backMaid: {
  16504. height: math.unit(6, "feet"),
  16505. weight: math.unit(150, "lb"),
  16506. name: "Back (Maid)",
  16507. image: {
  16508. source: "./media/characters/alluria/back-maid.svg",
  16509. extra: 806 / 738,
  16510. }
  16511. },
  16512. },
  16513. [
  16514. {
  16515. name: "Micro",
  16516. height: math.unit(6, "inches"),
  16517. default: true
  16518. },
  16519. ]
  16520. ))
  16521. characterMakers.push(() => makeCharacter(
  16522. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16523. {
  16524. front: {
  16525. height: math.unit(6, "feet"),
  16526. weight: math.unit(150, "lb"),
  16527. name: "Front",
  16528. image: {
  16529. source: "./media/characters/kyle/front.svg",
  16530. extra: 1069 / 962,
  16531. bottom: 77.228 / 1727.45
  16532. }
  16533. },
  16534. },
  16535. [
  16536. {
  16537. name: "Macro",
  16538. height: math.unit(150, "feet"),
  16539. default: true
  16540. },
  16541. ]
  16542. ))
  16543. characterMakers.push(() => makeCharacter(
  16544. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16545. {
  16546. front: {
  16547. height: math.unit(6, "feet"),
  16548. weight: math.unit(300, "lb"),
  16549. name: "Front",
  16550. image: {
  16551. source: "./media/characters/duncan/front.svg",
  16552. extra: 1650 / 1482,
  16553. bottom: 0.05
  16554. }
  16555. },
  16556. },
  16557. [
  16558. {
  16559. name: "Macro",
  16560. height: math.unit(100, "feet"),
  16561. default: true
  16562. },
  16563. ]
  16564. ))
  16565. characterMakers.push(() => makeCharacter(
  16566. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16567. {
  16568. front: {
  16569. height: math.unit(5 + 4 / 12, "feet"),
  16570. weight: math.unit(220, "lb"),
  16571. name: "Front",
  16572. image: {
  16573. source: "./media/characters/memory/front.svg",
  16574. extra: 3641 / 3545,
  16575. bottom: 0.03
  16576. }
  16577. },
  16578. back: {
  16579. height: math.unit(5 + 4 / 12, "feet"),
  16580. weight: math.unit(220, "lb"),
  16581. name: "Back",
  16582. image: {
  16583. source: "./media/characters/memory/back.svg",
  16584. extra: 3641 / 3545,
  16585. bottom: 0.025
  16586. }
  16587. },
  16588. frontSkirt: {
  16589. height: math.unit(5 + 4 / 12, "feet"),
  16590. weight: math.unit(220, "lb"),
  16591. name: "Front (Skirt)",
  16592. image: {
  16593. source: "./media/characters/memory/front-skirt.svg",
  16594. extra: 3641 / 3545,
  16595. bottom: 0.03
  16596. }
  16597. },
  16598. frontDress: {
  16599. height: math.unit(5 + 4 / 12, "feet"),
  16600. weight: math.unit(220, "lb"),
  16601. name: "Front (Dress)",
  16602. image: {
  16603. source: "./media/characters/memory/front-dress.svg",
  16604. extra: 3641 / 3545,
  16605. bottom: 0.03
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Micro",
  16612. height: math.unit(6, "inches"),
  16613. default: true
  16614. },
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(5 + 4 / 12, "feet")
  16618. },
  16619. ]
  16620. ))
  16621. characterMakers.push(() => makeCharacter(
  16622. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16623. {
  16624. front: {
  16625. height: math.unit(4 + 11 / 12, "feet"),
  16626. weight: math.unit(100, "lb"),
  16627. name: "Front",
  16628. image: {
  16629. source: "./media/characters/luno/front.svg",
  16630. extra: 1535 / 1487,
  16631. bottom: 0.03
  16632. }
  16633. },
  16634. },
  16635. [
  16636. {
  16637. name: "Micro",
  16638. height: math.unit(3, "inches")
  16639. },
  16640. {
  16641. name: "Normal",
  16642. height: math.unit(4 + 11 / 12, "feet"),
  16643. default: true
  16644. },
  16645. {
  16646. name: "Macro",
  16647. height: math.unit(300, "feet")
  16648. },
  16649. {
  16650. name: "Megamacro",
  16651. height: math.unit(700, "miles")
  16652. },
  16653. ]
  16654. ))
  16655. characterMakers.push(() => makeCharacter(
  16656. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16657. {
  16658. front: {
  16659. height: math.unit(6 + 2 / 12, "feet"),
  16660. weight: math.unit(170, "lb"),
  16661. name: "Front",
  16662. image: {
  16663. source: "./media/characters/jamesy/front.svg",
  16664. extra: 440 / 382,
  16665. bottom: 0.005
  16666. }
  16667. },
  16668. },
  16669. [
  16670. {
  16671. name: "Micro",
  16672. height: math.unit(3, "inches")
  16673. },
  16674. {
  16675. name: "Normal",
  16676. height: math.unit(6 + 2 / 12, "feet"),
  16677. default: true
  16678. },
  16679. {
  16680. name: "Macro",
  16681. height: math.unit(300, "feet")
  16682. },
  16683. {
  16684. name: "Megamacro",
  16685. height: math.unit(700, "miles")
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16691. {
  16692. front: {
  16693. height: math.unit(6, "feet"),
  16694. weight: math.unit(160, "lb"),
  16695. name: "Front",
  16696. image: {
  16697. source: "./media/characters/mark/front.svg",
  16698. extra: 3300 / 3100,
  16699. bottom: 136.42 / 3440.47
  16700. }
  16701. },
  16702. },
  16703. [
  16704. {
  16705. name: "Macro",
  16706. height: math.unit(120, "meters")
  16707. },
  16708. {
  16709. name: "Bigger Macro",
  16710. height: math.unit(350, "meters")
  16711. },
  16712. {
  16713. name: "Megamacro",
  16714. height: math.unit(8, "km"),
  16715. default: true
  16716. },
  16717. {
  16718. name: "Continental",
  16719. height: math.unit(4550, "km")
  16720. },
  16721. {
  16722. name: "Planetary",
  16723. height: math.unit(65000, "km")
  16724. },
  16725. ]
  16726. ))
  16727. characterMakers.push(() => makeCharacter(
  16728. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16729. {
  16730. front: {
  16731. height: math.unit(6, "feet"),
  16732. weight: math.unit(400, "lb"),
  16733. name: "Front",
  16734. image: {
  16735. source: "./media/characters/mac/front.svg",
  16736. extra: 1048 / 987.7,
  16737. bottom: 60 / 1107.6,
  16738. }
  16739. },
  16740. },
  16741. [
  16742. {
  16743. name: "Macro",
  16744. height: math.unit(500, "feet"),
  16745. default: true
  16746. },
  16747. ]
  16748. ))
  16749. characterMakers.push(() => makeCharacter(
  16750. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16751. {
  16752. front: {
  16753. height: math.unit(5 + 2 / 12, "feet"),
  16754. weight: math.unit(190, "lb"),
  16755. name: "Front",
  16756. image: {
  16757. source: "./media/characters/bari/front.svg",
  16758. extra: 3156 / 2880,
  16759. bottom: 0.03
  16760. }
  16761. },
  16762. back: {
  16763. height: math.unit(5 + 2 / 12, "feet"),
  16764. weight: math.unit(190, "lb"),
  16765. name: "Back",
  16766. image: {
  16767. source: "./media/characters/bari/back.svg",
  16768. extra: 3260 / 2834,
  16769. bottom: 0.025
  16770. }
  16771. },
  16772. frontPlush: {
  16773. height: math.unit(5 + 2 / 12, "feet"),
  16774. weight: math.unit(190, "lb"),
  16775. name: "Front (Plush)",
  16776. image: {
  16777. source: "./media/characters/bari/front-plush.svg",
  16778. extra: 1112 / 1061,
  16779. bottom: 0.002
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Micro",
  16786. height: math.unit(3, "inches")
  16787. },
  16788. {
  16789. name: "Normal",
  16790. height: math.unit(5 + 2 / 12, "feet"),
  16791. default: true
  16792. },
  16793. {
  16794. name: "Macro",
  16795. height: math.unit(20, "feet")
  16796. },
  16797. ]
  16798. ))
  16799. characterMakers.push(() => makeCharacter(
  16800. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16801. {
  16802. front: {
  16803. height: math.unit(6 + 1 / 12, "feet"),
  16804. weight: math.unit(275, "lb"),
  16805. name: "Front",
  16806. image: {
  16807. source: "./media/characters/hunter-misha-raven/front.svg"
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Mortal",
  16814. height: math.unit(6 + 1 / 12, "feet")
  16815. },
  16816. {
  16817. name: "Divine",
  16818. height: math.unit(1.12134e34, "parsecs"),
  16819. default: true
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16825. {
  16826. front: {
  16827. height: math.unit(6 + 3 / 12, "feet"),
  16828. weight: math.unit(220, "lb"),
  16829. name: "Front",
  16830. image: {
  16831. source: "./media/characters/max-calore/front.svg",
  16832. extra: 1700 / 1648,
  16833. bottom: 0.01
  16834. }
  16835. },
  16836. back: {
  16837. height: math.unit(6 + 3 / 12, "feet"),
  16838. weight: math.unit(220, "lb"),
  16839. name: "Back",
  16840. image: {
  16841. source: "./media/characters/max-calore/back.svg",
  16842. extra: 1700 / 1648,
  16843. bottom: 0.01
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(6 + 3 / 12, "feet"),
  16851. default: true
  16852. },
  16853. ]
  16854. ))
  16855. characterMakers.push(() => makeCharacter(
  16856. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16857. {
  16858. side: {
  16859. height: math.unit(2 + 8 / 12, "feet"),
  16860. weight: math.unit(99, "lb"),
  16861. name: "Side",
  16862. image: {
  16863. source: "./media/characters/aspen/side.svg",
  16864. extra: 152 / 138,
  16865. bottom: 0.032
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Normal",
  16872. height: math.unit(2 + 8 / 12, "feet"),
  16873. default: true
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16879. {
  16880. side: {
  16881. height: math.unit(3 + 2 / 12, "feet"),
  16882. weight: math.unit(224, "lb"),
  16883. name: "Side",
  16884. image: {
  16885. source: "./media/characters/sheila-feral-wolf/side.svg",
  16886. extra: 179 / 166,
  16887. bottom: 0.03
  16888. }
  16889. },
  16890. },
  16891. [
  16892. {
  16893. name: "Normal",
  16894. height: math.unit(3 + 2 / 12, "feet"),
  16895. default: true
  16896. },
  16897. ]
  16898. ))
  16899. characterMakers.push(() => makeCharacter(
  16900. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16901. {
  16902. side: {
  16903. height: math.unit(1 + 9 / 12, "feet"),
  16904. weight: math.unit(38, "lb"),
  16905. name: "Side",
  16906. image: {
  16907. source: "./media/characters/michelle/side.svg",
  16908. extra: 147 / 136.7,
  16909. bottom: 0.03
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Normal",
  16916. height: math.unit(1 + 9 / 12, "feet"),
  16917. default: true
  16918. },
  16919. ]
  16920. ))
  16921. characterMakers.push(() => makeCharacter(
  16922. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16923. {
  16924. front: {
  16925. height: math.unit(1 + 1 / 12, "feet"),
  16926. weight: math.unit(18, "lb"),
  16927. name: "Front",
  16928. image: {
  16929. source: "./media/characters/nino/front.svg"
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Normal",
  16936. height: math.unit(1 + 1 / 12, "feet"),
  16937. default: true
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16943. {
  16944. front: {
  16945. height: math.unit(1, "feet"),
  16946. weight: math.unit(16, "lb"),
  16947. name: "Front",
  16948. image: {
  16949. source: "./media/characters/viola/front.svg"
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(1, "feet"),
  16957. default: true
  16958. },
  16959. ]
  16960. ))
  16961. characterMakers.push(() => makeCharacter(
  16962. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16963. {
  16964. front: {
  16965. height: math.unit(6 + 5 / 12, "feet"),
  16966. weight: math.unit(580, "lb"),
  16967. name: "Front",
  16968. image: {
  16969. source: "./media/characters/atlas/front.svg",
  16970. extra: 298.5 / 290,
  16971. bottom: 0.015
  16972. }
  16973. },
  16974. },
  16975. [
  16976. {
  16977. name: "Normal",
  16978. height: math.unit(6 + 5 / 12, "feet"),
  16979. default: true
  16980. },
  16981. ]
  16982. ))
  16983. characterMakers.push(() => makeCharacter(
  16984. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16985. {
  16986. side: {
  16987. height: math.unit(1 + 10 / 12, "feet"),
  16988. weight: math.unit(25, "lb"),
  16989. name: "Side",
  16990. image: {
  16991. source: "./media/characters/davy/side.svg",
  16992. extra: 200 / 170,
  16993. bottom: 0.01
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Normal",
  17000. height: math.unit(1 + 10 / 12, "feet"),
  17001. default: true
  17002. },
  17003. ]
  17004. ))
  17005. characterMakers.push(() => makeCharacter(
  17006. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17007. {
  17008. side: {
  17009. height: math.unit(4 + 8 / 12, "feet"),
  17010. weight: math.unit(166, "lb"),
  17011. name: "Side",
  17012. image: {
  17013. source: "./media/characters/fiona/side.svg",
  17014. extra: 232 / 220,
  17015. bottom: 0.03
  17016. }
  17017. },
  17018. },
  17019. [
  17020. {
  17021. name: "Normal",
  17022. height: math.unit(4 + 8 / 12, "feet"),
  17023. default: true
  17024. },
  17025. ]
  17026. ))
  17027. characterMakers.push(() => makeCharacter(
  17028. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17029. {
  17030. front: {
  17031. height: math.unit(2, "feet"),
  17032. weight: math.unit(62, "lb"),
  17033. name: "Front",
  17034. image: {
  17035. source: "./media/characters/lyla/front.svg",
  17036. bottom: 0.1
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(2, "feet"),
  17044. default: true
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17050. {
  17051. side: {
  17052. height: math.unit(1.8, "feet"),
  17053. weight: math.unit(44, "lb"),
  17054. name: "Side",
  17055. image: {
  17056. source: "./media/characters/perseus/side.svg",
  17057. bottom: 0.21
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Normal",
  17064. height: math.unit(1.8, "feet"),
  17065. default: true
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17071. {
  17072. side: {
  17073. height: math.unit(4 + 2 / 12, "feet"),
  17074. weight: math.unit(20, "lb"),
  17075. name: "Side",
  17076. image: {
  17077. source: "./media/characters/remus/side.svg"
  17078. }
  17079. },
  17080. },
  17081. [
  17082. {
  17083. name: "Normal",
  17084. height: math.unit(4 + 2 / 12, "feet"),
  17085. default: true
  17086. },
  17087. ]
  17088. ))
  17089. characterMakers.push(() => makeCharacter(
  17090. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17091. {
  17092. front: {
  17093. height: math.unit(4 + 11 / 12, "feet"),
  17094. weight: math.unit(114, "lb"),
  17095. name: "Front",
  17096. image: {
  17097. source: "./media/characters/raf/front.svg",
  17098. bottom: 20.5 / 1863
  17099. }
  17100. },
  17101. side: {
  17102. height: math.unit(4 + 11 / 12, "feet"),
  17103. weight: math.unit(114, "lb"),
  17104. name: "Side",
  17105. image: {
  17106. source: "./media/characters/raf/side.svg",
  17107. bottom: 22 / 1822
  17108. }
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Micro",
  17114. height: math.unit(2, "inches")
  17115. },
  17116. {
  17117. name: "Normal",
  17118. height: math.unit(4 + 11 / 12, "feet"),
  17119. default: true
  17120. },
  17121. {
  17122. name: "Macro",
  17123. height: math.unit(70, "feet")
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17129. {
  17130. front: {
  17131. height: math.unit(1.5, "meters"),
  17132. weight: math.unit(68, "kg"),
  17133. name: "Front",
  17134. image: {
  17135. source: "./media/characters/liam-einarr/front.svg",
  17136. extra: 2822 / 2666
  17137. }
  17138. },
  17139. back: {
  17140. height: math.unit(1.5, "meters"),
  17141. weight: math.unit(68, "kg"),
  17142. name: "Back",
  17143. image: {
  17144. source: "./media/characters/liam-einarr/back.svg",
  17145. extra: 2822 / 2666,
  17146. bottom: 0.015
  17147. }
  17148. },
  17149. },
  17150. [
  17151. {
  17152. name: "Normal",
  17153. height: math.unit(1.5, "meters"),
  17154. default: true
  17155. },
  17156. {
  17157. name: "Macro",
  17158. height: math.unit(150, "meters")
  17159. },
  17160. {
  17161. name: "Megamacro",
  17162. height: math.unit(35, "km")
  17163. },
  17164. ]
  17165. ))
  17166. characterMakers.push(() => makeCharacter(
  17167. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17168. {
  17169. front: {
  17170. height: math.unit(6, "feet"),
  17171. weight: math.unit(75, "kg"),
  17172. name: "Front",
  17173. image: {
  17174. source: "./media/characters/linda/front.svg",
  17175. extra: 930 / 874,
  17176. bottom: 0.004
  17177. }
  17178. },
  17179. },
  17180. [
  17181. {
  17182. name: "Normal",
  17183. height: math.unit(6, "feet"),
  17184. default: true
  17185. },
  17186. ]
  17187. ))
  17188. characterMakers.push(() => makeCharacter(
  17189. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17190. {
  17191. front: {
  17192. height: math.unit(6 + 8 / 12, "feet"),
  17193. weight: math.unit(220, "lb"),
  17194. name: "Front",
  17195. image: {
  17196. source: "./media/characters/caylex/front.svg",
  17197. extra: 821 / 772,
  17198. bottom: 0.07
  17199. }
  17200. },
  17201. back: {
  17202. height: math.unit(6 + 8 / 12, "feet"),
  17203. weight: math.unit(220, "lb"),
  17204. name: "Back",
  17205. image: {
  17206. source: "./media/characters/caylex/back.svg",
  17207. extra: 821 / 772,
  17208. bottom: 0.022
  17209. }
  17210. },
  17211. hand: {
  17212. height: math.unit(1.25, "feet"),
  17213. name: "Hand",
  17214. image: {
  17215. source: "./media/characters/caylex/hand.svg"
  17216. }
  17217. },
  17218. foot: {
  17219. height: math.unit(1.6, "feet"),
  17220. name: "Foot",
  17221. image: {
  17222. source: "./media/characters/caylex/foot.svg"
  17223. }
  17224. },
  17225. armored: {
  17226. height: math.unit(6 + 8 / 12, "feet"),
  17227. weight: math.unit(250, "lb"),
  17228. name: "Armored",
  17229. image: {
  17230. source: "./media/characters/caylex/armored.svg",
  17231. extra: 1420 / 1310,
  17232. bottom: 0.045
  17233. }
  17234. },
  17235. },
  17236. [
  17237. {
  17238. name: "Normal",
  17239. height: math.unit(6 + 8 / 12, "feet"),
  17240. default: true
  17241. },
  17242. {
  17243. name: "Normal+",
  17244. height: math.unit(12, "feet")
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17250. {
  17251. front: {
  17252. height: math.unit(7 + 6 / 12, "feet"),
  17253. weight: math.unit(288, "lb"),
  17254. name: "Front",
  17255. image: {
  17256. source: "./media/characters/alana/front.svg",
  17257. extra: 679 / 653,
  17258. bottom: 22.5 / 701
  17259. }
  17260. },
  17261. },
  17262. [
  17263. {
  17264. name: "Normal",
  17265. height: math.unit(7 + 6 / 12, "feet")
  17266. },
  17267. {
  17268. name: "Large",
  17269. height: math.unit(50, "feet")
  17270. },
  17271. {
  17272. name: "Macro",
  17273. height: math.unit(100, "feet"),
  17274. default: true
  17275. },
  17276. {
  17277. name: "Macro+",
  17278. height: math.unit(200, "feet")
  17279. },
  17280. ]
  17281. ))
  17282. characterMakers.push(() => makeCharacter(
  17283. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17284. {
  17285. front: {
  17286. height: math.unit(6 + 1 / 12, "feet"),
  17287. weight: math.unit(210, "lb"),
  17288. name: "Front",
  17289. image: {
  17290. source: "./media/characters/hasani/front.svg",
  17291. extra: 244 / 232,
  17292. bottom: 0.01
  17293. }
  17294. },
  17295. back: {
  17296. height: math.unit(6 + 1 / 12, "feet"),
  17297. weight: math.unit(210, "lb"),
  17298. name: "Back",
  17299. image: {
  17300. source: "./media/characters/hasani/back.svg",
  17301. extra: 244 / 232,
  17302. bottom: 0.01
  17303. }
  17304. },
  17305. },
  17306. [
  17307. {
  17308. name: "Normal",
  17309. height: math.unit(6 + 1 / 12, "feet")
  17310. },
  17311. {
  17312. name: "Macro",
  17313. height: math.unit(175, "feet"),
  17314. default: true
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17320. {
  17321. front: {
  17322. height: math.unit(1.82, "meters"),
  17323. weight: math.unit(140, "lb"),
  17324. name: "Front",
  17325. image: {
  17326. source: "./media/characters/nita/front.svg",
  17327. extra: 2473 / 2363,
  17328. bottom: 0.01
  17329. }
  17330. },
  17331. },
  17332. [
  17333. {
  17334. name: "Normal",
  17335. height: math.unit(1.82, "m")
  17336. },
  17337. {
  17338. name: "Macro",
  17339. height: math.unit(300, "m")
  17340. },
  17341. {
  17342. name: "Mistake Canon",
  17343. height: math.unit(0.5, "miles"),
  17344. default: true
  17345. },
  17346. {
  17347. name: "Big Mistake",
  17348. height: math.unit(13, "miles")
  17349. },
  17350. {
  17351. name: "Playing God",
  17352. height: math.unit(2450, "miles")
  17353. },
  17354. ]
  17355. ))
  17356. characterMakers.push(() => makeCharacter(
  17357. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17358. {
  17359. front: {
  17360. height: math.unit(4, "feet"),
  17361. weight: math.unit(120, "lb"),
  17362. name: "Front",
  17363. image: {
  17364. source: "./media/characters/shiriko/front.svg",
  17365. extra: 970/934,
  17366. bottom: 5/975
  17367. }
  17368. },
  17369. },
  17370. [
  17371. {
  17372. name: "Normal",
  17373. height: math.unit(4, "feet"),
  17374. default: true
  17375. },
  17376. ]
  17377. ))
  17378. characterMakers.push(() => makeCharacter(
  17379. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17380. {
  17381. front: {
  17382. height: math.unit(6, "feet"),
  17383. name: "front",
  17384. image: {
  17385. source: "./media/characters/deja/front.svg",
  17386. extra: 926 / 840,
  17387. bottom: 0.07
  17388. }
  17389. },
  17390. },
  17391. [
  17392. {
  17393. name: "Planck Length",
  17394. height: math.unit(1.6e-35, "meters")
  17395. },
  17396. {
  17397. name: "Normal",
  17398. height: math.unit(30.48, "meters"),
  17399. default: true
  17400. },
  17401. {
  17402. name: "Universal",
  17403. height: math.unit(8.8e26, "meters")
  17404. },
  17405. ]
  17406. ))
  17407. characterMakers.push(() => makeCharacter(
  17408. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17409. {
  17410. side: {
  17411. height: math.unit(8, "feet"),
  17412. weight: math.unit(6300, "lb"),
  17413. name: "Side",
  17414. image: {
  17415. source: "./media/characters/anima/side.svg",
  17416. bottom: 0.035
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(8, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(8, "feet"),
  17433. weight: math.unit(350, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/bianca/front.svg",
  17437. extra: 234 / 225,
  17438. bottom: 0.03
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(8, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(6, "feet"),
  17455. weight: math.unit(150, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/adinia/front.svg",
  17459. extra: 1845 / 1672,
  17460. bottom: 0.02
  17461. }
  17462. },
  17463. back: {
  17464. height: math.unit(6, "feet"),
  17465. weight: math.unit(150, "lb"),
  17466. name: "Back",
  17467. image: {
  17468. source: "./media/characters/adinia/back.svg",
  17469. extra: 1845 / 1672,
  17470. bottom: 0.002
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Normal",
  17477. height: math.unit(11 + 5 / 12, "feet"),
  17478. default: true
  17479. },
  17480. ]
  17481. ))
  17482. characterMakers.push(() => makeCharacter(
  17483. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17484. {
  17485. front: {
  17486. height: math.unit(3, "meters"),
  17487. weight: math.unit(200, "kg"),
  17488. name: "Front",
  17489. image: {
  17490. source: "./media/characters/lykasa/front.svg",
  17491. extra: 1076 / 976,
  17492. bottom: 0.06
  17493. }
  17494. },
  17495. },
  17496. [
  17497. {
  17498. name: "Normal",
  17499. height: math.unit(3, "meters")
  17500. },
  17501. {
  17502. name: "Kaiju",
  17503. height: math.unit(120, "meters"),
  17504. default: true
  17505. },
  17506. {
  17507. name: "Mega Kaiju",
  17508. height: math.unit(240, "km")
  17509. },
  17510. {
  17511. name: "Giga Kaiju",
  17512. height: math.unit(400, "megameters")
  17513. },
  17514. {
  17515. name: "Tera Kaiju",
  17516. height: math.unit(800, "gigameters")
  17517. },
  17518. {
  17519. name: "Kaiju Dragon Goddess",
  17520. height: math.unit(26, "zettaparsecs")
  17521. },
  17522. ]
  17523. ))
  17524. characterMakers.push(() => makeCharacter(
  17525. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17526. {
  17527. side: {
  17528. height: math.unit(283 / 124 * 6, "feet"),
  17529. weight: math.unit(35000, "lb"),
  17530. name: "Side",
  17531. image: {
  17532. source: "./media/characters/malfaren/side.svg",
  17533. extra: 2500 / 1010,
  17534. bottom: 0.01
  17535. }
  17536. },
  17537. front: {
  17538. height: math.unit(22.36, "feet"),
  17539. weight: math.unit(35000, "lb"),
  17540. name: "Front",
  17541. image: {
  17542. source: "./media/characters/malfaren/front.svg",
  17543. extra: 1631 / 1476,
  17544. bottom: 0.01
  17545. }
  17546. },
  17547. maw: {
  17548. height: math.unit(6.9, "feet"),
  17549. name: "Maw",
  17550. image: {
  17551. source: "./media/characters/malfaren/maw.svg"
  17552. }
  17553. },
  17554. },
  17555. [
  17556. {
  17557. name: "Big",
  17558. height: math.unit(283 / 162 * 6, "feet"),
  17559. },
  17560. {
  17561. name: "Bigger",
  17562. height: math.unit(283 / 124 * 6, "feet")
  17563. },
  17564. {
  17565. name: "Massive",
  17566. height: math.unit(283 / 92 * 6, "feet"),
  17567. default: true
  17568. },
  17569. {
  17570. name: "👀💦",
  17571. height: math.unit(283 / 73 * 6, "feet"),
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17577. {
  17578. front: {
  17579. height: math.unit(1.7, "m"),
  17580. weight: math.unit(70, "kg"),
  17581. name: "Front",
  17582. image: {
  17583. source: "./media/characters/kernel/front.svg",
  17584. extra: 222 / 210,
  17585. bottom: 0.007
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Nano",
  17592. height: math.unit(17, "micrometers")
  17593. },
  17594. {
  17595. name: "Micro",
  17596. height: math.unit(1.7, "mm")
  17597. },
  17598. {
  17599. name: "Small",
  17600. height: math.unit(1.7, "cm")
  17601. },
  17602. {
  17603. name: "Normal",
  17604. height: math.unit(1.7, "m"),
  17605. default: true
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17611. {
  17612. front: {
  17613. height: math.unit(1.75, "meters"),
  17614. weight: math.unit(65, "kg"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/jayne-folest/front.svg",
  17618. extra: 2115 / 2007,
  17619. bottom: 0.02
  17620. }
  17621. },
  17622. back: {
  17623. height: math.unit(1.75, "meters"),
  17624. weight: math.unit(65, "kg"),
  17625. name: "Back",
  17626. image: {
  17627. source: "./media/characters/jayne-folest/back.svg",
  17628. extra: 2115 / 2007,
  17629. bottom: 0.005
  17630. }
  17631. },
  17632. frontClothed: {
  17633. height: math.unit(1.75, "meters"),
  17634. weight: math.unit(65, "kg"),
  17635. name: "Front (Clothed)",
  17636. image: {
  17637. source: "./media/characters/jayne-folest/front-clothed.svg",
  17638. extra: 2115 / 2007,
  17639. bottom: 0.035
  17640. }
  17641. },
  17642. hand: {
  17643. height: math.unit(1 / 1.260, "feet"),
  17644. name: "Hand",
  17645. image: {
  17646. source: "./media/characters/jayne-folest/hand.svg"
  17647. }
  17648. },
  17649. foot: {
  17650. height: math.unit(1 / 0.918, "feet"),
  17651. name: "Foot",
  17652. image: {
  17653. source: "./media/characters/jayne-folest/foot.svg"
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Micro",
  17660. height: math.unit(4, "cm")
  17661. },
  17662. {
  17663. name: "Normal",
  17664. height: math.unit(1.75, "meters")
  17665. },
  17666. {
  17667. name: "Macro",
  17668. height: math.unit(47.5, "meters"),
  17669. default: true
  17670. },
  17671. ]
  17672. ))
  17673. characterMakers.push(() => makeCharacter(
  17674. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17675. {
  17676. front: {
  17677. height: math.unit(180, "cm"),
  17678. weight: math.unit(70, "kg"),
  17679. name: "Front",
  17680. image: {
  17681. source: "./media/characters/algier/front.svg",
  17682. extra: 596 / 572,
  17683. bottom: 0.04
  17684. }
  17685. },
  17686. back: {
  17687. height: math.unit(180, "cm"),
  17688. weight: math.unit(70, "kg"),
  17689. name: "Back",
  17690. image: {
  17691. source: "./media/characters/algier/back.svg",
  17692. extra: 596 / 572,
  17693. bottom: 0.025
  17694. }
  17695. },
  17696. frontdressed: {
  17697. height: math.unit(180, "cm"),
  17698. weight: math.unit(150, "kg"),
  17699. name: "Front-dressed",
  17700. image: {
  17701. source: "./media/characters/algier/front-dressed.svg",
  17702. extra: 596 / 572,
  17703. bottom: 0.038
  17704. }
  17705. },
  17706. },
  17707. [
  17708. {
  17709. name: "Micro",
  17710. height: math.unit(5, "cm")
  17711. },
  17712. {
  17713. name: "Normal",
  17714. height: math.unit(180, "cm"),
  17715. default: true
  17716. },
  17717. {
  17718. name: "Macro",
  17719. height: math.unit(64, "m")
  17720. },
  17721. ]
  17722. ))
  17723. characterMakers.push(() => makeCharacter(
  17724. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17725. {
  17726. upright: {
  17727. height: math.unit(7, "feet"),
  17728. weight: math.unit(300, "lb"),
  17729. name: "Upright",
  17730. image: {
  17731. source: "./media/characters/pretzel/upright.svg",
  17732. extra: 534 / 522,
  17733. bottom: 0.065
  17734. }
  17735. },
  17736. sprawling: {
  17737. height: math.unit(3.75, "feet"),
  17738. weight: math.unit(300, "lb"),
  17739. name: "Sprawling",
  17740. image: {
  17741. source: "./media/characters/pretzel/sprawling.svg",
  17742. extra: 314 / 281,
  17743. bottom: 0.1
  17744. }
  17745. },
  17746. tongue: {
  17747. height: math.unit(2, "feet"),
  17748. name: "Tongue",
  17749. image: {
  17750. source: "./media/characters/pretzel/tongue.svg"
  17751. }
  17752. },
  17753. },
  17754. [
  17755. {
  17756. name: "Normal",
  17757. height: math.unit(7, "feet"),
  17758. default: true
  17759. },
  17760. {
  17761. name: "Oversized",
  17762. height: math.unit(15, "feet")
  17763. },
  17764. {
  17765. name: "Huge",
  17766. height: math.unit(30, "feet")
  17767. },
  17768. {
  17769. name: "Macro",
  17770. height: math.unit(250, "feet")
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17776. {
  17777. sideFront: {
  17778. height: math.unit(5 + 2 / 12, "feet"),
  17779. weight: math.unit(120, "lb"),
  17780. name: "Front Side",
  17781. image: {
  17782. source: "./media/characters/roxi/side-front.svg",
  17783. extra: 2924 / 2717,
  17784. bottom: 0.08
  17785. }
  17786. },
  17787. sideBack: {
  17788. height: math.unit(5 + 2 / 12, "feet"),
  17789. weight: math.unit(120, "lb"),
  17790. name: "Back Side",
  17791. image: {
  17792. source: "./media/characters/roxi/side-back.svg",
  17793. extra: 2904 / 2693,
  17794. bottom: 0.06
  17795. }
  17796. },
  17797. front: {
  17798. height: math.unit(5 + 2 / 12, "feet"),
  17799. weight: math.unit(120, "lb"),
  17800. name: "Front",
  17801. image: {
  17802. source: "./media/characters/roxi/front.svg",
  17803. extra: 2028 / 1907,
  17804. bottom: 0.01
  17805. }
  17806. },
  17807. frontAlt: {
  17808. height: math.unit(5 + 2 / 12, "feet"),
  17809. weight: math.unit(120, "lb"),
  17810. name: "Front (Alt)",
  17811. image: {
  17812. source: "./media/characters/roxi/front-alt.svg",
  17813. extra: 1828 / 1798,
  17814. bottom: 0.01
  17815. }
  17816. },
  17817. sitting: {
  17818. height: math.unit(2.8, "feet"),
  17819. weight: math.unit(120, "lb"),
  17820. name: "Sitting",
  17821. image: {
  17822. source: "./media/characters/roxi/sitting.svg",
  17823. extra: 2660 / 2462,
  17824. bottom: 0.1
  17825. }
  17826. },
  17827. },
  17828. [
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(5 + 2 / 12, "feet"),
  17832. default: true
  17833. },
  17834. ]
  17835. ))
  17836. characterMakers.push(() => makeCharacter(
  17837. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17838. {
  17839. side: {
  17840. height: math.unit(55, "feet"),
  17841. weight: math.unit(153, "tons"),
  17842. name: "Side",
  17843. image: {
  17844. source: "./media/characters/shadow/side.svg",
  17845. extra: 701 / 628,
  17846. bottom: 0.02
  17847. }
  17848. },
  17849. flying: {
  17850. height: math.unit(145, "feet"),
  17851. weight: math.unit(153, "tons"),
  17852. name: "Flying",
  17853. image: {
  17854. source: "./media/characters/shadow/flying.svg"
  17855. }
  17856. },
  17857. },
  17858. [
  17859. {
  17860. name: "Normal",
  17861. height: math.unit(55, "feet"),
  17862. default: true
  17863. },
  17864. ]
  17865. ))
  17866. characterMakers.push(() => makeCharacter(
  17867. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17868. {
  17869. front: {
  17870. height: math.unit(6, "feet"),
  17871. weight: math.unit(200, "lb"),
  17872. name: "Front",
  17873. image: {
  17874. source: "./media/characters/marcie/front.svg",
  17875. extra: 960 / 876,
  17876. bottom: 58 / 1017.87
  17877. }
  17878. },
  17879. },
  17880. [
  17881. {
  17882. name: "Macro",
  17883. height: math.unit(1, "mile"),
  17884. default: true
  17885. },
  17886. ]
  17887. ))
  17888. characterMakers.push(() => makeCharacter(
  17889. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17890. {
  17891. front: {
  17892. height: math.unit(7, "feet"),
  17893. weight: math.unit(200, "lb"),
  17894. name: "Front",
  17895. image: {
  17896. source: "./media/characters/kachina/front.svg",
  17897. extra: 1290.68 / 1119,
  17898. bottom: 36.5 / 1327.18
  17899. }
  17900. },
  17901. },
  17902. [
  17903. {
  17904. name: "Normal",
  17905. height: math.unit(7, "feet"),
  17906. default: true
  17907. },
  17908. ]
  17909. ))
  17910. characterMakers.push(() => makeCharacter(
  17911. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17912. {
  17913. looking: {
  17914. height: math.unit(2, "meters"),
  17915. weight: math.unit(300, "kg"),
  17916. name: "Looking",
  17917. image: {
  17918. source: "./media/characters/kash/looking.svg",
  17919. extra: 474 / 344,
  17920. bottom: 0.03
  17921. }
  17922. },
  17923. side: {
  17924. height: math.unit(2, "meters"),
  17925. weight: math.unit(300, "kg"),
  17926. name: "Side",
  17927. image: {
  17928. source: "./media/characters/kash/side.svg",
  17929. extra: 302 / 251,
  17930. bottom: 0.03
  17931. }
  17932. },
  17933. front: {
  17934. height: math.unit(2, "meters"),
  17935. weight: math.unit(300, "kg"),
  17936. name: "Front",
  17937. image: {
  17938. source: "./media/characters/kash/front.svg",
  17939. extra: 495 / 360,
  17940. bottom: 0.015
  17941. }
  17942. },
  17943. },
  17944. [
  17945. {
  17946. name: "Normal",
  17947. height: math.unit(2, "meters"),
  17948. default: true
  17949. },
  17950. {
  17951. name: "Big",
  17952. height: math.unit(3, "meters")
  17953. },
  17954. {
  17955. name: "Large",
  17956. height: math.unit(5, "meters")
  17957. },
  17958. ]
  17959. ))
  17960. characterMakers.push(() => makeCharacter(
  17961. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17962. {
  17963. feeding: {
  17964. height: math.unit(6.7, "feet"),
  17965. weight: math.unit(350, "lb"),
  17966. name: "Feeding",
  17967. image: {
  17968. source: "./media/characters/lalim/feeding.svg",
  17969. }
  17970. },
  17971. },
  17972. [
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(6.7, "feet"),
  17976. default: true
  17977. },
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17982. {
  17983. front: {
  17984. height: math.unit(9.5, "feet"),
  17985. weight: math.unit(600, "lb"),
  17986. name: "Front",
  17987. image: {
  17988. source: "./media/characters/de'vout/front.svg",
  17989. extra: 1443 / 1328,
  17990. bottom: 0.025
  17991. }
  17992. },
  17993. back: {
  17994. height: math.unit(9.5, "feet"),
  17995. weight: math.unit(600, "lb"),
  17996. name: "Back",
  17997. image: {
  17998. source: "./media/characters/de'vout/back.svg",
  17999. extra: 1443 / 1328
  18000. }
  18001. },
  18002. frontDressed: {
  18003. height: math.unit(9.5, "feet"),
  18004. weight: math.unit(600, "lb"),
  18005. name: "Front (Dressed",
  18006. image: {
  18007. source: "./media/characters/de'vout/front-dressed.svg",
  18008. extra: 1443 / 1328,
  18009. bottom: 0.025
  18010. }
  18011. },
  18012. backDressed: {
  18013. height: math.unit(9.5, "feet"),
  18014. weight: math.unit(600, "lb"),
  18015. name: "Back (Dressed",
  18016. image: {
  18017. source: "./media/characters/de'vout/back-dressed.svg",
  18018. extra: 1443 / 1328
  18019. }
  18020. },
  18021. },
  18022. [
  18023. {
  18024. name: "Normal",
  18025. height: math.unit(9.5, "feet"),
  18026. default: true
  18027. },
  18028. ]
  18029. ))
  18030. characterMakers.push(() => makeCharacter(
  18031. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18032. {
  18033. front: {
  18034. height: math.unit(8, "feet"),
  18035. weight: math.unit(225, "lb"),
  18036. name: "Front",
  18037. image: {
  18038. source: "./media/characters/talana/front.svg",
  18039. extra: 1410 / 1300,
  18040. bottom: 0.015
  18041. }
  18042. },
  18043. frontDressed: {
  18044. height: math.unit(8, "feet"),
  18045. weight: math.unit(225, "lb"),
  18046. name: "Front (Dressed",
  18047. image: {
  18048. source: "./media/characters/talana/front-dressed.svg",
  18049. extra: 1410 / 1300,
  18050. bottom: 0.015
  18051. }
  18052. },
  18053. },
  18054. [
  18055. {
  18056. name: "Normal",
  18057. height: math.unit(8, "feet"),
  18058. default: true
  18059. },
  18060. ]
  18061. ))
  18062. characterMakers.push(() => makeCharacter(
  18063. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18064. {
  18065. side: {
  18066. height: math.unit(7.2, "feet"),
  18067. weight: math.unit(150, "lb"),
  18068. name: "Side",
  18069. image: {
  18070. source: "./media/characters/xeauvok/side.svg",
  18071. extra: 1975 / 1523,
  18072. bottom: 0.07
  18073. }
  18074. },
  18075. },
  18076. [
  18077. {
  18078. name: "Normal",
  18079. height: math.unit(7.2, "feet"),
  18080. default: true
  18081. },
  18082. ]
  18083. ))
  18084. characterMakers.push(() => makeCharacter(
  18085. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18086. {
  18087. side: {
  18088. height: math.unit(10, "feet"),
  18089. weight: math.unit(900, "kg"),
  18090. name: "Side",
  18091. image: {
  18092. source: "./media/characters/zara/side.svg",
  18093. extra: 504 / 498
  18094. }
  18095. },
  18096. },
  18097. [
  18098. {
  18099. name: "Normal",
  18100. height: math.unit(10, "feet"),
  18101. default: true
  18102. },
  18103. ]
  18104. ))
  18105. characterMakers.push(() => makeCharacter(
  18106. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18107. {
  18108. side: {
  18109. height: math.unit(6, "feet"),
  18110. weight: math.unit(150, "lb"),
  18111. name: "Side",
  18112. image: {
  18113. source: "./media/characters/richard-dragon/side.svg",
  18114. extra: 845 / 340,
  18115. bottom: 0.017
  18116. }
  18117. },
  18118. maw: {
  18119. height: math.unit(2.97, "feet"),
  18120. name: "Maw",
  18121. image: {
  18122. source: "./media/characters/richard-dragon/maw.svg"
  18123. }
  18124. },
  18125. },
  18126. [
  18127. ]
  18128. ))
  18129. characterMakers.push(() => makeCharacter(
  18130. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18131. {
  18132. front: {
  18133. height: math.unit(4, "feet"),
  18134. weight: math.unit(100, "lb"),
  18135. name: "Front",
  18136. image: {
  18137. source: "./media/characters/richard-smeargle/front.svg",
  18138. extra: 2952 / 2820,
  18139. bottom: 0.028
  18140. }
  18141. },
  18142. },
  18143. [
  18144. {
  18145. name: "Normal",
  18146. height: math.unit(4, "feet"),
  18147. default: true
  18148. },
  18149. {
  18150. name: "Dynamax",
  18151. height: math.unit(20, "meters")
  18152. },
  18153. ]
  18154. ))
  18155. characterMakers.push(() => makeCharacter(
  18156. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18157. {
  18158. front: {
  18159. height: math.unit(6, "feet"),
  18160. weight: math.unit(110, "lb"),
  18161. name: "Front",
  18162. image: {
  18163. source: "./media/characters/klay/front.svg",
  18164. extra: 962 / 883,
  18165. bottom: 0.04
  18166. }
  18167. },
  18168. back: {
  18169. height: math.unit(6, "feet"),
  18170. weight: math.unit(110, "lb"),
  18171. name: "Back",
  18172. image: {
  18173. source: "./media/characters/klay/back.svg",
  18174. extra: 962 / 883
  18175. }
  18176. },
  18177. beans: {
  18178. height: math.unit(1.15, "feet"),
  18179. name: "Beans",
  18180. image: {
  18181. source: "./media/characters/klay/beans.svg"
  18182. }
  18183. },
  18184. },
  18185. [
  18186. {
  18187. name: "Micro",
  18188. height: math.unit(6, "inches")
  18189. },
  18190. {
  18191. name: "Mini",
  18192. height: math.unit(3, "feet")
  18193. },
  18194. {
  18195. name: "Normal",
  18196. height: math.unit(6, "feet"),
  18197. default: true
  18198. },
  18199. {
  18200. name: "Big",
  18201. height: math.unit(25, "feet")
  18202. },
  18203. {
  18204. name: "Macro",
  18205. height: math.unit(100, "feet")
  18206. },
  18207. {
  18208. name: "Megamacro",
  18209. height: math.unit(400, "feet")
  18210. },
  18211. ]
  18212. ))
  18213. characterMakers.push(() => makeCharacter(
  18214. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18215. {
  18216. front: {
  18217. height: math.unit(6, "feet"),
  18218. weight: math.unit(160, "lb"),
  18219. name: "Front",
  18220. image: {
  18221. source: "./media/characters/marcus/front.svg",
  18222. extra: 734 / 676,
  18223. bottom: 0.03
  18224. }
  18225. },
  18226. },
  18227. [
  18228. {
  18229. name: "Little",
  18230. height: math.unit(6, "feet")
  18231. },
  18232. {
  18233. name: "Normal",
  18234. height: math.unit(110, "feet"),
  18235. default: true
  18236. },
  18237. {
  18238. name: "Macro",
  18239. height: math.unit(250, "feet")
  18240. },
  18241. {
  18242. name: "Megamacro",
  18243. height: math.unit(1000, "feet")
  18244. },
  18245. ]
  18246. ))
  18247. characterMakers.push(() => makeCharacter(
  18248. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18249. {
  18250. front: {
  18251. height: math.unit(7, "feet"),
  18252. weight: math.unit(275, "lb"),
  18253. name: "Front",
  18254. image: {
  18255. source: "./media/characters/claude-delroute/front.svg",
  18256. extra: 230 / 214,
  18257. bottom: 0.007
  18258. }
  18259. },
  18260. side: {
  18261. height: math.unit(7, "feet"),
  18262. weight: math.unit(275, "lb"),
  18263. name: "Side",
  18264. image: {
  18265. source: "./media/characters/claude-delroute/side.svg",
  18266. extra: 222 / 214,
  18267. bottom: 0.01
  18268. }
  18269. },
  18270. back: {
  18271. height: math.unit(7, "feet"),
  18272. weight: math.unit(275, "lb"),
  18273. name: "Back",
  18274. image: {
  18275. source: "./media/characters/claude-delroute/back.svg",
  18276. extra: 230 / 214,
  18277. bottom: 0.015
  18278. }
  18279. },
  18280. maw: {
  18281. height: math.unit(0.6407, "meters"),
  18282. name: "Maw",
  18283. image: {
  18284. source: "./media/characters/claude-delroute/maw.svg"
  18285. }
  18286. },
  18287. },
  18288. [
  18289. {
  18290. name: "Normal",
  18291. height: math.unit(7, "feet"),
  18292. default: true
  18293. },
  18294. {
  18295. name: "Lorge",
  18296. height: math.unit(20, "feet")
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(8 + 4 / 12, "feet"),
  18305. weight: math.unit(600, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/dragonien/front.svg",
  18309. extra: 100 / 94,
  18310. bottom: 3.3 / 103.3445
  18311. }
  18312. },
  18313. back: {
  18314. height: math.unit(8 + 4 / 12, "feet"),
  18315. weight: math.unit(600, "lb"),
  18316. name: "Back",
  18317. image: {
  18318. source: "./media/characters/dragonien/back.svg",
  18319. extra: 776 / 746,
  18320. bottom: 6.4 / 782.0616
  18321. }
  18322. },
  18323. foot: {
  18324. height: math.unit(1.54, "feet"),
  18325. name: "Foot",
  18326. image: {
  18327. source: "./media/characters/dragonien/foot.svg",
  18328. }
  18329. },
  18330. },
  18331. [
  18332. {
  18333. name: "Normal",
  18334. height: math.unit(8 + 4 / 12, "feet"),
  18335. default: true
  18336. },
  18337. {
  18338. name: "Macro",
  18339. height: math.unit(200, "feet")
  18340. },
  18341. {
  18342. name: "Megamacro",
  18343. height: math.unit(1, "mile")
  18344. },
  18345. {
  18346. name: "Gigamacro",
  18347. height: math.unit(1000, "miles")
  18348. },
  18349. ]
  18350. ))
  18351. characterMakers.push(() => makeCharacter(
  18352. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18353. {
  18354. front: {
  18355. height: math.unit(5 + 2 / 12, "feet"),
  18356. weight: math.unit(110, "lb"),
  18357. name: "Front",
  18358. image: {
  18359. source: "./media/characters/desta/front.svg",
  18360. extra: 767 / 726,
  18361. bottom: 11.7 / 779
  18362. }
  18363. },
  18364. back: {
  18365. height: math.unit(5 + 2 / 12, "feet"),
  18366. weight: math.unit(110, "lb"),
  18367. name: "Back",
  18368. image: {
  18369. source: "./media/characters/desta/back.svg",
  18370. extra: 777 / 728,
  18371. bottom: 6 / 784
  18372. }
  18373. },
  18374. frontAlt: {
  18375. height: math.unit(5 + 2 / 12, "feet"),
  18376. weight: math.unit(110, "lb"),
  18377. name: "Front",
  18378. image: {
  18379. source: "./media/characters/desta/front-alt.svg",
  18380. extra: 1482 / 1417
  18381. }
  18382. },
  18383. side: {
  18384. height: math.unit(5 + 2 / 12, "feet"),
  18385. weight: math.unit(110, "lb"),
  18386. name: "Side",
  18387. image: {
  18388. source: "./media/characters/desta/side.svg",
  18389. extra: 2579 / 2491,
  18390. bottom: 0.053
  18391. }
  18392. },
  18393. },
  18394. [
  18395. {
  18396. name: "Micro",
  18397. height: math.unit(6, "inches")
  18398. },
  18399. {
  18400. name: "Normal",
  18401. height: math.unit(5 + 2 / 12, "feet"),
  18402. default: true
  18403. },
  18404. {
  18405. name: "Macro",
  18406. height: math.unit(62, "feet")
  18407. },
  18408. {
  18409. name: "Megamacro",
  18410. height: math.unit(1800, "feet")
  18411. },
  18412. ]
  18413. ))
  18414. characterMakers.push(() => makeCharacter(
  18415. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18416. {
  18417. front: {
  18418. height: math.unit(10, "feet"),
  18419. weight: math.unit(700, "lb"),
  18420. name: "Front",
  18421. image: {
  18422. source: "./media/characters/storm-alystar/front.svg",
  18423. extra: 2112 / 1898,
  18424. bottom: 0.034
  18425. }
  18426. },
  18427. },
  18428. [
  18429. {
  18430. name: "Micro",
  18431. height: math.unit(3.5, "inches")
  18432. },
  18433. {
  18434. name: "Normal",
  18435. height: math.unit(10, "feet"),
  18436. default: true
  18437. },
  18438. {
  18439. name: "Macro",
  18440. height: math.unit(400, "feet")
  18441. },
  18442. {
  18443. name: "Deific",
  18444. height: math.unit(60, "miles")
  18445. },
  18446. ]
  18447. ))
  18448. characterMakers.push(() => makeCharacter(
  18449. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18450. {
  18451. front: {
  18452. height: math.unit(2.35, "meters"),
  18453. weight: math.unit(119, "kg"),
  18454. name: "Front",
  18455. image: {
  18456. source: "./media/characters/ilia/front.svg",
  18457. extra: 1285 / 1255,
  18458. bottom: 0.06
  18459. }
  18460. },
  18461. },
  18462. [
  18463. {
  18464. name: "Normal",
  18465. height: math.unit(2.35, "meters")
  18466. },
  18467. {
  18468. name: "Macro",
  18469. height: math.unit(140, "meters"),
  18470. default: true
  18471. },
  18472. {
  18473. name: "Megamacro",
  18474. height: math.unit(100, "miles")
  18475. },
  18476. ]
  18477. ))
  18478. characterMakers.push(() => makeCharacter(
  18479. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18480. {
  18481. front: {
  18482. height: math.unit(6 + 5 / 12, "feet"),
  18483. weight: math.unit(190, "lb"),
  18484. name: "Front",
  18485. image: {
  18486. source: "./media/characters/kingdead/front.svg",
  18487. extra: 1228 / 1177
  18488. }
  18489. },
  18490. },
  18491. [
  18492. {
  18493. name: "Micro",
  18494. height: math.unit(7, "inches")
  18495. },
  18496. {
  18497. name: "Normal",
  18498. height: math.unit(6 + 5 / 12, "feet")
  18499. },
  18500. {
  18501. name: "Macro",
  18502. height: math.unit(150, "feet"),
  18503. default: true
  18504. },
  18505. {
  18506. name: "Megamacro",
  18507. height: math.unit(200, "miles")
  18508. },
  18509. ]
  18510. ))
  18511. characterMakers.push(() => makeCharacter(
  18512. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18513. {
  18514. front: {
  18515. height: math.unit(8, "feet"),
  18516. weight: math.unit(600, "lb"),
  18517. name: "Front",
  18518. image: {
  18519. source: "./media/characters/kyrehx/front.svg",
  18520. extra: 1195 / 1095,
  18521. bottom: 0.034
  18522. }
  18523. },
  18524. },
  18525. [
  18526. {
  18527. name: "Micro",
  18528. height: math.unit(2, "inches")
  18529. },
  18530. {
  18531. name: "Normal",
  18532. height: math.unit(8, "feet"),
  18533. default: true
  18534. },
  18535. {
  18536. name: "Macro",
  18537. height: math.unit(255, "feet")
  18538. },
  18539. ]
  18540. ))
  18541. characterMakers.push(() => makeCharacter(
  18542. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18543. {
  18544. front: {
  18545. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18546. weight: math.unit(184, "lb"),
  18547. name: "Front",
  18548. image: {
  18549. source: "./media/characters/xang/front.svg",
  18550. extra: 845 / 755
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Normal",
  18557. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18558. default: true
  18559. },
  18560. {
  18561. name: "Macro",
  18562. height: math.unit(0.935 * 146, "feet")
  18563. },
  18564. {
  18565. name: "Megamacro",
  18566. height: math.unit(0.935 * 3, "miles")
  18567. },
  18568. ]
  18569. ))
  18570. characterMakers.push(() => makeCharacter(
  18571. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18572. {
  18573. frontDressed: {
  18574. height: math.unit(5 + 7 / 12, "feet"),
  18575. weight: math.unit(140, "lb"),
  18576. name: "Front (Dressed)",
  18577. image: {
  18578. source: "./media/characters/doc-weardno/front-dressed.svg",
  18579. extra: 263 / 234
  18580. }
  18581. },
  18582. backDressed: {
  18583. height: math.unit(5 + 7 / 12, "feet"),
  18584. weight: math.unit(140, "lb"),
  18585. name: "Back (Dressed)",
  18586. image: {
  18587. source: "./media/characters/doc-weardno/back-dressed.svg",
  18588. extra: 266 / 238
  18589. }
  18590. },
  18591. front: {
  18592. height: math.unit(5 + 7 / 12, "feet"),
  18593. weight: math.unit(140, "lb"),
  18594. name: "Front",
  18595. image: {
  18596. source: "./media/characters/doc-weardno/front.svg",
  18597. extra: 254 / 233
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Micro",
  18604. height: math.unit(3, "inches")
  18605. },
  18606. {
  18607. name: "Normal",
  18608. height: math.unit(5 + 7 / 12, "feet"),
  18609. default: true
  18610. },
  18611. {
  18612. name: "Macro",
  18613. height: math.unit(25, "feet")
  18614. },
  18615. {
  18616. name: "Megamacro",
  18617. height: math.unit(2, "miles")
  18618. },
  18619. ]
  18620. ))
  18621. characterMakers.push(() => makeCharacter(
  18622. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18623. {
  18624. front: {
  18625. height: math.unit(6 + 2 / 12, "feet"),
  18626. weight: math.unit(153, "lb"),
  18627. name: "Front",
  18628. image: {
  18629. source: "./media/characters/seth-whilst/front.svg",
  18630. bottom: 0.07
  18631. }
  18632. },
  18633. },
  18634. [
  18635. {
  18636. name: "Micro",
  18637. height: math.unit(5, "inches")
  18638. },
  18639. {
  18640. name: "Normal",
  18641. height: math.unit(6 + 2 / 12, "feet"),
  18642. default: true
  18643. },
  18644. ]
  18645. ))
  18646. characterMakers.push(() => makeCharacter(
  18647. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18648. {
  18649. front: {
  18650. height: math.unit(3, "inches"),
  18651. weight: math.unit(8, "grams"),
  18652. name: "Front",
  18653. image: {
  18654. source: "./media/characters/pocket-jabari/front.svg",
  18655. extra: 1024 / 974,
  18656. bottom: 0.039
  18657. }
  18658. },
  18659. },
  18660. [
  18661. {
  18662. name: "Minimicro",
  18663. height: math.unit(8, "mm")
  18664. },
  18665. {
  18666. name: "Micro",
  18667. height: math.unit(3, "inches"),
  18668. default: true
  18669. },
  18670. {
  18671. name: "Normal",
  18672. height: math.unit(3, "feet")
  18673. },
  18674. ]
  18675. ))
  18676. characterMakers.push(() => makeCharacter(
  18677. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18678. {
  18679. front: {
  18680. height: math.unit(15, "feet"),
  18681. weight: math.unit(3280, "lb"),
  18682. name: "Front",
  18683. image: {
  18684. source: "./media/characters/sapphy/front.svg",
  18685. extra: 671 / 577,
  18686. bottom: 0.085
  18687. }
  18688. },
  18689. back: {
  18690. height: math.unit(15, "feet"),
  18691. weight: math.unit(3280, "lb"),
  18692. name: "Back",
  18693. image: {
  18694. source: "./media/characters/sapphy/back.svg",
  18695. extra: 631 / 607,
  18696. bottom: 0.045
  18697. }
  18698. },
  18699. },
  18700. [
  18701. {
  18702. name: "Normal",
  18703. height: math.unit(15, "feet")
  18704. },
  18705. {
  18706. name: "Casual Macro",
  18707. height: math.unit(120, "feet")
  18708. },
  18709. {
  18710. name: "Macro",
  18711. height: math.unit(2150, "feet"),
  18712. default: true
  18713. },
  18714. {
  18715. name: "Megamacro",
  18716. height: math.unit(8, "miles")
  18717. },
  18718. {
  18719. name: "Galaxy Mom",
  18720. height: math.unit(6, "megalightyears")
  18721. },
  18722. ]
  18723. ))
  18724. characterMakers.push(() => makeCharacter(
  18725. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18726. {
  18727. front: {
  18728. height: math.unit(6, "feet"),
  18729. weight: math.unit(170, "lb"),
  18730. name: "Front",
  18731. image: {
  18732. source: "./media/characters/kiro/front.svg",
  18733. extra: 1064 / 1012,
  18734. bottom: 0.052
  18735. }
  18736. },
  18737. },
  18738. [
  18739. {
  18740. name: "Micro",
  18741. height: math.unit(6, "inches")
  18742. },
  18743. {
  18744. name: "Normal",
  18745. height: math.unit(6, "feet"),
  18746. default: true
  18747. },
  18748. {
  18749. name: "Macro",
  18750. height: math.unit(72, "feet")
  18751. },
  18752. ]
  18753. ))
  18754. characterMakers.push(() => makeCharacter(
  18755. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18756. {
  18757. front: {
  18758. height: math.unit(5 + 9 / 12, "feet"),
  18759. weight: math.unit(175, "lb"),
  18760. name: "Front",
  18761. image: {
  18762. source: "./media/characters/irishfox/front.svg",
  18763. extra: 1912 / 1680,
  18764. bottom: 0.02
  18765. }
  18766. },
  18767. },
  18768. [
  18769. {
  18770. name: "Nano",
  18771. height: math.unit(1, "mm")
  18772. },
  18773. {
  18774. name: "Micro",
  18775. height: math.unit(2, "inches")
  18776. },
  18777. {
  18778. name: "Normal",
  18779. height: math.unit(5 + 9 / 12, "feet"),
  18780. default: true
  18781. },
  18782. {
  18783. name: "Macro",
  18784. height: math.unit(45, "feet")
  18785. },
  18786. ]
  18787. ))
  18788. characterMakers.push(() => makeCharacter(
  18789. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18790. {
  18791. front: {
  18792. height: math.unit(6 + 1 / 12, "feet"),
  18793. weight: math.unit(75, "lb"),
  18794. name: "Front",
  18795. image: {
  18796. source: "./media/characters/aronai-sieyes/front.svg",
  18797. extra: 1556 / 1480,
  18798. bottom: 0.015
  18799. }
  18800. },
  18801. side: {
  18802. height: math.unit(6 + 1 / 12, "feet"),
  18803. weight: math.unit(75, "lb"),
  18804. name: "Side",
  18805. image: {
  18806. source: "./media/characters/aronai-sieyes/side.svg",
  18807. extra: 1433 / 1390,
  18808. bottom: 0.0393
  18809. }
  18810. },
  18811. back: {
  18812. height: math.unit(6 + 1 / 12, "feet"),
  18813. weight: math.unit(75, "lb"),
  18814. name: "Back",
  18815. image: {
  18816. source: "./media/characters/aronai-sieyes/back.svg",
  18817. extra: 1544 / 1494,
  18818. bottom: 0.02
  18819. }
  18820. },
  18821. frontClothed: {
  18822. height: math.unit(6 + 1 / 12, "feet"),
  18823. weight: math.unit(75, "lb"),
  18824. name: "Front (Clothed)",
  18825. image: {
  18826. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18827. extra: 1582 / 1527
  18828. }
  18829. },
  18830. feral: {
  18831. height: math.unit(18, "feet"),
  18832. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18833. name: "Feral",
  18834. image: {
  18835. source: "./media/characters/aronai-sieyes/feral.svg",
  18836. extra: 1530 / 1240,
  18837. bottom: 0.035
  18838. }
  18839. },
  18840. },
  18841. [
  18842. {
  18843. name: "Micro",
  18844. height: math.unit(2, "inches")
  18845. },
  18846. {
  18847. name: "Normal",
  18848. height: math.unit(6 + 1 / 12, "feet"),
  18849. default: true
  18850. }
  18851. ]
  18852. ))
  18853. characterMakers.push(() => makeCharacter(
  18854. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18855. {
  18856. front: {
  18857. height: math.unit(12, "feet"),
  18858. weight: math.unit(410, "kg"),
  18859. name: "Front",
  18860. image: {
  18861. source: "./media/characters/xuna/front.svg",
  18862. extra: 2184 / 1980
  18863. }
  18864. },
  18865. side: {
  18866. height: math.unit(12, "feet"),
  18867. weight: math.unit(410, "kg"),
  18868. name: "Side",
  18869. image: {
  18870. source: "./media/characters/xuna/side.svg",
  18871. extra: 2184 / 1980
  18872. }
  18873. },
  18874. back: {
  18875. height: math.unit(12, "feet"),
  18876. weight: math.unit(410, "kg"),
  18877. name: "Back",
  18878. image: {
  18879. source: "./media/characters/xuna/back.svg",
  18880. extra: 2184 / 1980
  18881. }
  18882. },
  18883. },
  18884. [
  18885. {
  18886. name: "Nano glow",
  18887. height: math.unit(10, "nm")
  18888. },
  18889. {
  18890. name: "Micro floof",
  18891. height: math.unit(0.3, "m")
  18892. },
  18893. {
  18894. name: "Huggable softy boi",
  18895. height: math.unit(3.6576, "m"),
  18896. default: true
  18897. },
  18898. {
  18899. name: "Admirable floof",
  18900. height: math.unit(80, "meters")
  18901. },
  18902. {
  18903. name: "Gentle macro",
  18904. height: math.unit(300, "meters")
  18905. },
  18906. {
  18907. name: "Very careful floof",
  18908. height: math.unit(3200, "meters")
  18909. },
  18910. {
  18911. name: "The mega floof",
  18912. height: math.unit(36000, "meters")
  18913. },
  18914. {
  18915. name: "Giga-fur-Wicker",
  18916. height: math.unit(4800000, "meters")
  18917. },
  18918. {
  18919. name: "Licky world",
  18920. height: math.unit(20000000, "meters")
  18921. },
  18922. {
  18923. name: "Floofy cyan sun",
  18924. height: math.unit(1500000000, "meters")
  18925. },
  18926. {
  18927. name: "Milky Wicker",
  18928. height: math.unit(1000000000000000000000, "meters")
  18929. },
  18930. {
  18931. name: "The observing Wicker",
  18932. height: math.unit(999999999999999999999999999, "meters")
  18933. },
  18934. ]
  18935. ))
  18936. characterMakers.push(() => makeCharacter(
  18937. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18938. {
  18939. front: {
  18940. height: math.unit(5 + 9 / 12, "feet"),
  18941. weight: math.unit(150, "lb"),
  18942. name: "Front",
  18943. image: {
  18944. source: "./media/characters/arokha-sieyes/front.svg",
  18945. extra: 1425 / 1284,
  18946. bottom: 0.05
  18947. }
  18948. },
  18949. },
  18950. [
  18951. {
  18952. name: "Normal",
  18953. height: math.unit(5 + 9 / 12, "feet")
  18954. },
  18955. {
  18956. name: "Macro",
  18957. height: math.unit(30, "meters"),
  18958. default: true
  18959. },
  18960. ]
  18961. ))
  18962. characterMakers.push(() => makeCharacter(
  18963. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18964. {
  18965. front: {
  18966. height: math.unit(6, "feet"),
  18967. weight: math.unit(180, "lb"),
  18968. name: "Front",
  18969. image: {
  18970. source: "./media/characters/arokh-sieyes/front.svg",
  18971. extra: 1830 / 1769,
  18972. bottom: 0.01
  18973. }
  18974. },
  18975. },
  18976. [
  18977. {
  18978. name: "Normal",
  18979. height: math.unit(6, "feet")
  18980. },
  18981. {
  18982. name: "Macro",
  18983. height: math.unit(30, "meters"),
  18984. default: true
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18990. {
  18991. side: {
  18992. height: math.unit(13 + 1 / 12, "feet"),
  18993. weight: math.unit(8.5, "tonnes"),
  18994. name: "Side",
  18995. image: {
  18996. source: "./media/characters/goldeneye/side.svg",
  18997. extra: 1182 / 778,
  18998. bottom: 0.067
  18999. }
  19000. },
  19001. paw: {
  19002. height: math.unit(3.4, "feet"),
  19003. name: "Paw",
  19004. image: {
  19005. source: "./media/characters/goldeneye/paw.svg"
  19006. }
  19007. },
  19008. },
  19009. [
  19010. {
  19011. name: "Normal",
  19012. height: math.unit(13 + 1 / 12, "feet"),
  19013. default: true
  19014. },
  19015. ]
  19016. ))
  19017. characterMakers.push(() => makeCharacter(
  19018. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19019. {
  19020. front: {
  19021. height: math.unit(6 + 1 / 12, "feet"),
  19022. weight: math.unit(210, "lb"),
  19023. name: "Front",
  19024. image: {
  19025. source: "./media/characters/leonardo-lycheborne/front.svg",
  19026. extra: 390 / 365,
  19027. bottom: 0.032
  19028. }
  19029. },
  19030. side: {
  19031. height: math.unit(6 + 1 / 12, "feet"),
  19032. weight: math.unit(210, "lb"),
  19033. name: "Side",
  19034. image: {
  19035. source: "./media/characters/leonardo-lycheborne/side.svg",
  19036. extra: 390 / 365,
  19037. bottom: 0.005
  19038. }
  19039. },
  19040. back: {
  19041. height: math.unit(6 + 1 / 12, "feet"),
  19042. weight: math.unit(210, "lb"),
  19043. name: "Back",
  19044. image: {
  19045. source: "./media/characters/leonardo-lycheborne/back.svg",
  19046. extra: 392 / 366,
  19047. bottom: 0.01
  19048. }
  19049. },
  19050. hand: {
  19051. height: math.unit(1.08, "feet"),
  19052. name: "Hand",
  19053. image: {
  19054. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19055. }
  19056. },
  19057. foot: {
  19058. height: math.unit(1.32, "feet"),
  19059. name: "Foot",
  19060. image: {
  19061. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19062. }
  19063. },
  19064. were: {
  19065. height: math.unit(20, "feet"),
  19066. weight: math.unit(7800, "lb"),
  19067. name: "Were",
  19068. image: {
  19069. source: "./media/characters/leonardo-lycheborne/were.svg",
  19070. extra: 308 / 294,
  19071. bottom: 0.048
  19072. }
  19073. },
  19074. feral: {
  19075. height: math.unit(7.5, "feet"),
  19076. weight: math.unit(600, "lb"),
  19077. name: "Feral",
  19078. image: {
  19079. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19080. extra: 210 / 186,
  19081. bottom: 0.108
  19082. }
  19083. },
  19084. taur: {
  19085. height: math.unit(11, "feet"),
  19086. weight: math.unit(3300, "lb"),
  19087. name: "Taur",
  19088. image: {
  19089. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19090. extra: 320 / 303,
  19091. bottom: 0.025
  19092. }
  19093. },
  19094. barghest: {
  19095. height: math.unit(11, "feet"),
  19096. weight: math.unit(1300, "lb"),
  19097. name: "Barghest",
  19098. image: {
  19099. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19100. extra: 323 / 302,
  19101. bottom: 0.027
  19102. }
  19103. },
  19104. dick: {
  19105. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19106. name: "Dick",
  19107. image: {
  19108. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19109. }
  19110. },
  19111. dickWere: {
  19112. height: math.unit((20) / 3.8, "feet"),
  19113. name: "Dick (Were)",
  19114. image: {
  19115. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19116. }
  19117. },
  19118. },
  19119. [
  19120. {
  19121. name: "Normal",
  19122. height: math.unit(6 + 1 / 12, "feet"),
  19123. default: true
  19124. },
  19125. ]
  19126. ))
  19127. characterMakers.push(() => makeCharacter(
  19128. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19129. {
  19130. front: {
  19131. height: math.unit(10, "feet"),
  19132. weight: math.unit(350, "lb"),
  19133. name: "Front",
  19134. image: {
  19135. source: "./media/characters/jet/front.svg",
  19136. extra: 2050 / 1980,
  19137. bottom: 0.013
  19138. }
  19139. },
  19140. back: {
  19141. height: math.unit(10, "feet"),
  19142. weight: math.unit(350, "lb"),
  19143. name: "Back",
  19144. image: {
  19145. source: "./media/characters/jet/back.svg",
  19146. extra: 2050 / 1980,
  19147. bottom: 0.013
  19148. }
  19149. },
  19150. },
  19151. [
  19152. {
  19153. name: "Micro",
  19154. height: math.unit(6, "inches")
  19155. },
  19156. {
  19157. name: "Normal",
  19158. height: math.unit(10, "feet"),
  19159. default: true
  19160. },
  19161. {
  19162. name: "Macro",
  19163. height: math.unit(100, "feet")
  19164. },
  19165. ]
  19166. ))
  19167. characterMakers.push(() => makeCharacter(
  19168. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19169. {
  19170. front: {
  19171. height: math.unit(15, "feet"),
  19172. weight: math.unit(2800, "lb"),
  19173. name: "Front",
  19174. image: {
  19175. source: "./media/characters/tanarath/front.svg",
  19176. extra: 2392 / 2220,
  19177. bottom: 0.03
  19178. }
  19179. },
  19180. back: {
  19181. height: math.unit(15, "feet"),
  19182. weight: math.unit(2800, "lb"),
  19183. name: "Back",
  19184. image: {
  19185. source: "./media/characters/tanarath/back.svg",
  19186. extra: 2392 / 2220,
  19187. bottom: 0.03
  19188. }
  19189. },
  19190. },
  19191. [
  19192. {
  19193. name: "Normal",
  19194. height: math.unit(15, "feet"),
  19195. default: true
  19196. },
  19197. ]
  19198. ))
  19199. characterMakers.push(() => makeCharacter(
  19200. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19201. {
  19202. front: {
  19203. height: math.unit(7 + 1 / 12, "feet"),
  19204. weight: math.unit(175, "lb"),
  19205. name: "Front",
  19206. image: {
  19207. source: "./media/characters/patty-cattybatty/front.svg",
  19208. extra: 908 / 874,
  19209. bottom: 0.025
  19210. }
  19211. },
  19212. },
  19213. [
  19214. {
  19215. name: "Micro",
  19216. height: math.unit(1, "inch")
  19217. },
  19218. {
  19219. name: "Normal",
  19220. height: math.unit(7 + 1 / 12, "feet")
  19221. },
  19222. {
  19223. name: "Mini Macro",
  19224. height: math.unit(155, "feet")
  19225. },
  19226. {
  19227. name: "Macro",
  19228. height: math.unit(1077, "feet")
  19229. },
  19230. {
  19231. name: "Mega Macro",
  19232. height: math.unit(47650, "feet"),
  19233. default: true
  19234. },
  19235. {
  19236. name: "Giga Macro",
  19237. height: math.unit(440, "miles")
  19238. },
  19239. {
  19240. name: "Tera Macro",
  19241. height: math.unit(8700, "miles")
  19242. },
  19243. {
  19244. name: "Planetary Macro",
  19245. height: math.unit(32700, "miles")
  19246. },
  19247. {
  19248. name: "Solar Macro",
  19249. height: math.unit(550000, "miles")
  19250. },
  19251. {
  19252. name: "Celestial Macro",
  19253. height: math.unit(2.5, "AU")
  19254. },
  19255. ]
  19256. ))
  19257. characterMakers.push(() => makeCharacter(
  19258. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19259. {
  19260. front: {
  19261. height: math.unit(4 + 5 / 12, "feet"),
  19262. weight: math.unit(90, "lb"),
  19263. name: "Front",
  19264. image: {
  19265. source: "./media/characters/cappu/front.svg",
  19266. extra: 1247 / 1152,
  19267. bottom: 0.012
  19268. }
  19269. },
  19270. },
  19271. [
  19272. {
  19273. name: "Normal",
  19274. height: math.unit(4 + 5 / 12, "feet"),
  19275. default: true
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19281. {
  19282. frontDressed: {
  19283. height: math.unit(70, "cm"),
  19284. weight: math.unit(6, "kg"),
  19285. name: "Front (Dressed)",
  19286. image: {
  19287. source: "./media/characters/sebi/front-dressed.svg",
  19288. extra: 713.5 / 686.5,
  19289. bottom: 0.003
  19290. }
  19291. },
  19292. front: {
  19293. height: math.unit(70, "cm"),
  19294. weight: math.unit(5, "kg"),
  19295. name: "Front",
  19296. image: {
  19297. source: "./media/characters/sebi/front.svg",
  19298. extra: 713.5 / 686.5,
  19299. bottom: 0.003
  19300. }
  19301. }
  19302. },
  19303. [
  19304. {
  19305. name: "Normal",
  19306. height: math.unit(70, "cm"),
  19307. default: true
  19308. },
  19309. {
  19310. name: "Macro",
  19311. height: math.unit(8, "meters")
  19312. },
  19313. ]
  19314. ))
  19315. characterMakers.push(() => makeCharacter(
  19316. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19317. {
  19318. front: {
  19319. height: math.unit(6, "feet"),
  19320. weight: math.unit(150, "lb"),
  19321. name: "Front",
  19322. image: {
  19323. source: "./media/characters/typhek/front.svg",
  19324. extra: 1948 / 1929,
  19325. bottom: 0.025
  19326. }
  19327. },
  19328. side: {
  19329. height: math.unit(6, "feet"),
  19330. weight: math.unit(150, "lb"),
  19331. name: "Side",
  19332. image: {
  19333. source: "./media/characters/typhek/side.svg",
  19334. extra: 2034 / 2010,
  19335. bottom: 0.003
  19336. }
  19337. },
  19338. back: {
  19339. height: math.unit(6, "feet"),
  19340. weight: math.unit(150, "lb"),
  19341. name: "Back",
  19342. image: {
  19343. source: "./media/characters/typhek/back.svg",
  19344. extra: 2005 / 1978,
  19345. bottom: 0.004
  19346. }
  19347. },
  19348. palm: {
  19349. height: math.unit(1.2, "feet"),
  19350. name: "Palm",
  19351. image: {
  19352. source: "./media/characters/typhek/palm.svg"
  19353. }
  19354. },
  19355. fist: {
  19356. height: math.unit(1.1, "feet"),
  19357. name: "Fist",
  19358. image: {
  19359. source: "./media/characters/typhek/fist.svg"
  19360. }
  19361. },
  19362. foot: {
  19363. height: math.unit(1.57, "feet"),
  19364. name: "Foot",
  19365. image: {
  19366. source: "./media/characters/typhek/foot.svg"
  19367. }
  19368. },
  19369. sole: {
  19370. height: math.unit(2.05, "feet"),
  19371. name: "Sole",
  19372. image: {
  19373. source: "./media/characters/typhek/sole.svg"
  19374. }
  19375. },
  19376. },
  19377. [
  19378. {
  19379. name: "Macro",
  19380. height: math.unit(40, "stories"),
  19381. default: true
  19382. },
  19383. {
  19384. name: "Megamacro",
  19385. height: math.unit(1, "mile")
  19386. },
  19387. {
  19388. name: "Gigamacro",
  19389. height: math.unit(4000, "solarradii")
  19390. },
  19391. {
  19392. name: "Universal",
  19393. height: math.unit(1.1, "universes")
  19394. }
  19395. ]
  19396. ))
  19397. characterMakers.push(() => makeCharacter(
  19398. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19399. {
  19400. side: {
  19401. height: math.unit(5 + 7 / 12, "feet"),
  19402. weight: math.unit(150, "lb"),
  19403. name: "Side",
  19404. image: {
  19405. source: "./media/characters/kassy/side.svg",
  19406. extra: 1280 / 1225,
  19407. bottom: 0.002
  19408. }
  19409. },
  19410. front: {
  19411. height: math.unit(5 + 7 / 12, "feet"),
  19412. weight: math.unit(150, "lb"),
  19413. name: "Front",
  19414. image: {
  19415. source: "./media/characters/kassy/front.svg",
  19416. extra: 1280 / 1225,
  19417. bottom: 0.025
  19418. }
  19419. },
  19420. back: {
  19421. height: math.unit(5 + 7 / 12, "feet"),
  19422. weight: math.unit(150, "lb"),
  19423. name: "Back",
  19424. image: {
  19425. source: "./media/characters/kassy/back.svg",
  19426. extra: 1280 / 1225,
  19427. bottom: 0.002
  19428. }
  19429. },
  19430. foot: {
  19431. height: math.unit(1.266, "feet"),
  19432. name: "Foot",
  19433. image: {
  19434. source: "./media/characters/kassy/foot.svg"
  19435. }
  19436. },
  19437. },
  19438. [
  19439. {
  19440. name: "Normal",
  19441. height: math.unit(5 + 7 / 12, "feet")
  19442. },
  19443. {
  19444. name: "Macro",
  19445. height: math.unit(137, "feet"),
  19446. default: true
  19447. },
  19448. {
  19449. name: "Megamacro",
  19450. height: math.unit(1, "mile")
  19451. },
  19452. ]
  19453. ))
  19454. characterMakers.push(() => makeCharacter(
  19455. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19456. {
  19457. front: {
  19458. height: math.unit(6 + 1 / 12, "feet"),
  19459. weight: math.unit(200, "lb"),
  19460. name: "Front",
  19461. image: {
  19462. source: "./media/characters/neil/front.svg",
  19463. extra: 1326 / 1250,
  19464. bottom: 0.023
  19465. }
  19466. },
  19467. },
  19468. [
  19469. {
  19470. name: "Normal",
  19471. height: math.unit(6 + 1 / 12, "feet"),
  19472. default: true
  19473. },
  19474. {
  19475. name: "Macro",
  19476. height: math.unit(200, "feet")
  19477. },
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19482. {
  19483. front: {
  19484. height: math.unit(5 + 9 / 12, "feet"),
  19485. weight: math.unit(190, "lb"),
  19486. name: "Front",
  19487. image: {
  19488. source: "./media/characters/atticus/front.svg",
  19489. extra: 2934 / 2785,
  19490. bottom: 0.025
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(5 + 9 / 12, "feet"),
  19498. default: true
  19499. },
  19500. {
  19501. name: "Macro",
  19502. height: math.unit(180, "feet")
  19503. },
  19504. ]
  19505. ))
  19506. characterMakers.push(() => makeCharacter(
  19507. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19508. {
  19509. side: {
  19510. height: math.unit(9, "feet"),
  19511. weight: math.unit(650, "lb"),
  19512. name: "Side",
  19513. image: {
  19514. source: "./media/characters/milo/side.svg",
  19515. extra: 2644 / 2310,
  19516. bottom: 0.032
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Normal",
  19523. height: math.unit(9, "feet"),
  19524. default: true
  19525. },
  19526. {
  19527. name: "Macro",
  19528. height: math.unit(300, "feet")
  19529. },
  19530. ]
  19531. ))
  19532. characterMakers.push(() => makeCharacter(
  19533. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19534. {
  19535. side: {
  19536. height: math.unit(8, "meters"),
  19537. weight: math.unit(90000, "kg"),
  19538. name: "Side",
  19539. image: {
  19540. source: "./media/characters/ijzer/side.svg",
  19541. extra: 2756 / 1600,
  19542. bottom: 0.01
  19543. }
  19544. },
  19545. },
  19546. [
  19547. {
  19548. name: "Small",
  19549. height: math.unit(3, "meters")
  19550. },
  19551. {
  19552. name: "Normal",
  19553. height: math.unit(8, "meters"),
  19554. default: true
  19555. },
  19556. {
  19557. name: "Normal+",
  19558. height: math.unit(10, "meters")
  19559. },
  19560. {
  19561. name: "Bigger",
  19562. height: math.unit(24, "meters")
  19563. },
  19564. {
  19565. name: "Huge",
  19566. height: math.unit(80, "meters")
  19567. },
  19568. ]
  19569. ))
  19570. characterMakers.push(() => makeCharacter(
  19571. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19572. {
  19573. front: {
  19574. height: math.unit(6 + 2 / 12, "feet"),
  19575. weight: math.unit(153, "lb"),
  19576. name: "Front",
  19577. image: {
  19578. source: "./media/characters/luca-cervicum/front.svg",
  19579. extra: 370 / 327,
  19580. bottom: 0.015
  19581. }
  19582. },
  19583. back: {
  19584. height: math.unit(6 + 2 / 12, "feet"),
  19585. weight: math.unit(153, "lb"),
  19586. name: "Back",
  19587. image: {
  19588. source: "./media/characters/luca-cervicum/back.svg",
  19589. extra: 367 / 333,
  19590. bottom: 0.005
  19591. }
  19592. },
  19593. frontGear: {
  19594. height: math.unit(6 + 2 / 12, "feet"),
  19595. weight: math.unit(173, "lb"),
  19596. name: "Front (Gear)",
  19597. image: {
  19598. source: "./media/characters/luca-cervicum/front-gear.svg",
  19599. extra: 377 / 333,
  19600. bottom: 0.006
  19601. }
  19602. },
  19603. },
  19604. [
  19605. {
  19606. name: "Normal",
  19607. height: math.unit(6 + 2 / 12, "feet"),
  19608. default: true
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19614. {
  19615. front: {
  19616. height: math.unit(6 + 1 / 12, "feet"),
  19617. weight: math.unit(304, "lb"),
  19618. name: "Front",
  19619. image: {
  19620. source: "./media/characters/oliver/front.svg",
  19621. extra: 157 / 143,
  19622. bottom: 0.08
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Normal",
  19629. height: math.unit(6 + 1 / 12, "feet"),
  19630. default: true
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19636. {
  19637. front: {
  19638. height: math.unit(5 + 7 / 12, "feet"),
  19639. weight: math.unit(140, "lb"),
  19640. name: "Front",
  19641. image: {
  19642. source: "./media/characters/shane/front.svg",
  19643. extra: 304 / 289,
  19644. bottom: 0.005
  19645. }
  19646. },
  19647. },
  19648. [
  19649. {
  19650. name: "Normal",
  19651. height: math.unit(5 + 7 / 12, "feet"),
  19652. default: true
  19653. },
  19654. ]
  19655. ))
  19656. characterMakers.push(() => makeCharacter(
  19657. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19658. {
  19659. front: {
  19660. height: math.unit(5 + 9 / 12, "feet"),
  19661. weight: math.unit(178, "lb"),
  19662. name: "Front",
  19663. image: {
  19664. source: "./media/characters/shin/front.svg",
  19665. extra: 159 / 151,
  19666. bottom: 0.015
  19667. }
  19668. },
  19669. },
  19670. [
  19671. {
  19672. name: "Normal",
  19673. height: math.unit(5 + 9 / 12, "feet"),
  19674. default: true
  19675. },
  19676. ]
  19677. ))
  19678. characterMakers.push(() => makeCharacter(
  19679. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19680. {
  19681. front: {
  19682. height: math.unit(5 + 10 / 12, "feet"),
  19683. weight: math.unit(168, "lb"),
  19684. name: "Front",
  19685. image: {
  19686. source: "./media/characters/xerxes/front.svg",
  19687. extra: 282 / 260,
  19688. bottom: 0.045
  19689. }
  19690. },
  19691. },
  19692. [
  19693. {
  19694. name: "Normal",
  19695. height: math.unit(5 + 10 / 12, "feet"),
  19696. default: true
  19697. },
  19698. ]
  19699. ))
  19700. characterMakers.push(() => makeCharacter(
  19701. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19702. {
  19703. front: {
  19704. height: math.unit(6 + 7 / 12, "feet"),
  19705. weight: math.unit(208, "lb"),
  19706. name: "Front",
  19707. image: {
  19708. source: "./media/characters/chaska/front.svg",
  19709. extra: 332 / 319,
  19710. bottom: 0.015
  19711. }
  19712. },
  19713. },
  19714. [
  19715. {
  19716. name: "Normal",
  19717. height: math.unit(6 + 7 / 12, "feet"),
  19718. default: true
  19719. },
  19720. ]
  19721. ))
  19722. characterMakers.push(() => makeCharacter(
  19723. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19724. {
  19725. front: {
  19726. height: math.unit(5 + 8 / 12, "feet"),
  19727. weight: math.unit(208, "lb"),
  19728. name: "Front",
  19729. image: {
  19730. source: "./media/characters/enuk/front.svg",
  19731. extra: 437 / 406,
  19732. bottom: 0.02
  19733. }
  19734. },
  19735. },
  19736. [
  19737. {
  19738. name: "Normal",
  19739. height: math.unit(5 + 8 / 12, "feet"),
  19740. default: true
  19741. },
  19742. ]
  19743. ))
  19744. characterMakers.push(() => makeCharacter(
  19745. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19746. {
  19747. front: {
  19748. height: math.unit(5 + 10 / 12, "feet"),
  19749. weight: math.unit(252, "lb"),
  19750. name: "Front",
  19751. image: {
  19752. source: "./media/characters/bruun/front.svg",
  19753. extra: 197 / 187,
  19754. bottom: 0.012
  19755. }
  19756. },
  19757. },
  19758. [
  19759. {
  19760. name: "Normal",
  19761. height: math.unit(5 + 10 / 12, "feet"),
  19762. default: true
  19763. },
  19764. ]
  19765. ))
  19766. characterMakers.push(() => makeCharacter(
  19767. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19768. {
  19769. front: {
  19770. height: math.unit(6 + 10 / 12, "feet"),
  19771. weight: math.unit(255, "lb"),
  19772. name: "Front",
  19773. image: {
  19774. source: "./media/characters/alexeev/front.svg",
  19775. extra: 213 / 200,
  19776. bottom: 0.05
  19777. }
  19778. },
  19779. },
  19780. [
  19781. {
  19782. name: "Normal",
  19783. height: math.unit(6 + 10 / 12, "feet"),
  19784. default: true
  19785. },
  19786. ]
  19787. ))
  19788. characterMakers.push(() => makeCharacter(
  19789. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19790. {
  19791. front: {
  19792. height: math.unit(2 + 8 / 12, "feet"),
  19793. weight: math.unit(22, "lb"),
  19794. name: "Front",
  19795. image: {
  19796. source: "./media/characters/evelyn/front.svg",
  19797. extra: 208 / 180
  19798. }
  19799. },
  19800. },
  19801. [
  19802. {
  19803. name: "Normal",
  19804. height: math.unit(2 + 8 / 12, "feet"),
  19805. default: true
  19806. },
  19807. ]
  19808. ))
  19809. characterMakers.push(() => makeCharacter(
  19810. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19811. {
  19812. front: {
  19813. height: math.unit(5 + 9 / 12, "feet"),
  19814. weight: math.unit(139, "lb"),
  19815. name: "Front",
  19816. image: {
  19817. source: "./media/characters/inca/front.svg",
  19818. extra: 294 / 291,
  19819. bottom: 0.03
  19820. }
  19821. },
  19822. },
  19823. [
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(5 + 9 / 12, "feet"),
  19827. default: true
  19828. },
  19829. ]
  19830. ))
  19831. characterMakers.push(() => makeCharacter(
  19832. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19833. {
  19834. front: {
  19835. height: math.unit(5 + 1 / 12, "feet"),
  19836. weight: math.unit(84, "lb"),
  19837. name: "Front",
  19838. image: {
  19839. source: "./media/characters/magdalene/front.svg",
  19840. extra: 293 / 273
  19841. }
  19842. },
  19843. },
  19844. [
  19845. {
  19846. name: "Normal",
  19847. height: math.unit(5 + 1 / 12, "feet"),
  19848. default: true
  19849. },
  19850. ]
  19851. ))
  19852. characterMakers.push(() => makeCharacter(
  19853. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19854. {
  19855. front: {
  19856. height: math.unit(6 + 3 / 12, "feet"),
  19857. weight: math.unit(185, "lb"),
  19858. name: "Front",
  19859. image: {
  19860. source: "./media/characters/mera/front.svg",
  19861. extra: 291 / 277,
  19862. bottom: 0.03
  19863. }
  19864. },
  19865. },
  19866. [
  19867. {
  19868. name: "Normal",
  19869. height: math.unit(6 + 3 / 12, "feet"),
  19870. default: true
  19871. },
  19872. ]
  19873. ))
  19874. characterMakers.push(() => makeCharacter(
  19875. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19876. {
  19877. front: {
  19878. height: math.unit(6 + 7 / 12, "feet"),
  19879. weight: math.unit(160, "lb"),
  19880. name: "Front",
  19881. image: {
  19882. source: "./media/characters/ceres/front.svg",
  19883. extra: 1023 / 950,
  19884. bottom: 0.027
  19885. }
  19886. },
  19887. back: {
  19888. height: math.unit(6 + 7 / 12, "feet"),
  19889. weight: math.unit(160, "lb"),
  19890. name: "Back",
  19891. image: {
  19892. source: "./media/characters/ceres/back.svg",
  19893. extra: 1023 / 950
  19894. }
  19895. },
  19896. },
  19897. [
  19898. {
  19899. name: "Normal",
  19900. height: math.unit(6 + 7 / 12, "feet"),
  19901. default: true
  19902. },
  19903. ]
  19904. ))
  19905. characterMakers.push(() => makeCharacter(
  19906. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19907. {
  19908. front: {
  19909. height: math.unit(5 + 10 / 12, "feet"),
  19910. weight: math.unit(150, "lb"),
  19911. name: "Front",
  19912. image: {
  19913. source: "./media/characters/kris/front.svg",
  19914. extra: 885 / 803,
  19915. bottom: 0.03
  19916. }
  19917. },
  19918. },
  19919. [
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(5 + 10 / 12, "feet"),
  19923. default: true
  19924. },
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19929. {
  19930. front: {
  19931. height: math.unit(7, "feet"),
  19932. weight: math.unit(120, "kg"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/taluthus/front.svg",
  19936. extra: 903 / 833,
  19937. bottom: 0.015
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Normal",
  19944. height: math.unit(7, "feet"),
  19945. default: true
  19946. },
  19947. {
  19948. name: "Macro",
  19949. height: math.unit(300, "feet")
  19950. },
  19951. ]
  19952. ))
  19953. characterMakers.push(() => makeCharacter(
  19954. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19955. {
  19956. front: {
  19957. height: math.unit(5 + 9 / 12, "feet"),
  19958. weight: math.unit(145, "lb"),
  19959. name: "Front",
  19960. image: {
  19961. source: "./media/characters/dawn/front.svg",
  19962. extra: 2094 / 2016,
  19963. bottom: 0.025
  19964. }
  19965. },
  19966. back: {
  19967. height: math.unit(5 + 9 / 12, "feet"),
  19968. weight: math.unit(160, "lb"),
  19969. name: "Back",
  19970. image: {
  19971. source: "./media/characters/dawn/back.svg",
  19972. extra: 2112 / 2080,
  19973. bottom: 0.005
  19974. }
  19975. },
  19976. },
  19977. [
  19978. {
  19979. name: "Normal",
  19980. height: math.unit(6 + 7 / 12, "feet"),
  19981. default: true
  19982. },
  19983. ]
  19984. ))
  19985. characterMakers.push(() => makeCharacter(
  19986. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19987. {
  19988. anthro: {
  19989. height: math.unit(8 + 3 / 12, "feet"),
  19990. weight: math.unit(450, "lb"),
  19991. name: "Anthro",
  19992. image: {
  19993. source: "./media/characters/arador/anthro.svg",
  19994. extra: 1835 / 1718,
  19995. bottom: 0.025
  19996. }
  19997. },
  19998. feral: {
  19999. height: math.unit(4, "feet"),
  20000. weight: math.unit(200, "lb"),
  20001. name: "Feral",
  20002. image: {
  20003. source: "./media/characters/arador/feral.svg",
  20004. extra: 1683 / 1514,
  20005. bottom: 0.07
  20006. }
  20007. },
  20008. },
  20009. [
  20010. {
  20011. name: "Normal",
  20012. height: math.unit(8 + 3 / 12, "feet")
  20013. },
  20014. {
  20015. name: "Macro",
  20016. height: math.unit(82.5, "feet"),
  20017. default: true
  20018. },
  20019. ]
  20020. ))
  20021. characterMakers.push(() => makeCharacter(
  20022. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20023. {
  20024. front: {
  20025. height: math.unit(5 + 10 / 12, "feet"),
  20026. weight: math.unit(125, "lb"),
  20027. name: "Front",
  20028. image: {
  20029. source: "./media/characters/dharsi/front.svg",
  20030. extra: 716 / 630,
  20031. bottom: 0.035
  20032. }
  20033. },
  20034. },
  20035. [
  20036. {
  20037. name: "Nano",
  20038. height: math.unit(100, "nm")
  20039. },
  20040. {
  20041. name: "Micro",
  20042. height: math.unit(2, "inches")
  20043. },
  20044. {
  20045. name: "Normal",
  20046. height: math.unit(5 + 10 / 12, "feet"),
  20047. default: true
  20048. },
  20049. {
  20050. name: "Macro",
  20051. height: math.unit(1000, "feet")
  20052. },
  20053. {
  20054. name: "Megamacro",
  20055. height: math.unit(10, "miles")
  20056. },
  20057. {
  20058. name: "Gigamacro",
  20059. height: math.unit(3000, "miles")
  20060. },
  20061. {
  20062. name: "Teramacro",
  20063. height: math.unit(500000, "miles")
  20064. },
  20065. {
  20066. name: "Teramacro+",
  20067. height: math.unit(30, "galaxies")
  20068. },
  20069. ]
  20070. ))
  20071. characterMakers.push(() => makeCharacter(
  20072. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20073. {
  20074. front: {
  20075. height: math.unit(6, "feet"),
  20076. weight: math.unit(150, "lb"),
  20077. name: "Front",
  20078. image: {
  20079. source: "./media/characters/deathy/front.svg",
  20080. extra: 1552 / 1463,
  20081. bottom: 0.025
  20082. }
  20083. },
  20084. side: {
  20085. height: math.unit(6, "feet"),
  20086. weight: math.unit(150, "lb"),
  20087. name: "Side",
  20088. image: {
  20089. source: "./media/characters/deathy/side.svg",
  20090. extra: 1604 / 1455,
  20091. bottom: 0.025
  20092. }
  20093. },
  20094. back: {
  20095. height: math.unit(6, "feet"),
  20096. weight: math.unit(150, "lb"),
  20097. name: "Back",
  20098. image: {
  20099. source: "./media/characters/deathy/back.svg",
  20100. extra: 1580 / 1463,
  20101. bottom: 0.005
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Micro",
  20108. height: math.unit(5, "millimeters")
  20109. },
  20110. {
  20111. name: "Normal",
  20112. height: math.unit(6 + 5 / 12, "feet"),
  20113. default: true
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20119. {
  20120. front: {
  20121. height: math.unit(16, "feet"),
  20122. weight: math.unit(4000, "lb"),
  20123. name: "Front",
  20124. image: {
  20125. source: "./media/characters/juniper/front.svg",
  20126. bottom: 0.04
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(16, "feet"),
  20134. default: true
  20135. },
  20136. ]
  20137. ))
  20138. characterMakers.push(() => makeCharacter(
  20139. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20140. {
  20141. front: {
  20142. height: math.unit(6, "feet"),
  20143. weight: math.unit(150, "lb"),
  20144. name: "Front",
  20145. image: {
  20146. source: "./media/characters/hipster/front.svg",
  20147. extra: 1312 / 1209,
  20148. bottom: 0.025
  20149. }
  20150. },
  20151. back: {
  20152. height: math.unit(6, "feet"),
  20153. weight: math.unit(150, "lb"),
  20154. name: "Back",
  20155. image: {
  20156. source: "./media/characters/hipster/back.svg",
  20157. extra: 1281 / 1196,
  20158. bottom: 0.01
  20159. }
  20160. },
  20161. },
  20162. [
  20163. {
  20164. name: "Micro",
  20165. height: math.unit(1, "mm")
  20166. },
  20167. {
  20168. name: "Normal",
  20169. height: math.unit(4, "inches"),
  20170. default: true
  20171. },
  20172. {
  20173. name: "Macro",
  20174. height: math.unit(500, "feet")
  20175. },
  20176. {
  20177. name: "Megamacro",
  20178. height: math.unit(1000, "miles")
  20179. },
  20180. ]
  20181. ))
  20182. characterMakers.push(() => makeCharacter(
  20183. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20184. {
  20185. front: {
  20186. height: math.unit(6, "feet"),
  20187. weight: math.unit(150, "lb"),
  20188. name: "Front",
  20189. image: {
  20190. source: "./media/characters/tendirmuldr/front.svg",
  20191. extra: 1878 / 1772,
  20192. bottom: 0.015
  20193. }
  20194. },
  20195. },
  20196. [
  20197. {
  20198. name: "Megamacro",
  20199. height: math.unit(1500, "miles"),
  20200. default: true
  20201. },
  20202. ]
  20203. ))
  20204. characterMakers.push(() => makeCharacter(
  20205. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20206. {
  20207. front: {
  20208. height: math.unit(14, "feet"),
  20209. weight: math.unit(12000, "lb"),
  20210. name: "Front",
  20211. image: {
  20212. source: "./media/characters/mort/front.svg",
  20213. extra: 365 / 318,
  20214. bottom: 0.01
  20215. }
  20216. },
  20217. side: {
  20218. height: math.unit(14, "feet"),
  20219. weight: math.unit(12000, "lb"),
  20220. name: "Side",
  20221. image: {
  20222. source: "./media/characters/mort/side.svg",
  20223. extra: 365 / 318,
  20224. bottom: 0.052
  20225. },
  20226. default: true
  20227. },
  20228. back: {
  20229. height: math.unit(14, "feet"),
  20230. weight: math.unit(12000, "lb"),
  20231. name: "Back",
  20232. image: {
  20233. source: "./media/characters/mort/back.svg",
  20234. extra: 371 / 332,
  20235. bottom: 0.18
  20236. }
  20237. },
  20238. },
  20239. [
  20240. {
  20241. name: "Normal",
  20242. height: math.unit(14, "feet"),
  20243. default: true
  20244. },
  20245. ]
  20246. ))
  20247. characterMakers.push(() => makeCharacter(
  20248. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20249. {
  20250. front: {
  20251. height: math.unit(8, "feet"),
  20252. weight: math.unit(1, "ton"),
  20253. name: "Front",
  20254. image: {
  20255. source: "./media/characters/lycoa/front.svg",
  20256. extra: 1875 / 1789,
  20257. bottom: 0.022
  20258. }
  20259. },
  20260. back: {
  20261. height: math.unit(8, "feet"),
  20262. weight: math.unit(1, "ton"),
  20263. name: "Back",
  20264. image: {
  20265. source: "./media/characters/lycoa/back.svg",
  20266. extra: 1835 / 1781,
  20267. bottom: 0.03
  20268. }
  20269. },
  20270. head: {
  20271. height: math.unit(2.1, "feet"),
  20272. name: "Head",
  20273. image: {
  20274. source: "./media/characters/lycoa/head.svg"
  20275. }
  20276. },
  20277. tailmaw: {
  20278. height: math.unit(1.9, "feet"),
  20279. name: "Tailmaw",
  20280. image: {
  20281. source: "./media/characters/lycoa/tailmaw.svg"
  20282. }
  20283. },
  20284. tentacles: {
  20285. height: math.unit(2.1, "feet"),
  20286. name: "Tentacles",
  20287. image: {
  20288. source: "./media/characters/lycoa/tentacles.svg"
  20289. }
  20290. },
  20291. dick: {
  20292. height: math.unit(1.73, "feet"),
  20293. name: "Dick",
  20294. image: {
  20295. source: "./media/characters/lycoa/dick.svg"
  20296. }
  20297. },
  20298. },
  20299. [
  20300. {
  20301. name: "Normal",
  20302. height: math.unit(8, "feet"),
  20303. default: true
  20304. },
  20305. {
  20306. name: "Macro",
  20307. height: math.unit(30, "feet")
  20308. },
  20309. ]
  20310. ))
  20311. characterMakers.push(() => makeCharacter(
  20312. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20313. {
  20314. front: {
  20315. height: math.unit(4 + 2 / 12, "feet"),
  20316. weight: math.unit(70, "lb"),
  20317. name: "Front",
  20318. image: {
  20319. source: "./media/characters/naldara/front.svg",
  20320. extra: 841 / 720,
  20321. bottom: 0.04
  20322. }
  20323. },
  20324. naga: {
  20325. height: math.unit(23, "feet"),
  20326. weight: math.unit(15000, "kg"),
  20327. name: "Naga",
  20328. image: {
  20329. source: "./media/characters/naldara/naga.svg",
  20330. extra: 3290 / 2959,
  20331. bottom: 124 / 3432
  20332. }
  20333. },
  20334. },
  20335. [
  20336. {
  20337. name: "Normal",
  20338. height: math.unit(4 + 2 / 12, "feet"),
  20339. default: true
  20340. },
  20341. ]
  20342. ))
  20343. characterMakers.push(() => makeCharacter(
  20344. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20345. {
  20346. front: {
  20347. height: math.unit(13 + 7 / 12, "feet"),
  20348. weight: math.unit(1500, "lb"),
  20349. name: "Front",
  20350. image: {
  20351. source: "./media/characters/briar/front.svg",
  20352. extra: 626 / 596,
  20353. bottom: 0.08
  20354. }
  20355. },
  20356. },
  20357. [
  20358. {
  20359. name: "Normal",
  20360. height: math.unit(13 + 7 / 12, "feet"),
  20361. default: true
  20362. },
  20363. ]
  20364. ))
  20365. characterMakers.push(() => makeCharacter(
  20366. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20367. {
  20368. side: {
  20369. height: math.unit(10, "feet"),
  20370. weight: math.unit(500, "lb"),
  20371. name: "Side",
  20372. image: {
  20373. source: "./media/characters/vanguard/side.svg",
  20374. extra: 502 / 425,
  20375. bottom: 0.087
  20376. }
  20377. },
  20378. },
  20379. [
  20380. {
  20381. name: "Normal",
  20382. height: math.unit(10, "feet"),
  20383. default: true
  20384. },
  20385. ]
  20386. ))
  20387. characterMakers.push(() => makeCharacter(
  20388. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20389. {
  20390. front: {
  20391. height: math.unit(7.5, "feet"),
  20392. weight: math.unit(2, "lb"),
  20393. name: "Front",
  20394. image: {
  20395. source: "./media/characters/artemis/front.svg",
  20396. extra: 1192 / 1075,
  20397. bottom: 0.07
  20398. }
  20399. },
  20400. frontNsfw: {
  20401. height: math.unit(7.5, "feet"),
  20402. weight: math.unit(2, "lb"),
  20403. name: "Front (NSFW)",
  20404. image: {
  20405. source: "./media/characters/artemis/front-nsfw.svg",
  20406. extra: 1192 / 1075,
  20407. bottom: 0.07
  20408. }
  20409. },
  20410. frontNsfwer: {
  20411. height: math.unit(7.5, "feet"),
  20412. weight: math.unit(2, "lb"),
  20413. name: "Front (NSFW-er)",
  20414. image: {
  20415. source: "./media/characters/artemis/front-nsfwer.svg",
  20416. extra: 1192 / 1075,
  20417. bottom: 0.07
  20418. }
  20419. },
  20420. side: {
  20421. height: math.unit(7.5, "feet"),
  20422. weight: math.unit(2, "lb"),
  20423. name: "Side",
  20424. image: {
  20425. source: "./media/characters/artemis/side.svg",
  20426. extra: 1192 / 1075,
  20427. bottom: 0.07
  20428. }
  20429. },
  20430. sideNsfw: {
  20431. height: math.unit(7.5, "feet"),
  20432. weight: math.unit(2, "lb"),
  20433. name: "Side (NSFW)",
  20434. image: {
  20435. source: "./media/characters/artemis/side-nsfw.svg",
  20436. extra: 1192 / 1075,
  20437. bottom: 0.07
  20438. }
  20439. },
  20440. sideNsfwer: {
  20441. height: math.unit(7.5, "feet"),
  20442. weight: math.unit(2, "lb"),
  20443. name: "Side (NSFW-er)",
  20444. image: {
  20445. source: "./media/characters/artemis/side-nsfwer.svg",
  20446. extra: 1192 / 1075,
  20447. bottom: 0.07
  20448. }
  20449. },
  20450. maw: {
  20451. height: math.unit(1.1, "feet"),
  20452. name: "Maw",
  20453. image: {
  20454. source: "./media/characters/artemis/maw.svg"
  20455. }
  20456. },
  20457. stomach: {
  20458. height: math.unit(0.95, "feet"),
  20459. name: "Stomach",
  20460. image: {
  20461. source: "./media/characters/artemis/stomach.svg"
  20462. }
  20463. },
  20464. dickCanine: {
  20465. height: math.unit(1, "feet"),
  20466. name: "Dick (Canine)",
  20467. image: {
  20468. source: "./media/characters/artemis/dick-canine.svg"
  20469. }
  20470. },
  20471. dickEquine: {
  20472. height: math.unit(0.85, "feet"),
  20473. name: "Dick (Equine)",
  20474. image: {
  20475. source: "./media/characters/artemis/dick-equine.svg"
  20476. }
  20477. },
  20478. dickExotic: {
  20479. height: math.unit(0.85, "feet"),
  20480. name: "Dick (Exotic)",
  20481. image: {
  20482. source: "./media/characters/artemis/dick-exotic.svg"
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(7.5, "feet"),
  20490. default: true
  20491. },
  20492. {
  20493. name: "Enlarged",
  20494. height: math.unit(12, "feet")
  20495. },
  20496. ]
  20497. ))
  20498. characterMakers.push(() => makeCharacter(
  20499. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20500. {
  20501. front: {
  20502. height: math.unit(5 + 3 / 12, "feet"),
  20503. weight: math.unit(160, "lb"),
  20504. name: "Front",
  20505. image: {
  20506. source: "./media/characters/kira/front.svg",
  20507. extra: 906 / 786,
  20508. bottom: 0.01
  20509. }
  20510. },
  20511. back: {
  20512. height: math.unit(5 + 3 / 12, "feet"),
  20513. weight: math.unit(160, "lb"),
  20514. name: "Back",
  20515. image: {
  20516. source: "./media/characters/kira/back.svg",
  20517. extra: 882 / 757,
  20518. bottom: 0.005
  20519. }
  20520. },
  20521. frontDressed: {
  20522. height: math.unit(5 + 3 / 12, "feet"),
  20523. weight: math.unit(160, "lb"),
  20524. name: "Front (Dressed)",
  20525. image: {
  20526. source: "./media/characters/kira/front-dressed.svg",
  20527. extra: 906 / 786,
  20528. bottom: 0.01
  20529. }
  20530. },
  20531. beans: {
  20532. height: math.unit(0.92, "feet"),
  20533. name: "Beans",
  20534. image: {
  20535. source: "./media/characters/kira/beans.svg"
  20536. }
  20537. },
  20538. },
  20539. [
  20540. {
  20541. name: "Normal",
  20542. height: math.unit(5 + 3 / 12, "feet"),
  20543. default: true
  20544. },
  20545. ]
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20549. {
  20550. front: {
  20551. height: math.unit(5 + 4 / 12, "feet"),
  20552. weight: math.unit(145, "lb"),
  20553. name: "Front",
  20554. image: {
  20555. source: "./media/characters/scramble/front.svg",
  20556. extra: 763 / 727,
  20557. bottom: 0.05
  20558. }
  20559. },
  20560. back: {
  20561. height: math.unit(5 + 4 / 12, "feet"),
  20562. weight: math.unit(145, "lb"),
  20563. name: "Back",
  20564. image: {
  20565. source: "./media/characters/scramble/back.svg",
  20566. extra: 826 / 737,
  20567. bottom: 0.002
  20568. }
  20569. },
  20570. },
  20571. [
  20572. {
  20573. name: "Normal",
  20574. height: math.unit(5 + 4 / 12, "feet"),
  20575. default: true
  20576. },
  20577. ]
  20578. ))
  20579. characterMakers.push(() => makeCharacter(
  20580. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20581. {
  20582. side: {
  20583. height: math.unit(6 + 2 / 12, "feet"),
  20584. weight: math.unit(190, "lb"),
  20585. name: "Side",
  20586. image: {
  20587. source: "./media/characters/biscuit/side.svg",
  20588. extra: 858 / 791,
  20589. bottom: 0.044
  20590. }
  20591. },
  20592. },
  20593. [
  20594. {
  20595. name: "Normal",
  20596. height: math.unit(6 + 2 / 12, "feet"),
  20597. default: true
  20598. },
  20599. ]
  20600. ))
  20601. characterMakers.push(() => makeCharacter(
  20602. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20603. {
  20604. front: {
  20605. height: math.unit(5 + 2 / 12, "feet"),
  20606. weight: math.unit(120, "lb"),
  20607. name: "Front",
  20608. image: {
  20609. source: "./media/characters/poffin/front.svg",
  20610. extra: 786 / 680,
  20611. bottom: 0.005
  20612. }
  20613. },
  20614. },
  20615. [
  20616. {
  20617. name: "Normal",
  20618. height: math.unit(5 + 2 / 12, "feet"),
  20619. default: true
  20620. },
  20621. ]
  20622. ))
  20623. characterMakers.push(() => makeCharacter(
  20624. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20625. {
  20626. front: {
  20627. height: math.unit(6 + 3 / 12, "feet"),
  20628. weight: math.unit(519, "lb"),
  20629. name: "Front",
  20630. image: {
  20631. source: "./media/characters/dhari/front.svg",
  20632. extra: 1048 / 946,
  20633. bottom: 0.015
  20634. }
  20635. },
  20636. back: {
  20637. height: math.unit(6 + 3 / 12, "feet"),
  20638. weight: math.unit(519, "lb"),
  20639. name: "Back",
  20640. image: {
  20641. source: "./media/characters/dhari/back.svg",
  20642. extra: 1048 / 931,
  20643. bottom: 0.005
  20644. }
  20645. },
  20646. frontDressed: {
  20647. height: math.unit(6 + 3 / 12, "feet"),
  20648. weight: math.unit(519, "lb"),
  20649. name: "Front (Dressed)",
  20650. image: {
  20651. source: "./media/characters/dhari/front-dressed.svg",
  20652. extra: 1713 / 1546,
  20653. bottom: 0.02
  20654. }
  20655. },
  20656. backDressed: {
  20657. height: math.unit(6 + 3 / 12, "feet"),
  20658. weight: math.unit(519, "lb"),
  20659. name: "Back (Dressed)",
  20660. image: {
  20661. source: "./media/characters/dhari/back-dressed.svg",
  20662. extra: 1699 / 1537,
  20663. bottom: 0.01
  20664. }
  20665. },
  20666. maw: {
  20667. height: math.unit(0.95, "feet"),
  20668. name: "Maw",
  20669. image: {
  20670. source: "./media/characters/dhari/maw.svg"
  20671. }
  20672. },
  20673. wereFront: {
  20674. height: math.unit(12 + 8 / 12, "feet"),
  20675. weight: math.unit(4000, "lb"),
  20676. name: "Front (Were)",
  20677. image: {
  20678. source: "./media/characters/dhari/were-front.svg",
  20679. extra: 1065 / 969,
  20680. bottom: 0.015
  20681. }
  20682. },
  20683. wereBack: {
  20684. height: math.unit(12 + 8 / 12, "feet"),
  20685. weight: math.unit(4000, "lb"),
  20686. name: "Back (Were)",
  20687. image: {
  20688. source: "./media/characters/dhari/were-back.svg",
  20689. extra: 1065 / 969,
  20690. bottom: 0.012
  20691. }
  20692. },
  20693. wereMaw: {
  20694. height: math.unit(0.625, "meters"),
  20695. name: "Maw (Were)",
  20696. image: {
  20697. source: "./media/characters/dhari/were-maw.svg"
  20698. }
  20699. },
  20700. },
  20701. [
  20702. {
  20703. name: "Normal",
  20704. height: math.unit(6 + 3 / 12, "feet"),
  20705. default: true
  20706. },
  20707. ]
  20708. ))
  20709. characterMakers.push(() => makeCharacter(
  20710. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20711. {
  20712. anthro: {
  20713. height: math.unit(5 + 7 / 12, "feet"),
  20714. weight: math.unit(175, "lb"),
  20715. name: "Anthro",
  20716. image: {
  20717. source: "./media/characters/rena-dyne/anthro.svg",
  20718. extra: 1849 / 1785,
  20719. bottom: 0.005
  20720. }
  20721. },
  20722. taur: {
  20723. height: math.unit(15 + 6 / 12, "feet"),
  20724. weight: math.unit(8000, "lb"),
  20725. name: "Taur",
  20726. image: {
  20727. source: "./media/characters/rena-dyne/taur.svg",
  20728. extra: 2315 / 2234,
  20729. bottom: 0.033
  20730. }
  20731. },
  20732. },
  20733. [
  20734. {
  20735. name: "Normal",
  20736. height: math.unit(5 + 7 / 12, "feet"),
  20737. default: true
  20738. },
  20739. ]
  20740. ))
  20741. characterMakers.push(() => makeCharacter(
  20742. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20743. {
  20744. front: {
  20745. height: math.unit(8, "feet"),
  20746. weight: math.unit(600, "lb"),
  20747. name: "Front",
  20748. image: {
  20749. source: "./media/characters/weremeep/front.svg",
  20750. extra: 967 / 862,
  20751. bottom: 0.01
  20752. }
  20753. },
  20754. },
  20755. [
  20756. {
  20757. name: "Normal",
  20758. height: math.unit(8, "feet"),
  20759. default: true
  20760. },
  20761. {
  20762. name: "Lorg",
  20763. height: math.unit(12, "feet")
  20764. },
  20765. {
  20766. name: "Oh Lawd She Comin'",
  20767. height: math.unit(20, "feet")
  20768. },
  20769. ]
  20770. ))
  20771. characterMakers.push(() => makeCharacter(
  20772. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20773. {
  20774. front: {
  20775. height: math.unit(4, "feet"),
  20776. weight: math.unit(90, "lb"),
  20777. name: "Front",
  20778. image: {
  20779. source: "./media/characters/reza/front.svg",
  20780. extra: 1183 / 1111,
  20781. bottom: 0.017
  20782. }
  20783. },
  20784. back: {
  20785. height: math.unit(4, "feet"),
  20786. weight: math.unit(90, "lb"),
  20787. name: "Back",
  20788. image: {
  20789. source: "./media/characters/reza/back.svg",
  20790. extra: 1183 / 1111,
  20791. bottom: 0.01
  20792. }
  20793. },
  20794. drake: {
  20795. height: math.unit(30, "feet"),
  20796. weight: math.unit(246960, "lb"),
  20797. name: "Drake",
  20798. image: {
  20799. source: "./media/characters/reza/drake.svg",
  20800. extra: 2350 / 2024,
  20801. bottom: 60.7 / 2403
  20802. }
  20803. },
  20804. },
  20805. [
  20806. {
  20807. name: "Normal",
  20808. height: math.unit(4, "feet"),
  20809. default: true
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20815. {
  20816. side: {
  20817. height: math.unit(15, "feet"),
  20818. weight: math.unit(14, "tons"),
  20819. name: "Side",
  20820. image: {
  20821. source: "./media/characters/athea/side.svg",
  20822. extra: 960 / 540,
  20823. bottom: 0.003
  20824. }
  20825. },
  20826. sitting: {
  20827. height: math.unit(6 * 2.85, "feet"),
  20828. weight: math.unit(14, "tons"),
  20829. name: "Sitting",
  20830. image: {
  20831. source: "./media/characters/athea/sitting.svg",
  20832. extra: 621 / 581,
  20833. bottom: 0.075
  20834. }
  20835. },
  20836. maw: {
  20837. height: math.unit(7.59498031496063, "feet"),
  20838. name: "Maw",
  20839. image: {
  20840. source: "./media/characters/athea/maw.svg"
  20841. }
  20842. },
  20843. },
  20844. [
  20845. {
  20846. name: "Lap Cat",
  20847. height: math.unit(2.5, "feet")
  20848. },
  20849. {
  20850. name: "Minimacro",
  20851. height: math.unit(15, "feet"),
  20852. default: true
  20853. },
  20854. {
  20855. name: "Macro",
  20856. height: math.unit(120, "feet")
  20857. },
  20858. {
  20859. name: "Macro+",
  20860. height: math.unit(640, "feet")
  20861. },
  20862. {
  20863. name: "Colossus",
  20864. height: math.unit(2.2, "miles")
  20865. },
  20866. ]
  20867. ))
  20868. characterMakers.push(() => makeCharacter(
  20869. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20870. {
  20871. front: {
  20872. height: math.unit(8 + 8 / 12, "feet"),
  20873. weight: math.unit(130, "kg"),
  20874. name: "Front",
  20875. image: {
  20876. source: "./media/characters/seroko/front.svg",
  20877. extra: 1385 / 1280,
  20878. bottom: 0.025
  20879. }
  20880. },
  20881. back: {
  20882. height: math.unit(8 + 8 / 12, "feet"),
  20883. weight: math.unit(130, "kg"),
  20884. name: "Back",
  20885. image: {
  20886. source: "./media/characters/seroko/back.svg",
  20887. extra: 1369 / 1238,
  20888. bottom: 0.018
  20889. }
  20890. },
  20891. frontDressed: {
  20892. height: math.unit(8 + 8 / 12, "feet"),
  20893. weight: math.unit(130, "kg"),
  20894. name: "Front (Dressed)",
  20895. image: {
  20896. source: "./media/characters/seroko/front-dressed.svg",
  20897. extra: 1366 / 1275,
  20898. bottom: 0.03
  20899. }
  20900. },
  20901. },
  20902. [
  20903. {
  20904. name: "Normal",
  20905. height: math.unit(8 + 8 / 12, "feet"),
  20906. default: true
  20907. },
  20908. ]
  20909. ))
  20910. characterMakers.push(() => makeCharacter(
  20911. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20912. {
  20913. front: {
  20914. height: math.unit(5.5, "feet"),
  20915. weight: math.unit(160, "lb"),
  20916. name: "Front",
  20917. image: {
  20918. source: "./media/characters/quatzi/front.svg",
  20919. extra: 2346 / 2242,
  20920. bottom: 0.015
  20921. }
  20922. },
  20923. },
  20924. [
  20925. {
  20926. name: "Normal",
  20927. height: math.unit(5.5, "feet"),
  20928. default: true
  20929. },
  20930. {
  20931. name: "Big",
  20932. height: math.unit(7.7, "feet")
  20933. },
  20934. ]
  20935. ))
  20936. characterMakers.push(() => makeCharacter(
  20937. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20938. {
  20939. front: {
  20940. height: math.unit(5 + 11 / 12, "feet"),
  20941. weight: math.unit(180, "lb"),
  20942. name: "Front",
  20943. image: {
  20944. source: "./media/characters/sen/front.svg",
  20945. extra: 1321 / 1254,
  20946. bottom: 0.015
  20947. }
  20948. },
  20949. side: {
  20950. height: math.unit(5 + 11 / 12, "feet"),
  20951. weight: math.unit(180, "lb"),
  20952. name: "Side",
  20953. image: {
  20954. source: "./media/characters/sen/side.svg",
  20955. extra: 1321 / 1254,
  20956. bottom: 0.007
  20957. }
  20958. },
  20959. back: {
  20960. height: math.unit(5 + 11 / 12, "feet"),
  20961. weight: math.unit(180, "lb"),
  20962. name: "Back",
  20963. image: {
  20964. source: "./media/characters/sen/back.svg",
  20965. extra: 1321 / 1254
  20966. }
  20967. },
  20968. },
  20969. [
  20970. {
  20971. name: "Normal",
  20972. height: math.unit(5 + 11 / 12, "feet"),
  20973. default: true
  20974. },
  20975. ]
  20976. ))
  20977. characterMakers.push(() => makeCharacter(
  20978. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20979. {
  20980. front: {
  20981. height: math.unit(166.6, "cm"),
  20982. weight: math.unit(66.6, "kg"),
  20983. name: "Front",
  20984. image: {
  20985. source: "./media/characters/fruity/front.svg",
  20986. extra: 1510 / 1386,
  20987. bottom: 0.04
  20988. }
  20989. },
  20990. back: {
  20991. height: math.unit(166.6, "cm"),
  20992. weight: math.unit(66.6, "lb"),
  20993. name: "Back",
  20994. image: {
  20995. source: "./media/characters/fruity/back.svg",
  20996. extra: 1563 / 1435,
  20997. bottom: 0.005
  20998. }
  20999. },
  21000. },
  21001. [
  21002. {
  21003. name: "Normal",
  21004. height: math.unit(166.6, "cm"),
  21005. default: true
  21006. },
  21007. {
  21008. name: "Demonic",
  21009. height: math.unit(166.6, "feet")
  21010. },
  21011. ]
  21012. ))
  21013. characterMakers.push(() => makeCharacter(
  21014. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21015. {
  21016. side: {
  21017. height: math.unit(10, "feet"),
  21018. weight: math.unit(500, "lb"),
  21019. name: "Side",
  21020. image: {
  21021. source: "./media/characters/zost/side.svg",
  21022. extra: 966 / 880,
  21023. bottom: 0.075
  21024. }
  21025. },
  21026. mawFront: {
  21027. height: math.unit(1.08, "meters"),
  21028. name: "Maw (Front)",
  21029. image: {
  21030. source: "./media/characters/zost/maw-front.svg"
  21031. }
  21032. },
  21033. mawSide: {
  21034. height: math.unit(2.66, "feet"),
  21035. name: "Maw (Side)",
  21036. image: {
  21037. source: "./media/characters/zost/maw-side.svg"
  21038. }
  21039. },
  21040. },
  21041. [
  21042. {
  21043. name: "Normal",
  21044. height: math.unit(10, "feet"),
  21045. default: true
  21046. },
  21047. ]
  21048. ))
  21049. characterMakers.push(() => makeCharacter(
  21050. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21051. {
  21052. front: {
  21053. height: math.unit(5 + 4 / 12, "feet"),
  21054. weight: math.unit(120, "lb"),
  21055. name: "Front",
  21056. image: {
  21057. source: "./media/characters/luci/front.svg",
  21058. extra: 1985 / 1884,
  21059. bottom: 0.04
  21060. }
  21061. },
  21062. back: {
  21063. height: math.unit(5 + 4 / 12, "feet"),
  21064. weight: math.unit(120, "lb"),
  21065. name: "Back",
  21066. image: {
  21067. source: "./media/characters/luci/back.svg",
  21068. extra: 1892 / 1791,
  21069. bottom: 0.002
  21070. }
  21071. },
  21072. },
  21073. [
  21074. {
  21075. name: "Normal",
  21076. height: math.unit(5 + 4 / 12, "feet"),
  21077. default: true
  21078. },
  21079. ]
  21080. ))
  21081. characterMakers.push(() => makeCharacter(
  21082. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21083. {
  21084. front: {
  21085. height: math.unit(1500, "feet"),
  21086. weight: math.unit(3.8e6, "tons"),
  21087. name: "Front",
  21088. image: {
  21089. source: "./media/characters/2th/front.svg",
  21090. extra: 3489 / 3350,
  21091. bottom: 0.1
  21092. }
  21093. },
  21094. foot: {
  21095. height: math.unit(461, "feet"),
  21096. name: "Foot",
  21097. image: {
  21098. source: "./media/characters/2th/foot.svg"
  21099. }
  21100. },
  21101. },
  21102. [
  21103. {
  21104. name: "\"Micro\"",
  21105. height: math.unit(15 + 7 / 12, "feet")
  21106. },
  21107. {
  21108. name: "Normal",
  21109. height: math.unit(1500, "feet"),
  21110. default: true
  21111. },
  21112. {
  21113. name: "Macro",
  21114. height: math.unit(5000, "feet")
  21115. },
  21116. {
  21117. name: "Megamacro",
  21118. height: math.unit(15, "miles")
  21119. },
  21120. {
  21121. name: "Gigamacro",
  21122. height: math.unit(4000, "miles")
  21123. },
  21124. {
  21125. name: "Galactic",
  21126. height: math.unit(50, "AU")
  21127. },
  21128. ]
  21129. ))
  21130. characterMakers.push(() => makeCharacter(
  21131. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21132. {
  21133. front: {
  21134. height: math.unit(5 + 6 / 12, "feet"),
  21135. weight: math.unit(220, "lb"),
  21136. name: "Front",
  21137. image: {
  21138. source: "./media/characters/amethyst/front.svg",
  21139. extra: 2078 / 2040,
  21140. bottom: 0.045
  21141. }
  21142. },
  21143. back: {
  21144. height: math.unit(5 + 6 / 12, "feet"),
  21145. weight: math.unit(220, "lb"),
  21146. name: "Back",
  21147. image: {
  21148. source: "./media/characters/amethyst/back.svg",
  21149. extra: 2021 / 1989,
  21150. bottom: 0.02
  21151. }
  21152. },
  21153. },
  21154. [
  21155. {
  21156. name: "Normal",
  21157. height: math.unit(5 + 6 / 12, "feet"),
  21158. default: true
  21159. },
  21160. ]
  21161. ))
  21162. characterMakers.push(() => makeCharacter(
  21163. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21164. {
  21165. front: {
  21166. height: math.unit(4 + 11 / 12, "feet"),
  21167. weight: math.unit(120, "lb"),
  21168. name: "Front",
  21169. image: {
  21170. source: "./media/characters/yumi-akiyama/front.svg",
  21171. extra: 1327 / 1235,
  21172. bottom: 0.02
  21173. }
  21174. },
  21175. back: {
  21176. height: math.unit(4 + 11 / 12, "feet"),
  21177. weight: math.unit(120, "lb"),
  21178. name: "Back",
  21179. image: {
  21180. source: "./media/characters/yumi-akiyama/back.svg",
  21181. extra: 1287 / 1245,
  21182. bottom: 0.002
  21183. }
  21184. },
  21185. },
  21186. [
  21187. {
  21188. name: "Galactic",
  21189. height: math.unit(50, "galaxies"),
  21190. default: true
  21191. },
  21192. {
  21193. name: "Universal",
  21194. height: math.unit(100, "universes")
  21195. },
  21196. ]
  21197. ))
  21198. characterMakers.push(() => makeCharacter(
  21199. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21200. {
  21201. front: {
  21202. height: math.unit(8, "feet"),
  21203. weight: math.unit(500, "lb"),
  21204. name: "Front",
  21205. image: {
  21206. source: "./media/characters/rifter-yrmori/front.svg",
  21207. extra: 1180 / 1125,
  21208. bottom: 0.02
  21209. }
  21210. },
  21211. back: {
  21212. height: math.unit(8, "feet"),
  21213. weight: math.unit(500, "lb"),
  21214. name: "Back",
  21215. image: {
  21216. source: "./media/characters/rifter-yrmori/back.svg",
  21217. extra: 1190 / 1145,
  21218. bottom: 0.001
  21219. }
  21220. },
  21221. wings: {
  21222. height: math.unit(7.75, "feet"),
  21223. weight: math.unit(500, "lb"),
  21224. name: "Wings",
  21225. image: {
  21226. source: "./media/characters/rifter-yrmori/wings.svg",
  21227. extra: 1357 / 1285
  21228. }
  21229. },
  21230. maw: {
  21231. height: math.unit(0.8, "feet"),
  21232. name: "Maw",
  21233. image: {
  21234. source: "./media/characters/rifter-yrmori/maw.svg"
  21235. }
  21236. },
  21237. mawfront: {
  21238. height: math.unit(1.45, "feet"),
  21239. name: "Maw (Front)",
  21240. image: {
  21241. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21242. }
  21243. },
  21244. },
  21245. [
  21246. {
  21247. name: "Normal",
  21248. height: math.unit(8, "feet"),
  21249. default: true
  21250. },
  21251. {
  21252. name: "Macro",
  21253. height: math.unit(42, "meters")
  21254. },
  21255. ]
  21256. ))
  21257. characterMakers.push(() => makeCharacter(
  21258. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21259. {
  21260. were: {
  21261. height: math.unit(25 + 6 / 12, "feet"),
  21262. weight: math.unit(10000, "lb"),
  21263. name: "Were",
  21264. image: {
  21265. source: "./media/characters/tahajin/were.svg",
  21266. extra: 801 / 770,
  21267. bottom: 0.042
  21268. }
  21269. },
  21270. aquatic: {
  21271. height: math.unit(6 + 4 / 12, "feet"),
  21272. weight: math.unit(160, "lb"),
  21273. name: "Aquatic",
  21274. image: {
  21275. source: "./media/characters/tahajin/aquatic.svg",
  21276. extra: 572 / 542,
  21277. bottom: 0.04
  21278. }
  21279. },
  21280. chow: {
  21281. height: math.unit(8 + 11 / 12, "feet"),
  21282. weight: math.unit(450, "lb"),
  21283. name: "Chow",
  21284. image: {
  21285. source: "./media/characters/tahajin/chow.svg",
  21286. extra: 660 / 640,
  21287. bottom: 0.015
  21288. }
  21289. },
  21290. demiNaga: {
  21291. height: math.unit(6 + 8 / 12, "feet"),
  21292. weight: math.unit(300, "lb"),
  21293. name: "Demi Naga",
  21294. image: {
  21295. source: "./media/characters/tahajin/demi-naga.svg",
  21296. extra: 643 / 615,
  21297. bottom: 0.1
  21298. }
  21299. },
  21300. data: {
  21301. height: math.unit(5, "inches"),
  21302. weight: math.unit(0.1, "lb"),
  21303. name: "Data",
  21304. image: {
  21305. source: "./media/characters/tahajin/data.svg"
  21306. }
  21307. },
  21308. fluu: {
  21309. height: math.unit(5 + 7 / 12, "feet"),
  21310. weight: math.unit(140, "lb"),
  21311. name: "Fluu",
  21312. image: {
  21313. source: "./media/characters/tahajin/fluu.svg",
  21314. extra: 628 / 592,
  21315. bottom: 0.02
  21316. }
  21317. },
  21318. starWarrior: {
  21319. height: math.unit(4 + 5 / 12, "feet"),
  21320. weight: math.unit(50, "lb"),
  21321. name: "Star Warrior",
  21322. image: {
  21323. source: "./media/characters/tahajin/star-warrior.svg"
  21324. }
  21325. },
  21326. },
  21327. [
  21328. {
  21329. name: "Normal",
  21330. height: math.unit(25 + 6 / 12, "feet"),
  21331. default: true
  21332. },
  21333. ]
  21334. ))
  21335. characterMakers.push(() => makeCharacter(
  21336. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21337. {
  21338. front: {
  21339. height: math.unit(8, "feet"),
  21340. weight: math.unit(350, "lb"),
  21341. name: "Front",
  21342. image: {
  21343. source: "./media/characters/gabira/front.svg",
  21344. extra: 608 / 580,
  21345. bottom: 0.03
  21346. }
  21347. },
  21348. back: {
  21349. height: math.unit(8, "feet"),
  21350. weight: math.unit(350, "lb"),
  21351. name: "Back",
  21352. image: {
  21353. source: "./media/characters/gabira/back.svg",
  21354. extra: 608 / 580,
  21355. bottom: 0.03
  21356. }
  21357. },
  21358. },
  21359. [
  21360. {
  21361. name: "Normal",
  21362. height: math.unit(8, "feet"),
  21363. default: true
  21364. },
  21365. ]
  21366. ))
  21367. characterMakers.push(() => makeCharacter(
  21368. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21369. {
  21370. front: {
  21371. height: math.unit(5 + 3 / 12, "feet"),
  21372. weight: math.unit(137, "lb"),
  21373. name: "Front",
  21374. image: {
  21375. source: "./media/characters/sasha-katraine/front.svg",
  21376. bottom: 0.045
  21377. }
  21378. },
  21379. },
  21380. [
  21381. {
  21382. name: "Micro",
  21383. height: math.unit(5, "inches")
  21384. },
  21385. {
  21386. name: "Normal",
  21387. height: math.unit(5 + 3 / 12, "feet"),
  21388. default: true
  21389. },
  21390. ]
  21391. ))
  21392. characterMakers.push(() => makeCharacter(
  21393. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21394. {
  21395. side: {
  21396. height: math.unit(4, "inches"),
  21397. weight: math.unit(200, "grams"),
  21398. name: "Side",
  21399. image: {
  21400. source: "./media/characters/der/side.svg",
  21401. extra: 719 / 400,
  21402. bottom: 30.6 / 749.9187
  21403. }
  21404. },
  21405. },
  21406. [
  21407. {
  21408. name: "Micro",
  21409. height: math.unit(4, "inches"),
  21410. default: true
  21411. },
  21412. ]
  21413. ))
  21414. characterMakers.push(() => makeCharacter(
  21415. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21416. {
  21417. side: {
  21418. height: math.unit(30, "meters"),
  21419. weight: math.unit(700, "tonnes"),
  21420. name: "Side",
  21421. image: {
  21422. source: "./media/characters/fixerdragon/side.svg",
  21423. extra: (1293.0514 - 116.03) / 1106.86,
  21424. bottom: 116.03 / 1293.0514
  21425. }
  21426. },
  21427. },
  21428. [
  21429. {
  21430. name: "Planck",
  21431. height: math.unit(1.6e-35, "meters")
  21432. },
  21433. {
  21434. name: "Micro",
  21435. height: math.unit(0.4, "meters")
  21436. },
  21437. {
  21438. name: "Normal",
  21439. height: math.unit(30, "meters"),
  21440. default: true
  21441. },
  21442. {
  21443. name: "Megamacro",
  21444. height: math.unit(1.2, "megameters")
  21445. },
  21446. {
  21447. name: "Teramacro",
  21448. height: math.unit(130, "terameters")
  21449. },
  21450. {
  21451. name: "Yottamacro",
  21452. height: math.unit(6200, "yottameters")
  21453. },
  21454. ]
  21455. ));
  21456. characterMakers.push(() => makeCharacter(
  21457. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21458. {
  21459. front: {
  21460. height: math.unit(8, "feet"),
  21461. weight: math.unit(250, "lb"),
  21462. name: "Front",
  21463. image: {
  21464. source: "./media/characters/kite/front.svg",
  21465. extra: 2796 / 2659,
  21466. bottom: 0.002
  21467. }
  21468. },
  21469. },
  21470. [
  21471. {
  21472. name: "Normal",
  21473. height: math.unit(8, "feet"),
  21474. default: true
  21475. },
  21476. {
  21477. name: "Macro",
  21478. height: math.unit(360, "feet")
  21479. },
  21480. {
  21481. name: "Megamacro",
  21482. height: math.unit(1500, "feet")
  21483. },
  21484. ]
  21485. ))
  21486. characterMakers.push(() => makeCharacter(
  21487. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21488. {
  21489. front: {
  21490. height: math.unit(5 + 10 / 12, "feet"),
  21491. weight: math.unit(150, "lb"),
  21492. name: "Front",
  21493. image: {
  21494. source: "./media/characters/poojawa-vynar/front.svg",
  21495. extra: (1506.1547 - 55) / 1356.6,
  21496. bottom: 55 / 1506.1547
  21497. }
  21498. },
  21499. frontTailless: {
  21500. height: math.unit(5 + 10 / 12, "feet"),
  21501. weight: math.unit(150, "lb"),
  21502. name: "Front (Tailless)",
  21503. image: {
  21504. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21505. extra: (1506.1547 - 55) / 1356.6,
  21506. bottom: 55 / 1506.1547
  21507. }
  21508. },
  21509. },
  21510. [
  21511. {
  21512. name: "Normal",
  21513. height: math.unit(5 + 10 / 12, "feet"),
  21514. default: true
  21515. },
  21516. ]
  21517. ))
  21518. characterMakers.push(() => makeCharacter(
  21519. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21520. {
  21521. front: {
  21522. height: math.unit(293, "meters"),
  21523. weight: math.unit(70400, "tons"),
  21524. name: "Front",
  21525. image: {
  21526. source: "./media/characters/violette/front.svg",
  21527. extra: 1227 / 1180,
  21528. bottom: 0.005
  21529. }
  21530. },
  21531. back: {
  21532. height: math.unit(293, "meters"),
  21533. weight: math.unit(70400, "tons"),
  21534. name: "Back",
  21535. image: {
  21536. source: "./media/characters/violette/back.svg",
  21537. extra: 1227 / 1180,
  21538. bottom: 0.005
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Macro",
  21545. height: math.unit(293, "meters"),
  21546. default: true
  21547. },
  21548. ]
  21549. ))
  21550. characterMakers.push(() => makeCharacter(
  21551. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21552. {
  21553. front: {
  21554. height: math.unit(1050, "feet"),
  21555. weight: math.unit(200000, "tons"),
  21556. name: "Front",
  21557. image: {
  21558. source: "./media/characters/alessandra/front.svg",
  21559. extra: 960 / 912,
  21560. bottom: 0.06
  21561. }
  21562. },
  21563. },
  21564. [
  21565. {
  21566. name: "Macro",
  21567. height: math.unit(1050, "feet")
  21568. },
  21569. {
  21570. name: "Macro+",
  21571. height: math.unit(900, "meters"),
  21572. default: true
  21573. },
  21574. ]
  21575. ))
  21576. characterMakers.push(() => makeCharacter(
  21577. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21578. {
  21579. front: {
  21580. height: math.unit(5, "feet"),
  21581. weight: math.unit(187, "lb"),
  21582. name: "Front",
  21583. image: {
  21584. source: "./media/characters/person/front.svg",
  21585. extra: 3087 / 2945,
  21586. bottom: 91 / 3181
  21587. }
  21588. },
  21589. },
  21590. [
  21591. {
  21592. name: "Micro",
  21593. height: math.unit(3, "inches")
  21594. },
  21595. {
  21596. name: "Normal",
  21597. height: math.unit(5, "feet"),
  21598. default: true
  21599. },
  21600. {
  21601. name: "Macro",
  21602. height: math.unit(90, "feet")
  21603. },
  21604. {
  21605. name: "Max Size",
  21606. height: math.unit(280, "feet")
  21607. },
  21608. ]
  21609. ))
  21610. characterMakers.push(() => makeCharacter(
  21611. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21612. {
  21613. front: {
  21614. height: math.unit(4.5, "meters"),
  21615. weight: math.unit(3200, "lb"),
  21616. name: "Front",
  21617. image: {
  21618. source: "./media/characters/ty/front.svg",
  21619. extra: 1038 / 960,
  21620. bottom: 31.156 / 1068
  21621. }
  21622. },
  21623. back: {
  21624. height: math.unit(4.5, "meters"),
  21625. weight: math.unit(3200, "lb"),
  21626. name: "Back",
  21627. image: {
  21628. source: "./media/characters/ty/back.svg",
  21629. extra: 1044 / 966,
  21630. bottom: 7.48 / 1049
  21631. }
  21632. },
  21633. },
  21634. [
  21635. {
  21636. name: "Normal",
  21637. height: math.unit(4.5, "meters"),
  21638. default: true
  21639. },
  21640. ]
  21641. ))
  21642. characterMakers.push(() => makeCharacter(
  21643. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21644. {
  21645. front: {
  21646. height: math.unit(5 + 4 / 12, "feet"),
  21647. weight: math.unit(115, "lb"),
  21648. name: "Front",
  21649. image: {
  21650. source: "./media/characters/rocky/front.svg",
  21651. extra: 1012 / 975,
  21652. bottom: 54 / 1066
  21653. }
  21654. },
  21655. },
  21656. [
  21657. {
  21658. name: "Normal",
  21659. height: math.unit(5 + 4 / 12, "feet"),
  21660. default: true
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21666. {
  21667. upright: {
  21668. height: math.unit(6, "meters"),
  21669. weight: math.unit(4000, "kg"),
  21670. name: "Upright",
  21671. image: {
  21672. source: "./media/characters/ruin/upright.svg",
  21673. extra: 668 / 661,
  21674. bottom: 42 / 799.8396
  21675. }
  21676. },
  21677. },
  21678. [
  21679. {
  21680. name: "Normal",
  21681. height: math.unit(6, "meters"),
  21682. default: true
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21688. {
  21689. front: {
  21690. height: math.unit(5, "feet"),
  21691. weight: math.unit(106, "lb"),
  21692. name: "Front",
  21693. image: {
  21694. source: "./media/characters/robin/front.svg",
  21695. extra: 862 / 799,
  21696. bottom: 42.4 / 914.8856
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Normal",
  21703. height: math.unit(5, "feet"),
  21704. default: true
  21705. },
  21706. ]
  21707. ))
  21708. characterMakers.push(() => makeCharacter(
  21709. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21710. {
  21711. side: {
  21712. height: math.unit(3, "feet"),
  21713. weight: math.unit(225, "lb"),
  21714. name: "Side",
  21715. image: {
  21716. source: "./media/characters/saian/side.svg",
  21717. extra: 566 / 356,
  21718. bottom: 79.7 / 643
  21719. }
  21720. },
  21721. maw: {
  21722. height: math.unit(2.85, "feet"),
  21723. name: "Maw",
  21724. image: {
  21725. source: "./media/characters/saian/maw.svg"
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Normal",
  21732. height: math.unit(3, "feet"),
  21733. default: true
  21734. },
  21735. ]
  21736. ))
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21739. {
  21740. side: {
  21741. height: math.unit(8, "feet"),
  21742. weight: math.unit(300, "lb"),
  21743. name: "Side",
  21744. image: {
  21745. source: "./media/characters/equus-silvermane/side.svg",
  21746. extra: 2176 / 2050,
  21747. bottom: 65.7 / 2245
  21748. }
  21749. },
  21750. front: {
  21751. height: math.unit(8, "feet"),
  21752. weight: math.unit(300, "lb"),
  21753. name: "Front",
  21754. image: {
  21755. source: "./media/characters/equus-silvermane/front.svg",
  21756. extra: 4633 / 4400,
  21757. bottom: 71.3 / 4706.915
  21758. }
  21759. },
  21760. sideStepping: {
  21761. height: math.unit(8, "feet"),
  21762. weight: math.unit(300, "lb"),
  21763. name: "Side (Stepping)",
  21764. image: {
  21765. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21766. extra: 1968 / 1860,
  21767. bottom: 16.4 / 1989
  21768. }
  21769. },
  21770. },
  21771. [
  21772. {
  21773. name: "Normal",
  21774. height: math.unit(8, "feet")
  21775. },
  21776. {
  21777. name: "Minimacro",
  21778. height: math.unit(75, "feet"),
  21779. default: true
  21780. },
  21781. {
  21782. name: "Macro",
  21783. height: math.unit(150, "feet")
  21784. },
  21785. {
  21786. name: "Macro+",
  21787. height: math.unit(1000, "feet")
  21788. },
  21789. {
  21790. name: "Megamacro",
  21791. height: math.unit(1, "mile")
  21792. },
  21793. ]
  21794. ))
  21795. characterMakers.push(() => makeCharacter(
  21796. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21797. {
  21798. side: {
  21799. height: math.unit(20, "feet"),
  21800. weight: math.unit(30000, "kg"),
  21801. name: "Side",
  21802. image: {
  21803. source: "./media/characters/windar/side.svg",
  21804. extra: 1491 / 1248,
  21805. bottom: 82.56 / 1568
  21806. }
  21807. },
  21808. },
  21809. [
  21810. {
  21811. name: "Normal",
  21812. height: math.unit(20, "feet"),
  21813. default: true
  21814. },
  21815. ]
  21816. ))
  21817. characterMakers.push(() => makeCharacter(
  21818. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21819. {
  21820. side: {
  21821. height: math.unit(15.66, "feet"),
  21822. weight: math.unit(150, "lb"),
  21823. name: "Side",
  21824. image: {
  21825. source: "./media/characters/melody/side.svg",
  21826. extra: 1097 / 944,
  21827. bottom: 11.8 / 1109
  21828. }
  21829. },
  21830. sideOutfit: {
  21831. height: math.unit(15.66, "feet"),
  21832. weight: math.unit(150, "lb"),
  21833. name: "Side (Outfit)",
  21834. image: {
  21835. source: "./media/characters/melody/side-outfit.svg",
  21836. extra: 1097 / 944,
  21837. bottom: 11.8 / 1109
  21838. }
  21839. },
  21840. },
  21841. [
  21842. {
  21843. name: "Normal",
  21844. height: math.unit(15.66, "feet"),
  21845. default: true
  21846. },
  21847. ]
  21848. ))
  21849. characterMakers.push(() => makeCharacter(
  21850. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21851. {
  21852. front: {
  21853. height: math.unit(8, "feet"),
  21854. weight: math.unit(325, "lb"),
  21855. name: "Front",
  21856. image: {
  21857. source: "./media/characters/windera/front.svg",
  21858. extra: 3180 / 2845,
  21859. bottom: 178 / 3365
  21860. }
  21861. },
  21862. },
  21863. [
  21864. {
  21865. name: "Normal",
  21866. height: math.unit(8, "feet"),
  21867. default: true
  21868. },
  21869. ]
  21870. ))
  21871. characterMakers.push(() => makeCharacter(
  21872. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21873. {
  21874. front: {
  21875. height: math.unit(28.75, "feet"),
  21876. weight: math.unit(2000, "kg"),
  21877. name: "Front",
  21878. image: {
  21879. source: "./media/characters/sonear/front.svg",
  21880. extra: 1041.1 / 964.9,
  21881. bottom: 53.7 / 1096.6
  21882. }
  21883. },
  21884. },
  21885. [
  21886. {
  21887. name: "Normal",
  21888. height: math.unit(28.75, "feet"),
  21889. default: true
  21890. },
  21891. ]
  21892. ))
  21893. characterMakers.push(() => makeCharacter(
  21894. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21895. {
  21896. side: {
  21897. height: math.unit(25.5, "feet"),
  21898. weight: math.unit(23000, "kg"),
  21899. name: "Side",
  21900. image: {
  21901. source: "./media/characters/kanara/side.svg"
  21902. }
  21903. },
  21904. },
  21905. [
  21906. {
  21907. name: "Normal",
  21908. height: math.unit(25.5, "feet"),
  21909. default: true
  21910. },
  21911. ]
  21912. ))
  21913. characterMakers.push(() => makeCharacter(
  21914. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21915. {
  21916. side: {
  21917. height: math.unit(10, "feet"),
  21918. weight: math.unit(1000, "kg"),
  21919. name: "Side",
  21920. image: {
  21921. source: "./media/characters/ereus/side.svg",
  21922. extra: 1157 / 959,
  21923. bottom: 153 / 1312.5
  21924. }
  21925. },
  21926. },
  21927. [
  21928. {
  21929. name: "Normal",
  21930. height: math.unit(10, "feet"),
  21931. default: true
  21932. },
  21933. ]
  21934. ))
  21935. characterMakers.push(() => makeCharacter(
  21936. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21937. {
  21938. side: {
  21939. height: math.unit(4.5, "feet"),
  21940. weight: math.unit(500, "lb"),
  21941. name: "Side",
  21942. image: {
  21943. source: "./media/characters/e-ter/side.svg",
  21944. extra: 1550 / 1248,
  21945. bottom: 146 / 1694
  21946. }
  21947. },
  21948. },
  21949. [
  21950. {
  21951. name: "Normal",
  21952. height: math.unit(4.5, "feet"),
  21953. default: true
  21954. },
  21955. ]
  21956. ))
  21957. characterMakers.push(() => makeCharacter(
  21958. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21959. {
  21960. side: {
  21961. height: math.unit(9.7, "feet"),
  21962. weight: math.unit(4000, "kg"),
  21963. name: "Side",
  21964. image: {
  21965. source: "./media/characters/yamie/side.svg"
  21966. }
  21967. },
  21968. },
  21969. [
  21970. {
  21971. name: "Normal",
  21972. height: math.unit(9.7, "feet"),
  21973. default: true
  21974. },
  21975. ]
  21976. ))
  21977. characterMakers.push(() => makeCharacter(
  21978. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21979. {
  21980. front: {
  21981. height: math.unit(50, "feet"),
  21982. weight: math.unit(50000, "kg"),
  21983. name: "Front",
  21984. image: {
  21985. source: "./media/characters/anders/front.svg",
  21986. extra: 570 / 539,
  21987. bottom: 14.7 / 586.7
  21988. }
  21989. },
  21990. },
  21991. [
  21992. {
  21993. name: "Large",
  21994. height: math.unit(50, "feet")
  21995. },
  21996. {
  21997. name: "Macro",
  21998. height: math.unit(2000, "feet"),
  21999. default: true
  22000. },
  22001. {
  22002. name: "Megamacro",
  22003. height: math.unit(12, "miles")
  22004. },
  22005. ]
  22006. ))
  22007. characterMakers.push(() => makeCharacter(
  22008. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22009. {
  22010. front: {
  22011. height: math.unit(7 + 2 / 12, "feet"),
  22012. weight: math.unit(300, "lb"),
  22013. name: "Front",
  22014. image: {
  22015. source: "./media/characters/reban/front.svg",
  22016. extra: 516 / 487,
  22017. bottom: 42.82 / 558.356
  22018. }
  22019. },
  22020. dick: {
  22021. height: math.unit(7 / 5, "feet"),
  22022. name: "Dick",
  22023. image: {
  22024. source: "./media/characters/reban/dick.svg"
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Natural Height",
  22031. height: math.unit(7 + 2 / 12, "feet")
  22032. },
  22033. {
  22034. name: "Macro",
  22035. height: math.unit(500, "feet"),
  22036. default: true
  22037. },
  22038. {
  22039. name: "Canon Height",
  22040. height: math.unit(50, "AU")
  22041. },
  22042. ]
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22046. {
  22047. front: {
  22048. height: math.unit(6, "feet"),
  22049. weight: math.unit(150, "lb"),
  22050. name: "Front",
  22051. image: {
  22052. source: "./media/characters/terrance-keayes/front.svg",
  22053. extra: 1.005,
  22054. bottom: 151 / 1615
  22055. }
  22056. },
  22057. side: {
  22058. height: math.unit(6, "feet"),
  22059. weight: math.unit(150, "lb"),
  22060. name: "Side",
  22061. image: {
  22062. source: "./media/characters/terrance-keayes/side.svg",
  22063. extra: 1.005,
  22064. bottom: 129.4 / 1544
  22065. }
  22066. },
  22067. back: {
  22068. height: math.unit(6, "feet"),
  22069. weight: math.unit(150, "lb"),
  22070. name: "Back",
  22071. image: {
  22072. source: "./media/characters/terrance-keayes/back.svg",
  22073. extra: 1.005,
  22074. bottom: 58.4 / 1557.3
  22075. }
  22076. },
  22077. dick: {
  22078. height: math.unit(6 * 0.208, "feet"),
  22079. name: "Dick",
  22080. image: {
  22081. source: "./media/characters/terrance-keayes/dick.svg"
  22082. }
  22083. },
  22084. },
  22085. [
  22086. {
  22087. name: "Canon Height",
  22088. height: math.unit(35, "miles"),
  22089. default: true
  22090. },
  22091. ]
  22092. ))
  22093. characterMakers.push(() => makeCharacter(
  22094. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22095. {
  22096. front: {
  22097. height: math.unit(6, "feet"),
  22098. weight: math.unit(150, "lb"),
  22099. name: "Front",
  22100. image: {
  22101. source: "./media/characters/ofelia/front.svg",
  22102. extra: 546 / 541,
  22103. bottom: 39 / 583
  22104. }
  22105. },
  22106. back: {
  22107. height: math.unit(6, "feet"),
  22108. weight: math.unit(150, "lb"),
  22109. name: "Back",
  22110. image: {
  22111. source: "./media/characters/ofelia/back.svg",
  22112. extra: 564 / 559.5,
  22113. bottom: 8.69 / 573.02
  22114. }
  22115. },
  22116. maw: {
  22117. height: math.unit(1, "feet"),
  22118. name: "Maw",
  22119. image: {
  22120. source: "./media/characters/ofelia/maw.svg"
  22121. }
  22122. },
  22123. foot: {
  22124. height: math.unit(1.949, "feet"),
  22125. name: "Foot",
  22126. image: {
  22127. source: "./media/characters/ofelia/foot.svg"
  22128. }
  22129. },
  22130. },
  22131. [
  22132. {
  22133. name: "Canon Height",
  22134. height: math.unit(2000, "miles"),
  22135. default: true
  22136. },
  22137. ]
  22138. ))
  22139. characterMakers.push(() => makeCharacter(
  22140. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22141. {
  22142. front: {
  22143. height: math.unit(6, "feet"),
  22144. weight: math.unit(150, "lb"),
  22145. name: "Front",
  22146. image: {
  22147. source: "./media/characters/samuel/front.svg",
  22148. extra: 265 / 258,
  22149. bottom: 2 / 266.1566
  22150. }
  22151. },
  22152. },
  22153. [
  22154. {
  22155. name: "Macro",
  22156. height: math.unit(100, "feet"),
  22157. default: true
  22158. },
  22159. {
  22160. name: "Full Size",
  22161. height: math.unit(1000, "miles")
  22162. },
  22163. ]
  22164. ))
  22165. characterMakers.push(() => makeCharacter(
  22166. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22167. {
  22168. front: {
  22169. height: math.unit(6, "feet"),
  22170. weight: math.unit(300, "lb"),
  22171. name: "Front",
  22172. image: {
  22173. source: "./media/characters/beishir-kiel/front.svg",
  22174. extra: 569 / 547,
  22175. bottom: 41.9 / 609
  22176. }
  22177. },
  22178. maw: {
  22179. height: math.unit(6 * 0.202, "feet"),
  22180. name: "Maw",
  22181. image: {
  22182. source: "./media/characters/beishir-kiel/maw.svg"
  22183. }
  22184. },
  22185. },
  22186. [
  22187. {
  22188. name: "Macro",
  22189. height: math.unit(300, "feet"),
  22190. default: true
  22191. },
  22192. ]
  22193. ))
  22194. characterMakers.push(() => makeCharacter(
  22195. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22196. {
  22197. front: {
  22198. height: math.unit(5 + 7/12, "feet"),
  22199. weight: math.unit(120, "lb"),
  22200. name: "Front",
  22201. image: {
  22202. source: "./media/characters/logan-grey/front.svg",
  22203. extra: 1836/1738,
  22204. bottom: 108/1944
  22205. }
  22206. },
  22207. back: {
  22208. height: math.unit(5 + 7/12, "feet"),
  22209. weight: math.unit(120, "lb"),
  22210. name: "Back",
  22211. image: {
  22212. source: "./media/characters/logan-grey/back.svg",
  22213. extra: 1880/1794,
  22214. bottom: 24/1904
  22215. }
  22216. },
  22217. frontSfw: {
  22218. height: math.unit(5 + 7/12, "feet"),
  22219. weight: math.unit(120, "lb"),
  22220. name: "Front (SFW)",
  22221. image: {
  22222. source: "./media/characters/logan-grey/front-sfw.svg",
  22223. extra: 1836/1738,
  22224. bottom: 108/1944
  22225. }
  22226. },
  22227. backSfw: {
  22228. height: math.unit(5 + 7/12, "feet"),
  22229. weight: math.unit(120, "lb"),
  22230. name: "Back (SFW)",
  22231. image: {
  22232. source: "./media/characters/logan-grey/back-sfw.svg",
  22233. extra: 1880/1794,
  22234. bottom: 24/1904
  22235. }
  22236. },
  22237. hands: {
  22238. height: math.unit(0.84, "feet"),
  22239. name: "Hands",
  22240. image: {
  22241. source: "./media/characters/logan-grey/hands.svg"
  22242. }
  22243. },
  22244. paws: {
  22245. height: math.unit(0.72, "feet"),
  22246. name: "Paws",
  22247. image: {
  22248. source: "./media/characters/logan-grey/paws.svg"
  22249. }
  22250. },
  22251. cock: {
  22252. height: math.unit(1.45, "feet"),
  22253. name: "Cock",
  22254. image: {
  22255. source: "./media/characters/logan-grey/cock.svg"
  22256. }
  22257. },
  22258. cockAlt: {
  22259. height: math.unit(1.437, "feet"),
  22260. name: "Cock (alt)",
  22261. image: {
  22262. source: "./media/characters/logan-grey/cock-alt.svg"
  22263. }
  22264. },
  22265. },
  22266. [
  22267. {
  22268. name: "Normal",
  22269. height: math.unit(5 + 8 / 12, "feet")
  22270. },
  22271. {
  22272. name: "The 500 Foot Femboy",
  22273. height: math.unit(500, "feet"),
  22274. default: true
  22275. },
  22276. {
  22277. name: "Megmacro",
  22278. height: math.unit(20, "miles")
  22279. },
  22280. ]
  22281. ))
  22282. characterMakers.push(() => makeCharacter(
  22283. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22284. {
  22285. front: {
  22286. height: math.unit(8 + 2 / 12, "feet"),
  22287. weight: math.unit(275, "lb"),
  22288. name: "Front",
  22289. image: {
  22290. source: "./media/characters/draganta/front.svg",
  22291. extra: 1177 / 1135,
  22292. bottom: 33.46 / 1212.1
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Normal",
  22299. height: math.unit(8 + 6 / 12, "feet"),
  22300. default: true
  22301. },
  22302. {
  22303. name: "Macro",
  22304. height: math.unit(150, "feet")
  22305. },
  22306. {
  22307. name: "Megamacro",
  22308. height: math.unit(1000, "miles")
  22309. },
  22310. ]
  22311. ))
  22312. characterMakers.push(() => makeCharacter(
  22313. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22314. {
  22315. front: {
  22316. height: math.unit(1.72, "m"),
  22317. weight: math.unit(80, "lb"),
  22318. name: "Front",
  22319. image: {
  22320. source: "./media/characters/voski/front.svg",
  22321. extra: 2076.22 / 2022.4,
  22322. bottom: 102.7 / 2177.3866
  22323. }
  22324. },
  22325. frontNsfw: {
  22326. height: math.unit(1.72, "m"),
  22327. weight: math.unit(80, "lb"),
  22328. name: "Front (NSFW)",
  22329. image: {
  22330. source: "./media/characters/voski/front-nsfw.svg",
  22331. extra: 2076.22 / 2022.4,
  22332. bottom: 102.7 / 2177.3866
  22333. }
  22334. },
  22335. back: {
  22336. height: math.unit(1.72, "m"),
  22337. weight: math.unit(80, "lb"),
  22338. name: "Back",
  22339. image: {
  22340. source: "./media/characters/voski/back.svg",
  22341. extra: 2104 / 2051,
  22342. bottom: 10.45 / 2113.63
  22343. }
  22344. },
  22345. },
  22346. [
  22347. {
  22348. name: "Normal",
  22349. height: math.unit(1.72, "m")
  22350. },
  22351. {
  22352. name: "Macro",
  22353. height: math.unit(55, "m"),
  22354. default: true
  22355. },
  22356. {
  22357. name: "Macro+",
  22358. height: math.unit(300, "m")
  22359. },
  22360. {
  22361. name: "Macro++",
  22362. height: math.unit(700, "m")
  22363. },
  22364. {
  22365. name: "Macro+++",
  22366. height: math.unit(4500, "m")
  22367. },
  22368. {
  22369. name: "Macro++++",
  22370. height: math.unit(45, "km")
  22371. },
  22372. {
  22373. name: "Macro+++++",
  22374. height: math.unit(1220, "km")
  22375. },
  22376. ]
  22377. ))
  22378. characterMakers.push(() => makeCharacter(
  22379. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22380. {
  22381. front: {
  22382. height: math.unit(2.3, "m"),
  22383. weight: math.unit(304, "kg"),
  22384. name: "Front",
  22385. image: {
  22386. source: "./media/characters/icowom-lee/front.svg",
  22387. extra: 985 / 955,
  22388. bottom: 25.4 / 1012
  22389. }
  22390. },
  22391. fronttentacles: {
  22392. height: math.unit(2.3, "m"),
  22393. weight: math.unit(304, "kg"),
  22394. name: "Front-tentacles",
  22395. image: {
  22396. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22397. extra: 985 / 955,
  22398. bottom: 25.4 / 1012
  22399. }
  22400. },
  22401. back: {
  22402. height: math.unit(2.3, "m"),
  22403. weight: math.unit(304, "kg"),
  22404. name: "Back",
  22405. image: {
  22406. source: "./media/characters/icowom-lee/back.svg",
  22407. extra: 975 / 954,
  22408. bottom: 9.5 / 985
  22409. }
  22410. },
  22411. backtentacles: {
  22412. height: math.unit(2.3, "m"),
  22413. weight: math.unit(304, "kg"),
  22414. name: "Back-tentacles",
  22415. image: {
  22416. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22417. extra: 975 / 954,
  22418. bottom: 9.5 / 985
  22419. }
  22420. },
  22421. frontDressed: {
  22422. height: math.unit(2.3, "m"),
  22423. weight: math.unit(304, "kg"),
  22424. name: "Front (Dressed)",
  22425. image: {
  22426. source: "./media/characters/icowom-lee/front-dressed.svg",
  22427. extra: 3076 / 2933,
  22428. bottom: 51.4 / 3125.1889
  22429. }
  22430. },
  22431. rump: {
  22432. height: math.unit(0.776, "meters"),
  22433. name: "Rump",
  22434. image: {
  22435. source: "./media/characters/icowom-lee/rump.svg"
  22436. }
  22437. },
  22438. genitals: {
  22439. height: math.unit(0.78, "meters"),
  22440. name: "Genitals",
  22441. image: {
  22442. source: "./media/characters/icowom-lee/genitals.svg"
  22443. }
  22444. },
  22445. },
  22446. [
  22447. {
  22448. name: "Normal",
  22449. height: math.unit(2.3, "meters"),
  22450. default: true
  22451. },
  22452. {
  22453. name: "Macro",
  22454. height: math.unit(94, "meters"),
  22455. default: true
  22456. },
  22457. ]
  22458. ))
  22459. characterMakers.push(() => makeCharacter(
  22460. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22461. {
  22462. front: {
  22463. height: math.unit(22, "meters"),
  22464. weight: math.unit(21000, "kg"),
  22465. name: "Front",
  22466. image: {
  22467. source: "./media/characters/shock-diamond/front.svg",
  22468. extra: 2204 / 2053,
  22469. bottom: 65 / 2239.47
  22470. }
  22471. },
  22472. frontNude: {
  22473. height: math.unit(22, "meters"),
  22474. weight: math.unit(21000, "kg"),
  22475. name: "Front (Nude)",
  22476. image: {
  22477. source: "./media/characters/shock-diamond/front-nude.svg",
  22478. extra: 2514 / 2285,
  22479. bottom: 13 / 2527.56
  22480. }
  22481. },
  22482. },
  22483. [
  22484. {
  22485. name: "Normal",
  22486. height: math.unit(3, "meters")
  22487. },
  22488. {
  22489. name: "Macro",
  22490. height: math.unit(22, "meters"),
  22491. default: true
  22492. },
  22493. ]
  22494. ))
  22495. characterMakers.push(() => makeCharacter(
  22496. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22497. {
  22498. front: {
  22499. height: math.unit(5 + 4 / 12, "feet"),
  22500. weight: math.unit(120, "lb"),
  22501. name: "Front",
  22502. image: {
  22503. source: "./media/characters/rory/front.svg",
  22504. extra: 1318/1241,
  22505. bottom: 42/1360
  22506. }
  22507. },
  22508. back: {
  22509. height: math.unit(5 + 4 / 12, "feet"),
  22510. weight: math.unit(120, "lb"),
  22511. name: "Back",
  22512. image: {
  22513. source: "./media/characters/rory/back.svg",
  22514. extra: 1318/1241,
  22515. bottom: 42/1360
  22516. }
  22517. },
  22518. butt: {
  22519. height: math.unit(1.74, "feet"),
  22520. name: "Butt",
  22521. image: {
  22522. source: "./media/characters/rory/butt.svg"
  22523. }
  22524. },
  22525. dick: {
  22526. height: math.unit(1.02, "feet"),
  22527. name: "Dick",
  22528. image: {
  22529. source: "./media/characters/rory/dick.svg"
  22530. }
  22531. },
  22532. paws: {
  22533. height: math.unit(1, "feet"),
  22534. name: "Paws",
  22535. image: {
  22536. source: "./media/characters/rory/paws.svg"
  22537. }
  22538. },
  22539. frontAlt: {
  22540. height: math.unit(5 + 4 / 12, "feet"),
  22541. weight: math.unit(120, "lb"),
  22542. name: "Front (Alt)",
  22543. image: {
  22544. source: "./media/characters/rory/front-alt.svg",
  22545. extra: 589 / 556,
  22546. bottom: 45.7 / 635.76
  22547. }
  22548. },
  22549. frontAltNude: {
  22550. height: math.unit(5 + 4 / 12, "feet"),
  22551. weight: math.unit(120, "lb"),
  22552. name: "Front (Alt, Nude)",
  22553. image: {
  22554. source: "./media/characters/rory/front-alt-nude.svg",
  22555. extra: 589 / 556,
  22556. bottom: 45.7 / 635.76
  22557. }
  22558. },
  22559. side: {
  22560. height: math.unit(5 + 4 / 12, "feet"),
  22561. weight: math.unit(120, "lb"),
  22562. name: "Side",
  22563. image: {
  22564. source: "./media/characters/rory/side.svg",
  22565. extra: 597 / 564,
  22566. bottom: 55 / 653
  22567. }
  22568. },
  22569. backAlt: {
  22570. height: math.unit(5 + 4 / 12, "feet"),
  22571. weight: math.unit(120, "lb"),
  22572. name: "Back (Alt)",
  22573. image: {
  22574. source: "./media/characters/rory/back-alt.svg",
  22575. extra: 620 / 585,
  22576. bottom: 8.86 / 630.43
  22577. }
  22578. },
  22579. dickAlt: {
  22580. height: math.unit(0.86, "feet"),
  22581. name: "Dick (Alt)",
  22582. image: {
  22583. source: "./media/characters/rory/dick-alt.svg"
  22584. }
  22585. },
  22586. },
  22587. [
  22588. {
  22589. name: "Normal",
  22590. height: math.unit(5 + 4 / 12, "feet"),
  22591. default: true
  22592. },
  22593. {
  22594. name: "Macro",
  22595. height: math.unit(100, "feet")
  22596. },
  22597. {
  22598. name: "Macro+",
  22599. height: math.unit(140, "feet")
  22600. },
  22601. {
  22602. name: "Macro++",
  22603. height: math.unit(300, "feet")
  22604. },
  22605. ]
  22606. ))
  22607. characterMakers.push(() => makeCharacter(
  22608. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22609. {
  22610. front: {
  22611. height: math.unit(5 + 9 / 12, "feet"),
  22612. weight: math.unit(190, "lb"),
  22613. name: "Front",
  22614. image: {
  22615. source: "./media/characters/sprisk/front.svg",
  22616. extra: 1225 / 1180,
  22617. bottom: 42.7 / 1266.4
  22618. }
  22619. },
  22620. frontNsfw: {
  22621. height: math.unit(5 + 9 / 12, "feet"),
  22622. weight: math.unit(190, "lb"),
  22623. name: "Front (NSFW)",
  22624. image: {
  22625. source: "./media/characters/sprisk/front-nsfw.svg",
  22626. extra: 1225 / 1180,
  22627. bottom: 42.7 / 1266.4
  22628. }
  22629. },
  22630. back: {
  22631. height: math.unit(5 + 9 / 12, "feet"),
  22632. weight: math.unit(190, "lb"),
  22633. name: "Back",
  22634. image: {
  22635. source: "./media/characters/sprisk/back.svg",
  22636. extra: 1247 / 1200,
  22637. bottom: 5.6 / 1253.04
  22638. }
  22639. },
  22640. },
  22641. [
  22642. {
  22643. name: "Tiny",
  22644. height: math.unit(2, "inches")
  22645. },
  22646. {
  22647. name: "Normal",
  22648. height: math.unit(5 + 9 / 12, "feet"),
  22649. default: true
  22650. },
  22651. {
  22652. name: "Mini Macro",
  22653. height: math.unit(18, "feet")
  22654. },
  22655. {
  22656. name: "Macro",
  22657. height: math.unit(100, "feet")
  22658. },
  22659. {
  22660. name: "MACRO",
  22661. height: math.unit(50, "miles")
  22662. },
  22663. {
  22664. name: "M A C R O",
  22665. height: math.unit(300, "miles")
  22666. },
  22667. ]
  22668. ))
  22669. characterMakers.push(() => makeCharacter(
  22670. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22671. {
  22672. side: {
  22673. height: math.unit(15.6, "meters"),
  22674. weight: math.unit(700000, "kg"),
  22675. name: "Side",
  22676. image: {
  22677. source: "./media/characters/bunsen/side.svg",
  22678. extra: 1644 / 358
  22679. }
  22680. },
  22681. foot: {
  22682. height: math.unit(1.611 * 1644 / 358, "meter"),
  22683. name: "Foot",
  22684. image: {
  22685. source: "./media/characters/bunsen/foot.svg"
  22686. }
  22687. },
  22688. },
  22689. [
  22690. {
  22691. name: "Small",
  22692. height: math.unit(10, "feet")
  22693. },
  22694. {
  22695. name: "Normal",
  22696. height: math.unit(15.6, "meters"),
  22697. default: true
  22698. },
  22699. ]
  22700. ))
  22701. characterMakers.push(() => makeCharacter(
  22702. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22703. {
  22704. front: {
  22705. height: math.unit(4 + 11 / 12, "feet"),
  22706. weight: math.unit(140, "lb"),
  22707. name: "Front",
  22708. image: {
  22709. source: "./media/characters/sesh/front.svg",
  22710. extra: 3420 / 3231,
  22711. bottom: 72 / 3949.5
  22712. }
  22713. },
  22714. },
  22715. [
  22716. {
  22717. name: "Normal",
  22718. height: math.unit(4 + 11 / 12, "feet")
  22719. },
  22720. {
  22721. name: "Grown",
  22722. height: math.unit(15, "feet"),
  22723. default: true
  22724. },
  22725. {
  22726. name: "Macro",
  22727. height: math.unit(1500, "feet")
  22728. },
  22729. {
  22730. name: "Megamacro",
  22731. height: math.unit(30, "miles")
  22732. },
  22733. {
  22734. name: "Continental",
  22735. height: math.unit(3000, "miles")
  22736. },
  22737. {
  22738. name: "Gravity Mass",
  22739. height: math.unit(300000, "miles")
  22740. },
  22741. {
  22742. name: "Planet Buster",
  22743. height: math.unit(30000000, "miles")
  22744. },
  22745. {
  22746. name: "Big",
  22747. height: math.unit(3000000000, "miles")
  22748. },
  22749. ]
  22750. ))
  22751. characterMakers.push(() => makeCharacter(
  22752. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22753. {
  22754. front: {
  22755. height: math.unit(9, "feet"),
  22756. weight: math.unit(350, "lb"),
  22757. name: "Front",
  22758. image: {
  22759. source: "./media/characters/pepper/front.svg",
  22760. extra: 1448 / 1312,
  22761. bottom: 9.4 / 1457.88
  22762. }
  22763. },
  22764. back: {
  22765. height: math.unit(9, "feet"),
  22766. weight: math.unit(350, "lb"),
  22767. name: "Back",
  22768. image: {
  22769. source: "./media/characters/pepper/back.svg",
  22770. extra: 1423 / 1300,
  22771. bottom: 4.6 / 1429
  22772. }
  22773. },
  22774. maw: {
  22775. height: math.unit(0.932, "feet"),
  22776. name: "Maw",
  22777. image: {
  22778. source: "./media/characters/pepper/maw.svg"
  22779. }
  22780. },
  22781. },
  22782. [
  22783. {
  22784. name: "Normal",
  22785. height: math.unit(9, "feet"),
  22786. default: true
  22787. },
  22788. ]
  22789. ))
  22790. characterMakers.push(() => makeCharacter(
  22791. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22792. {
  22793. front: {
  22794. height: math.unit(6, "feet"),
  22795. weight: math.unit(150, "lb"),
  22796. name: "Front",
  22797. image: {
  22798. source: "./media/characters/maelstrom/front.svg",
  22799. extra: 2100 / 1883,
  22800. bottom: 94 / 2196.7
  22801. }
  22802. },
  22803. },
  22804. [
  22805. {
  22806. name: "Less Kaiju",
  22807. height: math.unit(200, "feet")
  22808. },
  22809. {
  22810. name: "Kaiju",
  22811. height: math.unit(400, "feet"),
  22812. default: true
  22813. },
  22814. {
  22815. name: "Kaiju-er",
  22816. height: math.unit(600, "feet")
  22817. },
  22818. ]
  22819. ))
  22820. characterMakers.push(() => makeCharacter(
  22821. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22822. {
  22823. front: {
  22824. height: math.unit(6 + 5 / 12, "feet"),
  22825. weight: math.unit(180, "lb"),
  22826. name: "Front",
  22827. image: {
  22828. source: "./media/characters/lexir/front.svg",
  22829. extra: 180 / 172,
  22830. bottom: 12 / 192
  22831. }
  22832. },
  22833. back: {
  22834. height: math.unit(6 + 5 / 12, "feet"),
  22835. weight: math.unit(180, "lb"),
  22836. name: "Back",
  22837. image: {
  22838. source: "./media/characters/lexir/back.svg",
  22839. extra: 183.84 / 175.5,
  22840. bottom: 3.1 / 187
  22841. }
  22842. },
  22843. },
  22844. [
  22845. {
  22846. name: "Very Smal",
  22847. height: math.unit(1, "nm")
  22848. },
  22849. {
  22850. name: "Normal",
  22851. height: math.unit(6 + 5 / 12, "feet"),
  22852. default: true
  22853. },
  22854. {
  22855. name: "Macro",
  22856. height: math.unit(1, "mile")
  22857. },
  22858. {
  22859. name: "Megamacro",
  22860. height: math.unit(50, "miles")
  22861. },
  22862. ]
  22863. ))
  22864. characterMakers.push(() => makeCharacter(
  22865. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22866. {
  22867. front: {
  22868. height: math.unit(1.5, "meters"),
  22869. weight: math.unit(100, "lb"),
  22870. name: "Front",
  22871. image: {
  22872. source: "./media/characters/maksio/front.svg",
  22873. extra: 1549 / 1531,
  22874. bottom: 123.7 / 1674.5429
  22875. }
  22876. },
  22877. back: {
  22878. height: math.unit(1.5, "meters"),
  22879. weight: math.unit(100, "lb"),
  22880. name: "Back",
  22881. image: {
  22882. source: "./media/characters/maksio/back.svg",
  22883. extra: 1541 / 1509,
  22884. bottom: 97 / 1639
  22885. }
  22886. },
  22887. hand: {
  22888. height: math.unit(0.621, "feet"),
  22889. name: "Hand",
  22890. image: {
  22891. source: "./media/characters/maksio/hand.svg"
  22892. }
  22893. },
  22894. foot: {
  22895. height: math.unit(1.611, "feet"),
  22896. name: "Foot",
  22897. image: {
  22898. source: "./media/characters/maksio/foot.svg"
  22899. }
  22900. },
  22901. },
  22902. [
  22903. {
  22904. name: "Shrunken",
  22905. height: math.unit(10, "cm")
  22906. },
  22907. {
  22908. name: "Normal",
  22909. height: math.unit(150, "cm"),
  22910. default: true
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22916. {
  22917. front: {
  22918. height: math.unit(100, "feet"),
  22919. name: "Front",
  22920. image: {
  22921. source: "./media/characters/erza-bear/front.svg",
  22922. extra: 2449 / 2390,
  22923. bottom: 46 / 2494
  22924. }
  22925. },
  22926. back: {
  22927. height: math.unit(100, "feet"),
  22928. name: "Back",
  22929. image: {
  22930. source: "./media/characters/erza-bear/back.svg",
  22931. extra: 2489 / 2430,
  22932. bottom: 85.4 / 2480
  22933. }
  22934. },
  22935. tail: {
  22936. height: math.unit(42, "feet"),
  22937. name: "Tail",
  22938. image: {
  22939. source: "./media/characters/erza-bear/tail.svg"
  22940. }
  22941. },
  22942. tongue: {
  22943. height: math.unit(8, "feet"),
  22944. name: "Tongue",
  22945. image: {
  22946. source: "./media/characters/erza-bear/tongue.svg"
  22947. }
  22948. },
  22949. dick: {
  22950. height: math.unit(10.5, "feet"),
  22951. name: "Dick",
  22952. image: {
  22953. source: "./media/characters/erza-bear/dick.svg"
  22954. }
  22955. },
  22956. dickVertical: {
  22957. height: math.unit(16.9, "feet"),
  22958. name: "Dick (Vertical)",
  22959. image: {
  22960. source: "./media/characters/erza-bear/dick-vertical.svg"
  22961. }
  22962. },
  22963. },
  22964. [
  22965. {
  22966. name: "Macro",
  22967. height: math.unit(100, "feet"),
  22968. default: true
  22969. },
  22970. ]
  22971. ))
  22972. characterMakers.push(() => makeCharacter(
  22973. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22974. {
  22975. front: {
  22976. height: math.unit(172, "cm"),
  22977. weight: math.unit(73, "kg"),
  22978. name: "Front",
  22979. image: {
  22980. source: "./media/characters/violet-flor/front.svg",
  22981. extra: 1530 / 1442,
  22982. bottom: 61.9 / 1588.8
  22983. }
  22984. },
  22985. back: {
  22986. height: math.unit(180, "cm"),
  22987. weight: math.unit(73, "kg"),
  22988. name: "Back",
  22989. image: {
  22990. source: "./media/characters/violet-flor/back.svg",
  22991. extra: 1692 / 1630,
  22992. bottom: 20 / 1712
  22993. }
  22994. },
  22995. },
  22996. [
  22997. {
  22998. name: "Normal",
  22999. height: math.unit(172, "cm"),
  23000. default: true
  23001. },
  23002. ]
  23003. ))
  23004. characterMakers.push(() => makeCharacter(
  23005. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23006. {
  23007. front: {
  23008. height: math.unit(6, "feet"),
  23009. weight: math.unit(220, "lb"),
  23010. name: "Front",
  23011. image: {
  23012. source: "./media/characters/lynn-rhea/front.svg",
  23013. extra: 310 / 273
  23014. }
  23015. },
  23016. back: {
  23017. height: math.unit(6, "feet"),
  23018. weight: math.unit(220, "lb"),
  23019. name: "Back",
  23020. image: {
  23021. source: "./media/characters/lynn-rhea/back.svg",
  23022. extra: 310 / 273
  23023. }
  23024. },
  23025. dicks: {
  23026. height: math.unit(0.9, "feet"),
  23027. name: "Dicks",
  23028. image: {
  23029. source: "./media/characters/lynn-rhea/dicks.svg"
  23030. }
  23031. },
  23032. slit: {
  23033. height: math.unit(0.4, "feet"),
  23034. name: "Slit",
  23035. image: {
  23036. source: "./media/characters/lynn-rhea/slit.svg"
  23037. }
  23038. },
  23039. },
  23040. [
  23041. {
  23042. name: "Micro",
  23043. height: math.unit(1, "inch")
  23044. },
  23045. {
  23046. name: "Macro",
  23047. height: math.unit(60, "feet"),
  23048. default: true
  23049. },
  23050. {
  23051. name: "Megamacro",
  23052. height: math.unit(2, "miles")
  23053. },
  23054. {
  23055. name: "Gigamacro",
  23056. height: math.unit(3, "earths")
  23057. },
  23058. {
  23059. name: "Galactic",
  23060. height: math.unit(0.8, "galaxies")
  23061. },
  23062. ]
  23063. ))
  23064. characterMakers.push(() => makeCharacter(
  23065. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23066. {
  23067. front: {
  23068. height: math.unit(1600, "feet"),
  23069. weight: math.unit(85758785169, "kg"),
  23070. name: "Front",
  23071. image: {
  23072. source: "./media/characters/valathos/front.svg",
  23073. extra: 1451 / 1339
  23074. }
  23075. },
  23076. },
  23077. [
  23078. {
  23079. name: "Macro",
  23080. height: math.unit(1600, "feet"),
  23081. default: true
  23082. },
  23083. ]
  23084. ))
  23085. characterMakers.push(() => makeCharacter(
  23086. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23087. {
  23088. front: {
  23089. height: math.unit(7 + 5 / 12, "feet"),
  23090. weight: math.unit(300, "lb"),
  23091. name: "Front",
  23092. image: {
  23093. source: "./media/characters/azula/front.svg",
  23094. extra: 3208 / 2880,
  23095. bottom: 80.2 / 3277
  23096. }
  23097. },
  23098. back: {
  23099. height: math.unit(7 + 5 / 12, "feet"),
  23100. weight: math.unit(300, "lb"),
  23101. name: "Back",
  23102. image: {
  23103. source: "./media/characters/azula/back.svg",
  23104. extra: 3169 / 2822,
  23105. bottom: 150.6 / 3321
  23106. }
  23107. },
  23108. },
  23109. [
  23110. {
  23111. name: "Normal",
  23112. height: math.unit(7 + 5 / 12, "feet"),
  23113. default: true
  23114. },
  23115. {
  23116. name: "Big",
  23117. height: math.unit(20, "feet")
  23118. },
  23119. ]
  23120. ))
  23121. characterMakers.push(() => makeCharacter(
  23122. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23123. {
  23124. front: {
  23125. height: math.unit(5 + 1 / 12, "feet"),
  23126. weight: math.unit(110, "lb"),
  23127. name: "Front",
  23128. image: {
  23129. source: "./media/characters/rupert/front.svg",
  23130. extra: 1549 / 1495,
  23131. bottom: 54.2 / 1604.4
  23132. }
  23133. },
  23134. },
  23135. [
  23136. {
  23137. name: "Normal",
  23138. height: math.unit(5 + 1 / 12, "feet"),
  23139. default: true
  23140. },
  23141. ]
  23142. ))
  23143. characterMakers.push(() => makeCharacter(
  23144. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23145. {
  23146. front: {
  23147. height: math.unit(8 + 4 / 12, "feet"),
  23148. weight: math.unit(350, "lb"),
  23149. name: "Front",
  23150. image: {
  23151. source: "./media/characters/sheera-castellar/front.svg",
  23152. extra: 1957 / 1894,
  23153. bottom: 26.97 / 1975.017
  23154. }
  23155. },
  23156. side: {
  23157. height: math.unit(8 + 4 / 12, "feet"),
  23158. weight: math.unit(350, "lb"),
  23159. name: "Side",
  23160. image: {
  23161. source: "./media/characters/sheera-castellar/side.svg",
  23162. extra: 1957 / 1894
  23163. }
  23164. },
  23165. back: {
  23166. height: math.unit(8 + 4 / 12, "feet"),
  23167. weight: math.unit(350, "lb"),
  23168. name: "Back",
  23169. image: {
  23170. source: "./media/characters/sheera-castellar/back.svg",
  23171. extra: 1957 / 1894
  23172. }
  23173. },
  23174. angled: {
  23175. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23176. weight: math.unit(350, "lb"),
  23177. name: "Angled",
  23178. image: {
  23179. source: "./media/characters/sheera-castellar/angled.svg",
  23180. extra: 1807 / 1707,
  23181. bottom: 68 / 1875
  23182. }
  23183. },
  23184. genitals: {
  23185. height: math.unit(2.2, "feet"),
  23186. name: "Genitals",
  23187. image: {
  23188. source: "./media/characters/sheera-castellar/genitals.svg"
  23189. }
  23190. },
  23191. taur: {
  23192. height: math.unit(10 + 6/12, "feet"),
  23193. name: "Taur",
  23194. image: {
  23195. source: "./media/characters/sheera-castellar/taur.svg",
  23196. extra: 2017/1909,
  23197. bottom: 185/2202
  23198. }
  23199. },
  23200. },
  23201. [
  23202. {
  23203. name: "Normal",
  23204. height: math.unit(8 + 4 / 12, "feet")
  23205. },
  23206. {
  23207. name: "Macro",
  23208. height: math.unit(150, "feet"),
  23209. default: true
  23210. },
  23211. {
  23212. name: "Macro+",
  23213. height: math.unit(800, "feet")
  23214. },
  23215. ]
  23216. ))
  23217. characterMakers.push(() => makeCharacter(
  23218. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23219. {
  23220. front: {
  23221. height: math.unit(6, "feet"),
  23222. weight: math.unit(150, "lb"),
  23223. name: "Front",
  23224. image: {
  23225. source: "./media/characters/jaipur/front.svg",
  23226. extra: 3860 / 3731,
  23227. bottom: 287 / 4140
  23228. }
  23229. },
  23230. back: {
  23231. height: math.unit(6, "feet"),
  23232. weight: math.unit(150, "lb"),
  23233. name: "Back",
  23234. image: {
  23235. source: "./media/characters/jaipur/back.svg",
  23236. extra: 4060 / 3930,
  23237. bottom: 151 / 4200
  23238. }
  23239. },
  23240. },
  23241. [
  23242. {
  23243. name: "Normal",
  23244. height: math.unit(1.85, "meters"),
  23245. default: true
  23246. },
  23247. {
  23248. name: "Macro",
  23249. height: math.unit(150, "meters")
  23250. },
  23251. {
  23252. name: "Macro+",
  23253. height: math.unit(0.5, "miles")
  23254. },
  23255. {
  23256. name: "Macro++",
  23257. height: math.unit(2.5, "miles")
  23258. },
  23259. {
  23260. name: "Macro+++",
  23261. height: math.unit(12, "miles")
  23262. },
  23263. {
  23264. name: "Macro++++",
  23265. height: math.unit(120, "miles")
  23266. },
  23267. {
  23268. name: "Macro+++++",
  23269. height: math.unit(1200, "miles")
  23270. },
  23271. ]
  23272. ))
  23273. characterMakers.push(() => makeCharacter(
  23274. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23275. {
  23276. front: {
  23277. height: math.unit(6, "feet"),
  23278. weight: math.unit(150, "lb"),
  23279. name: "Front",
  23280. image: {
  23281. source: "./media/characters/sheila-wolf/front.svg",
  23282. extra: 1931 / 1808,
  23283. bottom: 29.5 / 1960
  23284. }
  23285. },
  23286. dick: {
  23287. height: math.unit(1.464, "feet"),
  23288. name: "Dick",
  23289. image: {
  23290. source: "./media/characters/sheila-wolf/dick.svg"
  23291. }
  23292. },
  23293. muzzle: {
  23294. height: math.unit(0.513, "feet"),
  23295. name: "Muzzle",
  23296. image: {
  23297. source: "./media/characters/sheila-wolf/muzzle.svg"
  23298. }
  23299. },
  23300. },
  23301. [
  23302. {
  23303. name: "Macro",
  23304. height: math.unit(70, "feet"),
  23305. default: true
  23306. },
  23307. ]
  23308. ))
  23309. characterMakers.push(() => makeCharacter(
  23310. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23311. {
  23312. front: {
  23313. height: math.unit(32, "meters"),
  23314. weight: math.unit(300000, "kg"),
  23315. name: "Front",
  23316. image: {
  23317. source: "./media/characters/almor/front.svg",
  23318. extra: 1408 / 1322,
  23319. bottom: 94.6 / 1506.5
  23320. }
  23321. },
  23322. },
  23323. [
  23324. {
  23325. name: "Macro",
  23326. height: math.unit(32, "meters"),
  23327. default: true
  23328. },
  23329. ]
  23330. ))
  23331. characterMakers.push(() => makeCharacter(
  23332. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23333. {
  23334. front: {
  23335. height: math.unit(7, "feet"),
  23336. weight: math.unit(200, "lb"),
  23337. name: "Front",
  23338. image: {
  23339. source: "./media/characters/silver/front.svg",
  23340. extra: 472.1 / 450.5,
  23341. bottom: 26.5 / 499.424
  23342. }
  23343. },
  23344. },
  23345. [
  23346. {
  23347. name: "Normal",
  23348. height: math.unit(7, "feet"),
  23349. default: true
  23350. },
  23351. {
  23352. name: "Macro",
  23353. height: math.unit(800, "feet")
  23354. },
  23355. {
  23356. name: "Megamacro",
  23357. height: math.unit(250, "miles")
  23358. },
  23359. ]
  23360. ))
  23361. characterMakers.push(() => makeCharacter(
  23362. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23363. {
  23364. front: {
  23365. height: math.unit(6, "feet"),
  23366. weight: math.unit(150, "lb"),
  23367. name: "Front",
  23368. image: {
  23369. source: "./media/characters/pliskin/front.svg",
  23370. extra: 1469 / 1359,
  23371. bottom: 70 / 1540
  23372. }
  23373. },
  23374. },
  23375. [
  23376. {
  23377. name: "Micro",
  23378. height: math.unit(3, "inches")
  23379. },
  23380. {
  23381. name: "Normal",
  23382. height: math.unit(5 + 11 / 12, "feet"),
  23383. default: true
  23384. },
  23385. {
  23386. name: "Macro",
  23387. height: math.unit(120, "feet")
  23388. },
  23389. ]
  23390. ))
  23391. characterMakers.push(() => makeCharacter(
  23392. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23393. {
  23394. front: {
  23395. height: math.unit(6, "feet"),
  23396. weight: math.unit(150, "lb"),
  23397. name: "Front",
  23398. image: {
  23399. source: "./media/characters/sammy/front.svg",
  23400. extra: 1193 / 1089,
  23401. bottom: 30.5 / 1226
  23402. }
  23403. },
  23404. },
  23405. [
  23406. {
  23407. name: "Macro",
  23408. height: math.unit(1700, "feet"),
  23409. default: true
  23410. },
  23411. {
  23412. name: "Examacro",
  23413. height: math.unit(2.5e9, "lightyears")
  23414. },
  23415. ]
  23416. ))
  23417. characterMakers.push(() => makeCharacter(
  23418. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23419. {
  23420. front: {
  23421. height: math.unit(21, "meters"),
  23422. weight: math.unit(12, "tonnes"),
  23423. name: "Front",
  23424. image: {
  23425. source: "./media/characters/kuru/front.svg",
  23426. extra: 4301 / 3785,
  23427. bottom: 371.3 / 4691
  23428. }
  23429. },
  23430. },
  23431. [
  23432. {
  23433. name: "Macro",
  23434. height: math.unit(21, "meters"),
  23435. default: true
  23436. },
  23437. ]
  23438. ))
  23439. characterMakers.push(() => makeCharacter(
  23440. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23441. {
  23442. front: {
  23443. height: math.unit(23, "meters"),
  23444. weight: math.unit(12.2, "tonnes"),
  23445. name: "Front",
  23446. image: {
  23447. source: "./media/characters/rakka/front.svg",
  23448. extra: 4670 / 4169,
  23449. bottom: 301 / 4968.7
  23450. }
  23451. },
  23452. },
  23453. [
  23454. {
  23455. name: "Macro",
  23456. height: math.unit(23, "meters"),
  23457. default: true
  23458. },
  23459. ]
  23460. ))
  23461. characterMakers.push(() => makeCharacter(
  23462. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23463. {
  23464. front: {
  23465. height: math.unit(6, "feet"),
  23466. weight: math.unit(150, "lb"),
  23467. name: "Front",
  23468. image: {
  23469. source: "./media/characters/rhys-feline/front.svg",
  23470. extra: 2488 / 2308,
  23471. bottom: 35.67 / 2519.19
  23472. }
  23473. },
  23474. },
  23475. [
  23476. {
  23477. name: "Really Small",
  23478. height: math.unit(1, "nm")
  23479. },
  23480. {
  23481. name: "Micro",
  23482. height: math.unit(4, "inches")
  23483. },
  23484. {
  23485. name: "Normal",
  23486. height: math.unit(4 + 10 / 12, "feet"),
  23487. default: true
  23488. },
  23489. {
  23490. name: "Macro",
  23491. height: math.unit(100, "feet")
  23492. },
  23493. {
  23494. name: "Megamacto",
  23495. height: math.unit(50, "miles")
  23496. },
  23497. ]
  23498. ))
  23499. characterMakers.push(() => makeCharacter(
  23500. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23501. {
  23502. side: {
  23503. height: math.unit(30, "feet"),
  23504. weight: math.unit(35000, "kg"),
  23505. name: "Side",
  23506. image: {
  23507. source: "./media/characters/alydar/side.svg",
  23508. extra: 234 / 222,
  23509. bottom: 6.5 / 241
  23510. }
  23511. },
  23512. front: {
  23513. height: math.unit(30, "feet"),
  23514. weight: math.unit(35000, "kg"),
  23515. name: "Front",
  23516. image: {
  23517. source: "./media/characters/alydar/front.svg",
  23518. extra: 223.37 / 210.2,
  23519. bottom: 22.3 / 246.76
  23520. }
  23521. },
  23522. top: {
  23523. height: math.unit(64.54, "feet"),
  23524. weight: math.unit(35000, "kg"),
  23525. name: "Top",
  23526. image: {
  23527. source: "./media/characters/alydar/top.svg"
  23528. }
  23529. },
  23530. anthro: {
  23531. height: math.unit(30, "feet"),
  23532. weight: math.unit(9000, "kg"),
  23533. name: "Anthro",
  23534. image: {
  23535. source: "./media/characters/alydar/anthro.svg",
  23536. extra: 432 / 421,
  23537. bottom: 7.18 / 440
  23538. }
  23539. },
  23540. maw: {
  23541. height: math.unit(11.693, "feet"),
  23542. name: "Maw",
  23543. image: {
  23544. source: "./media/characters/alydar/maw.svg"
  23545. }
  23546. },
  23547. head: {
  23548. height: math.unit(11.693, "feet"),
  23549. name: "Head",
  23550. image: {
  23551. source: "./media/characters/alydar/head.svg"
  23552. }
  23553. },
  23554. headAlt: {
  23555. height: math.unit(12.861, "feet"),
  23556. name: "Head (Alt)",
  23557. image: {
  23558. source: "./media/characters/alydar/head-alt.svg"
  23559. }
  23560. },
  23561. wing: {
  23562. height: math.unit(20.712, "feet"),
  23563. name: "Wing",
  23564. image: {
  23565. source: "./media/characters/alydar/wing.svg"
  23566. }
  23567. },
  23568. wingFeather: {
  23569. height: math.unit(9.662, "feet"),
  23570. name: "Wing Feather",
  23571. image: {
  23572. source: "./media/characters/alydar/wing-feather.svg"
  23573. }
  23574. },
  23575. countourFeather: {
  23576. height: math.unit(4.154, "feet"),
  23577. name: "Contour Feather",
  23578. image: {
  23579. source: "./media/characters/alydar/contour-feather.svg"
  23580. }
  23581. },
  23582. },
  23583. [
  23584. {
  23585. name: "Diplomatic",
  23586. height: math.unit(13, "feet"),
  23587. default: true
  23588. },
  23589. {
  23590. name: "Small",
  23591. height: math.unit(30, "feet")
  23592. },
  23593. {
  23594. name: "Normal",
  23595. height: math.unit(95, "feet"),
  23596. default: true
  23597. },
  23598. {
  23599. name: "Large",
  23600. height: math.unit(285, "feet")
  23601. },
  23602. {
  23603. name: "Incomprehensible",
  23604. height: math.unit(450, "megameters")
  23605. },
  23606. ]
  23607. ))
  23608. characterMakers.push(() => makeCharacter(
  23609. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23610. {
  23611. side: {
  23612. height: math.unit(11, "feet"),
  23613. weight: math.unit(1750, "kg"),
  23614. name: "Side",
  23615. image: {
  23616. source: "./media/characters/selicia/side.svg",
  23617. extra: 440 / 396,
  23618. bottom: 24.8 / 465.979
  23619. }
  23620. },
  23621. maw: {
  23622. height: math.unit(4.665, "feet"),
  23623. name: "Maw",
  23624. image: {
  23625. source: "./media/characters/selicia/maw.svg"
  23626. }
  23627. },
  23628. },
  23629. [
  23630. {
  23631. name: "Normal",
  23632. height: math.unit(11, "feet"),
  23633. default: true
  23634. },
  23635. ]
  23636. ))
  23637. characterMakers.push(() => makeCharacter(
  23638. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23639. {
  23640. side: {
  23641. height: math.unit(2 + 6 / 12, "feet"),
  23642. weight: math.unit(30, "lb"),
  23643. name: "Side",
  23644. image: {
  23645. source: "./media/characters/layla/side.svg",
  23646. extra: 244 / 188,
  23647. bottom: 18.2 / 262.1
  23648. }
  23649. },
  23650. back: {
  23651. height: math.unit(2 + 6 / 12, "feet"),
  23652. weight: math.unit(30, "lb"),
  23653. name: "Back",
  23654. image: {
  23655. source: "./media/characters/layla/back.svg",
  23656. extra: 308 / 241.5,
  23657. bottom: 8.9 / 316.8
  23658. }
  23659. },
  23660. cumming: {
  23661. height: math.unit(2 + 6 / 12, "feet"),
  23662. weight: math.unit(30, "lb"),
  23663. name: "Cumming",
  23664. image: {
  23665. source: "./media/characters/layla/cumming.svg",
  23666. extra: 342 / 279,
  23667. bottom: 595 / 938
  23668. }
  23669. },
  23670. dickFlaccid: {
  23671. height: math.unit(2.595, "feet"),
  23672. name: "Flaccid Genitals",
  23673. image: {
  23674. source: "./media/characters/layla/dick-flaccid.svg"
  23675. }
  23676. },
  23677. dickErect: {
  23678. height: math.unit(2.359, "feet"),
  23679. name: "Erect Genitals",
  23680. image: {
  23681. source: "./media/characters/layla/dick-erect.svg"
  23682. }
  23683. },
  23684. dragon: {
  23685. height: math.unit(40, "feet"),
  23686. name: "Dragon",
  23687. image: {
  23688. source: "./media/characters/layla/dragon.svg",
  23689. extra: 610/535,
  23690. bottom: 367/977
  23691. }
  23692. },
  23693. taur: {
  23694. height: math.unit(30, "feet"),
  23695. name: "Taur",
  23696. image: {
  23697. source: "./media/characters/layla/taur.svg",
  23698. extra: 1268/1199,
  23699. bottom: 112/1380
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Micro",
  23706. height: math.unit(1, "inch")
  23707. },
  23708. {
  23709. name: "Small",
  23710. height: math.unit(1, "foot")
  23711. },
  23712. {
  23713. name: "Normal",
  23714. height: math.unit(2 + 6 / 12, "feet"),
  23715. default: true
  23716. },
  23717. {
  23718. name: "Macro",
  23719. height: math.unit(200, "feet")
  23720. },
  23721. {
  23722. name: "Megamacro",
  23723. height: math.unit(1000, "miles")
  23724. },
  23725. {
  23726. name: "Planetary",
  23727. height: math.unit(8000, "miles")
  23728. },
  23729. {
  23730. name: "True Layla",
  23731. height: math.unit(200000 * 7, "multiverses")
  23732. },
  23733. ]
  23734. ))
  23735. characterMakers.push(() => makeCharacter(
  23736. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23737. {
  23738. back: {
  23739. height: math.unit(10.5, "feet"),
  23740. weight: math.unit(800, "lb"),
  23741. name: "Back",
  23742. image: {
  23743. source: "./media/characters/knox/back.svg",
  23744. extra: 1486 / 1089,
  23745. bottom: 107 / 1601.4
  23746. }
  23747. },
  23748. side: {
  23749. height: math.unit(10.5, "feet"),
  23750. weight: math.unit(800, "lb"),
  23751. name: "Side",
  23752. image: {
  23753. source: "./media/characters/knox/side.svg",
  23754. extra: 244 / 218,
  23755. bottom: 14 / 260
  23756. }
  23757. },
  23758. },
  23759. [
  23760. {
  23761. name: "Compact",
  23762. height: math.unit(10.5, "feet"),
  23763. default: true
  23764. },
  23765. {
  23766. name: "Dynamax",
  23767. height: math.unit(210, "feet")
  23768. },
  23769. {
  23770. name: "Full Macro",
  23771. height: math.unit(850, "feet")
  23772. },
  23773. ]
  23774. ))
  23775. characterMakers.push(() => makeCharacter(
  23776. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23777. {
  23778. front: {
  23779. height: math.unit(28, "feet"),
  23780. weight: math.unit(10500, "lb"),
  23781. name: "Front",
  23782. image: {
  23783. source: "./media/characters/kayda/front.svg",
  23784. extra: 1536 / 1428,
  23785. bottom: 68.7 / 1603
  23786. }
  23787. },
  23788. back: {
  23789. height: math.unit(28, "feet"),
  23790. weight: math.unit(10500, "lb"),
  23791. name: "Back",
  23792. image: {
  23793. source: "./media/characters/kayda/back.svg",
  23794. extra: 1557 / 1464,
  23795. bottom: 39.5 / 1597.49
  23796. }
  23797. },
  23798. dick: {
  23799. height: math.unit(3.858, "feet"),
  23800. name: "Dick",
  23801. image: {
  23802. source: "./media/characters/kayda/dick.svg"
  23803. }
  23804. },
  23805. },
  23806. [
  23807. {
  23808. name: "Macro",
  23809. height: math.unit(28, "feet"),
  23810. default: true
  23811. },
  23812. ]
  23813. ))
  23814. characterMakers.push(() => makeCharacter(
  23815. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23816. {
  23817. front: {
  23818. height: math.unit(10 + 11 / 12, "feet"),
  23819. weight: math.unit(1400, "lb"),
  23820. name: "Front",
  23821. image: {
  23822. source: "./media/characters/brian/front.svg",
  23823. extra: 737 / 692,
  23824. bottom: 55.4 / 785
  23825. }
  23826. },
  23827. },
  23828. [
  23829. {
  23830. name: "Normal",
  23831. height: math.unit(10 + 11 / 12, "feet"),
  23832. default: true
  23833. },
  23834. ]
  23835. ))
  23836. characterMakers.push(() => makeCharacter(
  23837. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23838. {
  23839. front: {
  23840. height: math.unit(5 + 8 / 12, "feet"),
  23841. weight: math.unit(140, "lb"),
  23842. name: "Front",
  23843. image: {
  23844. source: "./media/characters/khemri/front.svg",
  23845. extra: 4780 / 4059,
  23846. bottom: 80.1 / 4859.25
  23847. }
  23848. },
  23849. },
  23850. [
  23851. {
  23852. name: "Micro",
  23853. height: math.unit(6, "inches")
  23854. },
  23855. {
  23856. name: "Normal",
  23857. height: math.unit(5 + 8 / 12, "feet"),
  23858. default: true
  23859. },
  23860. ]
  23861. ))
  23862. characterMakers.push(() => makeCharacter(
  23863. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23864. {
  23865. front: {
  23866. height: math.unit(13, "feet"),
  23867. weight: math.unit(1700, "lb"),
  23868. name: "Front",
  23869. image: {
  23870. source: "./media/characters/felix-braveheart/front.svg",
  23871. extra: 1222 / 1157,
  23872. bottom: 53.2 / 1280
  23873. }
  23874. },
  23875. back: {
  23876. height: math.unit(13, "feet"),
  23877. weight: math.unit(1700, "lb"),
  23878. name: "Back",
  23879. image: {
  23880. source: "./media/characters/felix-braveheart/back.svg",
  23881. extra: 1277 / 1203,
  23882. bottom: 50.2 / 1327
  23883. }
  23884. },
  23885. feral: {
  23886. height: math.unit(6, "feet"),
  23887. weight: math.unit(400, "lb"),
  23888. name: "Feral",
  23889. image: {
  23890. source: "./media/characters/felix-braveheart/feral.svg",
  23891. extra: 682 / 625,
  23892. bottom: 6.9 / 688
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Normal",
  23899. height: math.unit(13, "feet"),
  23900. default: true
  23901. },
  23902. ]
  23903. ))
  23904. characterMakers.push(() => makeCharacter(
  23905. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23906. {
  23907. side: {
  23908. height: math.unit(5 + 11 / 12, "feet"),
  23909. weight: math.unit(1400, "lb"),
  23910. name: "Side",
  23911. image: {
  23912. source: "./media/characters/shadow-blade/side.svg",
  23913. extra: 1726 / 1267,
  23914. bottom: 58.4 / 1785
  23915. }
  23916. },
  23917. },
  23918. [
  23919. {
  23920. name: "Normal",
  23921. height: math.unit(5 + 11 / 12, "feet"),
  23922. default: true
  23923. },
  23924. ]
  23925. ))
  23926. characterMakers.push(() => makeCharacter(
  23927. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23928. {
  23929. front: {
  23930. height: math.unit(1 + 6 / 12, "feet"),
  23931. weight: math.unit(25, "lb"),
  23932. name: "Front",
  23933. image: {
  23934. source: "./media/characters/karla-halldor/front.svg",
  23935. extra: 1459 / 1383,
  23936. bottom: 12 / 1472
  23937. }
  23938. },
  23939. },
  23940. [
  23941. {
  23942. name: "Normal",
  23943. height: math.unit(1 + 6 / 12, "feet"),
  23944. default: true
  23945. },
  23946. ]
  23947. ))
  23948. characterMakers.push(() => makeCharacter(
  23949. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23950. {
  23951. front: {
  23952. height: math.unit(6 + 2 / 12, "feet"),
  23953. weight: math.unit(160, "lb"),
  23954. name: "Front",
  23955. image: {
  23956. source: "./media/characters/ariam/front.svg",
  23957. extra: 714 / 617,
  23958. bottom: 23.4 / 737,
  23959. }
  23960. },
  23961. squatting: {
  23962. height: math.unit(4.1, "feet"),
  23963. weight: math.unit(160, "lb"),
  23964. name: "Squatting",
  23965. image: {
  23966. source: "./media/characters/ariam/squatting.svg",
  23967. extra: 2617 / 2112,
  23968. bottom: 61.2 / 2681,
  23969. }
  23970. },
  23971. },
  23972. [
  23973. {
  23974. name: "Normal",
  23975. height: math.unit(6 + 2 / 12, "feet"),
  23976. default: true
  23977. },
  23978. {
  23979. name: "Normal+",
  23980. height: math.unit(4, "meters")
  23981. },
  23982. {
  23983. name: "Macro",
  23984. height: math.unit(50, "meters")
  23985. },
  23986. {
  23987. name: "Macro+",
  23988. height: math.unit(100, "meters")
  23989. },
  23990. {
  23991. name: "Megamacro",
  23992. height: math.unit(20, "km")
  23993. },
  23994. ]
  23995. ))
  23996. characterMakers.push(() => makeCharacter(
  23997. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23998. {
  23999. front: {
  24000. height: math.unit(1.67, "meters"),
  24001. weight: math.unit(140, "lb"),
  24002. name: "Front",
  24003. image: {
  24004. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24005. extra: 438 / 410,
  24006. bottom: 0.75 / 439
  24007. }
  24008. },
  24009. },
  24010. [
  24011. {
  24012. name: "Shrunken",
  24013. height: math.unit(7.6, "cm")
  24014. },
  24015. {
  24016. name: "Human Scale",
  24017. height: math.unit(1.67, "meters")
  24018. },
  24019. {
  24020. name: "Wolxi Scale",
  24021. height: math.unit(36.7, "meters"),
  24022. default: true
  24023. },
  24024. ]
  24025. ))
  24026. characterMakers.push(() => makeCharacter(
  24027. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24028. {
  24029. front: {
  24030. height: math.unit(1.73, "meters"),
  24031. weight: math.unit(240, "lb"),
  24032. name: "Front",
  24033. image: {
  24034. source: "./media/characters/izue-two-mothers/front.svg",
  24035. extra: 469 / 437,
  24036. bottom: 1.24 / 470.6
  24037. }
  24038. },
  24039. },
  24040. [
  24041. {
  24042. name: "Shrunken",
  24043. height: math.unit(7.86, "cm")
  24044. },
  24045. {
  24046. name: "Human Scale",
  24047. height: math.unit(1.73, "meters")
  24048. },
  24049. {
  24050. name: "Wolxi Scale",
  24051. height: math.unit(38, "meters"),
  24052. default: true
  24053. },
  24054. ]
  24055. ))
  24056. characterMakers.push(() => makeCharacter(
  24057. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24058. {
  24059. front: {
  24060. height: math.unit(1.55, "meters"),
  24061. weight: math.unit(120, "lb"),
  24062. name: "Front",
  24063. image: {
  24064. source: "./media/characters/teeku-love-shack/front.svg",
  24065. extra: 387 / 362,
  24066. bottom: 1.51 / 388
  24067. }
  24068. },
  24069. },
  24070. [
  24071. {
  24072. name: "Shrunken",
  24073. height: math.unit(7, "cm")
  24074. },
  24075. {
  24076. name: "Human Scale",
  24077. height: math.unit(1.55, "meters")
  24078. },
  24079. {
  24080. name: "Wolxi Scale",
  24081. height: math.unit(34.1, "meters"),
  24082. default: true
  24083. },
  24084. ]
  24085. ))
  24086. characterMakers.push(() => makeCharacter(
  24087. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24088. {
  24089. front: {
  24090. height: math.unit(1.83, "meters"),
  24091. weight: math.unit(135, "lb"),
  24092. name: "Front",
  24093. image: {
  24094. source: "./media/characters/dejma-the-red/front.svg",
  24095. extra: 480 / 458,
  24096. bottom: 1.8 / 482
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Shrunken",
  24103. height: math.unit(8.3, "cm")
  24104. },
  24105. {
  24106. name: "Human Scale",
  24107. height: math.unit(1.83, "meters")
  24108. },
  24109. {
  24110. name: "Wolxi Scale",
  24111. height: math.unit(40, "meters"),
  24112. default: true
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24118. {
  24119. front: {
  24120. height: math.unit(1.78, "meters"),
  24121. weight: math.unit(65, "kg"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/aki/front.svg",
  24125. extra: 452 / 415
  24126. }
  24127. },
  24128. frontNsfw: {
  24129. height: math.unit(1.78, "meters"),
  24130. weight: math.unit(65, "kg"),
  24131. name: "Front (NSFW)",
  24132. image: {
  24133. source: "./media/characters/aki/front-nsfw.svg",
  24134. extra: 452 / 415
  24135. }
  24136. },
  24137. back: {
  24138. height: math.unit(1.78, "meters"),
  24139. weight: math.unit(65, "kg"),
  24140. name: "Back",
  24141. image: {
  24142. source: "./media/characters/aki/back.svg",
  24143. extra: 452 / 415
  24144. }
  24145. },
  24146. rump: {
  24147. height: math.unit(2.05, "feet"),
  24148. name: "Rump",
  24149. image: {
  24150. source: "./media/characters/aki/rump.svg"
  24151. }
  24152. },
  24153. dick: {
  24154. height: math.unit(0.95, "feet"),
  24155. name: "Dick",
  24156. image: {
  24157. source: "./media/characters/aki/dick.svg"
  24158. }
  24159. },
  24160. },
  24161. [
  24162. {
  24163. name: "Micro",
  24164. height: math.unit(15, "cm")
  24165. },
  24166. {
  24167. name: "Normal",
  24168. height: math.unit(178, "cm"),
  24169. default: true
  24170. },
  24171. {
  24172. name: "Macro",
  24173. height: math.unit(214, "m")
  24174. },
  24175. {
  24176. name: "Macro+",
  24177. height: math.unit(534, "m")
  24178. },
  24179. ]
  24180. ))
  24181. characterMakers.push(() => makeCharacter(
  24182. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24183. {
  24184. front: {
  24185. height: math.unit(5 + 5 / 12, "feet"),
  24186. weight: math.unit(120, "lb"),
  24187. name: "Front",
  24188. image: {
  24189. source: "./media/characters/ari/front.svg",
  24190. extra: 714.5 / 682,
  24191. bottom: 8 / 722.5
  24192. }
  24193. },
  24194. },
  24195. [
  24196. {
  24197. name: "Normal",
  24198. height: math.unit(5 + 5 / 12, "feet")
  24199. },
  24200. {
  24201. name: "Macro",
  24202. height: math.unit(100, "feet"),
  24203. default: true
  24204. },
  24205. {
  24206. name: "Megamacro",
  24207. height: math.unit(100, "miles")
  24208. },
  24209. {
  24210. name: "Gigamacro",
  24211. height: math.unit(80000, "miles")
  24212. },
  24213. ]
  24214. ))
  24215. characterMakers.push(() => makeCharacter(
  24216. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24217. {
  24218. side: {
  24219. height: math.unit(9, "feet"),
  24220. weight: math.unit(400, "kg"),
  24221. name: "Side",
  24222. image: {
  24223. source: "./media/characters/bolt/side.svg",
  24224. extra: 1126 / 896,
  24225. bottom: 60 / 1187.3,
  24226. }
  24227. },
  24228. },
  24229. [
  24230. {
  24231. name: "Micro",
  24232. height: math.unit(5, "inches")
  24233. },
  24234. {
  24235. name: "Normal",
  24236. height: math.unit(9, "feet"),
  24237. default: true
  24238. },
  24239. {
  24240. name: "Macro",
  24241. height: math.unit(700, "feet")
  24242. },
  24243. {
  24244. name: "Max Size",
  24245. height: math.unit(1.52e22, "yottameters")
  24246. },
  24247. ]
  24248. ))
  24249. characterMakers.push(() => makeCharacter(
  24250. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24251. {
  24252. front: {
  24253. height: math.unit(4.53, "meters"),
  24254. weight: math.unit(3, "tons"),
  24255. name: "Front",
  24256. image: {
  24257. source: "./media/characters/draekon-sylviar/front.svg",
  24258. extra: 1228 / 1068,
  24259. bottom: 41 / 1270
  24260. }
  24261. },
  24262. tail: {
  24263. height: math.unit(1.772, "meter"),
  24264. name: "Tail",
  24265. image: {
  24266. source: "./media/characters/draekon-sylviar/tail.svg"
  24267. }
  24268. },
  24269. head: {
  24270. height: math.unit(1.331, "meter"),
  24271. name: "Head",
  24272. image: {
  24273. source: "./media/characters/draekon-sylviar/head.svg"
  24274. }
  24275. },
  24276. hand: {
  24277. height: math.unit(0.564, "meter"),
  24278. name: "Hand",
  24279. image: {
  24280. source: "./media/characters/draekon-sylviar/hand.svg"
  24281. }
  24282. },
  24283. foot: {
  24284. height: math.unit(0.621, "meter"),
  24285. name: "Foot",
  24286. image: {
  24287. source: "./media/characters/draekon-sylviar/foot.svg",
  24288. bottom: 32 / 324
  24289. }
  24290. },
  24291. dick: {
  24292. height: math.unit(61, "cm"),
  24293. name: "Dick",
  24294. image: {
  24295. source: "./media/characters/draekon-sylviar/dick.svg"
  24296. }
  24297. },
  24298. dickseparated: {
  24299. height: math.unit(61, "cm"),
  24300. name: "Dick-separated",
  24301. image: {
  24302. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24303. }
  24304. },
  24305. },
  24306. [
  24307. {
  24308. name: "Small",
  24309. height: math.unit(4.53 / 2, "meters"),
  24310. default: true
  24311. },
  24312. {
  24313. name: "Normal",
  24314. height: math.unit(4.53, "meters"),
  24315. default: true
  24316. },
  24317. {
  24318. name: "Large",
  24319. height: math.unit(4.53 * 2, "meters"),
  24320. },
  24321. ]
  24322. ))
  24323. characterMakers.push(() => makeCharacter(
  24324. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24325. {
  24326. front: {
  24327. height: math.unit(6 + 2 / 12, "feet"),
  24328. weight: math.unit(180, "lb"),
  24329. name: "Front",
  24330. image: {
  24331. source: "./media/characters/brawler/front.svg",
  24332. extra: 3301 / 3027,
  24333. bottom: 138 / 3439
  24334. }
  24335. },
  24336. },
  24337. [
  24338. {
  24339. name: "Normal",
  24340. height: math.unit(6 + 2 / 12, "feet"),
  24341. default: true
  24342. },
  24343. ]
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24347. {
  24348. front: {
  24349. height: math.unit(11, "feet"),
  24350. weight: math.unit(1000, "lb"),
  24351. name: "Front",
  24352. image: {
  24353. source: "./media/characters/alex/front.svg",
  24354. bottom: 44.5 / 620
  24355. }
  24356. },
  24357. },
  24358. [
  24359. {
  24360. name: "Micro",
  24361. height: math.unit(5, "inches")
  24362. },
  24363. {
  24364. name: "Normal",
  24365. height: math.unit(11, "feet"),
  24366. default: true
  24367. },
  24368. {
  24369. name: "Macro",
  24370. height: math.unit(9.5e9, "feet")
  24371. },
  24372. {
  24373. name: "Max Size",
  24374. height: math.unit(1.4e283, "yottameters")
  24375. },
  24376. ]
  24377. ))
  24378. characterMakers.push(() => makeCharacter(
  24379. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24380. {
  24381. female: {
  24382. height: math.unit(29.9, "m"),
  24383. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24384. name: "Female",
  24385. image: {
  24386. source: "./media/characters/zenari/female.svg",
  24387. extra: 3281.6 / 3217,
  24388. bottom: 72.2 / 3353
  24389. }
  24390. },
  24391. male: {
  24392. height: math.unit(27.7, "m"),
  24393. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24394. name: "Male",
  24395. image: {
  24396. source: "./media/characters/zenari/male.svg",
  24397. extra: 3008 / 2991,
  24398. bottom: 54.6 / 3069
  24399. }
  24400. },
  24401. },
  24402. [
  24403. {
  24404. name: "Macro",
  24405. height: math.unit(29.7, "meters"),
  24406. default: true
  24407. },
  24408. ]
  24409. ))
  24410. characterMakers.push(() => makeCharacter(
  24411. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24412. {
  24413. female: {
  24414. height: math.unit(23.8, "m"),
  24415. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24416. name: "Female",
  24417. image: {
  24418. source: "./media/characters/mactarian/female.svg",
  24419. extra: 2662 / 2569,
  24420. bottom: 73 / 2736
  24421. }
  24422. },
  24423. male: {
  24424. height: math.unit(23.8, "m"),
  24425. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24426. name: "Male",
  24427. image: {
  24428. source: "./media/characters/mactarian/male.svg",
  24429. extra: 2673 / 2600,
  24430. bottom: 76 / 2750
  24431. }
  24432. },
  24433. },
  24434. [
  24435. {
  24436. name: "Macro",
  24437. height: math.unit(23.8, "meters"),
  24438. default: true
  24439. },
  24440. ]
  24441. ))
  24442. characterMakers.push(() => makeCharacter(
  24443. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24444. {
  24445. female: {
  24446. height: math.unit(19.3, "m"),
  24447. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24448. name: "Female",
  24449. image: {
  24450. source: "./media/characters/umok/female.svg",
  24451. extra: 2186 / 2078,
  24452. bottom: 87 / 2277
  24453. }
  24454. },
  24455. male: {
  24456. height: math.unit(19.5, "m"),
  24457. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24458. name: "Male",
  24459. image: {
  24460. source: "./media/characters/umok/male.svg",
  24461. extra: 2233 / 2140,
  24462. bottom: 24.4 / 2258
  24463. }
  24464. },
  24465. },
  24466. [
  24467. {
  24468. name: "Macro",
  24469. height: math.unit(19.3, "meters"),
  24470. default: true
  24471. },
  24472. ]
  24473. ))
  24474. characterMakers.push(() => makeCharacter(
  24475. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24476. {
  24477. female: {
  24478. height: math.unit(26.15, "m"),
  24479. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24480. name: "Female",
  24481. image: {
  24482. source: "./media/characters/joraxian/female.svg",
  24483. extra: 2912 / 2824,
  24484. bottom: 36 / 2956
  24485. }
  24486. },
  24487. male: {
  24488. height: math.unit(25.4, "m"),
  24489. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24490. name: "Male",
  24491. image: {
  24492. source: "./media/characters/joraxian/male.svg",
  24493. extra: 2877 / 2721,
  24494. bottom: 82 / 2967
  24495. }
  24496. },
  24497. },
  24498. [
  24499. {
  24500. name: "Macro",
  24501. height: math.unit(26.15, "meters"),
  24502. default: true
  24503. },
  24504. ]
  24505. ))
  24506. characterMakers.push(() => makeCharacter(
  24507. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24508. {
  24509. female: {
  24510. height: math.unit(21.6, "m"),
  24511. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24512. name: "Female",
  24513. image: {
  24514. source: "./media/characters/sthara/female.svg",
  24515. extra: 2516 / 2347,
  24516. bottom: 21.5 / 2537
  24517. }
  24518. },
  24519. male: {
  24520. height: math.unit(24, "m"),
  24521. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24522. name: "Male",
  24523. image: {
  24524. source: "./media/characters/sthara/male.svg",
  24525. extra: 2732 / 2607,
  24526. bottom: 23 / 2732
  24527. }
  24528. },
  24529. },
  24530. [
  24531. {
  24532. name: "Macro",
  24533. height: math.unit(21.6, "meters"),
  24534. default: true
  24535. },
  24536. ]
  24537. ))
  24538. characterMakers.push(() => makeCharacter(
  24539. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24540. {
  24541. front: {
  24542. height: math.unit(6 + 4 / 12, "feet"),
  24543. weight: math.unit(175, "lb"),
  24544. name: "Front",
  24545. image: {
  24546. source: "./media/characters/luka-bryzant/front.svg",
  24547. extra: 311 / 289,
  24548. bottom: 4 / 315
  24549. }
  24550. },
  24551. back: {
  24552. height: math.unit(6 + 4 / 12, "feet"),
  24553. weight: math.unit(175, "lb"),
  24554. name: "Back",
  24555. image: {
  24556. source: "./media/characters/luka-bryzant/back.svg",
  24557. extra: 311 / 289,
  24558. bottom: 3.8 / 313.7
  24559. }
  24560. },
  24561. },
  24562. [
  24563. {
  24564. name: "Micro",
  24565. height: math.unit(10, "inches")
  24566. },
  24567. {
  24568. name: "Normal",
  24569. height: math.unit(6 + 4 / 12, "feet"),
  24570. default: true
  24571. },
  24572. {
  24573. name: "Large",
  24574. height: math.unit(12, "feet")
  24575. },
  24576. ]
  24577. ))
  24578. characterMakers.push(() => makeCharacter(
  24579. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24580. {
  24581. front: {
  24582. height: math.unit(5 + 7 / 12, "feet"),
  24583. weight: math.unit(185, "lb"),
  24584. name: "Front",
  24585. image: {
  24586. source: "./media/characters/aman-aquila/front.svg",
  24587. extra: 1013 / 976,
  24588. bottom: 45.6 / 1057
  24589. }
  24590. },
  24591. side: {
  24592. height: math.unit(5 + 7 / 12, "feet"),
  24593. weight: math.unit(185, "lb"),
  24594. name: "Side",
  24595. image: {
  24596. source: "./media/characters/aman-aquila/side.svg",
  24597. extra: 1054 / 1011,
  24598. bottom: 15 / 1070
  24599. }
  24600. },
  24601. back: {
  24602. height: math.unit(5 + 7 / 12, "feet"),
  24603. weight: math.unit(185, "lb"),
  24604. name: "Back",
  24605. image: {
  24606. source: "./media/characters/aman-aquila/back.svg",
  24607. extra: 1026 / 970,
  24608. bottom: 12 / 1039
  24609. }
  24610. },
  24611. head: {
  24612. height: math.unit(1.211, "feet"),
  24613. name: "Head",
  24614. image: {
  24615. source: "./media/characters/aman-aquila/head.svg",
  24616. }
  24617. },
  24618. },
  24619. [
  24620. {
  24621. name: "Minimicro",
  24622. height: math.unit(0.057, "inches")
  24623. },
  24624. {
  24625. name: "Micro",
  24626. height: math.unit(7, "inches")
  24627. },
  24628. {
  24629. name: "Mini",
  24630. height: math.unit(3 + 7 / 12, "feet")
  24631. },
  24632. {
  24633. name: "Normal",
  24634. height: math.unit(5 + 7 / 12, "feet"),
  24635. default: true
  24636. },
  24637. {
  24638. name: "Macro",
  24639. height: math.unit(157 + 7 / 12, "feet")
  24640. },
  24641. {
  24642. name: "Megamacro",
  24643. height: math.unit(1557 + 7 / 12, "feet")
  24644. },
  24645. {
  24646. name: "Gigamacro",
  24647. height: math.unit(15557 + 7 / 12, "feet")
  24648. },
  24649. ]
  24650. ))
  24651. characterMakers.push(() => makeCharacter(
  24652. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24653. {
  24654. front: {
  24655. height: math.unit(3 + 2 / 12, "inches"),
  24656. weight: math.unit(0.3, "ounces"),
  24657. name: "Front",
  24658. image: {
  24659. source: "./media/characters/hiphae/front.svg",
  24660. extra: 1931 / 1683,
  24661. bottom: 24 / 1955
  24662. }
  24663. },
  24664. },
  24665. [
  24666. {
  24667. name: "Normal",
  24668. height: math.unit(3 + 1 / 2, "inches"),
  24669. default: true
  24670. },
  24671. ]
  24672. ))
  24673. characterMakers.push(() => makeCharacter(
  24674. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24675. {
  24676. front: {
  24677. height: math.unit(5 + 10 / 12, "feet"),
  24678. weight: math.unit(165, "lb"),
  24679. name: "Front",
  24680. image: {
  24681. source: "./media/characters/nicky/front.svg",
  24682. extra: 3144 / 2886,
  24683. bottom: 45.6 / 3192
  24684. }
  24685. },
  24686. back: {
  24687. height: math.unit(5 + 10 / 12, "feet"),
  24688. weight: math.unit(165, "lb"),
  24689. name: "Back",
  24690. image: {
  24691. source: "./media/characters/nicky/back.svg",
  24692. extra: 3055 / 2804,
  24693. bottom: 28.4 / 3087
  24694. }
  24695. },
  24696. frontclothed: {
  24697. height: math.unit(5 + 10 / 12, "feet"),
  24698. weight: math.unit(165, "lb"),
  24699. name: "Front-clothed",
  24700. image: {
  24701. source: "./media/characters/nicky/front-clothed.svg",
  24702. extra: 3184.9 / 2926.9,
  24703. bottom: 86.5 / 3239.9
  24704. }
  24705. },
  24706. foot: {
  24707. height: math.unit(1.16, "feet"),
  24708. name: "Foot",
  24709. image: {
  24710. source: "./media/characters/nicky/foot.svg"
  24711. }
  24712. },
  24713. feet: {
  24714. height: math.unit(1.34, "feet"),
  24715. name: "Feet",
  24716. image: {
  24717. source: "./media/characters/nicky/feet.svg"
  24718. }
  24719. },
  24720. maw: {
  24721. height: math.unit(0.9, "feet"),
  24722. name: "Maw",
  24723. image: {
  24724. source: "./media/characters/nicky/maw.svg"
  24725. }
  24726. },
  24727. },
  24728. [
  24729. {
  24730. name: "Normal",
  24731. height: math.unit(5 + 10 / 12, "feet"),
  24732. default: true
  24733. },
  24734. {
  24735. name: "Macro",
  24736. height: math.unit(60, "feet")
  24737. },
  24738. {
  24739. name: "Megamacro",
  24740. height: math.unit(1, "mile")
  24741. },
  24742. ]
  24743. ))
  24744. characterMakers.push(() => makeCharacter(
  24745. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24746. {
  24747. side: {
  24748. height: math.unit(10, "feet"),
  24749. weight: math.unit(600, "lb"),
  24750. name: "Side",
  24751. image: {
  24752. source: "./media/characters/blair/side.svg",
  24753. bottom: 16.6 / 475,
  24754. extra: 458 / 431
  24755. }
  24756. },
  24757. },
  24758. [
  24759. {
  24760. name: "Micro",
  24761. height: math.unit(8, "inches")
  24762. },
  24763. {
  24764. name: "Normal",
  24765. height: math.unit(10, "feet"),
  24766. default: true
  24767. },
  24768. {
  24769. name: "Macro",
  24770. height: math.unit(180, "feet")
  24771. },
  24772. ]
  24773. ))
  24774. characterMakers.push(() => makeCharacter(
  24775. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24776. {
  24777. front: {
  24778. height: math.unit(5 + 4 / 12, "feet"),
  24779. weight: math.unit(125, "lb"),
  24780. name: "Front",
  24781. image: {
  24782. source: "./media/characters/fisher/front.svg",
  24783. extra: 444 / 390,
  24784. bottom: 2 / 444.8
  24785. }
  24786. },
  24787. },
  24788. [
  24789. {
  24790. name: "Micro",
  24791. height: math.unit(4, "inches")
  24792. },
  24793. {
  24794. name: "Normal",
  24795. height: math.unit(5 + 4 / 12, "feet"),
  24796. default: true
  24797. },
  24798. {
  24799. name: "Macro",
  24800. height: math.unit(100, "feet")
  24801. },
  24802. ]
  24803. ))
  24804. characterMakers.push(() => makeCharacter(
  24805. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24806. {
  24807. front: {
  24808. height: math.unit(6.71, "feet"),
  24809. weight: math.unit(200, "lb"),
  24810. capacity: math.unit(1000000, "people"),
  24811. name: "Front",
  24812. image: {
  24813. source: "./media/characters/gliss/front.svg",
  24814. extra: 2347 / 2231,
  24815. bottom: 113 / 2462
  24816. }
  24817. },
  24818. hammerspaceSize: {
  24819. height: math.unit(6.71 * 717, "feet"),
  24820. weight: math.unit(200, "lb"),
  24821. capacity: math.unit(1000000, "people"),
  24822. name: "Hammerspace Size",
  24823. image: {
  24824. source: "./media/characters/gliss/front.svg",
  24825. extra: 2347 / 2231,
  24826. bottom: 113 / 2462
  24827. }
  24828. },
  24829. },
  24830. [
  24831. {
  24832. name: "Normal",
  24833. height: math.unit(6.71, "feet"),
  24834. default: true
  24835. },
  24836. ]
  24837. ))
  24838. characterMakers.push(() => makeCharacter(
  24839. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24840. {
  24841. side: {
  24842. height: math.unit(1.44, "m"),
  24843. weight: math.unit(80, "kg"),
  24844. name: "Side",
  24845. image: {
  24846. source: "./media/characters/dune-anderson/side.svg",
  24847. bottom: 49 / 1426
  24848. }
  24849. },
  24850. },
  24851. [
  24852. {
  24853. name: "Wolf-sized",
  24854. height: math.unit(1.44, "meters")
  24855. },
  24856. {
  24857. name: "Normal",
  24858. height: math.unit(5.05, "meters"),
  24859. default: true
  24860. },
  24861. {
  24862. name: "Big",
  24863. height: math.unit(14.4, "meters")
  24864. },
  24865. {
  24866. name: "Huge",
  24867. height: math.unit(144, "meters")
  24868. },
  24869. ]
  24870. ))
  24871. characterMakers.push(() => makeCharacter(
  24872. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24873. {
  24874. front: {
  24875. height: math.unit(7, "feet"),
  24876. weight: math.unit(425, "lb"),
  24877. name: "Front",
  24878. image: {
  24879. source: "./media/characters/hind/front.svg",
  24880. extra: 2091 / 1860,
  24881. bottom: 129 / 2220
  24882. }
  24883. },
  24884. back: {
  24885. height: math.unit(7, "feet"),
  24886. weight: math.unit(425, "lb"),
  24887. name: "Back",
  24888. image: {
  24889. source: "./media/characters/hind/back.svg",
  24890. extra: 2091 / 1860,
  24891. bottom: 24.6 / 2309
  24892. }
  24893. },
  24894. tail: {
  24895. height: math.unit(2.8, "feet"),
  24896. name: "Tail",
  24897. image: {
  24898. source: "./media/characters/hind/tail.svg"
  24899. }
  24900. },
  24901. head: {
  24902. height: math.unit(2.55, "feet"),
  24903. name: "Head",
  24904. image: {
  24905. source: "./media/characters/hind/head.svg"
  24906. }
  24907. },
  24908. },
  24909. [
  24910. {
  24911. name: "XS",
  24912. height: math.unit(0.7, "feet")
  24913. },
  24914. {
  24915. name: "Normal",
  24916. height: math.unit(7, "feet"),
  24917. default: true
  24918. },
  24919. {
  24920. name: "XL",
  24921. height: math.unit(70, "feet")
  24922. },
  24923. ]
  24924. ))
  24925. characterMakers.push(() => makeCharacter(
  24926. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24927. {
  24928. front: {
  24929. height: math.unit(2.1, "meters"),
  24930. weight: math.unit(150, "lb"),
  24931. name: "Front",
  24932. image: {
  24933. source: "./media/characters/tharquench-sizestealer/front.svg",
  24934. extra: 1605/1470,
  24935. bottom: 36/1641
  24936. }
  24937. },
  24938. frontAlt: {
  24939. height: math.unit(2.1, "meters"),
  24940. weight: math.unit(150, "lb"),
  24941. name: "Front (Alt)",
  24942. image: {
  24943. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  24944. extra: 2318 / 2063,
  24945. bottom: 93.4 / 2410
  24946. }
  24947. },
  24948. },
  24949. [
  24950. {
  24951. name: "Nano",
  24952. height: math.unit(1, "mm")
  24953. },
  24954. {
  24955. name: "Micro",
  24956. height: math.unit(1, "cm")
  24957. },
  24958. {
  24959. name: "Normal",
  24960. height: math.unit(2.1, "meters"),
  24961. default: true
  24962. },
  24963. ]
  24964. ))
  24965. characterMakers.push(() => makeCharacter(
  24966. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24967. {
  24968. front: {
  24969. height: math.unit(7 + 5 / 12, "feet"),
  24970. weight: math.unit(357, "lb"),
  24971. name: "Front",
  24972. image: {
  24973. source: "./media/characters/solex-draconov/front.svg",
  24974. extra: 1993 / 1865,
  24975. bottom: 117 / 2111
  24976. }
  24977. },
  24978. },
  24979. [
  24980. {
  24981. name: "Natural Height",
  24982. height: math.unit(7 + 5 / 12, "feet"),
  24983. default: true
  24984. },
  24985. {
  24986. name: "Macro",
  24987. height: math.unit(350, "feet")
  24988. },
  24989. {
  24990. name: "Macro+",
  24991. height: math.unit(1000, "feet")
  24992. },
  24993. {
  24994. name: "Megamacro",
  24995. height: math.unit(20, "km")
  24996. },
  24997. {
  24998. name: "Megamacro+",
  24999. height: math.unit(1000, "km")
  25000. },
  25001. {
  25002. name: "Gigamacro",
  25003. height: math.unit(2.5, "Gm")
  25004. },
  25005. {
  25006. name: "Teramacro",
  25007. height: math.unit(15, "Tm")
  25008. },
  25009. {
  25010. name: "Galactic",
  25011. height: math.unit(30, "Zm")
  25012. },
  25013. {
  25014. name: "Universal",
  25015. height: math.unit(21000, "Ym")
  25016. },
  25017. {
  25018. name: "Omniversal",
  25019. height: math.unit(9.861e50, "Ym")
  25020. },
  25021. {
  25022. name: "Existential",
  25023. height: math.unit(1e300, "meters")
  25024. },
  25025. ]
  25026. ))
  25027. characterMakers.push(() => makeCharacter(
  25028. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25029. {
  25030. side: {
  25031. height: math.unit(25, "feet"),
  25032. weight: math.unit(90000, "lb"),
  25033. name: "Side",
  25034. image: {
  25035. source: "./media/characters/mandarax/side.svg",
  25036. extra: 614 / 332,
  25037. bottom: 55 / 630
  25038. }
  25039. },
  25040. head: {
  25041. height: math.unit(11.4, "feet"),
  25042. name: "Head",
  25043. image: {
  25044. source: "./media/characters/mandarax/head.svg"
  25045. }
  25046. },
  25047. belly: {
  25048. height: math.unit(33, "feet"),
  25049. name: "Belly",
  25050. capacity: math.unit(500, "people"),
  25051. image: {
  25052. source: "./media/characters/mandarax/belly.svg"
  25053. }
  25054. },
  25055. dick: {
  25056. height: math.unit(8.46, "feet"),
  25057. name: "Dick",
  25058. image: {
  25059. source: "./media/characters/mandarax/dick.svg"
  25060. }
  25061. },
  25062. top: {
  25063. height: math.unit(28, "meters"),
  25064. name: "Top",
  25065. image: {
  25066. source: "./media/characters/mandarax/top.svg"
  25067. }
  25068. },
  25069. },
  25070. [
  25071. {
  25072. name: "Normal",
  25073. height: math.unit(25, "feet"),
  25074. default: true
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25080. {
  25081. front: {
  25082. height: math.unit(5, "feet"),
  25083. weight: math.unit(90, "lb"),
  25084. name: "Front",
  25085. image: {
  25086. source: "./media/characters/pixil/front.svg",
  25087. extra: 2000 / 1618,
  25088. bottom: 12.3 / 2011
  25089. }
  25090. },
  25091. },
  25092. [
  25093. {
  25094. name: "Normal",
  25095. height: math.unit(5, "feet"),
  25096. default: true
  25097. },
  25098. {
  25099. name: "Megamacro",
  25100. height: math.unit(10, "miles"),
  25101. },
  25102. ]
  25103. ))
  25104. characterMakers.push(() => makeCharacter(
  25105. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25106. {
  25107. front: {
  25108. height: math.unit(7 + 2 / 12, "feet"),
  25109. weight: math.unit(200, "lb"),
  25110. name: "Front",
  25111. image: {
  25112. source: "./media/characters/angel/front.svg",
  25113. extra: 1830 / 1737,
  25114. bottom: 22.6 / 1854,
  25115. }
  25116. },
  25117. },
  25118. [
  25119. {
  25120. name: "Normal",
  25121. height: math.unit(7 + 2 / 12, "feet"),
  25122. default: true
  25123. },
  25124. {
  25125. name: "Macro",
  25126. height: math.unit(1000, "feet")
  25127. },
  25128. {
  25129. name: "Megamacro",
  25130. height: math.unit(2, "miles")
  25131. },
  25132. {
  25133. name: "Gigamacro",
  25134. height: math.unit(20, "earths")
  25135. },
  25136. ]
  25137. ))
  25138. characterMakers.push(() => makeCharacter(
  25139. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25140. {
  25141. front: {
  25142. height: math.unit(5, "feet"),
  25143. weight: math.unit(180, "lb"),
  25144. name: "Front",
  25145. image: {
  25146. source: "./media/characters/mekana/front.svg",
  25147. extra: 1671 / 1605,
  25148. bottom: 3.5 / 1691
  25149. }
  25150. },
  25151. side: {
  25152. height: math.unit(5, "feet"),
  25153. weight: math.unit(180, "lb"),
  25154. name: "Side",
  25155. image: {
  25156. source: "./media/characters/mekana/side.svg",
  25157. extra: 1671 / 1605,
  25158. bottom: 3.5 / 1691
  25159. }
  25160. },
  25161. back: {
  25162. height: math.unit(5, "feet"),
  25163. weight: math.unit(180, "lb"),
  25164. name: "Back",
  25165. image: {
  25166. source: "./media/characters/mekana/back.svg",
  25167. extra: 1671 / 1605,
  25168. bottom: 3.5 / 1691
  25169. }
  25170. },
  25171. },
  25172. [
  25173. {
  25174. name: "Normal",
  25175. height: math.unit(5, "feet"),
  25176. default: true
  25177. },
  25178. ]
  25179. ))
  25180. characterMakers.push(() => makeCharacter(
  25181. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25182. {
  25183. front: {
  25184. height: math.unit(4 + 6 / 12, "feet"),
  25185. weight: math.unit(80, "lb"),
  25186. name: "Front",
  25187. image: {
  25188. source: "./media/characters/pixie/front.svg",
  25189. extra: 1924 / 1825,
  25190. bottom: 22.4 / 1946
  25191. }
  25192. },
  25193. },
  25194. [
  25195. {
  25196. name: "Normal",
  25197. height: math.unit(4 + 6 / 12, "feet"),
  25198. default: true
  25199. },
  25200. {
  25201. name: "Macro",
  25202. height: math.unit(40, "feet")
  25203. },
  25204. ]
  25205. ))
  25206. characterMakers.push(() => makeCharacter(
  25207. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25208. {
  25209. front: {
  25210. height: math.unit(2.1, "meters"),
  25211. weight: math.unit(200, "lb"),
  25212. name: "Front",
  25213. image: {
  25214. source: "./media/characters/the-lascivious/front.svg",
  25215. extra: 1 / 0.893,
  25216. bottom: 3.5 / 573.7
  25217. }
  25218. },
  25219. },
  25220. [
  25221. {
  25222. name: "Human Scale",
  25223. height: math.unit(2.1, "meters")
  25224. },
  25225. {
  25226. name: "Wolxi Scale",
  25227. height: math.unit(46.2, "m"),
  25228. default: true
  25229. },
  25230. {
  25231. name: "Boinker of Buildings",
  25232. height: math.unit(10, "km")
  25233. },
  25234. {
  25235. name: "Shagger of Skyscrapers",
  25236. height: math.unit(40, "km")
  25237. },
  25238. {
  25239. name: "Banger of Boroughs",
  25240. height: math.unit(4000, "km")
  25241. },
  25242. {
  25243. name: "Screwer of States",
  25244. height: math.unit(100000, "km")
  25245. },
  25246. {
  25247. name: "Pounder of Planets",
  25248. height: math.unit(2000000, "km")
  25249. },
  25250. ]
  25251. ))
  25252. characterMakers.push(() => makeCharacter(
  25253. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25254. {
  25255. front: {
  25256. height: math.unit(6, "feet"),
  25257. weight: math.unit(150, "lb"),
  25258. name: "Front",
  25259. image: {
  25260. source: "./media/characters/aj/front.svg",
  25261. extra: 2039 / 1562,
  25262. bottom: 40 / 2079
  25263. }
  25264. },
  25265. },
  25266. [
  25267. {
  25268. name: "Normal",
  25269. height: math.unit(11 + 6 / 12, "feet"),
  25270. default: true
  25271. },
  25272. {
  25273. name: "Megamacro",
  25274. height: math.unit(60, "megameters")
  25275. },
  25276. ]
  25277. ))
  25278. characterMakers.push(() => makeCharacter(
  25279. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25280. {
  25281. side: {
  25282. height: math.unit(31 + 8 / 12, "feet"),
  25283. weight: math.unit(75000, "kg"),
  25284. name: "Side",
  25285. image: {
  25286. source: "./media/characters/koros/side.svg",
  25287. extra: 1442 / 1297,
  25288. bottom: 122.7 / 1562
  25289. }
  25290. },
  25291. dicksKingsCrown: {
  25292. height: math.unit(6, "feet"),
  25293. name: "Dicks (King's Crown)",
  25294. image: {
  25295. source: "./media/characters/koros/dicks-kings-crown.svg"
  25296. }
  25297. },
  25298. dicksTailSet: {
  25299. height: math.unit(3, "feet"),
  25300. name: "Dicks (Tail Set)",
  25301. image: {
  25302. source: "./media/characters/koros/dicks-tail-set.svg"
  25303. }
  25304. },
  25305. dickCumming: {
  25306. height: math.unit(7.98, "feet"),
  25307. name: "Dick (Cumming)",
  25308. image: {
  25309. source: "./media/characters/koros/dick-cumming.svg"
  25310. }
  25311. },
  25312. dicksBack: {
  25313. height: math.unit(5.9, "feet"),
  25314. name: "Dicks (Back)",
  25315. image: {
  25316. source: "./media/characters/koros/dicks-back.svg"
  25317. }
  25318. },
  25319. dicksFront: {
  25320. height: math.unit(3.72, "feet"),
  25321. name: "Dicks (Front)",
  25322. image: {
  25323. source: "./media/characters/koros/dicks-front.svg"
  25324. }
  25325. },
  25326. dicksPeeking: {
  25327. height: math.unit(3.0, "feet"),
  25328. name: "Dicks (Peeking)",
  25329. image: {
  25330. source: "./media/characters/koros/dicks-peeking.svg"
  25331. }
  25332. },
  25333. eye: {
  25334. height: math.unit(1.7, "feet"),
  25335. name: "Eye",
  25336. image: {
  25337. source: "./media/characters/koros/eye.svg"
  25338. }
  25339. },
  25340. headFront: {
  25341. height: math.unit(11.69, "feet"),
  25342. name: "Head (Front)",
  25343. image: {
  25344. source: "./media/characters/koros/head-front.svg"
  25345. }
  25346. },
  25347. headSide: {
  25348. height: math.unit(14, "feet"),
  25349. name: "Head (Side)",
  25350. image: {
  25351. source: "./media/characters/koros/head-side.svg"
  25352. }
  25353. },
  25354. leg: {
  25355. height: math.unit(17, "feet"),
  25356. name: "Leg",
  25357. image: {
  25358. source: "./media/characters/koros/leg.svg"
  25359. }
  25360. },
  25361. mawSide: {
  25362. height: math.unit(12.8, "feet"),
  25363. name: "Maw (Side)",
  25364. image: {
  25365. source: "./media/characters/koros/maw-side.svg"
  25366. }
  25367. },
  25368. mawSpitting: {
  25369. height: math.unit(17, "feet"),
  25370. name: "Maw (Spitting)",
  25371. image: {
  25372. source: "./media/characters/koros/maw-spitting.svg"
  25373. }
  25374. },
  25375. slit: {
  25376. height: math.unit(2.8, "feet"),
  25377. name: "Slit",
  25378. image: {
  25379. source: "./media/characters/koros/slit.svg"
  25380. }
  25381. },
  25382. stomach: {
  25383. height: math.unit(6.8, "feet"),
  25384. capacity: math.unit(20, "people"),
  25385. name: "Stomach",
  25386. image: {
  25387. source: "./media/characters/koros/stomach.svg"
  25388. }
  25389. },
  25390. wingspanBottom: {
  25391. height: math.unit(114, "feet"),
  25392. name: "Wingspan (Bottom)",
  25393. image: {
  25394. source: "./media/characters/koros/wingspan-bottom.svg"
  25395. }
  25396. },
  25397. wingspanTop: {
  25398. height: math.unit(104, "feet"),
  25399. name: "Wingspan (Top)",
  25400. image: {
  25401. source: "./media/characters/koros/wingspan-top.svg"
  25402. }
  25403. },
  25404. },
  25405. [
  25406. {
  25407. name: "Normal",
  25408. height: math.unit(31 + 8 / 12, "feet"),
  25409. default: true
  25410. },
  25411. ]
  25412. ))
  25413. characterMakers.push(() => makeCharacter(
  25414. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25415. {
  25416. front: {
  25417. height: math.unit(18 + 5 / 12, "feet"),
  25418. weight: math.unit(3750, "kg"),
  25419. name: "Front",
  25420. image: {
  25421. source: "./media/characters/vexx/front.svg",
  25422. extra: 426 / 396,
  25423. bottom: 31.5 / 458
  25424. }
  25425. },
  25426. maw: {
  25427. height: math.unit(6, "feet"),
  25428. name: "Maw",
  25429. image: {
  25430. source: "./media/characters/vexx/maw.svg"
  25431. }
  25432. },
  25433. },
  25434. [
  25435. {
  25436. name: "Normal",
  25437. height: math.unit(18 + 5 / 12, "feet"),
  25438. default: true
  25439. },
  25440. ]
  25441. ))
  25442. characterMakers.push(() => makeCharacter(
  25443. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25444. {
  25445. front: {
  25446. height: math.unit(17 + 6 / 12, "feet"),
  25447. weight: math.unit(150, "lb"),
  25448. name: "Front",
  25449. image: {
  25450. source: "./media/characters/baadra/front.svg",
  25451. extra: 3137 / 2890,
  25452. bottom: 168.4 / 3305
  25453. }
  25454. },
  25455. back: {
  25456. height: math.unit(17 + 6 / 12, "feet"),
  25457. weight: math.unit(150, "lb"),
  25458. name: "Back",
  25459. image: {
  25460. source: "./media/characters/baadra/back.svg",
  25461. extra: 3142 / 2890,
  25462. bottom: 220 / 3371
  25463. }
  25464. },
  25465. head: {
  25466. height: math.unit(5.45, "feet"),
  25467. name: "Head",
  25468. image: {
  25469. source: "./media/characters/baadra/head.svg"
  25470. }
  25471. },
  25472. headAngry: {
  25473. height: math.unit(4.95, "feet"),
  25474. name: "Head (Angry)",
  25475. image: {
  25476. source: "./media/characters/baadra/head-angry.svg"
  25477. }
  25478. },
  25479. headOpen: {
  25480. height: math.unit(6, "feet"),
  25481. name: "Head (Open)",
  25482. image: {
  25483. source: "./media/characters/baadra/head-open.svg"
  25484. }
  25485. },
  25486. },
  25487. [
  25488. {
  25489. name: "Normal",
  25490. height: math.unit(17 + 6 / 12, "feet"),
  25491. default: true
  25492. },
  25493. ]
  25494. ))
  25495. characterMakers.push(() => makeCharacter(
  25496. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25497. {
  25498. front: {
  25499. height: math.unit(7 + 3 / 12, "feet"),
  25500. weight: math.unit(180, "lb"),
  25501. name: "Front",
  25502. image: {
  25503. source: "./media/characters/juri/front.svg",
  25504. extra: 1401 / 1237,
  25505. bottom: 18.5 / 1418
  25506. }
  25507. },
  25508. side: {
  25509. height: math.unit(7 + 3 / 12, "feet"),
  25510. weight: math.unit(180, "lb"),
  25511. name: "Side",
  25512. image: {
  25513. source: "./media/characters/juri/side.svg",
  25514. extra: 1424 / 1242,
  25515. bottom: 18.5 / 1447
  25516. }
  25517. },
  25518. sitting: {
  25519. height: math.unit(6, "feet"),
  25520. weight: math.unit(180, "lb"),
  25521. name: "Sitting",
  25522. image: {
  25523. source: "./media/characters/juri/sitting.svg",
  25524. extra: 1270 / 1143,
  25525. bottom: 100 / 1343
  25526. }
  25527. },
  25528. back: {
  25529. height: math.unit(7 + 3 / 12, "feet"),
  25530. weight: math.unit(180, "lb"),
  25531. name: "Back",
  25532. image: {
  25533. source: "./media/characters/juri/back.svg",
  25534. extra: 1377 / 1240,
  25535. bottom: 23.7 / 1405
  25536. }
  25537. },
  25538. maw: {
  25539. height: math.unit(2.8, "feet"),
  25540. name: "Maw",
  25541. image: {
  25542. source: "./media/characters/juri/maw.svg"
  25543. }
  25544. },
  25545. stomach: {
  25546. height: math.unit(0.89, "feet"),
  25547. capacity: math.unit(4, "liters"),
  25548. name: "Stomach",
  25549. image: {
  25550. source: "./media/characters/juri/stomach.svg"
  25551. }
  25552. },
  25553. },
  25554. [
  25555. {
  25556. name: "Normal",
  25557. height: math.unit(7 + 3 / 12, "feet"),
  25558. default: true
  25559. },
  25560. ]
  25561. ))
  25562. characterMakers.push(() => makeCharacter(
  25563. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25564. {
  25565. fox: {
  25566. height: math.unit(5 + 6 / 12, "feet"),
  25567. weight: math.unit(140, "lb"),
  25568. name: "Fox",
  25569. image: {
  25570. source: "./media/characters/maxene-sita/fox.svg",
  25571. extra: 146 / 138,
  25572. bottom: 2.1 / 148.19
  25573. }
  25574. },
  25575. foxLaying: {
  25576. height: math.unit(1.70, "feet"),
  25577. weight: math.unit(140, "lb"),
  25578. name: "Fox (Laying)",
  25579. image: {
  25580. source: "./media/characters/maxene-sita/fox-laying.svg",
  25581. extra: 910 / 572,
  25582. bottom: 71 / 981
  25583. }
  25584. },
  25585. kitsune: {
  25586. height: math.unit(10, "feet"),
  25587. weight: math.unit(800, "lb"),
  25588. name: "Kitsune",
  25589. image: {
  25590. source: "./media/characters/maxene-sita/kitsune.svg",
  25591. extra: 185 / 176,
  25592. bottom: 4.7 / 189.9
  25593. }
  25594. },
  25595. hellhound: {
  25596. height: math.unit(10, "feet"),
  25597. weight: math.unit(700, "lb"),
  25598. name: "Hellhound",
  25599. image: {
  25600. source: "./media/characters/maxene-sita/hellhound.svg",
  25601. extra: 1600 / 1545,
  25602. bottom: 81 / 1681
  25603. }
  25604. },
  25605. },
  25606. [
  25607. {
  25608. name: "Normal",
  25609. height: math.unit(5 + 6 / 12, "feet"),
  25610. default: true
  25611. },
  25612. ]
  25613. ))
  25614. characterMakers.push(() => makeCharacter(
  25615. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25616. {
  25617. front: {
  25618. height: math.unit(3 + 4 / 12, "feet"),
  25619. weight: math.unit(70, "lb"),
  25620. name: "Front",
  25621. image: {
  25622. source: "./media/characters/maia/front.svg",
  25623. extra: 227 / 219.5,
  25624. bottom: 40 / 267
  25625. }
  25626. },
  25627. back: {
  25628. height: math.unit(3 + 4 / 12, "feet"),
  25629. weight: math.unit(70, "lb"),
  25630. name: "Back",
  25631. image: {
  25632. source: "./media/characters/maia/back.svg",
  25633. extra: 237 / 225
  25634. }
  25635. },
  25636. },
  25637. [
  25638. {
  25639. name: "Normal",
  25640. height: math.unit(3 + 4 / 12, "feet"),
  25641. default: true
  25642. },
  25643. ]
  25644. ))
  25645. characterMakers.push(() => makeCharacter(
  25646. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25647. {
  25648. front: {
  25649. height: math.unit(5 + 10 / 12, "feet"),
  25650. weight: math.unit(197, "lb"),
  25651. name: "Front",
  25652. image: {
  25653. source: "./media/characters/jabaro/front.svg",
  25654. extra: 225 / 216,
  25655. bottom: 5.06 / 230
  25656. }
  25657. },
  25658. back: {
  25659. height: math.unit(5 + 10 / 12, "feet"),
  25660. weight: math.unit(197, "lb"),
  25661. name: "Back",
  25662. image: {
  25663. source: "./media/characters/jabaro/back.svg",
  25664. extra: 225 / 219,
  25665. bottom: 1.9 / 227
  25666. }
  25667. },
  25668. },
  25669. [
  25670. {
  25671. name: "Normal",
  25672. height: math.unit(5 + 10 / 12, "feet"),
  25673. default: true
  25674. },
  25675. ]
  25676. ))
  25677. characterMakers.push(() => makeCharacter(
  25678. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25679. {
  25680. front: {
  25681. height: math.unit(5 + 8 / 12, "feet"),
  25682. weight: math.unit(139, "lb"),
  25683. name: "Front",
  25684. image: {
  25685. source: "./media/characters/risa/front.svg",
  25686. extra: 270 / 260,
  25687. bottom: 11.2 / 282
  25688. }
  25689. },
  25690. back: {
  25691. height: math.unit(5 + 8 / 12, "feet"),
  25692. weight: math.unit(139, "lb"),
  25693. name: "Back",
  25694. image: {
  25695. source: "./media/characters/risa/back.svg",
  25696. extra: 264 / 255,
  25697. bottom: 4 / 268
  25698. }
  25699. },
  25700. },
  25701. [
  25702. {
  25703. name: "Normal",
  25704. height: math.unit(5 + 8 / 12, "feet"),
  25705. default: true
  25706. },
  25707. ]
  25708. ))
  25709. characterMakers.push(() => makeCharacter(
  25710. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25711. {
  25712. front: {
  25713. height: math.unit(2 + 11 / 12, "feet"),
  25714. weight: math.unit(30, "lb"),
  25715. name: "Front",
  25716. image: {
  25717. source: "./media/characters/weatley/front.svg",
  25718. bottom: 10.7 / 414,
  25719. extra: 403.5 / 362
  25720. }
  25721. },
  25722. back: {
  25723. height: math.unit(2 + 11 / 12, "feet"),
  25724. weight: math.unit(30, "lb"),
  25725. name: "Back",
  25726. image: {
  25727. source: "./media/characters/weatley/back.svg",
  25728. bottom: 10.7 / 414,
  25729. extra: 403.5 / 362
  25730. }
  25731. },
  25732. },
  25733. [
  25734. {
  25735. name: "Normal",
  25736. height: math.unit(2 + 11 / 12, "feet"),
  25737. default: true
  25738. },
  25739. ]
  25740. ))
  25741. characterMakers.push(() => makeCharacter(
  25742. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25743. {
  25744. front: {
  25745. height: math.unit(5 + 2 / 12, "feet"),
  25746. weight: math.unit(50, "kg"),
  25747. name: "Front",
  25748. image: {
  25749. source: "./media/characters/mercury-crescent/front.svg",
  25750. extra: 1088 / 1033,
  25751. bottom: 18.9 / 1109
  25752. }
  25753. },
  25754. },
  25755. [
  25756. {
  25757. name: "Normal",
  25758. height: math.unit(5 + 2 / 12, "feet"),
  25759. default: true
  25760. },
  25761. ]
  25762. ))
  25763. characterMakers.push(() => makeCharacter(
  25764. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25765. {
  25766. front: {
  25767. height: math.unit(2, "feet"),
  25768. weight: math.unit(15, "kg"),
  25769. name: "Front",
  25770. image: {
  25771. source: "./media/characters/diamond-jones/front.svg",
  25772. extra: 727/723,
  25773. bottom: 46/773
  25774. }
  25775. },
  25776. },
  25777. [
  25778. {
  25779. name: "Normal",
  25780. height: math.unit(2, "feet"),
  25781. default: true
  25782. },
  25783. ]
  25784. ))
  25785. characterMakers.push(() => makeCharacter(
  25786. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25787. {
  25788. front: {
  25789. height: math.unit(3, "feet"),
  25790. weight: math.unit(30, "kg"),
  25791. name: "Front",
  25792. image: {
  25793. source: "./media/characters/sweet-bit/front.svg",
  25794. extra: 675 / 567,
  25795. bottom: 27.7 / 703
  25796. }
  25797. },
  25798. },
  25799. [
  25800. {
  25801. name: "Normal",
  25802. height: math.unit(3, "feet"),
  25803. default: true
  25804. },
  25805. ]
  25806. ))
  25807. characterMakers.push(() => makeCharacter(
  25808. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25809. {
  25810. side: {
  25811. height: math.unit(9.178, "feet"),
  25812. weight: math.unit(500, "lb"),
  25813. name: "Side",
  25814. image: {
  25815. source: "./media/characters/umbrazen/side.svg",
  25816. extra: 1730 / 1473,
  25817. bottom: 34.6 / 1765
  25818. }
  25819. },
  25820. },
  25821. [
  25822. {
  25823. name: "Normal",
  25824. height: math.unit(9.178, "feet"),
  25825. default: true
  25826. },
  25827. ]
  25828. ))
  25829. characterMakers.push(() => makeCharacter(
  25830. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25831. {
  25832. front: {
  25833. height: math.unit(10, "feet"),
  25834. weight: math.unit(750, "lb"),
  25835. name: "Front",
  25836. image: {
  25837. source: "./media/characters/arlist/front.svg",
  25838. extra: 961 / 778,
  25839. bottom: 6.2 / 986
  25840. }
  25841. },
  25842. },
  25843. [
  25844. {
  25845. name: "Normal",
  25846. height: math.unit(10, "feet"),
  25847. default: true
  25848. },
  25849. ]
  25850. ))
  25851. characterMakers.push(() => makeCharacter(
  25852. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25853. {
  25854. front: {
  25855. height: math.unit(5 + 1 / 12, "feet"),
  25856. weight: math.unit(110, "lb"),
  25857. name: "Front",
  25858. image: {
  25859. source: "./media/characters/aradel/front.svg",
  25860. extra: 324 / 303,
  25861. bottom: 3.6 / 329.4
  25862. }
  25863. },
  25864. },
  25865. [
  25866. {
  25867. name: "Normal",
  25868. height: math.unit(5 + 1 / 12, "feet"),
  25869. default: true
  25870. },
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25875. {
  25876. front: {
  25877. height: math.unit(3 + 8 / 12, "feet"),
  25878. weight: math.unit(50, "lb"),
  25879. name: "Front",
  25880. image: {
  25881. source: "./media/characters/serryn/front.svg",
  25882. extra: 1792 / 1656,
  25883. bottom: 43.5 / 1840
  25884. }
  25885. },
  25886. },
  25887. [
  25888. {
  25889. name: "Normal",
  25890. height: math.unit(3 + 8 / 12, "feet"),
  25891. default: true
  25892. },
  25893. ]
  25894. ))
  25895. characterMakers.push(() => makeCharacter(
  25896. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25897. {
  25898. front: {
  25899. height: math.unit(7 + 10 / 12, "feet"),
  25900. weight: math.unit(255, "lb"),
  25901. name: "Front",
  25902. image: {
  25903. source: "./media/characters/xavier-thyme/front.svg",
  25904. extra: 3733 / 3642,
  25905. bottom: 131 / 3869
  25906. }
  25907. },
  25908. frontRaven: {
  25909. height: math.unit(7 + 10 / 12, "feet"),
  25910. weight: math.unit(255, "lb"),
  25911. name: "Front (Raven)",
  25912. image: {
  25913. source: "./media/characters/xavier-thyme/front-raven.svg",
  25914. extra: 4385 / 3642,
  25915. bottom: 131 / 4517
  25916. }
  25917. },
  25918. },
  25919. [
  25920. {
  25921. name: "Normal",
  25922. height: math.unit(7 + 10 / 12, "feet"),
  25923. default: true
  25924. },
  25925. ]
  25926. ))
  25927. characterMakers.push(() => makeCharacter(
  25928. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25929. {
  25930. front: {
  25931. height: math.unit(1.6, "m"),
  25932. weight: math.unit(50, "kg"),
  25933. name: "Front",
  25934. image: {
  25935. source: "./media/characters/kiki/front.svg",
  25936. extra: 4682 / 3610,
  25937. bottom: 115 / 4777
  25938. }
  25939. },
  25940. },
  25941. [
  25942. {
  25943. name: "Normal",
  25944. height: math.unit(1.6, "meters"),
  25945. default: true
  25946. },
  25947. ]
  25948. ))
  25949. characterMakers.push(() => makeCharacter(
  25950. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25951. {
  25952. front: {
  25953. height: math.unit(50, "m"),
  25954. weight: math.unit(500, "tonnes"),
  25955. name: "Front",
  25956. image: {
  25957. source: "./media/characters/ryoko/front.svg",
  25958. extra: 4632 / 3926,
  25959. bottom: 193 / 4823
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Normal",
  25966. height: math.unit(50, "meters"),
  25967. default: true
  25968. },
  25969. ]
  25970. ))
  25971. characterMakers.push(() => makeCharacter(
  25972. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25973. {
  25974. front: {
  25975. height: math.unit(30, "m"),
  25976. weight: math.unit(22, "tonnes"),
  25977. name: "Front",
  25978. image: {
  25979. source: "./media/characters/elio/front.svg",
  25980. extra: 4582 / 3720,
  25981. bottom: 236 / 4828
  25982. }
  25983. },
  25984. },
  25985. [
  25986. {
  25987. name: "Normal",
  25988. height: math.unit(30, "meters"),
  25989. default: true
  25990. },
  25991. ]
  25992. ))
  25993. characterMakers.push(() => makeCharacter(
  25994. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25995. {
  25996. front: {
  25997. height: math.unit(6 + 3 / 12, "feet"),
  25998. weight: math.unit(120, "lb"),
  25999. name: "Front",
  26000. image: {
  26001. source: "./media/characters/azura/front.svg",
  26002. extra: 1149 / 1135,
  26003. bottom: 45 / 1194
  26004. }
  26005. },
  26006. frontClothed: {
  26007. height: math.unit(6 + 3 / 12, "feet"),
  26008. weight: math.unit(120, "lb"),
  26009. name: "Front (Clothed)",
  26010. image: {
  26011. source: "./media/characters/azura/front-clothed.svg",
  26012. extra: 1149 / 1135,
  26013. bottom: 45 / 1194
  26014. }
  26015. },
  26016. },
  26017. [
  26018. {
  26019. name: "Normal",
  26020. height: math.unit(6 + 3 / 12, "feet"),
  26021. default: true
  26022. },
  26023. {
  26024. name: "Macro",
  26025. height: math.unit(20 + 6 / 12, "feet")
  26026. },
  26027. {
  26028. name: "Megamacro",
  26029. height: math.unit(12, "miles")
  26030. },
  26031. {
  26032. name: "Gigamacro",
  26033. height: math.unit(10000, "miles")
  26034. },
  26035. {
  26036. name: "Teramacro",
  26037. height: math.unit(900000, "miles")
  26038. },
  26039. ]
  26040. ))
  26041. characterMakers.push(() => makeCharacter(
  26042. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26043. {
  26044. front: {
  26045. height: math.unit(12, "feet"),
  26046. weight: math.unit(1, "ton"),
  26047. capacity: math.unit(660000, "gallons"),
  26048. name: "Front",
  26049. image: {
  26050. source: "./media/characters/zeus/front.svg",
  26051. extra: 5005 / 4717,
  26052. bottom: 363 / 5388
  26053. }
  26054. },
  26055. },
  26056. [
  26057. {
  26058. name: "Normal",
  26059. height: math.unit(12, "feet")
  26060. },
  26061. {
  26062. name: "Preferred Size",
  26063. height: math.unit(0.5, "miles"),
  26064. default: true
  26065. },
  26066. {
  26067. name: "Giga Horse",
  26068. height: math.unit(300, "miles")
  26069. },
  26070. {
  26071. name: "Riding Planets",
  26072. height: math.unit(30, "megameters")
  26073. },
  26074. {
  26075. name: "Cosmic Giant",
  26076. height: math.unit(3, "zettameters")
  26077. },
  26078. {
  26079. name: "Breeding God",
  26080. height: math.unit(9.92e22, "yottameters")
  26081. },
  26082. ]
  26083. ))
  26084. characterMakers.push(() => makeCharacter(
  26085. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26086. {
  26087. side: {
  26088. height: math.unit(9, "feet"),
  26089. weight: math.unit(1500, "kg"),
  26090. name: "Side",
  26091. image: {
  26092. source: "./media/characters/fang/side.svg",
  26093. extra: 924 / 866,
  26094. bottom: 47.5 / 972.3
  26095. }
  26096. },
  26097. },
  26098. [
  26099. {
  26100. name: "Normal",
  26101. height: math.unit(9, "feet"),
  26102. default: true
  26103. },
  26104. {
  26105. name: "Macro",
  26106. height: math.unit(75 + 6 / 12, "feet")
  26107. },
  26108. {
  26109. name: "Teramacro",
  26110. height: math.unit(50000, "miles")
  26111. },
  26112. ]
  26113. ))
  26114. characterMakers.push(() => makeCharacter(
  26115. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26116. {
  26117. front: {
  26118. height: math.unit(10, "feet"),
  26119. weight: math.unit(2, "tons"),
  26120. name: "Front",
  26121. image: {
  26122. source: "./media/characters/rekhit/front.svg",
  26123. extra: 2796 / 2590,
  26124. bottom: 225 / 3022
  26125. }
  26126. },
  26127. },
  26128. [
  26129. {
  26130. name: "Normal",
  26131. height: math.unit(10, "feet"),
  26132. default: true
  26133. },
  26134. {
  26135. name: "Macro",
  26136. height: math.unit(500, "feet")
  26137. },
  26138. ]
  26139. ))
  26140. characterMakers.push(() => makeCharacter(
  26141. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26142. {
  26143. front: {
  26144. height: math.unit(7 + 6.451 / 12, "feet"),
  26145. weight: math.unit(310, "lb"),
  26146. name: "Front",
  26147. image: {
  26148. source: "./media/characters/dahlia-verrick/front.svg",
  26149. extra: 1488 / 1365,
  26150. bottom: 6.2 / 1495
  26151. }
  26152. },
  26153. back: {
  26154. height: math.unit(7 + 6.451 / 12, "feet"),
  26155. weight: math.unit(310, "lb"),
  26156. name: "Back",
  26157. image: {
  26158. source: "./media/characters/dahlia-verrick/back.svg",
  26159. extra: 1472 / 1351,
  26160. bottom: 5.28 / 1477
  26161. }
  26162. },
  26163. frontBusiness: {
  26164. height: math.unit(7 + 6.451 / 12, "feet"),
  26165. weight: math.unit(200, "lb"),
  26166. name: "Front (Business)",
  26167. image: {
  26168. source: "./media/characters/dahlia-verrick/front-business.svg",
  26169. extra: 1478 / 1381,
  26170. bottom: 5.5 / 1484
  26171. }
  26172. },
  26173. frontCasual: {
  26174. height: math.unit(7 + 6.451 / 12, "feet"),
  26175. weight: math.unit(200, "lb"),
  26176. name: "Front (Casual)",
  26177. image: {
  26178. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26179. extra: 1478 / 1381,
  26180. bottom: 5.5 / 1484
  26181. }
  26182. },
  26183. },
  26184. [
  26185. {
  26186. name: "Travel-Sized",
  26187. height: math.unit(7.45, "inches")
  26188. },
  26189. {
  26190. name: "Normal",
  26191. height: math.unit(7 + 6.451 / 12, "feet"),
  26192. default: true
  26193. },
  26194. {
  26195. name: "Hitting the Town",
  26196. height: math.unit(37 + 8 / 12, "feet")
  26197. },
  26198. {
  26199. name: "Stomp in the Suburbs",
  26200. height: math.unit(964 + 9.728 / 12, "feet")
  26201. },
  26202. {
  26203. name: "Sit on the City",
  26204. height: math.unit(61747 + 10.592 / 12, "feet")
  26205. },
  26206. {
  26207. name: "Glomp the Globe",
  26208. height: math.unit(252919327 + 4.832 / 12, "feet")
  26209. },
  26210. ]
  26211. ))
  26212. characterMakers.push(() => makeCharacter(
  26213. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26214. {
  26215. front: {
  26216. height: math.unit(6 + 4 / 12, "feet"),
  26217. weight: math.unit(320, "lb"),
  26218. name: "Front",
  26219. image: {
  26220. source: "./media/characters/balina-mahigan/front.svg",
  26221. extra: 447 / 428,
  26222. bottom: 18 / 466
  26223. }
  26224. },
  26225. back: {
  26226. height: math.unit(6 + 4 / 12, "feet"),
  26227. weight: math.unit(320, "lb"),
  26228. name: "Back",
  26229. image: {
  26230. source: "./media/characters/balina-mahigan/back.svg",
  26231. extra: 445 / 428,
  26232. bottom: 4.07 / 448
  26233. }
  26234. },
  26235. arm: {
  26236. height: math.unit(1.88, "feet"),
  26237. name: "Arm",
  26238. image: {
  26239. source: "./media/characters/balina-mahigan/arm.svg"
  26240. }
  26241. },
  26242. backPort: {
  26243. height: math.unit(0.685, "feet"),
  26244. name: "Back Port",
  26245. image: {
  26246. source: "./media/characters/balina-mahigan/back-port.svg"
  26247. }
  26248. },
  26249. hoofpaw: {
  26250. height: math.unit(1.41, "feet"),
  26251. name: "Hoofpaw",
  26252. image: {
  26253. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26254. }
  26255. },
  26256. leftHandBack: {
  26257. height: math.unit(0.938, "feet"),
  26258. name: "Left Hand (Back)",
  26259. image: {
  26260. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26261. }
  26262. },
  26263. leftHandFront: {
  26264. height: math.unit(0.938, "feet"),
  26265. name: "Left Hand (Front)",
  26266. image: {
  26267. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26268. }
  26269. },
  26270. rightHandBack: {
  26271. height: math.unit(0.95, "feet"),
  26272. name: "Right Hand (Back)",
  26273. image: {
  26274. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26275. }
  26276. },
  26277. rightHandFront: {
  26278. height: math.unit(0.95, "feet"),
  26279. name: "Right Hand (Front)",
  26280. image: {
  26281. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26282. }
  26283. },
  26284. },
  26285. [
  26286. {
  26287. name: "Normal",
  26288. height: math.unit(6 + 4 / 12, "feet"),
  26289. default: true
  26290. },
  26291. ]
  26292. ))
  26293. characterMakers.push(() => makeCharacter(
  26294. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26295. {
  26296. front: {
  26297. height: math.unit(6, "feet"),
  26298. weight: math.unit(320, "lb"),
  26299. name: "Front",
  26300. image: {
  26301. source: "./media/characters/balina-mejeri/front.svg",
  26302. extra: 517 / 488,
  26303. bottom: 44.2 / 561
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Normal",
  26310. height: math.unit(6 + 4 / 12, "feet")
  26311. },
  26312. {
  26313. name: "Business",
  26314. height: math.unit(155, "feet"),
  26315. default: true
  26316. },
  26317. ]
  26318. ))
  26319. characterMakers.push(() => makeCharacter(
  26320. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26321. {
  26322. kneeling: {
  26323. height: math.unit(6 + 4 / 12, "feet"),
  26324. weight: math.unit(300 * 20, "lb"),
  26325. name: "Kneeling",
  26326. image: {
  26327. source: "./media/characters/balbarian/kneeling.svg",
  26328. extra: 922 / 862,
  26329. bottom: 42.4 / 965
  26330. }
  26331. },
  26332. },
  26333. [
  26334. {
  26335. name: "Normal",
  26336. height: math.unit(6 + 4 / 12, "feet")
  26337. },
  26338. {
  26339. name: "Treasured",
  26340. height: math.unit(18 + 9 / 12, "feet"),
  26341. default: true
  26342. },
  26343. {
  26344. name: "Macro",
  26345. height: math.unit(900, "feet")
  26346. },
  26347. ]
  26348. ))
  26349. characterMakers.push(() => makeCharacter(
  26350. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26351. {
  26352. front: {
  26353. height: math.unit(6 + 4 / 12, "feet"),
  26354. weight: math.unit(325, "lb"),
  26355. name: "Front",
  26356. image: {
  26357. source: "./media/characters/balina-amarini/front.svg",
  26358. extra: 415 / 403,
  26359. bottom: 19 / 433.4
  26360. }
  26361. },
  26362. back: {
  26363. height: math.unit(6 + 4 / 12, "feet"),
  26364. weight: math.unit(325, "lb"),
  26365. name: "Back",
  26366. image: {
  26367. source: "./media/characters/balina-amarini/back.svg",
  26368. extra: 415 / 403,
  26369. bottom: 13.5 / 432
  26370. }
  26371. },
  26372. overdrive: {
  26373. height: math.unit(6 + 4 / 12, "feet"),
  26374. weight: math.unit(400, "lb"),
  26375. name: "Overdrive",
  26376. image: {
  26377. source: "./media/characters/balina-amarini/overdrive.svg",
  26378. extra: 269 / 259,
  26379. bottom: 12 / 282
  26380. }
  26381. },
  26382. },
  26383. [
  26384. {
  26385. name: "Boom",
  26386. height: math.unit(9 + 10 / 12, "feet"),
  26387. default: true
  26388. },
  26389. {
  26390. name: "Macro",
  26391. height: math.unit(280, "feet")
  26392. },
  26393. ]
  26394. ))
  26395. characterMakers.push(() => makeCharacter(
  26396. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26397. {
  26398. goddess: {
  26399. height: math.unit(600, "feet"),
  26400. weight: math.unit(2000000, "tons"),
  26401. name: "Goddess",
  26402. image: {
  26403. source: "./media/characters/lady-kubwa/goddess.svg",
  26404. extra: 1240.5 / 1223,
  26405. bottom: 22 / 1263
  26406. }
  26407. },
  26408. goddesser: {
  26409. height: math.unit(900, "feet"),
  26410. weight: math.unit(20000000, "lb"),
  26411. name: "Goddess-er",
  26412. image: {
  26413. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26414. extra: 899 / 888,
  26415. bottom: 12.6 / 912
  26416. }
  26417. },
  26418. },
  26419. [
  26420. {
  26421. name: "Macro",
  26422. height: math.unit(600, "feet"),
  26423. default: true
  26424. },
  26425. {
  26426. name: "Megamacro",
  26427. height: math.unit(250, "miles")
  26428. },
  26429. ]
  26430. ))
  26431. characterMakers.push(() => makeCharacter(
  26432. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26433. {
  26434. front: {
  26435. height: math.unit(7 + 7 / 12, "feet"),
  26436. weight: math.unit(250, "lb"),
  26437. name: "Front",
  26438. image: {
  26439. source: "./media/characters/tala-grovehorn/front.svg",
  26440. extra: 2636 / 2525,
  26441. bottom: 147 / 2781
  26442. }
  26443. },
  26444. back: {
  26445. height: math.unit(7 + 7 / 12, "feet"),
  26446. weight: math.unit(250, "lb"),
  26447. name: "Back",
  26448. image: {
  26449. source: "./media/characters/tala-grovehorn/back.svg",
  26450. extra: 2635 / 2539,
  26451. bottom: 100 / 2732.8
  26452. }
  26453. },
  26454. mouth: {
  26455. height: math.unit(1.15, "feet"),
  26456. name: "Mouth",
  26457. image: {
  26458. source: "./media/characters/tala-grovehorn/mouth.svg"
  26459. }
  26460. },
  26461. dick: {
  26462. height: math.unit(2.36, "feet"),
  26463. name: "Dick",
  26464. image: {
  26465. source: "./media/characters/tala-grovehorn/dick.svg"
  26466. }
  26467. },
  26468. slit: {
  26469. height: math.unit(0.61, "feet"),
  26470. name: "Slit",
  26471. image: {
  26472. source: "./media/characters/tala-grovehorn/slit.svg"
  26473. }
  26474. },
  26475. },
  26476. [
  26477. ]
  26478. ))
  26479. characterMakers.push(() => makeCharacter(
  26480. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26481. {
  26482. front: {
  26483. height: math.unit(7 + 7 / 12, "feet"),
  26484. weight: math.unit(225, "lb"),
  26485. name: "Front",
  26486. image: {
  26487. source: "./media/characters/epona/front.svg",
  26488. extra: 2445 / 2290,
  26489. bottom: 251 / 2696
  26490. }
  26491. },
  26492. back: {
  26493. height: math.unit(7 + 7 / 12, "feet"),
  26494. weight: math.unit(225, "lb"),
  26495. name: "Back",
  26496. image: {
  26497. source: "./media/characters/epona/back.svg",
  26498. extra: 2546 / 2408,
  26499. bottom: 44 / 2589
  26500. }
  26501. },
  26502. genitals: {
  26503. height: math.unit(1.5, "feet"),
  26504. name: "Genitals",
  26505. image: {
  26506. source: "./media/characters/epona/genitals.svg"
  26507. }
  26508. },
  26509. },
  26510. [
  26511. {
  26512. name: "Normal",
  26513. height: math.unit(7 + 7 / 12, "feet"),
  26514. default: true
  26515. },
  26516. ]
  26517. ))
  26518. characterMakers.push(() => makeCharacter(
  26519. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26520. {
  26521. front: {
  26522. height: math.unit(7, "feet"),
  26523. weight: math.unit(518, "lb"),
  26524. name: "Front",
  26525. image: {
  26526. source: "./media/characters/avia-bloodbourn/front.svg",
  26527. extra: 1466 / 1350,
  26528. bottom: 65 / 1527
  26529. }
  26530. },
  26531. },
  26532. [
  26533. ]
  26534. ))
  26535. characterMakers.push(() => makeCharacter(
  26536. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26537. {
  26538. front: {
  26539. height: math.unit(9.35, "feet"),
  26540. weight: math.unit(600, "lb"),
  26541. name: "Front",
  26542. image: {
  26543. source: "./media/characters/amera/front.svg",
  26544. extra: 891 / 818,
  26545. bottom: 30 / 922.7
  26546. }
  26547. },
  26548. back: {
  26549. height: math.unit(9.35, "feet"),
  26550. weight: math.unit(600, "lb"),
  26551. name: "Back",
  26552. image: {
  26553. source: "./media/characters/amera/back.svg",
  26554. extra: 876 / 824,
  26555. bottom: 6.8 / 884
  26556. }
  26557. },
  26558. dick: {
  26559. height: math.unit(2.14, "feet"),
  26560. name: "Dick",
  26561. image: {
  26562. source: "./media/characters/amera/dick.svg"
  26563. }
  26564. },
  26565. },
  26566. [
  26567. {
  26568. name: "Normal",
  26569. height: math.unit(9.35, "feet"),
  26570. default: true
  26571. },
  26572. ]
  26573. ))
  26574. characterMakers.push(() => makeCharacter(
  26575. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26576. {
  26577. kneeling: {
  26578. height: math.unit(3 + 4 / 12, "feet"),
  26579. weight: math.unit(90, "lb"),
  26580. name: "Kneeling",
  26581. image: {
  26582. source: "./media/characters/rosewen/kneeling.svg",
  26583. extra: 1835 / 1571,
  26584. bottom: 27.7 / 1862
  26585. }
  26586. },
  26587. },
  26588. [
  26589. {
  26590. name: "Normal",
  26591. height: math.unit(3 + 4 / 12, "feet"),
  26592. default: true
  26593. },
  26594. ]
  26595. ))
  26596. characterMakers.push(() => makeCharacter(
  26597. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26598. {
  26599. front: {
  26600. height: math.unit(5 + 10 / 12, "feet"),
  26601. weight: math.unit(200, "lb"),
  26602. name: "Front",
  26603. image: {
  26604. source: "./media/characters/sabah/front.svg",
  26605. extra: 849 / 763,
  26606. bottom: 33.9 / 881
  26607. }
  26608. },
  26609. },
  26610. [
  26611. {
  26612. name: "Normal",
  26613. height: math.unit(5 + 10 / 12, "feet"),
  26614. default: true
  26615. },
  26616. ]
  26617. ))
  26618. characterMakers.push(() => makeCharacter(
  26619. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26620. {
  26621. front: {
  26622. height: math.unit(3 + 5 / 12, "feet"),
  26623. weight: math.unit(40, "kg"),
  26624. name: "Front",
  26625. image: {
  26626. source: "./media/characters/purple-flame/front.svg",
  26627. extra: 1577 / 1412,
  26628. bottom: 97 / 1694
  26629. }
  26630. },
  26631. frontDressed: {
  26632. height: math.unit(3 + 5 / 12, "feet"),
  26633. weight: math.unit(40, "kg"),
  26634. name: "Front (Dressed)",
  26635. image: {
  26636. source: "./media/characters/purple-flame/front-dressed.svg",
  26637. extra: 1577 / 1412,
  26638. bottom: 97 / 1694
  26639. }
  26640. },
  26641. headphones: {
  26642. height: math.unit(0.85, "feet"),
  26643. name: "Headphones",
  26644. image: {
  26645. source: "./media/characters/purple-flame/headphones.svg"
  26646. }
  26647. },
  26648. },
  26649. [
  26650. {
  26651. name: "Really Small",
  26652. height: math.unit(5, "cm")
  26653. },
  26654. {
  26655. name: "Micro",
  26656. height: math.unit(1 + 5 / 12, "feet")
  26657. },
  26658. {
  26659. name: "Normal",
  26660. height: math.unit(3 + 5 / 12, "feet"),
  26661. default: true
  26662. },
  26663. {
  26664. name: "Minimacro",
  26665. height: math.unit(125, "feet")
  26666. },
  26667. {
  26668. name: "Macro",
  26669. height: math.unit(0.5, "miles")
  26670. },
  26671. {
  26672. name: "Megamacro",
  26673. height: math.unit(50, "miles")
  26674. },
  26675. {
  26676. name: "Gigantic",
  26677. height: math.unit(750, "miles")
  26678. },
  26679. {
  26680. name: "Planetary",
  26681. height: math.unit(15000, "miles")
  26682. },
  26683. ]
  26684. ))
  26685. characterMakers.push(() => makeCharacter(
  26686. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26687. {
  26688. front: {
  26689. height: math.unit(14, "feet"),
  26690. weight: math.unit(959, "lb"),
  26691. name: "Front",
  26692. image: {
  26693. source: "./media/characters/arsenal/front.svg",
  26694. extra: 2357 / 2157,
  26695. bottom: 93 / 2458
  26696. }
  26697. },
  26698. },
  26699. [
  26700. {
  26701. name: "Normal",
  26702. height: math.unit(14, "feet"),
  26703. default: true
  26704. },
  26705. ]
  26706. ))
  26707. characterMakers.push(() => makeCharacter(
  26708. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26709. {
  26710. front: {
  26711. height: math.unit(6, "feet"),
  26712. weight: math.unit(150, "lb"),
  26713. name: "Front",
  26714. image: {
  26715. source: "./media/characters/adira/front.svg",
  26716. extra: 1078 / 1029,
  26717. bottom: 87 / 1166
  26718. }
  26719. },
  26720. },
  26721. [
  26722. {
  26723. name: "Micro",
  26724. height: math.unit(4, "inches"),
  26725. default: true
  26726. },
  26727. {
  26728. name: "Macro",
  26729. height: math.unit(50, "feet")
  26730. },
  26731. ]
  26732. ))
  26733. characterMakers.push(() => makeCharacter(
  26734. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26735. {
  26736. front: {
  26737. height: math.unit(16, "feet"),
  26738. weight: math.unit(1000, "lb"),
  26739. name: "Front",
  26740. image: {
  26741. source: "./media/characters/grim/front.svg",
  26742. extra: 622 / 614,
  26743. bottom: 18.1 / 642
  26744. }
  26745. },
  26746. back: {
  26747. height: math.unit(16, "feet"),
  26748. weight: math.unit(1000, "lb"),
  26749. name: "Back",
  26750. image: {
  26751. source: "./media/characters/grim/back.svg",
  26752. extra: 610.6 / 602,
  26753. bottom: 40.8 / 652
  26754. }
  26755. },
  26756. hunched: {
  26757. height: math.unit(9.75, "feet"),
  26758. weight: math.unit(1000, "lb"),
  26759. name: "Hunched",
  26760. image: {
  26761. source: "./media/characters/grim/hunched.svg",
  26762. extra: 304 / 297,
  26763. bottom: 35.4 / 394
  26764. }
  26765. },
  26766. },
  26767. [
  26768. {
  26769. name: "Normal",
  26770. height: math.unit(16, "feet"),
  26771. default: true
  26772. },
  26773. ]
  26774. ))
  26775. characterMakers.push(() => makeCharacter(
  26776. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26777. {
  26778. front: {
  26779. height: math.unit(2.3, "meters"),
  26780. weight: math.unit(300, "lb"),
  26781. name: "Front",
  26782. image: {
  26783. source: "./media/characters/sinja/front-sfw.svg",
  26784. extra: 1393 / 1294,
  26785. bottom: 70 / 1463
  26786. }
  26787. },
  26788. frontNsfw: {
  26789. height: math.unit(2.3, "meters"),
  26790. weight: math.unit(300, "lb"),
  26791. name: "Front (NSFW)",
  26792. image: {
  26793. source: "./media/characters/sinja/front-nsfw.svg",
  26794. extra: 1393 / 1294,
  26795. bottom: 70 / 1463
  26796. }
  26797. },
  26798. back: {
  26799. height: math.unit(2.3, "meters"),
  26800. weight: math.unit(300, "lb"),
  26801. name: "Back",
  26802. image: {
  26803. source: "./media/characters/sinja/back.svg",
  26804. extra: 1393 / 1294,
  26805. bottom: 70 / 1463
  26806. }
  26807. },
  26808. head: {
  26809. height: math.unit(1.771, "feet"),
  26810. name: "Head",
  26811. image: {
  26812. source: "./media/characters/sinja/head.svg"
  26813. }
  26814. },
  26815. slit: {
  26816. height: math.unit(0.8, "feet"),
  26817. name: "Slit",
  26818. image: {
  26819. source: "./media/characters/sinja/slit.svg"
  26820. }
  26821. },
  26822. },
  26823. [
  26824. {
  26825. name: "Normal",
  26826. height: math.unit(2.3, "meters")
  26827. },
  26828. {
  26829. name: "Macro",
  26830. height: math.unit(91, "meters"),
  26831. default: true
  26832. },
  26833. {
  26834. name: "Megamacro",
  26835. height: math.unit(91440, "meters")
  26836. },
  26837. {
  26838. name: "Gigamacro",
  26839. height: math.unit(60960000, "meters")
  26840. },
  26841. {
  26842. name: "Teramacro",
  26843. height: math.unit(9144000000, "meters")
  26844. },
  26845. ]
  26846. ))
  26847. characterMakers.push(() => makeCharacter(
  26848. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26849. {
  26850. front: {
  26851. height: math.unit(1.7, "meters"),
  26852. weight: math.unit(130, "lb"),
  26853. name: "Front",
  26854. image: {
  26855. source: "./media/characters/kyu/front.svg",
  26856. extra: 415 / 395,
  26857. bottom: 5 / 420
  26858. }
  26859. },
  26860. head: {
  26861. height: math.unit(1.75, "feet"),
  26862. name: "Head",
  26863. image: {
  26864. source: "./media/characters/kyu/head.svg"
  26865. }
  26866. },
  26867. foot: {
  26868. height: math.unit(0.81, "feet"),
  26869. name: "Foot",
  26870. image: {
  26871. source: "./media/characters/kyu/foot.svg"
  26872. }
  26873. },
  26874. },
  26875. [
  26876. {
  26877. name: "Normal",
  26878. height: math.unit(1.7, "meters")
  26879. },
  26880. {
  26881. name: "Macro",
  26882. height: math.unit(131, "feet"),
  26883. default: true
  26884. },
  26885. {
  26886. name: "Megamacro",
  26887. height: math.unit(91440, "meters")
  26888. },
  26889. {
  26890. name: "Gigamacro",
  26891. height: math.unit(60960000, "meters")
  26892. },
  26893. {
  26894. name: "Teramacro",
  26895. height: math.unit(9144000000, "meters")
  26896. },
  26897. ]
  26898. ))
  26899. characterMakers.push(() => makeCharacter(
  26900. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26901. {
  26902. front: {
  26903. height: math.unit(7 + 1 / 12, "feet"),
  26904. weight: math.unit(250, "lb"),
  26905. name: "Front",
  26906. image: {
  26907. source: "./media/characters/joey/front.svg",
  26908. extra: 1791 / 1537,
  26909. bottom: 28 / 1816
  26910. }
  26911. },
  26912. },
  26913. [
  26914. {
  26915. name: "Micro",
  26916. height: math.unit(3, "inches")
  26917. },
  26918. {
  26919. name: "Normal",
  26920. height: math.unit(7 + 1 / 12, "feet"),
  26921. default: true
  26922. },
  26923. ]
  26924. ))
  26925. characterMakers.push(() => makeCharacter(
  26926. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26927. {
  26928. front: {
  26929. height: math.unit(165, "cm"),
  26930. weight: math.unit(140, "lb"),
  26931. name: "Front",
  26932. image: {
  26933. source: "./media/characters/sam-evans/front.svg",
  26934. extra: 3417 / 3230,
  26935. bottom: 41.3 / 3417
  26936. }
  26937. },
  26938. frontSixTails: {
  26939. height: math.unit(165, "cm"),
  26940. weight: math.unit(140, "lb"),
  26941. name: "Front-six-tails",
  26942. image: {
  26943. source: "./media/characters/sam-evans/front-six-tails.svg",
  26944. extra: 3417 / 3230,
  26945. bottom: 41.3 / 3417
  26946. }
  26947. },
  26948. back: {
  26949. height: math.unit(165, "cm"),
  26950. weight: math.unit(140, "lb"),
  26951. name: "Back",
  26952. image: {
  26953. source: "./media/characters/sam-evans/back.svg",
  26954. extra: 3227 / 3032,
  26955. bottom: 6.8 / 3234
  26956. }
  26957. },
  26958. face: {
  26959. height: math.unit(0.68, "feet"),
  26960. name: "Face",
  26961. image: {
  26962. source: "./media/characters/sam-evans/face.svg"
  26963. }
  26964. },
  26965. },
  26966. [
  26967. {
  26968. name: "Normal",
  26969. height: math.unit(165, "cm"),
  26970. default: true
  26971. },
  26972. {
  26973. name: "Macro",
  26974. height: math.unit(100, "meters")
  26975. },
  26976. {
  26977. name: "Macro+",
  26978. height: math.unit(800, "meters")
  26979. },
  26980. {
  26981. name: "Macro++",
  26982. height: math.unit(3, "km")
  26983. },
  26984. {
  26985. name: "Macro+++",
  26986. height: math.unit(30, "km")
  26987. },
  26988. ]
  26989. ))
  26990. characterMakers.push(() => makeCharacter(
  26991. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26992. {
  26993. front: {
  26994. height: math.unit(10, "feet"),
  26995. weight: math.unit(750, "lb"),
  26996. name: "Front",
  26997. image: {
  26998. source: "./media/characters/juliet-a/front.svg",
  26999. extra: 1766 / 1720,
  27000. bottom: 43 / 1809
  27001. }
  27002. },
  27003. back: {
  27004. height: math.unit(10, "feet"),
  27005. weight: math.unit(750, "lb"),
  27006. name: "Back",
  27007. image: {
  27008. source: "./media/characters/juliet-a/back.svg",
  27009. extra: 1781 / 1734,
  27010. bottom: 35 / 1810,
  27011. }
  27012. },
  27013. },
  27014. [
  27015. {
  27016. name: "Normal",
  27017. height: math.unit(10, "feet"),
  27018. default: true
  27019. },
  27020. {
  27021. name: "Dragon Form",
  27022. height: math.unit(250, "feet")
  27023. },
  27024. {
  27025. name: "Macro",
  27026. height: math.unit(1000, "feet")
  27027. },
  27028. {
  27029. name: "Megamacro",
  27030. height: math.unit(10000, "feet")
  27031. }
  27032. ]
  27033. ))
  27034. characterMakers.push(() => makeCharacter(
  27035. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27036. {
  27037. regular: {
  27038. height: math.unit(7 + 3 / 12, "feet"),
  27039. weight: math.unit(260, "lb"),
  27040. name: "Regular",
  27041. image: {
  27042. source: "./media/characters/wild/regular.svg",
  27043. extra: 97.45 / 92,
  27044. bottom: 6.8 / 104.3
  27045. }
  27046. },
  27047. biggums: {
  27048. height: math.unit(8 + 6 / 12, "feet"),
  27049. weight: math.unit(425, "lb"),
  27050. name: "Biggums",
  27051. image: {
  27052. source: "./media/characters/wild/biggums.svg",
  27053. extra: 97.45 / 92,
  27054. bottom: 7.5 / 132.34
  27055. }
  27056. },
  27057. mawRegular: {
  27058. height: math.unit(1.24, "feet"),
  27059. name: "Maw (Regular)",
  27060. image: {
  27061. source: "./media/characters/wild/maw.svg"
  27062. }
  27063. },
  27064. mawBiggums: {
  27065. height: math.unit(1.47, "feet"),
  27066. name: "Maw (Biggums)",
  27067. image: {
  27068. source: "./media/characters/wild/maw.svg"
  27069. }
  27070. },
  27071. },
  27072. [
  27073. {
  27074. name: "Normal",
  27075. height: math.unit(7 + 3 / 12, "feet"),
  27076. default: true
  27077. },
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27082. {
  27083. front: {
  27084. height: math.unit(2.5, "meters"),
  27085. weight: math.unit(200, "kg"),
  27086. name: "Front",
  27087. image: {
  27088. source: "./media/characters/vidar/front.svg",
  27089. extra: 2994 / 2795,
  27090. bottom: 56 / 3061
  27091. }
  27092. },
  27093. back: {
  27094. height: math.unit(2.5, "meters"),
  27095. weight: math.unit(200, "kg"),
  27096. name: "Back",
  27097. image: {
  27098. source: "./media/characters/vidar/back.svg",
  27099. extra: 3131 / 2928,
  27100. bottom: 13.5 / 3141.5
  27101. }
  27102. },
  27103. feral: {
  27104. height: math.unit(2.5, "meters"),
  27105. weight: math.unit(2000, "kg"),
  27106. name: "Feral",
  27107. image: {
  27108. source: "./media/characters/vidar/feral.svg",
  27109. extra: 2790 / 1765,
  27110. bottom: 6 / 2796
  27111. }
  27112. },
  27113. },
  27114. [
  27115. {
  27116. name: "Normal",
  27117. height: math.unit(2.5, "meters"),
  27118. default: true
  27119. },
  27120. {
  27121. name: "Macro",
  27122. height: math.unit(100, "meters")
  27123. },
  27124. ]
  27125. ))
  27126. characterMakers.push(() => makeCharacter(
  27127. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27128. {
  27129. front: {
  27130. height: math.unit(5 + 9 / 12, "feet"),
  27131. weight: math.unit(120, "lb"),
  27132. name: "Front",
  27133. image: {
  27134. source: "./media/characters/ash/front.svg",
  27135. extra: 2189 / 1961,
  27136. bottom: 5.2 / 2194
  27137. }
  27138. },
  27139. },
  27140. [
  27141. {
  27142. name: "Normal",
  27143. height: math.unit(5 + 9 / 12, "feet"),
  27144. default: true
  27145. },
  27146. ]
  27147. ))
  27148. characterMakers.push(() => makeCharacter(
  27149. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27150. {
  27151. front: {
  27152. height: math.unit(9, "feet"),
  27153. weight: math.unit(10000, "lb"),
  27154. name: "Front",
  27155. image: {
  27156. source: "./media/characters/gygabite/front.svg",
  27157. bottom: 31.7 / 537.8,
  27158. extra: 505 / 370
  27159. }
  27160. },
  27161. },
  27162. [
  27163. {
  27164. name: "Normal",
  27165. height: math.unit(9, "feet"),
  27166. default: true
  27167. },
  27168. ]
  27169. ))
  27170. characterMakers.push(() => makeCharacter(
  27171. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27172. {
  27173. front: {
  27174. height: math.unit(12, "feet"),
  27175. weight: math.unit(35000, "lb"),
  27176. name: "Front",
  27177. image: {
  27178. source: "./media/characters/p0tat0/front.svg",
  27179. extra: 1065 / 921,
  27180. bottom: 55.7 / 1121.25
  27181. }
  27182. },
  27183. },
  27184. [
  27185. {
  27186. name: "Normal",
  27187. height: math.unit(12, "feet"),
  27188. default: true
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27194. {
  27195. side: {
  27196. height: math.unit(6.5, "feet"),
  27197. weight: math.unit(800, "lb"),
  27198. name: "Side",
  27199. image: {
  27200. source: "./media/characters/dusk/side.svg",
  27201. extra: 615 / 373,
  27202. bottom: 53 / 664
  27203. }
  27204. },
  27205. sitting: {
  27206. height: math.unit(7, "feet"),
  27207. weight: math.unit(800, "lb"),
  27208. name: "Sitting",
  27209. image: {
  27210. source: "./media/characters/dusk/sitting.svg",
  27211. extra: 753 / 425,
  27212. bottom: 33 / 774
  27213. }
  27214. },
  27215. head: {
  27216. height: math.unit(6.1, "feet"),
  27217. name: "Head",
  27218. image: {
  27219. source: "./media/characters/dusk/head.svg"
  27220. }
  27221. },
  27222. },
  27223. [
  27224. {
  27225. name: "Normal",
  27226. height: math.unit(7, "feet"),
  27227. default: true
  27228. },
  27229. ]
  27230. ))
  27231. characterMakers.push(() => makeCharacter(
  27232. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27233. {
  27234. front: {
  27235. height: math.unit(15, "feet"),
  27236. weight: math.unit(7000, "lb"),
  27237. name: "Front",
  27238. image: {
  27239. source: "./media/characters/jay-direwolf/front.svg",
  27240. extra: 1810 / 1732,
  27241. bottom: 66 / 1892
  27242. }
  27243. },
  27244. },
  27245. [
  27246. {
  27247. name: "Normal",
  27248. height: math.unit(15, "feet"),
  27249. default: true
  27250. },
  27251. ]
  27252. ))
  27253. characterMakers.push(() => makeCharacter(
  27254. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27255. {
  27256. front: {
  27257. height: math.unit(4 + 9 / 12, "feet"),
  27258. weight: math.unit(130, "lb"),
  27259. name: "Front",
  27260. image: {
  27261. source: "./media/characters/anchovie/front.svg",
  27262. extra: 382 / 350,
  27263. bottom: 25 / 409
  27264. }
  27265. },
  27266. back: {
  27267. height: math.unit(4 + 9 / 12, "feet"),
  27268. weight: math.unit(130, "lb"),
  27269. name: "Back",
  27270. image: {
  27271. source: "./media/characters/anchovie/back.svg",
  27272. extra: 385 / 352,
  27273. bottom: 16.6 / 402
  27274. }
  27275. },
  27276. frontDressed: {
  27277. height: math.unit(4 + 9 / 12, "feet"),
  27278. weight: math.unit(130, "lb"),
  27279. name: "Front (Dressed)",
  27280. image: {
  27281. source: "./media/characters/anchovie/front-dressed.svg",
  27282. extra: 382 / 350,
  27283. bottom: 25 / 409
  27284. }
  27285. },
  27286. backDressed: {
  27287. height: math.unit(4 + 9 / 12, "feet"),
  27288. weight: math.unit(130, "lb"),
  27289. name: "Back (Dressed)",
  27290. image: {
  27291. source: "./media/characters/anchovie/back-dressed.svg",
  27292. extra: 385 / 352,
  27293. bottom: 16.6 / 402
  27294. }
  27295. },
  27296. },
  27297. [
  27298. {
  27299. name: "Micro",
  27300. height: math.unit(6.4, "inches")
  27301. },
  27302. {
  27303. name: "Normal",
  27304. height: math.unit(4 + 9 / 12, "feet"),
  27305. default: true
  27306. },
  27307. ]
  27308. ))
  27309. characterMakers.push(() => makeCharacter(
  27310. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27311. {
  27312. front: {
  27313. height: math.unit(2, "meters"),
  27314. weight: math.unit(180, "lb"),
  27315. name: "Front",
  27316. image: {
  27317. source: "./media/characters/acidrenamon/front.svg",
  27318. extra: 987 / 890,
  27319. bottom: 22.8 / 1009
  27320. }
  27321. },
  27322. back: {
  27323. height: math.unit(2, "meters"),
  27324. weight: math.unit(180, "lb"),
  27325. name: "Back",
  27326. image: {
  27327. source: "./media/characters/acidrenamon/back.svg",
  27328. extra: 983 / 891,
  27329. bottom: 8.4 / 992
  27330. }
  27331. },
  27332. head: {
  27333. height: math.unit(1.92, "feet"),
  27334. name: "Head",
  27335. image: {
  27336. source: "./media/characters/acidrenamon/head.svg"
  27337. }
  27338. },
  27339. rump: {
  27340. height: math.unit(1.72, "feet"),
  27341. name: "Rump",
  27342. image: {
  27343. source: "./media/characters/acidrenamon/rump.svg"
  27344. }
  27345. },
  27346. tail: {
  27347. height: math.unit(4.2, "feet"),
  27348. name: "Tail",
  27349. image: {
  27350. source: "./media/characters/acidrenamon/tail.svg"
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Normal",
  27357. height: math.unit(2, "meters"),
  27358. default: true
  27359. },
  27360. {
  27361. name: "Minimacro",
  27362. height: math.unit(7, "meters")
  27363. },
  27364. {
  27365. name: "Macro",
  27366. height: math.unit(200, "meters")
  27367. },
  27368. {
  27369. name: "Gigamacro",
  27370. height: math.unit(0.2, "earths")
  27371. },
  27372. ]
  27373. ))
  27374. characterMakers.push(() => makeCharacter(
  27375. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27376. {
  27377. front: {
  27378. height: math.unit(6, "feet"),
  27379. weight: math.unit(150, "lb"),
  27380. name: "Front",
  27381. image: {
  27382. source: "./media/characters/kenzie-lee/front.svg",
  27383. extra: 1525 / 1465,
  27384. bottom: 45 / 1570
  27385. }
  27386. },
  27387. side: {
  27388. height: math.unit(6, "feet"),
  27389. weight: math.unit(150, "lb"),
  27390. name: "Side",
  27391. image: {
  27392. source: "./media/characters/kenzie-lee/side.svg",
  27393. extra: 5505 / 5383,
  27394. bottom: 60 / 5573
  27395. }
  27396. },
  27397. paw: {
  27398. height: math.unit(0.57, "feet"),
  27399. name: "Paw",
  27400. image: {
  27401. source: "./media/characters/kenzie-lee/paw.svg"
  27402. }
  27403. },
  27404. },
  27405. [
  27406. {
  27407. name: "Normal",
  27408. height: math.unit(152, "feet"),
  27409. default: true
  27410. },
  27411. {
  27412. name: "Megamacro",
  27413. height: math.unit(7, "miles")
  27414. },
  27415. {
  27416. name: "Gigamacro",
  27417. height: math.unit(8000, "miles")
  27418. },
  27419. ]
  27420. ))
  27421. characterMakers.push(() => makeCharacter(
  27422. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27423. {
  27424. side: {
  27425. height: math.unit(6, "feet"),
  27426. weight: math.unit(150, "lb"),
  27427. name: "Side",
  27428. image: {
  27429. source: "./media/characters/withers/side.svg",
  27430. extra: 1830 / 1728,
  27431. bottom: 96 / 1927
  27432. }
  27433. },
  27434. front: {
  27435. height: math.unit(6, "feet"),
  27436. weight: math.unit(150, "lb"),
  27437. name: "Front",
  27438. image: {
  27439. source: "./media/characters/withers/front.svg",
  27440. extra: 1514 / 1438,
  27441. bottom: 118 / 1632
  27442. }
  27443. },
  27444. },
  27445. [
  27446. {
  27447. name: "Macro",
  27448. height: math.unit(168, "feet"),
  27449. default: true
  27450. },
  27451. {
  27452. name: "Megamacro",
  27453. height: math.unit(15, "miles")
  27454. }
  27455. ]
  27456. ))
  27457. characterMakers.push(() => makeCharacter(
  27458. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27459. {
  27460. front: {
  27461. height: math.unit(6 + 7 / 12, "feet"),
  27462. weight: math.unit(250, "lb"),
  27463. name: "Front",
  27464. image: {
  27465. source: "./media/characters/nemoskii/front.svg",
  27466. extra: 2270 / 1734,
  27467. bottom: 86 / 2354
  27468. }
  27469. },
  27470. back: {
  27471. height: math.unit(6 + 7 / 12, "feet"),
  27472. weight: math.unit(250, "lb"),
  27473. name: "Back",
  27474. image: {
  27475. source: "./media/characters/nemoskii/back.svg",
  27476. extra: 1845 / 1788,
  27477. bottom: 10.5 / 1852
  27478. }
  27479. },
  27480. head: {
  27481. height: math.unit(1.31, "feet"),
  27482. name: "Head",
  27483. image: {
  27484. source: "./media/characters/nemoskii/head.svg"
  27485. }
  27486. },
  27487. },
  27488. [
  27489. {
  27490. name: "Micro",
  27491. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27492. },
  27493. {
  27494. name: "Normal",
  27495. height: math.unit(6 + 7 / 12, "feet"),
  27496. default: true
  27497. },
  27498. {
  27499. name: "Macro",
  27500. height: math.unit((6 + 7 / 12) * 150, "feet")
  27501. },
  27502. {
  27503. name: "Macro+",
  27504. height: math.unit((6 + 7 / 12) * 500, "feet")
  27505. },
  27506. {
  27507. name: "Megamacro",
  27508. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27509. },
  27510. ]
  27511. ))
  27512. characterMakers.push(() => makeCharacter(
  27513. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27514. {
  27515. front: {
  27516. height: math.unit(1, "mile"),
  27517. weight: math.unit(265261.9, "lb"),
  27518. name: "Front",
  27519. image: {
  27520. source: "./media/characters/shui/front.svg",
  27521. extra: 1633 / 1564,
  27522. bottom: 91.5 / 1726
  27523. }
  27524. },
  27525. },
  27526. [
  27527. {
  27528. name: "Macro",
  27529. height: math.unit(1, "mile"),
  27530. default: true
  27531. },
  27532. ]
  27533. ))
  27534. characterMakers.push(() => makeCharacter(
  27535. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27536. {
  27537. front: {
  27538. height: math.unit(12 + 6 / 12, "feet"),
  27539. weight: math.unit(1342, "lb"),
  27540. name: "Front",
  27541. image: {
  27542. source: "./media/characters/arokh-takakura/front.svg",
  27543. extra: 1089 / 1043,
  27544. bottom: 77.4 / 1176.7
  27545. }
  27546. },
  27547. back: {
  27548. height: math.unit(12 + 6 / 12, "feet"),
  27549. weight: math.unit(1342, "lb"),
  27550. name: "Back",
  27551. image: {
  27552. source: "./media/characters/arokh-takakura/back.svg",
  27553. extra: 1046 / 1019,
  27554. bottom: 102 / 1150
  27555. }
  27556. },
  27557. },
  27558. [
  27559. {
  27560. name: "Big",
  27561. height: math.unit(12 + 6 / 12, "feet"),
  27562. default: true
  27563. },
  27564. ]
  27565. ))
  27566. characterMakers.push(() => makeCharacter(
  27567. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27568. {
  27569. front: {
  27570. height: math.unit(5 + 6 / 12, "feet"),
  27571. weight: math.unit(150, "lb"),
  27572. name: "Front",
  27573. image: {
  27574. source: "./media/characters/theo/front.svg",
  27575. extra: 1184 / 1131,
  27576. bottom: 7.4 / 1191
  27577. }
  27578. },
  27579. },
  27580. [
  27581. {
  27582. name: "Micro",
  27583. height: math.unit(5, "inches")
  27584. },
  27585. {
  27586. name: "Normal",
  27587. height: math.unit(5 + 6 / 12, "feet"),
  27588. default: true
  27589. },
  27590. ]
  27591. ))
  27592. characterMakers.push(() => makeCharacter(
  27593. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27594. {
  27595. front: {
  27596. height: math.unit(5 + 9 / 12, "feet"),
  27597. weight: math.unit(130, "lb"),
  27598. name: "Front",
  27599. image: {
  27600. source: "./media/characters/cecelia-swift/front.svg",
  27601. extra: 502 / 484,
  27602. bottom: 23 / 523
  27603. }
  27604. },
  27605. back: {
  27606. height: math.unit(5 + 9 / 12, "feet"),
  27607. weight: math.unit(130, "lb"),
  27608. name: "Back",
  27609. image: {
  27610. source: "./media/characters/cecelia-swift/back.svg",
  27611. extra: 499 / 485,
  27612. bottom: 12 / 511
  27613. }
  27614. },
  27615. head: {
  27616. height: math.unit(0.90, "feet"),
  27617. name: "Head",
  27618. image: {
  27619. source: "./media/characters/cecelia-swift/head.svg"
  27620. }
  27621. },
  27622. rump: {
  27623. height: math.unit(1.75, "feet"),
  27624. name: "Rump",
  27625. image: {
  27626. source: "./media/characters/cecelia-swift/rump.svg"
  27627. }
  27628. },
  27629. },
  27630. [
  27631. {
  27632. name: "Normal",
  27633. height: math.unit(5 + 9 / 12, "feet"),
  27634. default: true
  27635. },
  27636. {
  27637. name: "Big",
  27638. height: math.unit(50, "feet")
  27639. },
  27640. {
  27641. name: "Macro",
  27642. height: math.unit(100, "feet")
  27643. },
  27644. {
  27645. name: "Macro+",
  27646. height: math.unit(500, "feet")
  27647. },
  27648. {
  27649. name: "Macro++",
  27650. height: math.unit(1000, "feet")
  27651. },
  27652. ]
  27653. ))
  27654. characterMakers.push(() => makeCharacter(
  27655. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27656. {
  27657. front: {
  27658. height: math.unit(6, "feet"),
  27659. weight: math.unit(150, "lb"),
  27660. name: "Front",
  27661. image: {
  27662. source: "./media/characters/kaunan/front.svg",
  27663. extra: 2890 / 2523,
  27664. bottom: 49 / 2939
  27665. }
  27666. },
  27667. },
  27668. [
  27669. {
  27670. name: "Macro",
  27671. height: math.unit(150, "feet"),
  27672. default: true
  27673. },
  27674. ]
  27675. ))
  27676. characterMakers.push(() => makeCharacter(
  27677. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27678. {
  27679. front: {
  27680. height: math.unit(175, "cm"),
  27681. weight: math.unit(60, "kg"),
  27682. name: "Front",
  27683. image: {
  27684. source: "./media/characters/fei/front.svg",
  27685. extra: 1873/1723,
  27686. bottom: 53/1926
  27687. }
  27688. },
  27689. },
  27690. [
  27691. {
  27692. name: "Mortal",
  27693. height: math.unit(175, "cm")
  27694. },
  27695. {
  27696. name: "Normal",
  27697. height: math.unit(3500, "m"),
  27698. default: true
  27699. },
  27700. {
  27701. name: "Stroll",
  27702. height: math.unit(17.5, "km")
  27703. },
  27704. {
  27705. name: "Showoff",
  27706. height: math.unit(175, "km")
  27707. },
  27708. ]
  27709. ))
  27710. characterMakers.push(() => makeCharacter(
  27711. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27712. {
  27713. front: {
  27714. height: math.unit(7, "feet"),
  27715. weight: math.unit(1000, "kg"),
  27716. name: "Front",
  27717. image: {
  27718. source: "./media/characters/edrax/front.svg",
  27719. extra: 2838 / 2550,
  27720. bottom: 130 / 2968
  27721. }
  27722. },
  27723. },
  27724. [
  27725. {
  27726. name: "Small",
  27727. height: math.unit(7, "feet")
  27728. },
  27729. {
  27730. name: "Normal",
  27731. height: math.unit(1500, "meters")
  27732. },
  27733. {
  27734. name: "Mega",
  27735. height: math.unit(12000000, "km"),
  27736. default: true
  27737. },
  27738. {
  27739. name: "Megamacro",
  27740. height: math.unit(10600000, "lightyears")
  27741. },
  27742. {
  27743. name: "Hypermacro",
  27744. height: math.unit(256, "yottameters")
  27745. },
  27746. ]
  27747. ))
  27748. characterMakers.push(() => makeCharacter(
  27749. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27750. {
  27751. front: {
  27752. height: math.unit(10, "feet"),
  27753. weight: math.unit(750, "lb"),
  27754. name: "Front",
  27755. image: {
  27756. source: "./media/characters/clove/front.svg",
  27757. extra: 2031 / 1860,
  27758. bottom: 47.8 / 2080
  27759. }
  27760. },
  27761. back: {
  27762. height: math.unit(10, "feet"),
  27763. weight: math.unit(750, "lb"),
  27764. name: "Back",
  27765. image: {
  27766. source: "./media/characters/clove/back.svg",
  27767. extra: 2025 / 1859,
  27768. bottom: 46 / 2071
  27769. }
  27770. },
  27771. },
  27772. [
  27773. {
  27774. name: "Normal",
  27775. height: math.unit(10, "feet"),
  27776. default: true
  27777. },
  27778. ]
  27779. ))
  27780. characterMakers.push(() => makeCharacter(
  27781. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27782. {
  27783. front: {
  27784. height: math.unit(4, "feet"),
  27785. weight: math.unit(50, "lb"),
  27786. name: "Front",
  27787. image: {
  27788. source: "./media/characters/alex-rabbit/front.svg",
  27789. extra: 507 / 458,
  27790. bottom: 18.5 / 527
  27791. }
  27792. },
  27793. back: {
  27794. height: math.unit(4, "feet"),
  27795. weight: math.unit(50, "lb"),
  27796. name: "Back",
  27797. image: {
  27798. source: "./media/characters/alex-rabbit/back.svg",
  27799. extra: 502 / 460,
  27800. bottom: 18.9 / 521
  27801. }
  27802. },
  27803. },
  27804. [
  27805. {
  27806. name: "Normal",
  27807. height: math.unit(4, "feet"),
  27808. default: true
  27809. },
  27810. ]
  27811. ))
  27812. characterMakers.push(() => makeCharacter(
  27813. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27814. {
  27815. front: {
  27816. height: math.unit(1 + 3 / 12, "feet"),
  27817. weight: math.unit(80, "lb"),
  27818. name: "Front",
  27819. image: {
  27820. source: "./media/characters/zander-rose/front.svg",
  27821. extra: 916 / 797,
  27822. bottom: 17 / 933
  27823. }
  27824. },
  27825. back: {
  27826. height: math.unit(1 + 3 / 12, "feet"),
  27827. weight: math.unit(80, "lb"),
  27828. name: "Back",
  27829. image: {
  27830. source: "./media/characters/zander-rose/back.svg",
  27831. extra: 903 / 779,
  27832. bottom: 31 / 934
  27833. }
  27834. },
  27835. },
  27836. [
  27837. {
  27838. name: "Normal",
  27839. height: math.unit(1 + 3 / 12, "feet"),
  27840. default: true
  27841. },
  27842. ]
  27843. ))
  27844. characterMakers.push(() => makeCharacter(
  27845. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27846. {
  27847. anthro: {
  27848. height: math.unit(6, "feet"),
  27849. weight: math.unit(150, "lb"),
  27850. name: "Anthro",
  27851. image: {
  27852. source: "./media/characters/razz/anthro.svg",
  27853. extra: 1437 / 1343,
  27854. bottom: 48 / 1485
  27855. }
  27856. },
  27857. feral: {
  27858. height: math.unit(6, "feet"),
  27859. weight: math.unit(150, "lb"),
  27860. name: "Feral",
  27861. image: {
  27862. source: "./media/characters/razz/feral.svg",
  27863. extra: 2569 / 1385,
  27864. bottom: 95 / 2664
  27865. }
  27866. },
  27867. },
  27868. [
  27869. {
  27870. name: "Normal",
  27871. height: math.unit(6, "feet"),
  27872. default: true
  27873. },
  27874. ]
  27875. ))
  27876. characterMakers.push(() => makeCharacter(
  27877. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27878. {
  27879. front: {
  27880. height: math.unit(9 + 4 / 12, "feet"),
  27881. weight: math.unit(500, "lb"),
  27882. name: "Front",
  27883. image: {
  27884. source: "./media/characters/morrigan/front.svg",
  27885. extra: 2707 / 2579,
  27886. bottom: 156 / 2863
  27887. }
  27888. },
  27889. },
  27890. [
  27891. {
  27892. name: "Normal",
  27893. height: math.unit(9 + 4 / 12, "feet"),
  27894. default: true
  27895. },
  27896. ]
  27897. ))
  27898. characterMakers.push(() => makeCharacter(
  27899. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27900. {
  27901. front: {
  27902. height: math.unit(5, "stories"),
  27903. weight: math.unit(4000, "lb"),
  27904. name: "Front",
  27905. image: {
  27906. source: "./media/characters/jenene/front.svg",
  27907. extra: 1780 / 1710,
  27908. bottom: 57 / 1837
  27909. }
  27910. },
  27911. },
  27912. [
  27913. {
  27914. name: "Normal",
  27915. height: math.unit(5, "stories"),
  27916. default: true
  27917. },
  27918. ]
  27919. ))
  27920. characterMakers.push(() => makeCharacter(
  27921. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27922. {
  27923. taurSfw: {
  27924. height: math.unit(10, "meters"),
  27925. weight: math.unit(17500, "kg"),
  27926. name: "Taur",
  27927. image: {
  27928. source: "./media/characters/faey/taur-sfw.svg",
  27929. extra: 1200 / 968,
  27930. bottom: 41 / 1241
  27931. }
  27932. },
  27933. chestmaw: {
  27934. height: math.unit(2.01, "meters"),
  27935. name: "Chestmaw",
  27936. image: {
  27937. source: "./media/characters/faey/chestmaw.svg"
  27938. }
  27939. },
  27940. foot: {
  27941. height: math.unit(2.43, "meters"),
  27942. name: "Foot",
  27943. image: {
  27944. source: "./media/characters/faey/foot.svg"
  27945. }
  27946. },
  27947. jaws: {
  27948. height: math.unit(1.66, "meters"),
  27949. name: "Jaws",
  27950. image: {
  27951. source: "./media/characters/faey/jaws.svg"
  27952. }
  27953. },
  27954. tongues: {
  27955. height: math.unit(2.01, "meters"),
  27956. name: "Tongues",
  27957. image: {
  27958. source: "./media/characters/faey/tongues.svg"
  27959. }
  27960. },
  27961. },
  27962. [
  27963. {
  27964. name: "Small",
  27965. height: math.unit(10, "meters"),
  27966. default: true
  27967. },
  27968. {
  27969. name: "Big",
  27970. height: math.unit(500000, "km")
  27971. },
  27972. ]
  27973. ))
  27974. characterMakers.push(() => makeCharacter(
  27975. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27976. {
  27977. front: {
  27978. height: math.unit(7, "feet"),
  27979. weight: math.unit(275, "lb"),
  27980. name: "Front",
  27981. image: {
  27982. source: "./media/characters/roku/front.svg",
  27983. extra: 903 / 878,
  27984. bottom: 37 / 940
  27985. }
  27986. },
  27987. },
  27988. [
  27989. {
  27990. name: "Normal",
  27991. height: math.unit(7, "feet"),
  27992. default: true
  27993. },
  27994. {
  27995. name: "Macro",
  27996. height: math.unit(500, "feet")
  27997. },
  27998. {
  27999. name: "Megamacro",
  28000. height: math.unit(200, "miles")
  28001. },
  28002. ]
  28003. ))
  28004. characterMakers.push(() => makeCharacter(
  28005. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28006. {
  28007. front: {
  28008. height: math.unit(6 + 2 / 12, "feet"),
  28009. weight: math.unit(150, "lb"),
  28010. name: "Front",
  28011. image: {
  28012. source: "./media/characters/lira/front.svg",
  28013. extra: 1727 / 1605,
  28014. bottom: 26 / 1753
  28015. }
  28016. },
  28017. back: {
  28018. height: math.unit(6 + 2 / 12, "feet"),
  28019. weight: math.unit(150, "lb"),
  28020. name: "Back",
  28021. image: {
  28022. source: "./media/characters/lira/back.svg",
  28023. extra: 1713/1621,
  28024. bottom: 20/1733
  28025. }
  28026. },
  28027. hand: {
  28028. height: math.unit(0.75, "feet"),
  28029. name: "Hand",
  28030. image: {
  28031. source: "./media/characters/lira/hand.svg"
  28032. }
  28033. },
  28034. maw: {
  28035. height: math.unit(0.65, "feet"),
  28036. name: "Maw",
  28037. image: {
  28038. source: "./media/characters/lira/maw.svg"
  28039. }
  28040. },
  28041. pawDigi: {
  28042. height: math.unit(1.6, "feet"),
  28043. name: "Paw Digi",
  28044. image: {
  28045. source: "./media/characters/lira/paw-digi.svg"
  28046. }
  28047. },
  28048. pawPlanti: {
  28049. height: math.unit(1.4, "feet"),
  28050. name: "Paw Planti",
  28051. image: {
  28052. source: "./media/characters/lira/paw-planti.svg"
  28053. }
  28054. },
  28055. },
  28056. [
  28057. {
  28058. name: "Normal",
  28059. height: math.unit(6 + 2 / 12, "feet"),
  28060. default: true
  28061. },
  28062. {
  28063. name: "Macro",
  28064. height: math.unit(100, "feet")
  28065. },
  28066. {
  28067. name: "Macro²",
  28068. height: math.unit(1600, "feet")
  28069. },
  28070. {
  28071. name: "Planetary",
  28072. height: math.unit(20, "earths")
  28073. },
  28074. ]
  28075. ))
  28076. characterMakers.push(() => makeCharacter(
  28077. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28078. {
  28079. front: {
  28080. height: math.unit(6, "feet"),
  28081. weight: math.unit(150, "lb"),
  28082. name: "Front",
  28083. image: {
  28084. source: "./media/characters/hadjet/front.svg",
  28085. extra: 1480 / 1346,
  28086. bottom: 26 / 1506
  28087. }
  28088. },
  28089. frontNsfw: {
  28090. height: math.unit(6, "feet"),
  28091. weight: math.unit(150, "lb"),
  28092. name: "Front (NSFW)",
  28093. image: {
  28094. source: "./media/characters/hadjet/front-nsfw.svg",
  28095. extra: 1440 / 1358,
  28096. bottom: 52 / 1492
  28097. }
  28098. },
  28099. },
  28100. [
  28101. {
  28102. name: "Macro",
  28103. height: math.unit(10, "stories"),
  28104. default: true
  28105. },
  28106. {
  28107. name: "Megamacro",
  28108. height: math.unit(1.5, "miles")
  28109. },
  28110. {
  28111. name: "Megamacro+",
  28112. height: math.unit(5, "miles")
  28113. },
  28114. ]
  28115. ))
  28116. characterMakers.push(() => makeCharacter(
  28117. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28118. {
  28119. side: {
  28120. height: math.unit(106, "feet"),
  28121. weight: math.unit(500, "tonnes"),
  28122. name: "Side",
  28123. image: {
  28124. source: "./media/characters/kodran/side.svg",
  28125. extra: 553 / 480,
  28126. bottom: 33 / 586
  28127. }
  28128. },
  28129. front: {
  28130. height: math.unit(132, "feet"),
  28131. weight: math.unit(500, "tonnes"),
  28132. name: "Front",
  28133. image: {
  28134. source: "./media/characters/kodran/front.svg",
  28135. extra: 667 / 643,
  28136. bottom: 42 / 709
  28137. }
  28138. },
  28139. flying: {
  28140. height: math.unit(350, "feet"),
  28141. weight: math.unit(500, "tonnes"),
  28142. name: "Flying",
  28143. image: {
  28144. source: "./media/characters/kodran/flying.svg"
  28145. }
  28146. },
  28147. foot: {
  28148. height: math.unit(33, "feet"),
  28149. name: "Foot",
  28150. image: {
  28151. source: "./media/characters/kodran/foot.svg"
  28152. }
  28153. },
  28154. footFront: {
  28155. height: math.unit(19, "feet"),
  28156. name: "Foot (Front)",
  28157. image: {
  28158. source: "./media/characters/kodran/foot-front.svg",
  28159. extra: 261 / 261,
  28160. bottom: 91 / 352
  28161. }
  28162. },
  28163. headFront: {
  28164. height: math.unit(53, "feet"),
  28165. name: "Head (Front)",
  28166. image: {
  28167. source: "./media/characters/kodran/head-front.svg"
  28168. }
  28169. },
  28170. headSide: {
  28171. height: math.unit(65, "feet"),
  28172. name: "Head (Side)",
  28173. image: {
  28174. source: "./media/characters/kodran/head-side.svg"
  28175. }
  28176. },
  28177. throat: {
  28178. height: math.unit(79, "feet"),
  28179. name: "Throat",
  28180. image: {
  28181. source: "./media/characters/kodran/throat.svg"
  28182. }
  28183. },
  28184. },
  28185. [
  28186. {
  28187. name: "Large",
  28188. height: math.unit(106, "feet"),
  28189. default: true
  28190. },
  28191. ]
  28192. ))
  28193. characterMakers.push(() => makeCharacter(
  28194. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28195. {
  28196. side: {
  28197. height: math.unit(11, "feet"),
  28198. weight: math.unit(150, "lb"),
  28199. name: "Side",
  28200. image: {
  28201. source: "./media/characters/pyxaron/side.svg",
  28202. extra: 305 / 195,
  28203. bottom: 17 / 322
  28204. }
  28205. },
  28206. },
  28207. [
  28208. {
  28209. name: "Normal",
  28210. height: math.unit(11, "feet"),
  28211. default: true
  28212. },
  28213. ]
  28214. ))
  28215. characterMakers.push(() => makeCharacter(
  28216. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28217. {
  28218. front: {
  28219. height: math.unit(6, "feet"),
  28220. weight: math.unit(150, "lb"),
  28221. name: "Front",
  28222. image: {
  28223. source: "./media/characters/meep/front.svg",
  28224. extra: 88 / 80,
  28225. bottom: 6 / 94
  28226. }
  28227. },
  28228. },
  28229. [
  28230. {
  28231. name: "Fun Sized",
  28232. height: math.unit(2, "inches"),
  28233. default: true
  28234. },
  28235. {
  28236. name: "Friend Sized",
  28237. height: math.unit(8, "inches")
  28238. },
  28239. ]
  28240. ))
  28241. characterMakers.push(() => makeCharacter(
  28242. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28243. {
  28244. front: {
  28245. height: math.unit(15, "feet"),
  28246. weight: math.unit(2500, "lb"),
  28247. name: "Front",
  28248. image: {
  28249. source: "./media/characters/holly-rabbit/front.svg",
  28250. extra: 1433 / 1233,
  28251. bottom: 125 / 1558
  28252. }
  28253. },
  28254. dick: {
  28255. height: math.unit(4.6, "feet"),
  28256. name: "Dick",
  28257. image: {
  28258. source: "./media/characters/holly-rabbit/dick.svg"
  28259. }
  28260. },
  28261. },
  28262. [
  28263. {
  28264. name: "Normal",
  28265. height: math.unit(15, "feet"),
  28266. default: true
  28267. },
  28268. {
  28269. name: "Macro",
  28270. height: math.unit(250, "feet")
  28271. },
  28272. {
  28273. name: "Macro+",
  28274. height: math.unit(2500, "feet")
  28275. },
  28276. ]
  28277. ))
  28278. characterMakers.push(() => makeCharacter(
  28279. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28280. {
  28281. front: {
  28282. height: math.unit(3.02, "meters"),
  28283. weight: math.unit(500, "kg"),
  28284. name: "Front",
  28285. image: {
  28286. source: "./media/characters/drena/front.svg",
  28287. extra: 282 / 243,
  28288. bottom: 8 / 290
  28289. }
  28290. },
  28291. side: {
  28292. height: math.unit(3.02, "meters"),
  28293. weight: math.unit(500, "kg"),
  28294. name: "Side",
  28295. image: {
  28296. source: "./media/characters/drena/side.svg",
  28297. extra: 280 / 245,
  28298. bottom: 10 / 290
  28299. }
  28300. },
  28301. back: {
  28302. height: math.unit(3.02, "meters"),
  28303. weight: math.unit(500, "kg"),
  28304. name: "Back",
  28305. image: {
  28306. source: "./media/characters/drena/back.svg",
  28307. extra: 278 / 243,
  28308. bottom: 2 / 280
  28309. }
  28310. },
  28311. foot: {
  28312. height: math.unit(0.75, "meters"),
  28313. name: "Foot",
  28314. image: {
  28315. source: "./media/characters/drena/foot.svg"
  28316. }
  28317. },
  28318. maw: {
  28319. height: math.unit(0.82, "meters"),
  28320. name: "Maw",
  28321. image: {
  28322. source: "./media/characters/drena/maw.svg"
  28323. }
  28324. },
  28325. rump: {
  28326. height: math.unit(0.93, "meters"),
  28327. name: "Rump",
  28328. image: {
  28329. source: "./media/characters/drena/rump.svg"
  28330. }
  28331. },
  28332. },
  28333. [
  28334. {
  28335. name: "Normal",
  28336. height: math.unit(3.02, "meters"),
  28337. default: true
  28338. },
  28339. ]
  28340. ))
  28341. characterMakers.push(() => makeCharacter(
  28342. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28343. {
  28344. front: {
  28345. height: math.unit(6 + 4 / 12, "feet"),
  28346. weight: math.unit(250, "lb"),
  28347. name: "Front",
  28348. image: {
  28349. source: "./media/characters/remmyzilla/front.svg",
  28350. extra: 4033 / 3588,
  28351. bottom: 123 / 4156
  28352. }
  28353. },
  28354. back: {
  28355. height: math.unit(6 + 4 / 12, "feet"),
  28356. weight: math.unit(250, "lb"),
  28357. name: "Back",
  28358. image: {
  28359. source: "./media/characters/remmyzilla/back.svg",
  28360. extra: 2687 / 2555,
  28361. bottom: 48 / 2735
  28362. }
  28363. },
  28364. paw: {
  28365. height: math.unit(1.73, "feet"),
  28366. name: "Paw",
  28367. image: {
  28368. source: "./media/characters/remmyzilla/paw.svg"
  28369. }
  28370. },
  28371. maw: {
  28372. height: math.unit(1.73, "feet"),
  28373. name: "Maw",
  28374. image: {
  28375. source: "./media/characters/remmyzilla/maw.svg"
  28376. }
  28377. },
  28378. },
  28379. [
  28380. {
  28381. name: "Normal",
  28382. height: math.unit(6 + 4 / 12, "feet")
  28383. },
  28384. {
  28385. name: "Minimacro",
  28386. height: math.unit(12 + 8 / 12, "feet")
  28387. },
  28388. {
  28389. name: "Normal",
  28390. height: math.unit(640, "feet"),
  28391. default: true
  28392. },
  28393. {
  28394. name: "Megamacro",
  28395. height: math.unit(6400, "feet")
  28396. },
  28397. {
  28398. name: "Gigamacro",
  28399. height: math.unit(64000, "miles")
  28400. },
  28401. ]
  28402. ))
  28403. characterMakers.push(() => makeCharacter(
  28404. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28405. {
  28406. front: {
  28407. height: math.unit(2.5, "meters"),
  28408. weight: math.unit(300, "lb"),
  28409. name: "Front",
  28410. image: {
  28411. source: "./media/characters/lawrence/front.svg",
  28412. extra: 357 / 335,
  28413. bottom: 30 / 387
  28414. }
  28415. },
  28416. back: {
  28417. height: math.unit(2.5, "meters"),
  28418. weight: math.unit(300, "lb"),
  28419. name: "Back",
  28420. image: {
  28421. source: "./media/characters/lawrence/back.svg",
  28422. extra: 357 / 338,
  28423. bottom: 16 / 373
  28424. }
  28425. },
  28426. head: {
  28427. height: math.unit(0.9, "meter"),
  28428. name: "Head",
  28429. image: {
  28430. source: "./media/characters/lawrence/head.svg"
  28431. }
  28432. },
  28433. maw: {
  28434. height: math.unit(0.7, "meter"),
  28435. name: "Maw",
  28436. image: {
  28437. source: "./media/characters/lawrence/maw.svg"
  28438. }
  28439. },
  28440. footBottom: {
  28441. height: math.unit(0.5, "meter"),
  28442. name: "Foot (Bottom)",
  28443. image: {
  28444. source: "./media/characters/lawrence/foot-bottom.svg"
  28445. }
  28446. },
  28447. footTop: {
  28448. height: math.unit(0.5, "meter"),
  28449. name: "Foot (Top)",
  28450. image: {
  28451. source: "./media/characters/lawrence/foot-top.svg"
  28452. }
  28453. },
  28454. },
  28455. [
  28456. {
  28457. name: "Normal",
  28458. height: math.unit(2.5, "meters"),
  28459. default: true
  28460. },
  28461. {
  28462. name: "Macro",
  28463. height: math.unit(95, "meters")
  28464. },
  28465. {
  28466. name: "Megamacro",
  28467. height: math.unit(150, "km")
  28468. },
  28469. ]
  28470. ))
  28471. characterMakers.push(() => makeCharacter(
  28472. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28473. {
  28474. front: {
  28475. height: math.unit(4.2, "meters"),
  28476. name: "Front",
  28477. image: {
  28478. source: "./media/characters/sydney/front.svg",
  28479. extra: 1323 / 1277,
  28480. bottom: 111 / 1434
  28481. }
  28482. },
  28483. },
  28484. [
  28485. {
  28486. name: "Normal",
  28487. height: math.unit(4.2, "meters"),
  28488. default: true
  28489. },
  28490. ]
  28491. ))
  28492. characterMakers.push(() => makeCharacter(
  28493. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28494. {
  28495. back: {
  28496. height: math.unit(201, "feet"),
  28497. name: "Back",
  28498. image: {
  28499. source: "./media/characters/jessica/back.svg",
  28500. extra: 273 / 259,
  28501. bottom: 7 / 280
  28502. }
  28503. },
  28504. },
  28505. [
  28506. {
  28507. name: "Normal",
  28508. height: math.unit(201, "feet"),
  28509. default: true
  28510. },
  28511. {
  28512. name: "Megamacro",
  28513. height: math.unit(8, "miles")
  28514. },
  28515. ]
  28516. ))
  28517. characterMakers.push(() => makeCharacter(
  28518. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28519. {
  28520. side: {
  28521. height: math.unit(320, "cm"),
  28522. name: "Side",
  28523. image: {
  28524. source: "./media/characters/victoria/side.svg",
  28525. extra: 778 / 346,
  28526. bottom: 56 / 834
  28527. }
  28528. },
  28529. maw: {
  28530. height: math.unit(5.9, "feet"),
  28531. name: "Maw",
  28532. image: {
  28533. source: "./media/characters/victoria/maw.svg"
  28534. }
  28535. },
  28536. },
  28537. [
  28538. {
  28539. name: "Normal",
  28540. height: math.unit(320, "cm"),
  28541. default: true
  28542. },
  28543. ]
  28544. ))
  28545. characterMakers.push(() => makeCharacter(
  28546. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28547. {
  28548. front: {
  28549. height: math.unit(5 + 6 / 12, "feet"),
  28550. name: "Front",
  28551. image: {
  28552. source: "./media/characters/cat/front.svg",
  28553. extra: 1449/1295,
  28554. bottom: 34/1483
  28555. }
  28556. },
  28557. back: {
  28558. height: math.unit(5 + 6 / 12, "feet"),
  28559. name: "Back",
  28560. image: {
  28561. source: "./media/characters/cat/back.svg",
  28562. extra: 1466/1301,
  28563. bottom: 19/1485
  28564. }
  28565. },
  28566. taur: {
  28567. height: math.unit(7, "feet"),
  28568. name: "Taur",
  28569. image: {
  28570. source: "./media/characters/cat/taur.svg",
  28571. extra: 1389/1233,
  28572. bottom: 83/1472
  28573. }
  28574. },
  28575. lucarioFront: {
  28576. height: math.unit(4, "feet"),
  28577. name: "Lucario (Front)",
  28578. image: {
  28579. source: "./media/characters/cat/lucario-front.svg",
  28580. extra: 1149/1019,
  28581. bottom: 84/1233
  28582. }
  28583. },
  28584. lucarioBack: {
  28585. height: math.unit(4, "feet"),
  28586. name: "Lucario (Back)",
  28587. image: {
  28588. source: "./media/characters/cat/lucario-back.svg",
  28589. extra: 1190/1059,
  28590. bottom: 33/1223
  28591. }
  28592. },
  28593. megaLucario: {
  28594. height: math.unit(4, "feet"),
  28595. name: "Mega Lucario",
  28596. image: {
  28597. source: "./media/characters/cat/mega-lucario.svg",
  28598. extra: 1515 / 1319,
  28599. bottom: 63 / 1578
  28600. }
  28601. },
  28602. nickit: {
  28603. height: math.unit(2, "feet"),
  28604. name: "Nickit",
  28605. image: {
  28606. source: "./media/characters/cat/nickit.svg",
  28607. extra: 1980 / 1585,
  28608. bottom: 102 / 2082
  28609. }
  28610. },
  28611. lopunnyFront: {
  28612. height: math.unit(5, "feet"),
  28613. name: "Lopunny (Front)",
  28614. image: {
  28615. source: "./media/characters/cat/lopunny-front.svg",
  28616. extra: 1782 / 1469,
  28617. bottom: 38 / 1820
  28618. }
  28619. },
  28620. lopunnyBack: {
  28621. height: math.unit(5, "feet"),
  28622. name: "Lopunny (Back)",
  28623. image: {
  28624. source: "./media/characters/cat/lopunny-back.svg",
  28625. extra: 1660 / 1490,
  28626. bottom: 25 / 1685
  28627. }
  28628. },
  28629. },
  28630. [
  28631. {
  28632. name: "Really small",
  28633. height: math.unit(1, "nm")
  28634. },
  28635. {
  28636. name: "Micro",
  28637. height: math.unit(5, "inches")
  28638. },
  28639. {
  28640. name: "Normal",
  28641. height: math.unit(5 + 6 / 12, "feet"),
  28642. default: true
  28643. },
  28644. {
  28645. name: "Macro",
  28646. height: math.unit(50, "feet")
  28647. },
  28648. {
  28649. name: "Macro+",
  28650. height: math.unit(150, "feet")
  28651. },
  28652. {
  28653. name: "Megamacro",
  28654. height: math.unit(100, "miles")
  28655. },
  28656. ]
  28657. ))
  28658. characterMakers.push(() => makeCharacter(
  28659. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28660. {
  28661. front: {
  28662. height: math.unit(63.4, "meters"),
  28663. weight: math.unit(3.28349e+6, "kilograms"),
  28664. name: "Front",
  28665. image: {
  28666. source: "./media/characters/kirina-violet/front.svg",
  28667. extra: 2812 / 2725,
  28668. bottom: 0 / 2812
  28669. }
  28670. },
  28671. back: {
  28672. height: math.unit(63.4, "meters"),
  28673. weight: math.unit(3.28349e+6, "kilograms"),
  28674. name: "Back",
  28675. image: {
  28676. source: "./media/characters/kirina-violet/back.svg",
  28677. extra: 2812 / 2725,
  28678. bottom: 0 / 2812
  28679. }
  28680. },
  28681. mouth: {
  28682. height: math.unit(4.35, "meters"),
  28683. name: "Mouth",
  28684. image: {
  28685. source: "./media/characters/kirina-violet/mouth.svg"
  28686. }
  28687. },
  28688. paw: {
  28689. height: math.unit(5.6, "meters"),
  28690. name: "Paw",
  28691. image: {
  28692. source: "./media/characters/kirina-violet/paw.svg"
  28693. }
  28694. },
  28695. tail: {
  28696. height: math.unit(18, "meters"),
  28697. name: "Tail",
  28698. image: {
  28699. source: "./media/characters/kirina-violet/tail.svg"
  28700. }
  28701. },
  28702. },
  28703. [
  28704. {
  28705. name: "Macro",
  28706. height: math.unit(63.4, "meters"),
  28707. default: true
  28708. },
  28709. ]
  28710. ))
  28711. characterMakers.push(() => makeCharacter(
  28712. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28713. {
  28714. front: {
  28715. height: math.unit(75, "feet"),
  28716. name: "Front",
  28717. image: {
  28718. source: "./media/characters/cat-gigachu/front.svg",
  28719. extra: 1239/1027,
  28720. bottom: 32/1271
  28721. }
  28722. },
  28723. back: {
  28724. height: math.unit(75, "feet"),
  28725. name: "Back",
  28726. image: {
  28727. source: "./media/characters/cat-gigachu/back.svg",
  28728. extra: 1229/1030,
  28729. bottom: 9/1238
  28730. }
  28731. },
  28732. },
  28733. [
  28734. {
  28735. name: "Dynamax",
  28736. height: math.unit(75, "feet"),
  28737. default: true
  28738. },
  28739. ]
  28740. ))
  28741. characterMakers.push(() => makeCharacter(
  28742. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28743. {
  28744. front: {
  28745. height: math.unit(6, "feet"),
  28746. weight: math.unit(150, "lb"),
  28747. name: "Front",
  28748. image: {
  28749. source: "./media/characters/sfaiyan/front.svg",
  28750. extra: 999 / 978,
  28751. bottom: 5 / 1004
  28752. }
  28753. },
  28754. },
  28755. [
  28756. {
  28757. name: "Normal",
  28758. height: math.unit(1.82, "meters")
  28759. },
  28760. {
  28761. name: "Giant",
  28762. height: math.unit(2.27, "km"),
  28763. default: true
  28764. },
  28765. ]
  28766. ))
  28767. characterMakers.push(() => makeCharacter(
  28768. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28769. {
  28770. front: {
  28771. height: math.unit(179, "cm"),
  28772. weight: math.unit(100, "kg"),
  28773. name: "Front",
  28774. image: {
  28775. source: "./media/characters/raunehkeli/front.svg",
  28776. extra: 1934 / 1926,
  28777. bottom: 0 / 1934
  28778. }
  28779. },
  28780. },
  28781. [
  28782. {
  28783. name: "Normal",
  28784. height: math.unit(179, "cm")
  28785. },
  28786. {
  28787. name: "Maximum",
  28788. height: math.unit(575, "meters"),
  28789. default: true
  28790. },
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28795. {
  28796. front: {
  28797. height: math.unit(6, "feet"),
  28798. weight: math.unit(150, "lb"),
  28799. name: "Front",
  28800. image: {
  28801. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28802. extra: 2625 / 2518,
  28803. bottom: 60 / 2685
  28804. }
  28805. },
  28806. },
  28807. [
  28808. {
  28809. name: "Normal",
  28810. height: math.unit(6 + 2 / 12, "feet")
  28811. },
  28812. {
  28813. name: "Macro",
  28814. height: math.unit(1180, "feet"),
  28815. default: true
  28816. },
  28817. ]
  28818. ))
  28819. characterMakers.push(() => makeCharacter(
  28820. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28821. {
  28822. front: {
  28823. height: math.unit(5 + 6 / 12, "feet"),
  28824. weight: math.unit(108, "lb"),
  28825. name: "Front",
  28826. image: {
  28827. source: "./media/characters/lilith-zott/front.svg",
  28828. extra: 2510 / 2238,
  28829. bottom: 100 / 2610
  28830. }
  28831. },
  28832. frontDressed: {
  28833. height: math.unit(5 + 6 / 12, "feet"),
  28834. weight: math.unit(108, "lb"),
  28835. name: "Front (Dressed)",
  28836. image: {
  28837. source: "./media/characters/lilith-zott/front-dressed.svg",
  28838. extra: 2510 / 2238,
  28839. bottom: 100 / 2610
  28840. }
  28841. },
  28842. },
  28843. [
  28844. {
  28845. name: "Normal",
  28846. height: math.unit(5 + 6 / 12, "feet")
  28847. },
  28848. {
  28849. name: "Macro",
  28850. height: math.unit(1030, "feet"),
  28851. default: true
  28852. },
  28853. ]
  28854. ))
  28855. characterMakers.push(() => makeCharacter(
  28856. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28857. {
  28858. front: {
  28859. height: math.unit(6, "feet"),
  28860. weight: math.unit(150, "lb"),
  28861. name: "Front",
  28862. image: {
  28863. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28864. extra: 2567 / 2435,
  28865. bottom: 39 / 2606
  28866. }
  28867. },
  28868. frontSuper: {
  28869. height: math.unit(6, "feet"),
  28870. name: "Front (Super)",
  28871. image: {
  28872. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28873. extra: 2567 / 2435,
  28874. bottom: 39 / 2606
  28875. }
  28876. },
  28877. },
  28878. [
  28879. {
  28880. name: "Normal",
  28881. height: math.unit(5 + 10 / 12, "feet")
  28882. },
  28883. {
  28884. name: "Macro",
  28885. height: math.unit(1100, "feet"),
  28886. default: true
  28887. },
  28888. ]
  28889. ))
  28890. characterMakers.push(() => makeCharacter(
  28891. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28892. {
  28893. front: {
  28894. height: math.unit(100, "miles"),
  28895. name: "Front",
  28896. image: {
  28897. source: "./media/characters/sona/front.svg",
  28898. extra: 2433 / 2201,
  28899. bottom: 53 / 2486
  28900. }
  28901. },
  28902. foot: {
  28903. height: math.unit(16.1, "miles"),
  28904. name: "Foot",
  28905. image: {
  28906. source: "./media/characters/sona/foot.svg"
  28907. }
  28908. },
  28909. },
  28910. [
  28911. {
  28912. name: "Macro",
  28913. height: math.unit(100, "miles"),
  28914. default: true
  28915. },
  28916. ]
  28917. ))
  28918. characterMakers.push(() => makeCharacter(
  28919. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28920. {
  28921. front: {
  28922. height: math.unit(6, "feet"),
  28923. weight: math.unit(150, "lb"),
  28924. name: "Front",
  28925. image: {
  28926. source: "./media/characters/bailey/front.svg",
  28927. extra: 1778 / 1724,
  28928. bottom: 30 / 1808
  28929. }
  28930. },
  28931. },
  28932. [
  28933. {
  28934. name: "Micro",
  28935. height: math.unit(4, "inches")
  28936. },
  28937. {
  28938. name: "Normal",
  28939. height: math.unit(5 + 5 / 12, "feet"),
  28940. default: true
  28941. },
  28942. {
  28943. name: "Macro",
  28944. height: math.unit(250, "feet")
  28945. },
  28946. {
  28947. name: "Megamacro",
  28948. height: math.unit(100, "miles")
  28949. },
  28950. ]
  28951. ))
  28952. characterMakers.push(() => makeCharacter(
  28953. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28954. {
  28955. front: {
  28956. height: math.unit(5 + 2 / 12, "feet"),
  28957. weight: math.unit(120, "lb"),
  28958. name: "Front",
  28959. image: {
  28960. source: "./media/characters/snaps/front.svg",
  28961. extra: 2370 / 2177,
  28962. bottom: 48 / 2418
  28963. }
  28964. },
  28965. back: {
  28966. height: math.unit(5 + 2 / 12, "feet"),
  28967. weight: math.unit(120, "lb"),
  28968. name: "Back",
  28969. image: {
  28970. source: "./media/characters/snaps/back.svg",
  28971. extra: 2408 / 2258,
  28972. bottom: 15 / 2423
  28973. }
  28974. },
  28975. },
  28976. [
  28977. {
  28978. name: "Micro",
  28979. height: math.unit(9, "inches")
  28980. },
  28981. {
  28982. name: "Normal",
  28983. height: math.unit(5 + 2 / 12, "feet"),
  28984. default: true
  28985. },
  28986. {
  28987. name: "Mini Macro",
  28988. height: math.unit(10, "feet")
  28989. },
  28990. ]
  28991. ))
  28992. characterMakers.push(() => makeCharacter(
  28993. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28994. {
  28995. front: {
  28996. height: math.unit(1.8, "meters"),
  28997. weight: math.unit(85, "kg"),
  28998. name: "Front",
  28999. image: {
  29000. source: "./media/characters/azteck/front.svg",
  29001. extra: 2815 / 2625,
  29002. bottom: 89 / 2904
  29003. }
  29004. },
  29005. back: {
  29006. height: math.unit(1.8, "meters"),
  29007. weight: math.unit(85, "kg"),
  29008. name: "Back",
  29009. image: {
  29010. source: "./media/characters/azteck/back.svg",
  29011. extra: 2856 / 2648,
  29012. bottom: 85 / 2941
  29013. }
  29014. },
  29015. frontDressed: {
  29016. height: math.unit(1.8, "meters"),
  29017. weight: math.unit(85, "kg"),
  29018. name: "Front (Dressed)",
  29019. image: {
  29020. source: "./media/characters/azteck/front-dressed.svg",
  29021. extra: 2147 / 2003,
  29022. bottom: 68 / 2215
  29023. }
  29024. },
  29025. head: {
  29026. height: math.unit(0.47, "meters"),
  29027. weight: math.unit(85, "kg"),
  29028. name: "Head",
  29029. image: {
  29030. source: "./media/characters/azteck/head.svg"
  29031. }
  29032. },
  29033. },
  29034. [
  29035. {
  29036. name: "Bite sized",
  29037. height: math.unit(16, "cm")
  29038. },
  29039. {
  29040. name: "Normal",
  29041. height: math.unit(1.8, "meters"),
  29042. default: true
  29043. },
  29044. ]
  29045. ))
  29046. characterMakers.push(() => makeCharacter(
  29047. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29048. {
  29049. front: {
  29050. height: math.unit(6, "feet"),
  29051. weight: math.unit(150, "lb"),
  29052. name: "Front",
  29053. image: {
  29054. source: "./media/characters/pidge/front.svg",
  29055. extra: 620 / 588,
  29056. bottom: 9 / 629
  29057. }
  29058. },
  29059. back: {
  29060. height: math.unit(6, "feet"),
  29061. weight: math.unit(150, "lb"),
  29062. name: "Back",
  29063. image: {
  29064. source: "./media/characters/pidge/back.svg",
  29065. extra: 620 / 588,
  29066. bottom: 9 / 629
  29067. }
  29068. },
  29069. },
  29070. [
  29071. {
  29072. name: "Macro",
  29073. height: math.unit(1, "mile"),
  29074. default: true
  29075. },
  29076. ]
  29077. ))
  29078. characterMakers.push(() => makeCharacter(
  29079. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29080. {
  29081. front: {
  29082. height: math.unit(6, "feet"),
  29083. weight: math.unit(150, "lb"),
  29084. name: "Front",
  29085. image: {
  29086. source: "./media/characters/en/front.svg",
  29087. extra: 1697 / 1563,
  29088. bottom: 103 / 1800
  29089. }
  29090. },
  29091. back: {
  29092. height: math.unit(6, "feet"),
  29093. weight: math.unit(150, "lb"),
  29094. name: "Back",
  29095. image: {
  29096. source: "./media/characters/en/back.svg",
  29097. extra: 1700 / 1570,
  29098. bottom: 51 / 1751
  29099. }
  29100. },
  29101. frontDressed: {
  29102. height: math.unit(6, "feet"),
  29103. weight: math.unit(150, "lb"),
  29104. name: "Front (Dressed)",
  29105. image: {
  29106. source: "./media/characters/en/front-dressed.svg",
  29107. extra: 1697 / 1563,
  29108. bottom: 103 / 1800
  29109. }
  29110. },
  29111. backDressed: {
  29112. height: math.unit(6, "feet"),
  29113. weight: math.unit(150, "lb"),
  29114. name: "Back (Dressed)",
  29115. image: {
  29116. source: "./media/characters/en/back-dressed.svg",
  29117. extra: 1700 / 1570,
  29118. bottom: 51 / 1751
  29119. }
  29120. },
  29121. },
  29122. [
  29123. {
  29124. name: "Macro",
  29125. height: math.unit(210, "feet"),
  29126. default: true
  29127. },
  29128. ]
  29129. ))
  29130. characterMakers.push(() => makeCharacter(
  29131. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29132. {
  29133. front: {
  29134. height: math.unit(6, "feet"),
  29135. weight: math.unit(150, "lb"),
  29136. name: "Front",
  29137. image: {
  29138. source: "./media/characters/haze-orris/front.svg",
  29139. extra: 3975 / 3525,
  29140. bottom: 137 / 4112
  29141. }
  29142. },
  29143. },
  29144. [
  29145. {
  29146. name: "Micro",
  29147. height: math.unit(150, "mm"),
  29148. default: true
  29149. },
  29150. ]
  29151. ))
  29152. characterMakers.push(() => makeCharacter(
  29153. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29154. {
  29155. front: {
  29156. height: math.unit(6, "feet"),
  29157. weight: math.unit(150, "lb"),
  29158. name: "Front",
  29159. image: {
  29160. source: "./media/characters/casselene-yaro/front.svg",
  29161. extra: 4721 / 4541,
  29162. bottom: 82 / 4803
  29163. }
  29164. },
  29165. back: {
  29166. height: math.unit(6, "feet"),
  29167. weight: math.unit(150, "lb"),
  29168. name: "Back",
  29169. image: {
  29170. source: "./media/characters/casselene-yaro/back.svg",
  29171. extra: 4569 / 4377,
  29172. bottom: 69 / 4638
  29173. }
  29174. },
  29175. frontDressed: {
  29176. height: math.unit(6, "feet"),
  29177. weight: math.unit(150, "lb"),
  29178. name: "Front-dressed",
  29179. image: {
  29180. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29181. extra: 4721 / 4541,
  29182. bottom: 82 / 4803
  29183. }
  29184. },
  29185. },
  29186. [
  29187. {
  29188. name: "Macro",
  29189. height: math.unit(190, "feet"),
  29190. default: true
  29191. },
  29192. ]
  29193. ))
  29194. characterMakers.push(() => makeCharacter(
  29195. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29196. {
  29197. front: {
  29198. height: math.unit(6, "feet"),
  29199. weight: math.unit(150, "lb"),
  29200. name: "Front",
  29201. image: {
  29202. source: "./media/characters/myra-rue-delore/front.svg",
  29203. extra: 1340 / 1308,
  29204. bottom: 67 / 1407
  29205. }
  29206. },
  29207. back: {
  29208. height: math.unit(6, "feet"),
  29209. weight: math.unit(150, "lb"),
  29210. name: "Back",
  29211. image: {
  29212. source: "./media/characters/myra-rue-delore/back.svg",
  29213. extra: 1341 / 1310,
  29214. bottom: 40 / 1381
  29215. }
  29216. },
  29217. frontDressed: {
  29218. height: math.unit(6, "feet"),
  29219. weight: math.unit(150, "lb"),
  29220. name: "Front (Dressed)",
  29221. image: {
  29222. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29223. extra: 1340 / 1308,
  29224. bottom: 67 / 1407
  29225. }
  29226. },
  29227. },
  29228. [
  29229. {
  29230. name: "Macro",
  29231. height: math.unit(150, "feet"),
  29232. default: true
  29233. },
  29234. ]
  29235. ))
  29236. characterMakers.push(() => makeCharacter(
  29237. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29238. {
  29239. front: {
  29240. height: math.unit(10, "feet"),
  29241. weight: math.unit(15015, "lb"),
  29242. name: "Front",
  29243. image: {
  29244. source: "./media/characters/fem!plat/front.svg",
  29245. extra: 2799 / 2604,
  29246. bottom: 149 / 2948
  29247. }
  29248. },
  29249. },
  29250. [
  29251. {
  29252. name: "Normal",
  29253. height: math.unit(10, "feet"),
  29254. default: true
  29255. },
  29256. {
  29257. name: "Macro",
  29258. height: math.unit(100, "feet")
  29259. },
  29260. {
  29261. name: "Megamacro",
  29262. height: math.unit(1000, "feet")
  29263. },
  29264. ]
  29265. ))
  29266. characterMakers.push(() => makeCharacter(
  29267. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29268. {
  29269. front: {
  29270. height: math.unit(15 + 5 / 12, "feet"),
  29271. weight: math.unit(4600, "lb"),
  29272. name: "Front",
  29273. image: {
  29274. source: "./media/characters/neapolitan-ananassa/front.svg",
  29275. extra: 2903 / 2736,
  29276. bottom: 0 / 2903
  29277. }
  29278. },
  29279. side: {
  29280. height: math.unit(15 + 5 / 12, "feet"),
  29281. weight: math.unit(4600, "lb"),
  29282. name: "Side",
  29283. image: {
  29284. source: "./media/characters/neapolitan-ananassa/side.svg",
  29285. extra: 2925 / 2719,
  29286. bottom: 0 / 2925
  29287. }
  29288. },
  29289. back: {
  29290. height: math.unit(15 + 5 / 12, "feet"),
  29291. weight: math.unit(4600, "lb"),
  29292. name: "Back",
  29293. image: {
  29294. source: "./media/characters/neapolitan-ananassa/back.svg",
  29295. extra: 2903 / 2736,
  29296. bottom: 0 / 2903
  29297. }
  29298. },
  29299. },
  29300. [
  29301. {
  29302. name: "Normal",
  29303. height: math.unit(15 + 5 / 12, "feet"),
  29304. default: true
  29305. },
  29306. {
  29307. name: "Post-Millenium",
  29308. height: math.unit(35 + 5 / 12, "feet")
  29309. },
  29310. {
  29311. name: "Post-Era",
  29312. height: math.unit(450 + 5 / 12, "feet")
  29313. },
  29314. ]
  29315. ))
  29316. characterMakers.push(() => makeCharacter(
  29317. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29318. {
  29319. front: {
  29320. height: math.unit(300, "meters"),
  29321. weight: math.unit(125000, "tonnes"),
  29322. name: "Front",
  29323. image: {
  29324. source: "./media/characters/pazuzu/front.svg",
  29325. extra: 877 / 794,
  29326. bottom: 47 / 924
  29327. }
  29328. },
  29329. },
  29330. [
  29331. {
  29332. name: "Macro",
  29333. height: math.unit(300, "meters"),
  29334. default: true
  29335. },
  29336. ]
  29337. ))
  29338. characterMakers.push(() => makeCharacter(
  29339. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29340. {
  29341. side: {
  29342. height: math.unit(10 + 7 / 12, "feet"),
  29343. weight: math.unit(2.5, "tons"),
  29344. name: "Side",
  29345. image: {
  29346. source: "./media/characters/aasha/side.svg",
  29347. extra: 1345 / 1245,
  29348. bottom: 111 / 1456
  29349. }
  29350. },
  29351. back: {
  29352. height: math.unit(10 + 7 / 12, "feet"),
  29353. weight: math.unit(2.5, "tons"),
  29354. name: "Back",
  29355. image: {
  29356. source: "./media/characters/aasha/back.svg",
  29357. extra: 1133 / 1057,
  29358. bottom: 257 / 1390
  29359. }
  29360. },
  29361. },
  29362. [
  29363. {
  29364. name: "Normal",
  29365. height: math.unit(10 + 7 / 12, "feet"),
  29366. default: true
  29367. },
  29368. ]
  29369. ))
  29370. characterMakers.push(() => makeCharacter(
  29371. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29372. {
  29373. front: {
  29374. height: math.unit(6 + 3 / 12, "feet"),
  29375. name: "Front",
  29376. image: {
  29377. source: "./media/characters/nevan/front.svg",
  29378. extra: 704 / 704,
  29379. bottom: 28 / 732
  29380. }
  29381. },
  29382. back: {
  29383. height: math.unit(6 + 3 / 12, "feet"),
  29384. name: "Back",
  29385. image: {
  29386. source: "./media/characters/nevan/back.svg",
  29387. extra: 714 / 714,
  29388. bottom: 21 / 735
  29389. }
  29390. },
  29391. frontFlaccid: {
  29392. height: math.unit(6 + 3 / 12, "feet"),
  29393. name: "Front (Flaccid)",
  29394. image: {
  29395. source: "./media/characters/nevan/front-flaccid.svg",
  29396. extra: 704 / 704,
  29397. bottom: 28 / 732
  29398. }
  29399. },
  29400. frontErect: {
  29401. height: math.unit(6 + 3 / 12, "feet"),
  29402. name: "Front (Erect)",
  29403. image: {
  29404. source: "./media/characters/nevan/front-erect.svg",
  29405. extra: 704 / 704,
  29406. bottom: 28 / 732
  29407. }
  29408. },
  29409. backFlaccid: {
  29410. height: math.unit(6 + 3 / 12, "feet"),
  29411. name: "Back (Flaccid)",
  29412. image: {
  29413. source: "./media/characters/nevan/back-flaccid.svg",
  29414. extra: 714 / 714,
  29415. bottom: 21 / 735
  29416. }
  29417. },
  29418. },
  29419. [
  29420. {
  29421. name: "Normal",
  29422. height: math.unit(6 + 3 / 12, "feet"),
  29423. default: true
  29424. },
  29425. ]
  29426. ))
  29427. characterMakers.push(() => makeCharacter(
  29428. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29429. {
  29430. front: {
  29431. height: math.unit(4, "feet"),
  29432. name: "Front",
  29433. image: {
  29434. source: "./media/characters/arhan/front.svg",
  29435. extra: 3368 / 3133,
  29436. bottom: 0 / 3368
  29437. }
  29438. },
  29439. side: {
  29440. height: math.unit(4, "feet"),
  29441. name: "Side",
  29442. image: {
  29443. source: "./media/characters/arhan/side.svg",
  29444. extra: 3347 / 3105,
  29445. bottom: 0 / 3347
  29446. }
  29447. },
  29448. tongue: {
  29449. height: math.unit(1.42, "feet"),
  29450. name: "Tongue",
  29451. image: {
  29452. source: "./media/characters/arhan/tongue.svg"
  29453. }
  29454. },
  29455. head: {
  29456. height: math.unit(0.85, "feet"),
  29457. name: "Head",
  29458. image: {
  29459. source: "./media/characters/arhan/head.svg"
  29460. }
  29461. },
  29462. },
  29463. [
  29464. {
  29465. name: "Normal",
  29466. height: math.unit(4, "feet"),
  29467. default: true
  29468. },
  29469. ]
  29470. ))
  29471. characterMakers.push(() => makeCharacter(
  29472. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29473. {
  29474. front: {
  29475. height: math.unit(5 + 7.5 / 12, "feet"),
  29476. weight: math.unit(120, "lb"),
  29477. name: "Front",
  29478. image: {
  29479. source: "./media/characters/digi-duncan/front.svg",
  29480. extra: 330 / 326,
  29481. bottom: 16 / 346
  29482. }
  29483. },
  29484. side: {
  29485. height: math.unit(5 + 7.5 / 12, "feet"),
  29486. weight: math.unit(120, "lb"),
  29487. name: "Side",
  29488. image: {
  29489. source: "./media/characters/digi-duncan/side.svg",
  29490. extra: 341 / 337,
  29491. bottom: 1 / 342
  29492. }
  29493. },
  29494. back: {
  29495. height: math.unit(5 + 7.5 / 12, "feet"),
  29496. weight: math.unit(120, "lb"),
  29497. name: "Back",
  29498. image: {
  29499. source: "./media/characters/digi-duncan/back.svg",
  29500. extra: 330 / 326,
  29501. bottom: 12 / 342
  29502. }
  29503. },
  29504. },
  29505. [
  29506. {
  29507. name: "Speck",
  29508. height: math.unit(0.25, "mm")
  29509. },
  29510. {
  29511. name: "Micro",
  29512. height: math.unit(5, "mm")
  29513. },
  29514. {
  29515. name: "Tiny",
  29516. height: math.unit(0.5, "inches"),
  29517. default: true
  29518. },
  29519. {
  29520. name: "Human",
  29521. height: math.unit(5 + 7.5 / 12, "feet")
  29522. },
  29523. {
  29524. name: "Minigiant",
  29525. height: math.unit(8 + 5.25, "feet")
  29526. },
  29527. {
  29528. name: "Giant",
  29529. height: math.unit(2000, "feet")
  29530. },
  29531. {
  29532. name: "Mega",
  29533. height: math.unit(371.1, "miles")
  29534. },
  29535. ]
  29536. ))
  29537. characterMakers.push(() => makeCharacter(
  29538. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29539. {
  29540. front: {
  29541. height: math.unit(2, "meters"),
  29542. weight: math.unit(350, "kg"),
  29543. name: "Front",
  29544. image: {
  29545. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29546. extra: 898 / 838,
  29547. bottom: 9 / 907
  29548. }
  29549. },
  29550. },
  29551. [
  29552. {
  29553. name: "Micro",
  29554. height: math.unit(8, "meters")
  29555. },
  29556. {
  29557. name: "Normal",
  29558. height: math.unit(50, "meters"),
  29559. default: true
  29560. },
  29561. {
  29562. name: "Macro",
  29563. height: math.unit(500, "meters")
  29564. },
  29565. ]
  29566. ))
  29567. characterMakers.push(() => makeCharacter(
  29568. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29569. {
  29570. front: {
  29571. height: math.unit(6 + 6 / 12, "feet"),
  29572. name: "Front",
  29573. image: {
  29574. source: "./media/characters/khardesh/front.svg",
  29575. extra: 888 / 797,
  29576. bottom: 25 / 913
  29577. }
  29578. },
  29579. },
  29580. [
  29581. {
  29582. name: "Normal",
  29583. height: math.unit(6 + 6 / 12, "feet"),
  29584. default: true
  29585. },
  29586. {
  29587. name: "Normal+",
  29588. height: math.unit(4, "meters")
  29589. },
  29590. {
  29591. name: "Macro",
  29592. height: math.unit(50, "meters")
  29593. },
  29594. {
  29595. name: "Macro+",
  29596. height: math.unit(100, "meters")
  29597. },
  29598. {
  29599. name: "Megamacro",
  29600. height: math.unit(20, "km")
  29601. },
  29602. ]
  29603. ))
  29604. characterMakers.push(() => makeCharacter(
  29605. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29606. {
  29607. front: {
  29608. height: math.unit(6, "feet"),
  29609. weight: math.unit(150, "lb"),
  29610. name: "Front",
  29611. image: {
  29612. source: "./media/characters/kosho/front.svg",
  29613. extra: 1847 / 1847,
  29614. bottom: 86 / 1933
  29615. }
  29616. },
  29617. },
  29618. [
  29619. {
  29620. name: "Second-stage micro",
  29621. height: math.unit(0.5, "inches")
  29622. },
  29623. {
  29624. name: "First-stage micro",
  29625. height: math.unit(6, "inches")
  29626. },
  29627. {
  29628. name: "Normal",
  29629. height: math.unit(6, "feet"),
  29630. default: true
  29631. },
  29632. {
  29633. name: "First-stage macro",
  29634. height: math.unit(72, "feet")
  29635. },
  29636. {
  29637. name: "Second-stage macro",
  29638. height: math.unit(864, "feet")
  29639. },
  29640. ]
  29641. ))
  29642. characterMakers.push(() => makeCharacter(
  29643. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29644. {
  29645. normal: {
  29646. height: math.unit(4 + 6 / 12, "feet"),
  29647. name: "Normal",
  29648. image: {
  29649. source: "./media/characters/hydra/normal.svg",
  29650. extra: 2833 / 2634,
  29651. bottom: 68 / 2901
  29652. }
  29653. },
  29654. smol: {
  29655. height: math.unit(0.705, "inches"),
  29656. name: "Smol",
  29657. image: {
  29658. source: "./media/characters/hydra/smol.svg",
  29659. extra: 2715 / 2540,
  29660. bottom: 0 / 2715
  29661. }
  29662. },
  29663. },
  29664. [
  29665. {
  29666. name: "Normal",
  29667. height: math.unit(4 + 6 / 12, "feet"),
  29668. default: true
  29669. }
  29670. ]
  29671. ))
  29672. characterMakers.push(() => makeCharacter(
  29673. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29674. {
  29675. front: {
  29676. height: math.unit(0.6, "cm"),
  29677. name: "Front",
  29678. image: {
  29679. source: "./media/characters/daz/front.svg",
  29680. extra: 1682 / 1164,
  29681. bottom: 42 / 1724
  29682. }
  29683. },
  29684. },
  29685. [
  29686. {
  29687. name: "Normal",
  29688. height: math.unit(0.6, "cm"),
  29689. default: true
  29690. },
  29691. ]
  29692. ))
  29693. characterMakers.push(() => makeCharacter(
  29694. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29695. {
  29696. front: {
  29697. height: math.unit(6, "feet"),
  29698. weight: math.unit(235, "lb"),
  29699. name: "Front",
  29700. image: {
  29701. source: "./media/characters/theo-pangolin/front.svg",
  29702. extra: 1996 / 1969,
  29703. bottom: 115 / 2111
  29704. }
  29705. },
  29706. back: {
  29707. height: math.unit(6, "feet"),
  29708. weight: math.unit(235, "lb"),
  29709. name: "Back",
  29710. image: {
  29711. source: "./media/characters/theo-pangolin/back.svg",
  29712. extra: 1979 / 1979,
  29713. bottom: 40 / 2019
  29714. }
  29715. },
  29716. feral: {
  29717. height: math.unit(2, "feet"),
  29718. weight: math.unit(30, "lb"),
  29719. name: "Feral",
  29720. image: {
  29721. source: "./media/characters/theo-pangolin/feral.svg",
  29722. extra: 803 / 791,
  29723. bottom: 181 / 984
  29724. }
  29725. },
  29726. footFive: {
  29727. height: math.unit(1.43, "feet"),
  29728. name: "Foot (Five Toes)",
  29729. image: {
  29730. source: "./media/characters/theo-pangolin/foot-five.svg"
  29731. }
  29732. },
  29733. footFour: {
  29734. height: math.unit(1.43, "feet"),
  29735. name: "Foot (Four Toes)",
  29736. image: {
  29737. source: "./media/characters/theo-pangolin/foot-four.svg"
  29738. }
  29739. },
  29740. handFour: {
  29741. height: math.unit(0.81, "feet"),
  29742. name: "Hand (Four Fingers)",
  29743. image: {
  29744. source: "./media/characters/theo-pangolin/hand-four.svg"
  29745. }
  29746. },
  29747. handThree: {
  29748. height: math.unit(0.81, "feet"),
  29749. name: "Hand (Three Fingers)",
  29750. image: {
  29751. source: "./media/characters/theo-pangolin/hand-three.svg"
  29752. }
  29753. },
  29754. headFront: {
  29755. height: math.unit(1.37, "feet"),
  29756. name: "Head (Front)",
  29757. image: {
  29758. source: "./media/characters/theo-pangolin/head-front.svg"
  29759. }
  29760. },
  29761. headSide: {
  29762. height: math.unit(1.43, "feet"),
  29763. name: "Head (Side)",
  29764. image: {
  29765. source: "./media/characters/theo-pangolin/head-side.svg"
  29766. }
  29767. },
  29768. tongue: {
  29769. height: math.unit(2.29, "feet"),
  29770. name: "Tongue",
  29771. image: {
  29772. source: "./media/characters/theo-pangolin/tongue.svg"
  29773. }
  29774. },
  29775. },
  29776. [
  29777. {
  29778. name: "Normal",
  29779. height: math.unit(6, "feet")
  29780. },
  29781. {
  29782. name: "Macro",
  29783. height: math.unit(400, "feet"),
  29784. default: true
  29785. },
  29786. ]
  29787. ))
  29788. characterMakers.push(() => makeCharacter(
  29789. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29790. {
  29791. front: {
  29792. height: math.unit(6, "inches"),
  29793. weight: math.unit(0.036, "kg"),
  29794. name: "Front",
  29795. image: {
  29796. source: "./media/characters/renée/front.svg",
  29797. extra: 900 / 886,
  29798. bottom: 8 / 908
  29799. }
  29800. },
  29801. },
  29802. [
  29803. {
  29804. name: "Nano",
  29805. height: math.unit(1, "nm")
  29806. },
  29807. {
  29808. name: "Micro",
  29809. height: math.unit(1, "mm")
  29810. },
  29811. {
  29812. name: "Normal",
  29813. height: math.unit(6, "inches")
  29814. },
  29815. {
  29816. name: "Macro",
  29817. height: math.unit(2000, "feet"),
  29818. default: true
  29819. },
  29820. {
  29821. name: "Megamacro",
  29822. height: math.unit(2, "km")
  29823. },
  29824. {
  29825. name: "Gigamacro",
  29826. height: math.unit(2000, "km")
  29827. },
  29828. {
  29829. name: "Teramacro",
  29830. height: math.unit(250000, "km")
  29831. },
  29832. ]
  29833. ))
  29834. characterMakers.push(() => makeCharacter(
  29835. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29836. {
  29837. front: {
  29838. height: math.unit(4, "meters"),
  29839. weight: math.unit(150, "kg"),
  29840. name: "Front",
  29841. image: {
  29842. source: "./media/characters/caledvwlch/front.svg",
  29843. extra: 1760 / 1551,
  29844. bottom: 28 / 1788
  29845. }
  29846. },
  29847. side: {
  29848. height: math.unit(4, "meters"),
  29849. weight: math.unit(150, "kg"),
  29850. name: "Side",
  29851. image: {
  29852. source: "./media/characters/caledvwlch/side.svg",
  29853. extra: 1605 / 1536,
  29854. bottom: 31 / 1636
  29855. }
  29856. },
  29857. back: {
  29858. height: math.unit(4, "meters"),
  29859. weight: math.unit(150, "kg"),
  29860. name: "Back",
  29861. image: {
  29862. source: "./media/characters/caledvwlch/back.svg",
  29863. extra: 1635 / 1565,
  29864. bottom: 27 / 1662
  29865. }
  29866. },
  29867. },
  29868. [
  29869. {
  29870. name: "\"Incognito\"",
  29871. height: math.unit(4, "meters")
  29872. },
  29873. {
  29874. name: "Small rampage",
  29875. height: math.unit(600, "meters")
  29876. },
  29877. {
  29878. name: "Mega",
  29879. height: math.unit(30, "km")
  29880. },
  29881. {
  29882. name: "Home-size",
  29883. height: math.unit(50, "km"),
  29884. default: true
  29885. },
  29886. {
  29887. name: "Giga",
  29888. height: math.unit(300, "km")
  29889. },
  29890. {
  29891. name: "Lounging",
  29892. height: math.unit(11000, "km")
  29893. },
  29894. {
  29895. name: "Planet snacking",
  29896. height: math.unit(2000000, "km")
  29897. },
  29898. ]
  29899. ))
  29900. characterMakers.push(() => makeCharacter(
  29901. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29902. {
  29903. front: {
  29904. height: math.unit(6, "feet"),
  29905. weight: math.unit(215, "lb"),
  29906. name: "Front",
  29907. image: {
  29908. source: "./media/characters/sapphire-svell/front.svg",
  29909. extra: 495 / 455,
  29910. bottom: 20 / 515
  29911. }
  29912. },
  29913. back: {
  29914. height: math.unit(6, "feet"),
  29915. weight: math.unit(216, "lb"),
  29916. name: "Back",
  29917. image: {
  29918. source: "./media/characters/sapphire-svell/back.svg",
  29919. extra: 497 / 477,
  29920. bottom: 7 / 504
  29921. }
  29922. },
  29923. maw: {
  29924. height: math.unit(1.57, "feet"),
  29925. name: "Maw",
  29926. image: {
  29927. source: "./media/characters/sapphire-svell/maw.svg"
  29928. }
  29929. },
  29930. foot: {
  29931. height: math.unit(1.07, "feet"),
  29932. name: "Foot",
  29933. image: {
  29934. source: "./media/characters/sapphire-svell/foot.svg"
  29935. }
  29936. },
  29937. toering: {
  29938. height: math.unit(1.7, "inch"),
  29939. name: "Toering",
  29940. image: {
  29941. source: "./media/characters/sapphire-svell/toering.svg"
  29942. }
  29943. },
  29944. },
  29945. [
  29946. {
  29947. name: "Normal",
  29948. height: math.unit(300, "feet"),
  29949. default: true
  29950. },
  29951. {
  29952. name: "Augmented",
  29953. height: math.unit(1250, "feet")
  29954. },
  29955. {
  29956. name: "Unleashed",
  29957. height: math.unit(3000, "feet")
  29958. },
  29959. ]
  29960. ))
  29961. characterMakers.push(() => makeCharacter(
  29962. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29963. {
  29964. side: {
  29965. height: math.unit(2 + 3 / 12, "feet"),
  29966. weight: math.unit(110, "lb"),
  29967. name: "Side",
  29968. image: {
  29969. source: "./media/characters/glitch-flux/side.svg",
  29970. extra: 997 / 805,
  29971. bottom: 20 / 1017
  29972. }
  29973. },
  29974. },
  29975. [
  29976. {
  29977. name: "Normal",
  29978. height: math.unit(2 + 3 / 12, "feet"),
  29979. default: true
  29980. },
  29981. ]
  29982. ))
  29983. characterMakers.push(() => makeCharacter(
  29984. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29985. {
  29986. front: {
  29987. height: math.unit(4, "meters"),
  29988. name: "Front",
  29989. image: {
  29990. source: "./media/characters/mid/front.svg",
  29991. extra: 507 / 476,
  29992. bottom: 17 / 524
  29993. }
  29994. },
  29995. back: {
  29996. height: math.unit(4, "meters"),
  29997. name: "Back",
  29998. image: {
  29999. source: "./media/characters/mid/back.svg",
  30000. extra: 519 / 487,
  30001. bottom: 7 / 526
  30002. }
  30003. },
  30004. stuck: {
  30005. height: math.unit(2.2, "meters"),
  30006. name: "Stuck",
  30007. image: {
  30008. source: "./media/characters/mid/stuck.svg",
  30009. extra: 1951 / 1869,
  30010. bottom: 88 / 2039
  30011. }
  30012. }
  30013. },
  30014. [
  30015. {
  30016. name: "Normal",
  30017. height: math.unit(4, "meters"),
  30018. default: true
  30019. },
  30020. {
  30021. name: "Big",
  30022. height: math.unit(10, "meters")
  30023. },
  30024. {
  30025. name: "Macro",
  30026. height: math.unit(800, "meters")
  30027. },
  30028. {
  30029. name: "Megamacro",
  30030. height: math.unit(100, "km")
  30031. },
  30032. {
  30033. name: "Overgrown",
  30034. height: math.unit(1, "parsec")
  30035. },
  30036. ]
  30037. ))
  30038. characterMakers.push(() => makeCharacter(
  30039. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30040. {
  30041. front: {
  30042. height: math.unit(2.5, "meters"),
  30043. weight: math.unit(225, "kg"),
  30044. name: "Front",
  30045. image: {
  30046. source: "./media/characters/iris/front.svg",
  30047. extra: 3348 / 3251,
  30048. bottom: 205 / 3553
  30049. }
  30050. },
  30051. maw: {
  30052. height: math.unit(0.56, "meter"),
  30053. name: "Maw",
  30054. image: {
  30055. source: "./media/characters/iris/maw.svg"
  30056. }
  30057. },
  30058. },
  30059. [
  30060. {
  30061. name: "Mewter cat",
  30062. height: math.unit(1.2, "meters")
  30063. },
  30064. {
  30065. name: "Minimacro",
  30066. height: math.unit(2.5, "meters"),
  30067. default: true
  30068. },
  30069. {
  30070. name: "Macro",
  30071. height: math.unit(180, "meters")
  30072. },
  30073. {
  30074. name: "Megamacro",
  30075. height: math.unit(2746, "meters")
  30076. },
  30077. ]
  30078. ))
  30079. characterMakers.push(() => makeCharacter(
  30080. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30081. {
  30082. front: {
  30083. height: math.unit(6, "feet"),
  30084. weight: math.unit(135, "lb"),
  30085. name: "Front",
  30086. image: {
  30087. source: "./media/characters/axel/front.svg",
  30088. extra: 908 / 908,
  30089. bottom: 58 / 966
  30090. }
  30091. },
  30092. side: {
  30093. height: math.unit(6, "feet"),
  30094. weight: math.unit(135, "lb"),
  30095. name: "Side",
  30096. image: {
  30097. source: "./media/characters/axel/side.svg",
  30098. extra: 958 / 958,
  30099. bottom: 11 / 969
  30100. }
  30101. },
  30102. back: {
  30103. height: math.unit(6, "feet"),
  30104. weight: math.unit(135, "lb"),
  30105. name: "Back",
  30106. image: {
  30107. source: "./media/characters/axel/back.svg",
  30108. extra: 887 / 887,
  30109. bottom: 34 / 921
  30110. }
  30111. },
  30112. head: {
  30113. height: math.unit(1.07, "feet"),
  30114. name: "Head",
  30115. image: {
  30116. source: "./media/characters/axel/head.svg"
  30117. }
  30118. },
  30119. beak: {
  30120. height: math.unit(1.4, "feet"),
  30121. name: "Beak",
  30122. image: {
  30123. source: "./media/characters/axel/beak.svg"
  30124. }
  30125. },
  30126. beakSide: {
  30127. height: math.unit(1.4, "feet"),
  30128. name: "Beak Side",
  30129. image: {
  30130. source: "./media/characters/axel/beak-side.svg"
  30131. }
  30132. },
  30133. sheath: {
  30134. height: math.unit(0.5, "feet"),
  30135. name: "Sheath",
  30136. image: {
  30137. source: "./media/characters/axel/sheath.svg"
  30138. }
  30139. },
  30140. dick: {
  30141. height: math.unit(0.98, "feet"),
  30142. name: "Dick",
  30143. image: {
  30144. source: "./media/characters/axel/dick.svg"
  30145. }
  30146. },
  30147. },
  30148. [
  30149. {
  30150. name: "Macro",
  30151. height: math.unit(68, "meters"),
  30152. default: true
  30153. },
  30154. ]
  30155. ))
  30156. characterMakers.push(() => makeCharacter(
  30157. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30158. {
  30159. front: {
  30160. height: math.unit(3.5, "meters"),
  30161. weight: math.unit(1200, "kg"),
  30162. name: "Front",
  30163. image: {
  30164. source: "./media/characters/joanna/front.svg",
  30165. extra: 1596 / 1488,
  30166. bottom: 29 / 1625
  30167. }
  30168. },
  30169. back: {
  30170. height: math.unit(3.5, "meters"),
  30171. weight: math.unit(1200, "kg"),
  30172. name: "Back",
  30173. image: {
  30174. source: "./media/characters/joanna/back.svg",
  30175. extra: 1594 / 1495,
  30176. bottom: 26 / 1620
  30177. }
  30178. },
  30179. frontShorts: {
  30180. height: math.unit(3.5, "meters"),
  30181. weight: math.unit(1200, "kg"),
  30182. name: "Front (Shorts)",
  30183. image: {
  30184. source: "./media/characters/joanna/front-shorts.svg",
  30185. extra: 1596 / 1488,
  30186. bottom: 29 / 1625
  30187. }
  30188. },
  30189. frontBiker: {
  30190. height: math.unit(3.5, "meters"),
  30191. weight: math.unit(1200, "kg"),
  30192. name: "Front (Biker)",
  30193. image: {
  30194. source: "./media/characters/joanna/front-biker.svg",
  30195. extra: 1596 / 1488,
  30196. bottom: 29 / 1625
  30197. }
  30198. },
  30199. backBiker: {
  30200. height: math.unit(3.5, "meters"),
  30201. weight: math.unit(1200, "kg"),
  30202. name: "Back (Biker)",
  30203. image: {
  30204. source: "./media/characters/joanna/back-biker.svg",
  30205. extra: 1594 / 1495,
  30206. bottom: 88 / 1682
  30207. }
  30208. },
  30209. bikeLeft: {
  30210. height: math.unit(2.4, "meters"),
  30211. weight: math.unit(1600, "kg"),
  30212. name: "Bike (Left)",
  30213. image: {
  30214. source: "./media/characters/joanna/bike-left.svg",
  30215. extra: 720 / 720,
  30216. bottom: 8 / 728
  30217. }
  30218. },
  30219. bikeRight: {
  30220. height: math.unit(2.4, "meters"),
  30221. weight: math.unit(1600, "kg"),
  30222. name: "Bike (Right)",
  30223. image: {
  30224. source: "./media/characters/joanna/bike-right.svg",
  30225. extra: 720 / 720,
  30226. bottom: 8 / 728
  30227. }
  30228. },
  30229. },
  30230. [
  30231. {
  30232. name: "Incognito",
  30233. height: math.unit(3.5, "meters")
  30234. },
  30235. {
  30236. name: "Casual Big",
  30237. height: math.unit(200, "meters")
  30238. },
  30239. {
  30240. name: "Macro",
  30241. height: math.unit(600, "meters")
  30242. },
  30243. {
  30244. name: "Original",
  30245. height: math.unit(20, "km"),
  30246. default: true
  30247. },
  30248. {
  30249. name: "Giga",
  30250. height: math.unit(400, "km")
  30251. },
  30252. {
  30253. name: "Lounging",
  30254. height: math.unit(1500, "km")
  30255. },
  30256. {
  30257. name: "Planetary",
  30258. height: math.unit(200000, "km")
  30259. },
  30260. ]
  30261. ))
  30262. characterMakers.push(() => makeCharacter(
  30263. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30264. {
  30265. front: {
  30266. height: math.unit(6, "feet"),
  30267. weight: math.unit(150, "lb"),
  30268. name: "Front",
  30269. image: {
  30270. source: "./media/characters/hugo-sigil/front.svg",
  30271. extra: 522 / 500,
  30272. bottom: 2 / 524
  30273. }
  30274. },
  30275. back: {
  30276. height: math.unit(6, "feet"),
  30277. weight: math.unit(150, "lb"),
  30278. name: "Back",
  30279. image: {
  30280. source: "./media/characters/hugo-sigil/back.svg",
  30281. extra: 519 / 495,
  30282. bottom: 5 / 524
  30283. }
  30284. },
  30285. maw: {
  30286. height: math.unit(1.4, "feet"),
  30287. weight: math.unit(150, "lb"),
  30288. name: "Maw",
  30289. image: {
  30290. source: "./media/characters/hugo-sigil/maw.svg"
  30291. }
  30292. },
  30293. feet: {
  30294. height: math.unit(1.56, "feet"),
  30295. weight: math.unit(150, "lb"),
  30296. name: "Feet",
  30297. image: {
  30298. source: "./media/characters/hugo-sigil/feet.svg",
  30299. extra: 177 / 177,
  30300. bottom: 12 / 189
  30301. }
  30302. },
  30303. },
  30304. [
  30305. {
  30306. name: "Normal",
  30307. height: math.unit(6, "feet")
  30308. },
  30309. {
  30310. name: "Macro",
  30311. height: math.unit(200, "feet"),
  30312. default: true
  30313. },
  30314. ]
  30315. ))
  30316. characterMakers.push(() => makeCharacter(
  30317. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30318. {
  30319. front: {
  30320. height: math.unit(6, "feet"),
  30321. weight: math.unit(150, "lb"),
  30322. name: "Front",
  30323. image: {
  30324. source: "./media/characters/peri/front.svg",
  30325. extra: 2354 / 2233,
  30326. bottom: 49 / 2403
  30327. }
  30328. },
  30329. },
  30330. [
  30331. {
  30332. name: "Really Small",
  30333. height: math.unit(1, "nm")
  30334. },
  30335. {
  30336. name: "Micro",
  30337. height: math.unit(4, "inches")
  30338. },
  30339. {
  30340. name: "Normal",
  30341. height: math.unit(7, "inches"),
  30342. default: true
  30343. },
  30344. {
  30345. name: "Macro",
  30346. height: math.unit(400, "feet")
  30347. },
  30348. {
  30349. name: "Megamacro",
  30350. height: math.unit(100, "miles")
  30351. },
  30352. ]
  30353. ))
  30354. characterMakers.push(() => makeCharacter(
  30355. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30356. {
  30357. frontSlim: {
  30358. height: math.unit(7, "feet"),
  30359. name: "Front (Slim)",
  30360. image: {
  30361. source: "./media/characters/issilora/front-slim.svg",
  30362. extra: 529 / 449,
  30363. bottom: 53 / 582
  30364. }
  30365. },
  30366. sideSlim: {
  30367. height: math.unit(7, "feet"),
  30368. name: "Side (Slim)",
  30369. image: {
  30370. source: "./media/characters/issilora/side-slim.svg",
  30371. extra: 570 / 480,
  30372. bottom: 30 / 600
  30373. }
  30374. },
  30375. backSlim: {
  30376. height: math.unit(7, "feet"),
  30377. name: "Back (Slim)",
  30378. image: {
  30379. source: "./media/characters/issilora/back-slim.svg",
  30380. extra: 537 / 455,
  30381. bottom: 46 / 583
  30382. }
  30383. },
  30384. frontBuff: {
  30385. height: math.unit(7, "feet"),
  30386. name: "Front (Buff)",
  30387. image: {
  30388. source: "./media/characters/issilora/front-buff.svg",
  30389. extra: 2310 / 2035,
  30390. bottom: 335 / 2645
  30391. }
  30392. },
  30393. head: {
  30394. height: math.unit(1.94, "feet"),
  30395. name: "Head",
  30396. image: {
  30397. source: "./media/characters/issilora/head.svg"
  30398. }
  30399. },
  30400. },
  30401. [
  30402. {
  30403. name: "Minimum",
  30404. height: math.unit(7, "feet")
  30405. },
  30406. {
  30407. name: "Comfortable",
  30408. height: math.unit(17, "feet")
  30409. },
  30410. {
  30411. name: "Fun Size",
  30412. height: math.unit(47, "feet")
  30413. },
  30414. {
  30415. name: "Natural Macro",
  30416. height: math.unit(137, "feet"),
  30417. default: true
  30418. },
  30419. {
  30420. name: "Maximum Kaiju",
  30421. height: math.unit(397, "feet")
  30422. },
  30423. ]
  30424. ))
  30425. characterMakers.push(() => makeCharacter(
  30426. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30427. {
  30428. front: {
  30429. height: math.unit(50 + 9/12, "feet"),
  30430. weight: math.unit(32.8, "tons"),
  30431. name: "Front",
  30432. image: {
  30433. source: "./media/characters/irb'iiritaahn/front.svg",
  30434. extra: 1878/1826,
  30435. bottom: 326/2204
  30436. }
  30437. },
  30438. back: {
  30439. height: math.unit(50 + 9/12, "feet"),
  30440. weight: math.unit(32.8, "tons"),
  30441. name: "Back",
  30442. image: {
  30443. source: "./media/characters/irb'iiritaahn/back.svg",
  30444. extra: 2052/2018,
  30445. bottom: 152/2204
  30446. }
  30447. },
  30448. head: {
  30449. height: math.unit(12.86, "feet"),
  30450. name: "Head",
  30451. image: {
  30452. source: "./media/characters/irb'iiritaahn/head.svg"
  30453. }
  30454. },
  30455. maw: {
  30456. height: math.unit(9.66, "feet"),
  30457. name: "Maw",
  30458. image: {
  30459. source: "./media/characters/irb'iiritaahn/maw.svg"
  30460. }
  30461. },
  30462. frontDick: {
  30463. height: math.unit(8.78461, "feet"),
  30464. name: "Front Dick",
  30465. image: {
  30466. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30467. }
  30468. },
  30469. rearDick: {
  30470. height: math.unit(8.78461, "feet"),
  30471. name: "Rear Dick",
  30472. image: {
  30473. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30474. }
  30475. },
  30476. rearDickUnfolded: {
  30477. height: math.unit(8.78, "feet"),
  30478. name: "Rear Dick (Unfolded)",
  30479. image: {
  30480. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30481. }
  30482. },
  30483. wings: {
  30484. height: math.unit(43, "feet"),
  30485. name: "Wings",
  30486. image: {
  30487. source: "./media/characters/irb'iiritaahn/wings.svg"
  30488. }
  30489. },
  30490. },
  30491. [
  30492. {
  30493. name: "Macro",
  30494. height: math.unit(50 + 9/12, "feet"),
  30495. default: true
  30496. },
  30497. ]
  30498. ))
  30499. characterMakers.push(() => makeCharacter(
  30500. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30501. {
  30502. front: {
  30503. height: math.unit(205, "cm"),
  30504. weight: math.unit(102, "kg"),
  30505. name: "Front",
  30506. image: {
  30507. source: "./media/characters/irbisgreif/front.svg",
  30508. extra: 785/706,
  30509. bottom: 13/798
  30510. }
  30511. },
  30512. back: {
  30513. height: math.unit(205, "cm"),
  30514. weight: math.unit(102, "kg"),
  30515. name: "Back",
  30516. image: {
  30517. source: "./media/characters/irbisgreif/back.svg",
  30518. extra: 713/701,
  30519. bottom: 26/739
  30520. }
  30521. },
  30522. frontDressed: {
  30523. height: math.unit(216, "cm"),
  30524. weight: math.unit(102, "kg"),
  30525. name: "Front-dressed",
  30526. image: {
  30527. source: "./media/characters/irbisgreif/front-dressed.svg",
  30528. extra: 902/776,
  30529. bottom: 14/916
  30530. }
  30531. },
  30532. sideDressed: {
  30533. height: math.unit(195, "cm"),
  30534. weight: math.unit(102, "kg"),
  30535. name: "Side-dressed",
  30536. image: {
  30537. source: "./media/characters/irbisgreif/side-dressed.svg",
  30538. extra: 788/688,
  30539. bottom: 21/809
  30540. }
  30541. },
  30542. backDressed: {
  30543. height: math.unit(216, "cm"),
  30544. weight: math.unit(102, "kg"),
  30545. name: "Back-dressed",
  30546. image: {
  30547. source: "./media/characters/irbisgreif/back-dressed.svg",
  30548. extra: 901/783,
  30549. bottom: 10/911
  30550. }
  30551. },
  30552. dick: {
  30553. height: math.unit(0.49, "feet"),
  30554. name: "Dick",
  30555. image: {
  30556. source: "./media/characters/irbisgreif/dick.svg"
  30557. }
  30558. },
  30559. wingTop: {
  30560. height: math.unit(1.93 , "feet"),
  30561. name: "Wing-top",
  30562. image: {
  30563. source: "./media/characters/irbisgreif/wing-top.svg"
  30564. }
  30565. },
  30566. wingBottom: {
  30567. height: math.unit(1.93 , "feet"),
  30568. name: "Wing-bottom",
  30569. image: {
  30570. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30571. }
  30572. },
  30573. },
  30574. [
  30575. {
  30576. name: "Normal",
  30577. height: math.unit(216, "cm"),
  30578. default: true
  30579. },
  30580. ]
  30581. ))
  30582. characterMakers.push(() => makeCharacter(
  30583. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30584. {
  30585. front: {
  30586. height: math.unit(6, "feet"),
  30587. weight: math.unit(150, "lb"),
  30588. name: "Front",
  30589. image: {
  30590. source: "./media/characters/pride/front.svg",
  30591. extra: 1299/1230,
  30592. bottom: 18/1317
  30593. }
  30594. },
  30595. },
  30596. [
  30597. {
  30598. name: "Normal",
  30599. height: math.unit(7, "feet")
  30600. },
  30601. {
  30602. name: "Mini-macro",
  30603. height: math.unit(11, "feet")
  30604. },
  30605. {
  30606. name: "Macro",
  30607. height: math.unit(15, "meters"),
  30608. default: true
  30609. },
  30610. {
  30611. name: "Macro+",
  30612. height: math.unit(40, "meters")
  30613. },
  30614. ]
  30615. ))
  30616. characterMakers.push(() => makeCharacter(
  30617. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30618. {
  30619. front: {
  30620. height: math.unit(4 + 2 / 12, "feet"),
  30621. weight: math.unit(95, "lb"),
  30622. name: "Front",
  30623. image: {
  30624. source: "./media/characters/vaelophis-nyx/front.svg",
  30625. extra: 2532/2330,
  30626. bottom: 0/2532
  30627. }
  30628. },
  30629. back: {
  30630. height: math.unit(4 + 2 / 12, "feet"),
  30631. weight: math.unit(95, "lb"),
  30632. name: "Back",
  30633. image: {
  30634. source: "./media/characters/vaelophis-nyx/back.svg",
  30635. extra: 2484/2361,
  30636. bottom: 0/2484
  30637. }
  30638. },
  30639. feralSide: {
  30640. height: math.unit(2 + 1/12, "feet"),
  30641. weight: math.unit(20, "lb"),
  30642. name: "Feral (Side)",
  30643. image: {
  30644. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30645. extra: 1721/1581,
  30646. bottom: 70/1791
  30647. }
  30648. },
  30649. feralLazing: {
  30650. height: math.unit(1.08, "feet"),
  30651. weight: math.unit(20, "lb"),
  30652. name: "Feral (Lazing)",
  30653. image: {
  30654. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30655. extra: 822/822,
  30656. bottom: 248/1070
  30657. }
  30658. },
  30659. ear: {
  30660. height: math.unit(0.416, "feet"),
  30661. name: "Ear",
  30662. image: {
  30663. source: "./media/characters/vaelophis-nyx/ear.svg"
  30664. }
  30665. },
  30666. eye: {
  30667. height: math.unit(0.0748, "feet"),
  30668. name: "Eye",
  30669. image: {
  30670. source: "./media/characters/vaelophis-nyx/eye.svg"
  30671. }
  30672. },
  30673. mouth: {
  30674. height: math.unit(0.378, "feet"),
  30675. name: "Mouth",
  30676. image: {
  30677. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30678. }
  30679. },
  30680. spade: {
  30681. height: math.unit(0.55, "feet"),
  30682. name: "Spade",
  30683. image: {
  30684. source: "./media/characters/vaelophis-nyx/spade.svg"
  30685. }
  30686. },
  30687. },
  30688. [
  30689. {
  30690. name: "Normal",
  30691. height: math.unit(4 + 2/12, "feet"),
  30692. default: true
  30693. },
  30694. ]
  30695. ))
  30696. characterMakers.push(() => makeCharacter(
  30697. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30698. {
  30699. front: {
  30700. height: math.unit(7, "feet"),
  30701. weight: math.unit(231, "lb"),
  30702. name: "Front",
  30703. image: {
  30704. source: "./media/characters/flux/front.svg",
  30705. extra: 919/871,
  30706. bottom: 0/919
  30707. }
  30708. },
  30709. back: {
  30710. height: math.unit(7, "feet"),
  30711. weight: math.unit(231, "lb"),
  30712. name: "Back",
  30713. image: {
  30714. source: "./media/characters/flux/back.svg",
  30715. extra: 1040/992,
  30716. bottom: 0/1040
  30717. }
  30718. },
  30719. frontDressed: {
  30720. height: math.unit(7, "feet"),
  30721. weight: math.unit(231, "lb"),
  30722. name: "Front (Dressed)",
  30723. image: {
  30724. source: "./media/characters/flux/front-dressed.svg",
  30725. extra: 919/871,
  30726. bottom: 0/919
  30727. }
  30728. },
  30729. feralSide: {
  30730. height: math.unit(5, "feet"),
  30731. weight: math.unit(150, "lb"),
  30732. name: "Feral (Side)",
  30733. image: {
  30734. source: "./media/characters/flux/feral-side.svg",
  30735. extra: 598/528,
  30736. bottom: 28/626
  30737. }
  30738. },
  30739. head: {
  30740. height: math.unit(1.585, "feet"),
  30741. name: "Head",
  30742. image: {
  30743. source: "./media/characters/flux/head.svg"
  30744. }
  30745. },
  30746. headSide: {
  30747. height: math.unit(1.74, "feet"),
  30748. name: "Head (Side)",
  30749. image: {
  30750. source: "./media/characters/flux/head-side.svg"
  30751. }
  30752. },
  30753. headSideFire: {
  30754. height: math.unit(1.76, "feet"),
  30755. name: "Head (Side, Fire)",
  30756. image: {
  30757. source: "./media/characters/flux/head-side-fire.svg"
  30758. }
  30759. },
  30760. },
  30761. [
  30762. {
  30763. name: "Normal",
  30764. height: math.unit(7, "feet"),
  30765. default: true
  30766. },
  30767. ]
  30768. ))
  30769. characterMakers.push(() => makeCharacter(
  30770. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30771. {
  30772. front: {
  30773. height: math.unit(9, "feet"),
  30774. weight: math.unit(1012, "lb"),
  30775. name: "Front",
  30776. image: {
  30777. source: "./media/characters/ulfra-lupae/front.svg",
  30778. extra: 1083/1011,
  30779. bottom: 67/1150
  30780. }
  30781. },
  30782. },
  30783. [
  30784. {
  30785. name: "Micro",
  30786. height: math.unit(6, "inches")
  30787. },
  30788. {
  30789. name: "Socializing",
  30790. height: math.unit(6 + 5/12, "feet")
  30791. },
  30792. {
  30793. name: "Normal",
  30794. height: math.unit(9, "feet"),
  30795. default: true
  30796. },
  30797. {
  30798. name: "Macro",
  30799. height: math.unit(150, "feet")
  30800. },
  30801. ]
  30802. ))
  30803. characterMakers.push(() => makeCharacter(
  30804. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30805. {
  30806. front: {
  30807. height: math.unit(5 + 2/12, "feet"),
  30808. weight: math.unit(120, "lb"),
  30809. name: "Front",
  30810. image: {
  30811. source: "./media/characters/timber/front.svg",
  30812. extra: 2814/2705,
  30813. bottom: 181/2995
  30814. }
  30815. },
  30816. },
  30817. [
  30818. {
  30819. name: "Normal",
  30820. height: math.unit(5 + 2/12, "feet"),
  30821. default: true
  30822. },
  30823. ]
  30824. ))
  30825. characterMakers.push(() => makeCharacter(
  30826. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30827. {
  30828. front: {
  30829. height: math.unit(5 + 7/12, "feet"),
  30830. weight: math.unit(220, "lb"),
  30831. name: "Front",
  30832. image: {
  30833. source: "./media/characters/nicki/front.svg",
  30834. extra: 453/419,
  30835. bottom: 7/460
  30836. }
  30837. },
  30838. frontAlt: {
  30839. height: math.unit(5 + 7/12, "feet"),
  30840. weight: math.unit(220, "lb"),
  30841. name: "Front-alt",
  30842. image: {
  30843. source: "./media/characters/nicki/front-alt.svg",
  30844. extra: 435/411,
  30845. bottom: 12/447
  30846. }
  30847. },
  30848. back: {
  30849. height: math.unit(5 + 7/12, "feet"),
  30850. weight: math.unit(220, "lb"),
  30851. name: "Back",
  30852. image: {
  30853. source: "./media/characters/nicki/back.svg",
  30854. extra: 440/413,
  30855. bottom: 19/459
  30856. }
  30857. },
  30858. taur: {
  30859. height: math.unit(7 + 6/12, "feet"),
  30860. weight: math.unit(700, "lb"),
  30861. name: "Taur",
  30862. image: {
  30863. source: "./media/characters/nicki/taur.svg",
  30864. extra: 975/773,
  30865. bottom: 0/975
  30866. }
  30867. },
  30868. frontNsfw: {
  30869. height: math.unit(5 + 7/12, "feet"),
  30870. weight: math.unit(220, "lb"),
  30871. name: "Front (NSFW)",
  30872. image: {
  30873. source: "./media/characters/nicki/front-nsfw.svg",
  30874. extra: 453/419,
  30875. bottom: 7/460
  30876. }
  30877. },
  30878. frontNsfwAlt: {
  30879. height: math.unit(5 + 7/12, "feet"),
  30880. weight: math.unit(220, "lb"),
  30881. name: "Front (Alt, NSFW)",
  30882. image: {
  30883. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30884. extra: 435/411,
  30885. bottom: 12/447
  30886. }
  30887. },
  30888. backNsfw: {
  30889. height: math.unit(5 + 7/12, "feet"),
  30890. weight: math.unit(220, "lb"),
  30891. name: "Back (NSFW)",
  30892. image: {
  30893. source: "./media/characters/nicki/back-nsfw.svg",
  30894. extra: 440/413,
  30895. bottom: 19/459
  30896. }
  30897. },
  30898. head: {
  30899. height: math.unit(2.1, "feet"),
  30900. name: "Head",
  30901. image: {
  30902. source: "./media/characters/nicki/head.svg"
  30903. }
  30904. },
  30905. paw: {
  30906. height: math.unit(1.88, "feet"),
  30907. name: "Paw",
  30908. image: {
  30909. source: "./media/characters/nicki/paw.svg"
  30910. }
  30911. },
  30912. },
  30913. [
  30914. {
  30915. name: "Normal",
  30916. height: math.unit(5 + 7/12, "feet"),
  30917. default: true
  30918. },
  30919. ]
  30920. ))
  30921. characterMakers.push(() => makeCharacter(
  30922. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30923. {
  30924. front: {
  30925. height: math.unit(7 + 10/12, "feet"),
  30926. weight: math.unit(3.5, "tons"),
  30927. name: "Front",
  30928. image: {
  30929. source: "./media/characters/lee/front.svg",
  30930. extra: 1773/1615,
  30931. bottom: 86/1859
  30932. }
  30933. },
  30934. hand: {
  30935. height: math.unit(1.78, "feet"),
  30936. name: "Hand",
  30937. image: {
  30938. source: "./media/characters/lee/hand.svg"
  30939. }
  30940. },
  30941. maw: {
  30942. height: math.unit(1.18, "feet"),
  30943. name: "Maw",
  30944. image: {
  30945. source: "./media/characters/lee/maw.svg"
  30946. }
  30947. },
  30948. },
  30949. [
  30950. {
  30951. name: "Normal",
  30952. height: math.unit(7 + 10/12, "feet"),
  30953. default: true
  30954. },
  30955. ]
  30956. ))
  30957. characterMakers.push(() => makeCharacter(
  30958. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30959. {
  30960. front: {
  30961. height: math.unit(9, "feet"),
  30962. name: "Front",
  30963. image: {
  30964. source: "./media/characters/guti/front.svg",
  30965. extra: 4551/4355,
  30966. bottom: 123/4674
  30967. }
  30968. },
  30969. tongue: {
  30970. height: math.unit(1, "feet"),
  30971. name: "Tongue",
  30972. image: {
  30973. source: "./media/characters/guti/tongue.svg"
  30974. }
  30975. },
  30976. paw: {
  30977. height: math.unit(1.18, "feet"),
  30978. name: "Paw",
  30979. image: {
  30980. source: "./media/characters/guti/paw.svg"
  30981. }
  30982. },
  30983. },
  30984. [
  30985. {
  30986. name: "Normal",
  30987. height: math.unit(9, "feet"),
  30988. default: true
  30989. },
  30990. ]
  30991. ))
  30992. characterMakers.push(() => makeCharacter(
  30993. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30994. {
  30995. side: {
  30996. height: math.unit(5, "meters"),
  30997. name: "Side",
  30998. image: {
  30999. source: "./media/characters/vesper/side.svg",
  31000. extra: 1605/1518,
  31001. bottom: 0/1605
  31002. }
  31003. },
  31004. },
  31005. [
  31006. {
  31007. name: "Small",
  31008. height: math.unit(5, "meters")
  31009. },
  31010. {
  31011. name: "Sage",
  31012. height: math.unit(100, "meters"),
  31013. default: true
  31014. },
  31015. {
  31016. name: "Fun Size",
  31017. height: math.unit(600, "meters")
  31018. },
  31019. {
  31020. name: "Goddess",
  31021. height: math.unit(20000, "km")
  31022. },
  31023. {
  31024. name: "Maximum",
  31025. height: math.unit(5, "galaxies")
  31026. },
  31027. ]
  31028. ))
  31029. characterMakers.push(() => makeCharacter(
  31030. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31031. {
  31032. front: {
  31033. height: math.unit(6 + 3/12, "feet"),
  31034. weight: math.unit(190, "lb"),
  31035. name: "Front",
  31036. image: {
  31037. source: "./media/characters/gawain/front.svg",
  31038. extra: 2222/2139,
  31039. bottom: 90/2312
  31040. }
  31041. },
  31042. back: {
  31043. height: math.unit(6 + 3/12, "feet"),
  31044. weight: math.unit(190, "lb"),
  31045. name: "Back",
  31046. image: {
  31047. source: "./media/characters/gawain/back.svg",
  31048. extra: 2199/2111,
  31049. bottom: 73/2272
  31050. }
  31051. },
  31052. },
  31053. [
  31054. {
  31055. name: "Normal",
  31056. height: math.unit(6 + 3/12, "feet"),
  31057. default: true
  31058. },
  31059. ]
  31060. ))
  31061. characterMakers.push(() => makeCharacter(
  31062. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31063. {
  31064. side: {
  31065. height: math.unit(3.5, "meters"),
  31066. weight: math.unit(16000, "lb"),
  31067. name: "Side",
  31068. image: {
  31069. source: "./media/characters/dascalti/side.svg",
  31070. extra: 392/273,
  31071. bottom: 47/439
  31072. }
  31073. },
  31074. breath: {
  31075. height: math.unit(7.4, "feet"),
  31076. name: "Breath",
  31077. image: {
  31078. source: "./media/characters/dascalti/breath.svg"
  31079. }
  31080. },
  31081. fed: {
  31082. height: math.unit(3.6, "meters"),
  31083. weight: math.unit(16000, "lb"),
  31084. name: "Fed",
  31085. image: {
  31086. source: "./media/characters/dascalti/fed.svg",
  31087. extra: 1419/820,
  31088. bottom: 95/1514
  31089. }
  31090. },
  31091. },
  31092. [
  31093. {
  31094. name: "Normal",
  31095. height: math.unit(3.5, "meters"),
  31096. default: true
  31097. },
  31098. ]
  31099. ))
  31100. characterMakers.push(() => makeCharacter(
  31101. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31102. {
  31103. front: {
  31104. height: math.unit(3 + 5/12, "feet"),
  31105. name: "Front",
  31106. image: {
  31107. source: "./media/characters/mauve/front.svg",
  31108. extra: 1126/1033,
  31109. bottom: 65/1191
  31110. }
  31111. },
  31112. side: {
  31113. height: math.unit(3 + 5/12, "feet"),
  31114. name: "Side",
  31115. image: {
  31116. source: "./media/characters/mauve/side.svg",
  31117. extra: 1089/1001,
  31118. bottom: 29/1118
  31119. }
  31120. },
  31121. back: {
  31122. height: math.unit(3 + 5/12, "feet"),
  31123. name: "Back",
  31124. image: {
  31125. source: "./media/characters/mauve/back.svg",
  31126. extra: 1173/1053,
  31127. bottom: 109/1282
  31128. }
  31129. },
  31130. },
  31131. [
  31132. {
  31133. name: "Normal",
  31134. height: math.unit(3 + 5/12, "feet"),
  31135. default: true
  31136. },
  31137. ]
  31138. ))
  31139. characterMakers.push(() => makeCharacter(
  31140. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31141. {
  31142. front: {
  31143. height: math.unit(6 + 3/12, "feet"),
  31144. weight: math.unit(430, "lb"),
  31145. name: "Front",
  31146. image: {
  31147. source: "./media/characters/carlos/front.svg",
  31148. extra: 1964/1913,
  31149. bottom: 70/2034
  31150. }
  31151. },
  31152. },
  31153. [
  31154. {
  31155. name: "Normal",
  31156. height: math.unit(6 + 3/12, "feet"),
  31157. default: true
  31158. },
  31159. ]
  31160. ))
  31161. characterMakers.push(() => makeCharacter(
  31162. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31163. {
  31164. back: {
  31165. height: math.unit(5 + 10/12, "feet"),
  31166. weight: math.unit(200, "lb"),
  31167. name: "Back",
  31168. image: {
  31169. source: "./media/characters/jax/back.svg",
  31170. extra: 764/739,
  31171. bottom: 25/789
  31172. }
  31173. },
  31174. },
  31175. [
  31176. {
  31177. name: "Normal",
  31178. height: math.unit(5 + 10/12, "feet"),
  31179. default: true
  31180. },
  31181. ]
  31182. ))
  31183. characterMakers.push(() => makeCharacter(
  31184. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31185. {
  31186. front: {
  31187. height: math.unit(8, "feet"),
  31188. weight: math.unit(250, "lb"),
  31189. name: "Front",
  31190. image: {
  31191. source: "./media/characters/eikthynir/front.svg",
  31192. extra: 1332/1166,
  31193. bottom: 82/1414
  31194. }
  31195. },
  31196. back: {
  31197. height: math.unit(8, "feet"),
  31198. weight: math.unit(250, "lb"),
  31199. name: "Back",
  31200. image: {
  31201. source: "./media/characters/eikthynir/back.svg",
  31202. extra: 1342/1190,
  31203. bottom: 19/1361
  31204. }
  31205. },
  31206. dick: {
  31207. height: math.unit(2.35, "feet"),
  31208. name: "Dick",
  31209. image: {
  31210. source: "./media/characters/eikthynir/dick.svg"
  31211. }
  31212. },
  31213. },
  31214. [
  31215. {
  31216. name: "Normal",
  31217. height: math.unit(8, "feet"),
  31218. default: true
  31219. },
  31220. ]
  31221. ))
  31222. characterMakers.push(() => makeCharacter(
  31223. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31224. {
  31225. front: {
  31226. height: math.unit(99, "meters"),
  31227. weight: math.unit(13000, "tons"),
  31228. name: "Front",
  31229. image: {
  31230. source: "./media/characters/zlmos/front.svg",
  31231. extra: 2202/1992,
  31232. bottom: 315/2517
  31233. }
  31234. },
  31235. },
  31236. [
  31237. {
  31238. name: "Macro",
  31239. height: math.unit(99, "meters"),
  31240. default: true
  31241. },
  31242. ]
  31243. ))
  31244. characterMakers.push(() => makeCharacter(
  31245. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31246. {
  31247. front: {
  31248. height: math.unit(6 + 5/12, "feet"),
  31249. name: "Front",
  31250. image: {
  31251. source: "./media/characters/purri/front.svg",
  31252. extra: 1698/1610,
  31253. bottom: 32/1730
  31254. }
  31255. },
  31256. frontAlt: {
  31257. height: math.unit(6 + 5/12, "feet"),
  31258. name: "Front (Alt)",
  31259. image: {
  31260. source: "./media/characters/purri/front-alt.svg",
  31261. extra: 450/420,
  31262. bottom: 26/476
  31263. }
  31264. },
  31265. boots: {
  31266. height: math.unit(5.5, "feet"),
  31267. name: "Boots",
  31268. image: {
  31269. source: "./media/characters/purri/boots.svg",
  31270. extra: 905/853,
  31271. bottom: 18/923
  31272. }
  31273. },
  31274. lying: {
  31275. height: math.unit(2, "feet"),
  31276. name: "Lying",
  31277. image: {
  31278. source: "./media/characters/purri/lying.svg",
  31279. extra: 940/843,
  31280. bottom: 146/1086
  31281. }
  31282. },
  31283. devious: {
  31284. height: math.unit(1.77, "feet"),
  31285. name: "Devious",
  31286. image: {
  31287. source: "./media/characters/purri/devious.svg",
  31288. extra: 1440/1155,
  31289. bottom: 147/1587
  31290. }
  31291. },
  31292. bean: {
  31293. height: math.unit(1.94, "feet"),
  31294. name: "Bean",
  31295. image: {
  31296. source: "./media/characters/purri/bean.svg"
  31297. }
  31298. },
  31299. },
  31300. [
  31301. {
  31302. name: "Micro",
  31303. height: math.unit(1, "mm")
  31304. },
  31305. {
  31306. name: "Normal",
  31307. height: math.unit(6 + 5/12, "feet"),
  31308. default: true
  31309. },
  31310. {
  31311. name: "Macro :3c",
  31312. height: math.unit(2, "miles")
  31313. },
  31314. ]
  31315. ))
  31316. characterMakers.push(() => makeCharacter(
  31317. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31318. {
  31319. front: {
  31320. height: math.unit(6 + 2/12, "feet"),
  31321. weight: math.unit(250, "lb"),
  31322. name: "Front",
  31323. image: {
  31324. source: "./media/characters/moonlight/front.svg",
  31325. extra: 1044/908,
  31326. bottom: 56/1100
  31327. }
  31328. },
  31329. feral: {
  31330. height: math.unit(3 + 1/12, "feet"),
  31331. weight: math.unit(50, "kg"),
  31332. name: "Feral",
  31333. image: {
  31334. source: "./media/characters/moonlight/feral.svg",
  31335. extra: 3705/2791,
  31336. bottom: 145/3850
  31337. }
  31338. },
  31339. paw: {
  31340. height: math.unit(1, "feet"),
  31341. name: "Paw",
  31342. image: {
  31343. source: "./media/characters/moonlight/paw.svg"
  31344. }
  31345. },
  31346. paws: {
  31347. height: math.unit(0.98, "feet"),
  31348. name: "Paws",
  31349. image: {
  31350. source: "./media/characters/moonlight/paws.svg",
  31351. extra: 939/939,
  31352. bottom: 50/989
  31353. }
  31354. },
  31355. mouth: {
  31356. height: math.unit(0.48, "feet"),
  31357. name: "Mouth",
  31358. image: {
  31359. source: "./media/characters/moonlight/mouth.svg"
  31360. }
  31361. },
  31362. dick: {
  31363. height: math.unit(1.46, "feet"),
  31364. name: "Dick",
  31365. image: {
  31366. source: "./media/characters/moonlight/dick.svg"
  31367. }
  31368. },
  31369. },
  31370. [
  31371. {
  31372. name: "Normal",
  31373. height: math.unit(6 + 2/12, "feet"),
  31374. default: true
  31375. },
  31376. {
  31377. name: "Macro",
  31378. height: math.unit(300, "feet")
  31379. },
  31380. {
  31381. name: "Macro+",
  31382. height: math.unit(1, "mile")
  31383. },
  31384. {
  31385. name: "Mt. Moon",
  31386. height: math.unit(5, "miles")
  31387. },
  31388. {
  31389. name: "Megamacro",
  31390. height: math.unit(15, "miles")
  31391. },
  31392. ]
  31393. ))
  31394. characterMakers.push(() => makeCharacter(
  31395. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31396. {
  31397. back: {
  31398. height: math.unit(6, "feet"),
  31399. weight: math.unit(150, "lb"),
  31400. name: "Back",
  31401. image: {
  31402. source: "./media/characters/sylen/back.svg",
  31403. extra: 1335/1273,
  31404. bottom: 107/1442
  31405. }
  31406. },
  31407. },
  31408. [
  31409. {
  31410. name: "Normal",
  31411. height: math.unit(5 + 5/12, "feet")
  31412. },
  31413. {
  31414. name: "Megamacro",
  31415. height: math.unit(3, "miles"),
  31416. default: true
  31417. },
  31418. ]
  31419. ))
  31420. characterMakers.push(() => makeCharacter(
  31421. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31422. {
  31423. front: {
  31424. height: math.unit(6, "feet"),
  31425. weight: math.unit(190, "lb"),
  31426. name: "Front",
  31427. image: {
  31428. source: "./media/characters/huttser/front.svg",
  31429. extra: 1152/1058,
  31430. bottom: 23/1175
  31431. }
  31432. },
  31433. side: {
  31434. height: math.unit(6, "feet"),
  31435. weight: math.unit(190, "lb"),
  31436. name: "Side",
  31437. image: {
  31438. source: "./media/characters/huttser/side.svg",
  31439. extra: 1174/1065,
  31440. bottom: 18/1192
  31441. }
  31442. },
  31443. back: {
  31444. height: math.unit(6, "feet"),
  31445. weight: math.unit(190, "lb"),
  31446. name: "Back",
  31447. image: {
  31448. source: "./media/characters/huttser/back.svg",
  31449. extra: 1158/1056,
  31450. bottom: 12/1170
  31451. }
  31452. },
  31453. },
  31454. [
  31455. ]
  31456. ))
  31457. characterMakers.push(() => makeCharacter(
  31458. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31459. {
  31460. side: {
  31461. height: math.unit(12 + 9/12, "feet"),
  31462. weight: math.unit(15000, "lb"),
  31463. name: "Side",
  31464. image: {
  31465. source: "./media/characters/faan/side.svg",
  31466. extra: 2747/2697,
  31467. bottom: 0/2747
  31468. }
  31469. },
  31470. front: {
  31471. height: math.unit(12 + 9/12, "feet"),
  31472. weight: math.unit(15000, "lb"),
  31473. name: "Front",
  31474. image: {
  31475. source: "./media/characters/faan/front.svg",
  31476. extra: 607/571,
  31477. bottom: 24/631
  31478. }
  31479. },
  31480. head: {
  31481. height: math.unit(2.85, "feet"),
  31482. name: "Head",
  31483. image: {
  31484. source: "./media/characters/faan/head.svg"
  31485. }
  31486. },
  31487. headAlt: {
  31488. height: math.unit(3.13, "feet"),
  31489. name: "Head-alt",
  31490. image: {
  31491. source: "./media/characters/faan/head-alt.svg"
  31492. }
  31493. },
  31494. },
  31495. [
  31496. {
  31497. name: "Normal",
  31498. height: math.unit(12 + 9/12, "feet"),
  31499. default: true
  31500. },
  31501. ]
  31502. ))
  31503. characterMakers.push(() => makeCharacter(
  31504. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31505. {
  31506. front: {
  31507. height: math.unit(6, "feet"),
  31508. weight: math.unit(300, "lb"),
  31509. name: "Front",
  31510. image: {
  31511. source: "./media/characters/tanio/front.svg",
  31512. extra: 711/673,
  31513. bottom: 25/736
  31514. }
  31515. },
  31516. },
  31517. [
  31518. {
  31519. name: "Normal",
  31520. height: math.unit(6, "feet"),
  31521. default: true
  31522. },
  31523. ]
  31524. ))
  31525. characterMakers.push(() => makeCharacter(
  31526. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31527. {
  31528. front: {
  31529. height: math.unit(3, "inches"),
  31530. name: "Front",
  31531. image: {
  31532. source: "./media/characters/noboru/front.svg",
  31533. extra: 1039/932,
  31534. bottom: 18/1057
  31535. }
  31536. },
  31537. },
  31538. [
  31539. {
  31540. name: "Micro",
  31541. height: math.unit(3, "inches"),
  31542. default: true
  31543. },
  31544. ]
  31545. ))
  31546. characterMakers.push(() => makeCharacter(
  31547. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31548. {
  31549. front: {
  31550. height: math.unit(1.85, "meters"),
  31551. weight: math.unit(80, "kg"),
  31552. name: "Front",
  31553. image: {
  31554. source: "./media/characters/daniel-barrett/front.svg",
  31555. extra: 355/337,
  31556. bottom: 9/364
  31557. }
  31558. },
  31559. },
  31560. [
  31561. {
  31562. name: "Pico",
  31563. height: math.unit(0.0433, "mm")
  31564. },
  31565. {
  31566. name: "Nano",
  31567. height: math.unit(1.5, "mm")
  31568. },
  31569. {
  31570. name: "Micro",
  31571. height: math.unit(5.3, "cm"),
  31572. default: true
  31573. },
  31574. {
  31575. name: "Normal",
  31576. height: math.unit(1.85, "meters")
  31577. },
  31578. {
  31579. name: "Macro",
  31580. height: math.unit(64.7, "meters")
  31581. },
  31582. {
  31583. name: "Megamacro",
  31584. height: math.unit(2.26, "km")
  31585. },
  31586. {
  31587. name: "Gigamacro",
  31588. height: math.unit(79, "km")
  31589. },
  31590. {
  31591. name: "Teramacro",
  31592. height: math.unit(2765, "km")
  31593. },
  31594. {
  31595. name: "Petamacro",
  31596. height: math.unit(96678, "km")
  31597. },
  31598. ]
  31599. ))
  31600. characterMakers.push(() => makeCharacter(
  31601. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31602. {
  31603. front: {
  31604. height: math.unit(30, "meters"),
  31605. weight: math.unit(400, "tons"),
  31606. name: "Front",
  31607. image: {
  31608. source: "./media/characters/zeel/front.svg",
  31609. extra: 2599/2599,
  31610. bottom: 226/2825
  31611. }
  31612. },
  31613. },
  31614. [
  31615. {
  31616. name: "Macro",
  31617. height: math.unit(30, "meters"),
  31618. default: true
  31619. },
  31620. ]
  31621. ))
  31622. characterMakers.push(() => makeCharacter(
  31623. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31624. {
  31625. front: {
  31626. height: math.unit(6 + 7/12, "feet"),
  31627. weight: math.unit(210, "lb"),
  31628. name: "Front",
  31629. image: {
  31630. source: "./media/characters/tarn/front.svg",
  31631. extra: 3517/3220,
  31632. bottom: 91/3608
  31633. }
  31634. },
  31635. back: {
  31636. height: math.unit(6 + 7/12, "feet"),
  31637. weight: math.unit(210, "lb"),
  31638. name: "Back",
  31639. image: {
  31640. source: "./media/characters/tarn/back.svg",
  31641. extra: 3566/3241,
  31642. bottom: 34/3600
  31643. }
  31644. },
  31645. dick: {
  31646. height: math.unit(1.65, "feet"),
  31647. name: "Dick",
  31648. image: {
  31649. source: "./media/characters/tarn/dick.svg"
  31650. }
  31651. },
  31652. paw: {
  31653. height: math.unit(1.80, "feet"),
  31654. name: "Paw",
  31655. image: {
  31656. source: "./media/characters/tarn/paw.svg"
  31657. }
  31658. },
  31659. tongue: {
  31660. height: math.unit(0.97, "feet"),
  31661. name: "Tongue",
  31662. image: {
  31663. source: "./media/characters/tarn/tongue.svg"
  31664. }
  31665. },
  31666. },
  31667. [
  31668. {
  31669. name: "Micro",
  31670. height: math.unit(4, "inches")
  31671. },
  31672. {
  31673. name: "Normal",
  31674. height: math.unit(6 + 7/12, "feet"),
  31675. default: true
  31676. },
  31677. {
  31678. name: "Macro",
  31679. height: math.unit(300, "feet")
  31680. },
  31681. ]
  31682. ))
  31683. characterMakers.push(() => makeCharacter(
  31684. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31685. {
  31686. front: {
  31687. height: math.unit(5 + 7/12, "feet"),
  31688. weight: math.unit(80, "kg"),
  31689. name: "Front",
  31690. image: {
  31691. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31692. extra: 3023/2865,
  31693. bottom: 33/3056
  31694. }
  31695. },
  31696. back: {
  31697. height: math.unit(5 + 7/12, "feet"),
  31698. weight: math.unit(80, "kg"),
  31699. name: "Back",
  31700. image: {
  31701. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31702. extra: 3020/2886,
  31703. bottom: 30/3050
  31704. }
  31705. },
  31706. dick: {
  31707. height: math.unit(0.98, "feet"),
  31708. name: "Dick",
  31709. image: {
  31710. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31711. }
  31712. },
  31713. anatomy: {
  31714. height: math.unit(2.86, "feet"),
  31715. name: "Anatomy",
  31716. image: {
  31717. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31718. }
  31719. },
  31720. },
  31721. [
  31722. {
  31723. name: "Really Small",
  31724. height: math.unit(2, "inches")
  31725. },
  31726. {
  31727. name: "Micro",
  31728. height: math.unit(5.583, "inches")
  31729. },
  31730. {
  31731. name: "Normal",
  31732. height: math.unit(5 + 7/12, "feet"),
  31733. default: true
  31734. },
  31735. {
  31736. name: "Macro",
  31737. height: math.unit(67, "feet")
  31738. },
  31739. {
  31740. name: "Megamacro",
  31741. height: math.unit(134, "feet")
  31742. },
  31743. ]
  31744. ))
  31745. characterMakers.push(() => makeCharacter(
  31746. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31747. {
  31748. front: {
  31749. height: math.unit(9, "feet"),
  31750. weight: math.unit(120, "lb"),
  31751. name: "Front",
  31752. image: {
  31753. source: "./media/characters/sally/front.svg",
  31754. extra: 1506/1349,
  31755. bottom: 66/1572
  31756. }
  31757. },
  31758. },
  31759. [
  31760. {
  31761. name: "Normal",
  31762. height: math.unit(9, "feet"),
  31763. default: true
  31764. },
  31765. ]
  31766. ))
  31767. characterMakers.push(() => makeCharacter(
  31768. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31769. {
  31770. front: {
  31771. height: math.unit(8, "feet"),
  31772. weight: math.unit(900, "lb"),
  31773. name: "Front",
  31774. image: {
  31775. source: "./media/characters/owen/front.svg",
  31776. extra: 1761/1657,
  31777. bottom: 74/1835
  31778. }
  31779. },
  31780. side: {
  31781. height: math.unit(8, "feet"),
  31782. weight: math.unit(900, "lb"),
  31783. name: "Side",
  31784. image: {
  31785. source: "./media/characters/owen/side.svg",
  31786. extra: 1797/1734,
  31787. bottom: 30/1827
  31788. }
  31789. },
  31790. back: {
  31791. height: math.unit(8, "feet"),
  31792. weight: math.unit(900, "lb"),
  31793. name: "Back",
  31794. image: {
  31795. source: "./media/characters/owen/back.svg",
  31796. extra: 1796/1706,
  31797. bottom: 59/1855
  31798. }
  31799. },
  31800. maw: {
  31801. height: math.unit(1.76, "feet"),
  31802. name: "Maw",
  31803. image: {
  31804. source: "./media/characters/owen/maw.svg"
  31805. }
  31806. },
  31807. },
  31808. [
  31809. {
  31810. name: "Normal",
  31811. height: math.unit(8, "feet"),
  31812. default: true
  31813. },
  31814. ]
  31815. ))
  31816. characterMakers.push(() => makeCharacter(
  31817. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31818. {
  31819. front: {
  31820. height: math.unit(4, "feet"),
  31821. weight: math.unit(400, "lb"),
  31822. name: "Front",
  31823. image: {
  31824. source: "./media/characters/ryth/front.svg",
  31825. extra: 1920/1748,
  31826. bottom: 42/1962
  31827. }
  31828. },
  31829. back: {
  31830. height: math.unit(4, "feet"),
  31831. weight: math.unit(400, "lb"),
  31832. name: "Back",
  31833. image: {
  31834. source: "./media/characters/ryth/back.svg",
  31835. extra: 1897/1690,
  31836. bottom: 89/1986
  31837. }
  31838. },
  31839. mouth: {
  31840. height: math.unit(1.39, "feet"),
  31841. name: "Mouth",
  31842. image: {
  31843. source: "./media/characters/ryth/mouth.svg"
  31844. }
  31845. },
  31846. tailmaw: {
  31847. height: math.unit(1.23, "feet"),
  31848. name: "Tailmaw",
  31849. image: {
  31850. source: "./media/characters/ryth/tailmaw.svg"
  31851. }
  31852. },
  31853. goia: {
  31854. height: math.unit(12, "feet"),
  31855. weight: math.unit(10800, "lb"),
  31856. name: "Goia",
  31857. image: {
  31858. source: "./media/characters/ryth/goia.svg",
  31859. extra: 3450/3198,
  31860. bottom: 61/3511
  31861. }
  31862. },
  31863. },
  31864. [
  31865. {
  31866. name: "Normal",
  31867. height: math.unit(4, "feet"),
  31868. default: true
  31869. },
  31870. ]
  31871. ))
  31872. characterMakers.push(() => makeCharacter(
  31873. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31874. {
  31875. front: {
  31876. height: math.unit(7, "feet"),
  31877. weight: math.unit(180, "lb"),
  31878. name: "Front",
  31879. image: {
  31880. source: "./media/characters/necrolance/front.svg",
  31881. extra: 1062/947,
  31882. bottom: 41/1103
  31883. }
  31884. },
  31885. back: {
  31886. height: math.unit(7, "feet"),
  31887. weight: math.unit(180, "lb"),
  31888. name: "Back",
  31889. image: {
  31890. source: "./media/characters/necrolance/back.svg",
  31891. extra: 1045/984,
  31892. bottom: 14/1059
  31893. }
  31894. },
  31895. wing: {
  31896. height: math.unit(2.67, "feet"),
  31897. name: "Wing",
  31898. image: {
  31899. source: "./media/characters/necrolance/wing.svg"
  31900. }
  31901. },
  31902. },
  31903. [
  31904. {
  31905. name: "Normal",
  31906. height: math.unit(7, "feet"),
  31907. default: true
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31913. {
  31914. front: {
  31915. height: math.unit(76, "meters"),
  31916. weight: math.unit(30000, "tons"),
  31917. name: "Front",
  31918. image: {
  31919. source: "./media/characters/tyler/front.svg",
  31920. extra: 1640/1640,
  31921. bottom: 114/1754
  31922. }
  31923. },
  31924. },
  31925. [
  31926. {
  31927. name: "Macro",
  31928. height: math.unit(76, "meters"),
  31929. default: true
  31930. },
  31931. ]
  31932. ))
  31933. characterMakers.push(() => makeCharacter(
  31934. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31935. {
  31936. front: {
  31937. height: math.unit(4 + 11/12, "feet"),
  31938. weight: math.unit(132, "lb"),
  31939. name: "Front",
  31940. image: {
  31941. source: "./media/characters/icey/front.svg",
  31942. extra: 2750/2550,
  31943. bottom: 33/2783
  31944. }
  31945. },
  31946. back: {
  31947. height: math.unit(4 + 11/12, "feet"),
  31948. weight: math.unit(132, "lb"),
  31949. name: "Back",
  31950. image: {
  31951. source: "./media/characters/icey/back.svg",
  31952. extra: 2624/2481,
  31953. bottom: 35/2659
  31954. }
  31955. },
  31956. },
  31957. [
  31958. {
  31959. name: "Normal",
  31960. height: math.unit(4 + 11/12, "feet"),
  31961. default: true
  31962. },
  31963. ]
  31964. ))
  31965. characterMakers.push(() => makeCharacter(
  31966. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31967. {
  31968. front: {
  31969. height: math.unit(100, "feet"),
  31970. weight: math.unit(0, "lb"),
  31971. name: "Front",
  31972. image: {
  31973. source: "./media/characters/smile/front.svg",
  31974. extra: 2983/2912,
  31975. bottom: 162/3145
  31976. }
  31977. },
  31978. back: {
  31979. height: math.unit(100, "feet"),
  31980. weight: math.unit(0, "lb"),
  31981. name: "Back",
  31982. image: {
  31983. source: "./media/characters/smile/back.svg",
  31984. extra: 3143/3031,
  31985. bottom: 91/3234
  31986. }
  31987. },
  31988. head: {
  31989. height: math.unit(26.3, "feet"),
  31990. weight: math.unit(0, "lb"),
  31991. name: "Head",
  31992. image: {
  31993. source: "./media/characters/smile/head.svg"
  31994. }
  31995. },
  31996. collar: {
  31997. height: math.unit(5.3, "feet"),
  31998. weight: math.unit(0, "lb"),
  31999. name: "Collar",
  32000. image: {
  32001. source: "./media/characters/smile/collar.svg"
  32002. }
  32003. },
  32004. },
  32005. [
  32006. {
  32007. name: "Macro",
  32008. height: math.unit(100, "feet"),
  32009. default: true
  32010. },
  32011. ]
  32012. ))
  32013. characterMakers.push(() => makeCharacter(
  32014. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32015. {
  32016. dragon: {
  32017. height: math.unit(26, "feet"),
  32018. weight: math.unit(36, "tons"),
  32019. name: "Dragon",
  32020. image: {
  32021. source: "./media/characters/arimphae/dragon.svg",
  32022. extra: 1574/983,
  32023. bottom: 357/1931
  32024. }
  32025. },
  32026. drake: {
  32027. height: math.unit(9, "feet"),
  32028. weight: math.unit(1.5, "tons"),
  32029. name: "Drake",
  32030. image: {
  32031. source: "./media/characters/arimphae/drake.svg",
  32032. extra: 1120/925,
  32033. bottom: 435/1555
  32034. }
  32035. },
  32036. },
  32037. [
  32038. {
  32039. name: "Small",
  32040. height: math.unit(26*5/9, "feet")
  32041. },
  32042. {
  32043. name: "Normal",
  32044. height: math.unit(26, "feet"),
  32045. default: true
  32046. },
  32047. ]
  32048. ))
  32049. characterMakers.push(() => makeCharacter(
  32050. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32051. {
  32052. front: {
  32053. height: math.unit(8 + 9/12, "feet"),
  32054. name: "Front",
  32055. image: {
  32056. source: "./media/characters/xander/front.svg",
  32057. extra: 848/673,
  32058. bottom: 62/910
  32059. }
  32060. },
  32061. },
  32062. [
  32063. {
  32064. name: "Normal",
  32065. height: math.unit(8 + 9/12, "feet"),
  32066. default: true
  32067. },
  32068. {
  32069. name: "Gaze Grabber",
  32070. height: math.unit(13 + 8/12, "feet")
  32071. },
  32072. {
  32073. name: "Jaw Dropper",
  32074. height: math.unit(27, "feet")
  32075. },
  32076. {
  32077. name: "Show Stopper",
  32078. height: math.unit(136, "feet")
  32079. },
  32080. {
  32081. name: "Superstar",
  32082. height: math.unit(1.9e6, "miles")
  32083. },
  32084. ]
  32085. ))
  32086. characterMakers.push(() => makeCharacter(
  32087. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32088. {
  32089. side: {
  32090. height: math.unit(2100, "feet"),
  32091. name: "Side",
  32092. image: {
  32093. source: "./media/characters/osiris/side.svg",
  32094. extra: 1105/939,
  32095. bottom: 167/1272
  32096. }
  32097. },
  32098. },
  32099. [
  32100. {
  32101. name: "Macro",
  32102. height: math.unit(2100, "feet"),
  32103. default: true
  32104. },
  32105. ]
  32106. ))
  32107. characterMakers.push(() => makeCharacter(
  32108. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32109. {
  32110. front: {
  32111. height: math.unit(6 + 8/12, "feet"),
  32112. weight: math.unit(225, "lb"),
  32113. name: "Front",
  32114. image: {
  32115. source: "./media/characters/rhys-londe/front.svg",
  32116. extra: 2258/2141,
  32117. bottom: 188/2446
  32118. }
  32119. },
  32120. back: {
  32121. height: math.unit(6 + 8/12, "feet"),
  32122. weight: math.unit(225, "lb"),
  32123. name: "Back",
  32124. image: {
  32125. source: "./media/characters/rhys-londe/back.svg",
  32126. extra: 2237/2137,
  32127. bottom: 63/2300
  32128. }
  32129. },
  32130. frontNsfw: {
  32131. height: math.unit(6 + 8/12, "feet"),
  32132. weight: math.unit(225, "lb"),
  32133. name: "Front (NSFW)",
  32134. image: {
  32135. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32136. extra: 2258/2141,
  32137. bottom: 188/2446
  32138. }
  32139. },
  32140. backNsfw: {
  32141. height: math.unit(6 + 8/12, "feet"),
  32142. weight: math.unit(225, "lb"),
  32143. name: "Back (NSFW)",
  32144. image: {
  32145. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32146. extra: 2237/2137,
  32147. bottom: 63/2300
  32148. }
  32149. },
  32150. dick: {
  32151. height: math.unit(30, "inches"),
  32152. name: "Dick",
  32153. image: {
  32154. source: "./media/characters/rhys-londe/dick.svg"
  32155. }
  32156. },
  32157. maw: {
  32158. height: math.unit(1.6, "feet"),
  32159. name: "Maw",
  32160. image: {
  32161. source: "./media/characters/rhys-londe/maw.svg"
  32162. }
  32163. },
  32164. },
  32165. [
  32166. {
  32167. name: "Normal",
  32168. height: math.unit(6 + 8/12, "feet"),
  32169. default: true
  32170. },
  32171. ]
  32172. ))
  32173. characterMakers.push(() => makeCharacter(
  32174. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32175. {
  32176. front: {
  32177. height: math.unit(3 + 10/12, "feet"),
  32178. weight: math.unit(90, "lb"),
  32179. name: "Front",
  32180. image: {
  32181. source: "./media/characters/taivas-ensim/front.svg",
  32182. extra: 1327/1216,
  32183. bottom: 96/1423
  32184. }
  32185. },
  32186. back: {
  32187. height: math.unit(3 + 10/12, "feet"),
  32188. weight: math.unit(90, "lb"),
  32189. name: "Back",
  32190. image: {
  32191. source: "./media/characters/taivas-ensim/back.svg",
  32192. extra: 1355/1247,
  32193. bottom: 11/1366
  32194. }
  32195. },
  32196. frontNsfw: {
  32197. height: math.unit(3 + 10/12, "feet"),
  32198. weight: math.unit(90, "lb"),
  32199. name: "Front (NSFW)",
  32200. image: {
  32201. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32202. extra: 1327/1216,
  32203. bottom: 96/1423
  32204. }
  32205. },
  32206. backNsfw: {
  32207. height: math.unit(3 + 10/12, "feet"),
  32208. weight: math.unit(90, "lb"),
  32209. name: "Back (NSFW)",
  32210. image: {
  32211. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32212. extra: 1355/1247,
  32213. bottom: 11/1366
  32214. }
  32215. },
  32216. },
  32217. [
  32218. {
  32219. name: "Normal",
  32220. height: math.unit(3 + 10/12, "feet"),
  32221. default: true
  32222. },
  32223. ]
  32224. ))
  32225. characterMakers.push(() => makeCharacter(
  32226. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32227. {
  32228. front: {
  32229. height: math.unit(9 + 6/12, "feet"),
  32230. weight: math.unit(940, "lb"),
  32231. name: "Front",
  32232. image: {
  32233. source: "./media/characters/byliss/front.svg",
  32234. extra: 1327/1290,
  32235. bottom: 82/1409
  32236. }
  32237. },
  32238. back: {
  32239. height: math.unit(9 + 6/12, "feet"),
  32240. weight: math.unit(940, "lb"),
  32241. name: "Back",
  32242. image: {
  32243. source: "./media/characters/byliss/back.svg",
  32244. extra: 1376/1349,
  32245. bottom: 9/1385
  32246. }
  32247. },
  32248. frontNsfw: {
  32249. height: math.unit(9 + 6/12, "feet"),
  32250. weight: math.unit(940, "lb"),
  32251. name: "Front (NSFW)",
  32252. image: {
  32253. source: "./media/characters/byliss/front-nsfw.svg",
  32254. extra: 1327/1290,
  32255. bottom: 82/1409
  32256. }
  32257. },
  32258. backNsfw: {
  32259. height: math.unit(9 + 6/12, "feet"),
  32260. weight: math.unit(940, "lb"),
  32261. name: "Back (NSFW)",
  32262. image: {
  32263. source: "./media/characters/byliss/back-nsfw.svg",
  32264. extra: 1376/1349,
  32265. bottom: 9/1385
  32266. }
  32267. },
  32268. },
  32269. [
  32270. {
  32271. name: "Normal",
  32272. height: math.unit(9 + 6/12, "feet"),
  32273. default: true
  32274. },
  32275. ]
  32276. ))
  32277. characterMakers.push(() => makeCharacter(
  32278. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32279. {
  32280. front: {
  32281. height: math.unit(5 + 2/12, "feet"),
  32282. weight: math.unit(200, "lb"),
  32283. name: "Front",
  32284. image: {
  32285. source: "./media/characters/noraly/front.svg",
  32286. extra: 4985/4773,
  32287. bottom: 150/5135
  32288. }
  32289. },
  32290. full: {
  32291. height: math.unit(5 + 2/12, "feet"),
  32292. weight: math.unit(164, "lb"),
  32293. name: "Full",
  32294. image: {
  32295. source: "./media/characters/noraly/full.svg",
  32296. extra: 1114/1059,
  32297. bottom: 35/1149
  32298. }
  32299. },
  32300. fuller: {
  32301. height: math.unit(5 + 2/12, "feet"),
  32302. weight: math.unit(230, "lb"),
  32303. name: "Fuller",
  32304. image: {
  32305. source: "./media/characters/noraly/fuller.svg",
  32306. extra: 1114/1059,
  32307. bottom: 35/1149
  32308. }
  32309. },
  32310. fullest: {
  32311. height: math.unit(5 + 2/12, "feet"),
  32312. weight: math.unit(300, "lb"),
  32313. name: "Fullest",
  32314. image: {
  32315. source: "./media/characters/noraly/fullest.svg",
  32316. extra: 1114/1059,
  32317. bottom: 35/1149
  32318. }
  32319. },
  32320. },
  32321. [
  32322. {
  32323. name: "Normal",
  32324. height: math.unit(5 + 2/12, "feet"),
  32325. default: true
  32326. },
  32327. ]
  32328. ))
  32329. characterMakers.push(() => makeCharacter(
  32330. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32331. {
  32332. front: {
  32333. height: math.unit(5 + 2/12, "feet"),
  32334. weight: math.unit(210, "lb"),
  32335. name: "Front",
  32336. image: {
  32337. source: "./media/characters/pera/front.svg",
  32338. extra: 1560/1531,
  32339. bottom: 165/1725
  32340. }
  32341. },
  32342. back: {
  32343. height: math.unit(5 + 2/12, "feet"),
  32344. weight: math.unit(210, "lb"),
  32345. name: "Back",
  32346. image: {
  32347. source: "./media/characters/pera/back.svg",
  32348. extra: 1523/1493,
  32349. bottom: 152/1675
  32350. }
  32351. },
  32352. dick: {
  32353. height: math.unit(2.4, "feet"),
  32354. name: "Dick",
  32355. image: {
  32356. source: "./media/characters/pera/dick.svg"
  32357. }
  32358. },
  32359. },
  32360. [
  32361. {
  32362. name: "Normal",
  32363. height: math.unit(5 + 2/12, "feet"),
  32364. default: true
  32365. },
  32366. ]
  32367. ))
  32368. characterMakers.push(() => makeCharacter(
  32369. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32370. {
  32371. front: {
  32372. height: math.unit(12, "feet"),
  32373. weight: math.unit(3200, "lb"),
  32374. name: "Front",
  32375. image: {
  32376. source: "./media/characters/julian/front.svg",
  32377. extra: 2962/2701,
  32378. bottom: 184/3146
  32379. }
  32380. },
  32381. maw: {
  32382. height: math.unit(5.35, "feet"),
  32383. name: "Maw",
  32384. image: {
  32385. source: "./media/characters/julian/maw.svg"
  32386. }
  32387. },
  32388. paw: {
  32389. height: math.unit(3.07, "feet"),
  32390. name: "Paw",
  32391. image: {
  32392. source: "./media/characters/julian/paw.svg"
  32393. }
  32394. },
  32395. },
  32396. [
  32397. {
  32398. name: "Default",
  32399. height: math.unit(12, "feet"),
  32400. default: true
  32401. },
  32402. {
  32403. name: "Big",
  32404. height: math.unit(50, "feet")
  32405. },
  32406. {
  32407. name: "Really Big",
  32408. height: math.unit(1, "mile")
  32409. },
  32410. {
  32411. name: "Extremely Big",
  32412. height: math.unit(100, "miles")
  32413. },
  32414. {
  32415. name: "Planet Hugger",
  32416. height: math.unit(200, "megameters")
  32417. },
  32418. {
  32419. name: "Unreasonably Big",
  32420. height: math.unit(1e300, "meters")
  32421. },
  32422. ]
  32423. ))
  32424. characterMakers.push(() => makeCharacter(
  32425. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32426. {
  32427. solgooleo: {
  32428. height: math.unit(4, "meters"),
  32429. weight: math.unit(6000*1.5, "kg"),
  32430. volume: math.unit(6000, "liters"),
  32431. name: "Solgooleo",
  32432. image: {
  32433. source: "./media/characters/pi/solgooleo.svg",
  32434. extra: 388/331,
  32435. bottom: 29/417
  32436. }
  32437. },
  32438. },
  32439. [
  32440. {
  32441. name: "Normal",
  32442. height: math.unit(4, "meters"),
  32443. default: true
  32444. },
  32445. ]
  32446. ))
  32447. characterMakers.push(() => makeCharacter(
  32448. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32449. {
  32450. front: {
  32451. height: math.unit(8 + 2/12, "feet"),
  32452. weight: math.unit(4, "tons"),
  32453. name: "Front",
  32454. image: {
  32455. source: "./media/characters/shaun/front.svg",
  32456. extra: 1550/1505,
  32457. bottom: 353/1903
  32458. }
  32459. },
  32460. },
  32461. [
  32462. {
  32463. name: "Lorg",
  32464. height: math.unit(8 + 2/12, "feet"),
  32465. default: true
  32466. },
  32467. ]
  32468. ))
  32469. characterMakers.push(() => makeCharacter(
  32470. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32471. {
  32472. front: {
  32473. height: math.unit(7, "feet"),
  32474. name: "Front",
  32475. image: {
  32476. source: "./media/characters/sini/front.svg",
  32477. extra: 726/678,
  32478. bottom: 35/761
  32479. }
  32480. },
  32481. back: {
  32482. height: math.unit(7, "feet"),
  32483. name: "Back",
  32484. image: {
  32485. source: "./media/characters/sini/back.svg",
  32486. extra: 743/701,
  32487. bottom: 12/755
  32488. }
  32489. },
  32490. mawAnthro: {
  32491. height: math.unit(2.14, "feet"),
  32492. name: "Maw (Anthro)",
  32493. image: {
  32494. source: "./media/characters/sini/maw-anthro.svg"
  32495. }
  32496. },
  32497. dick: {
  32498. height: math.unit(1.45, "feet"),
  32499. name: "Dick (Anthro)",
  32500. image: {
  32501. source: "./media/characters/sini/dick-anthro.svg"
  32502. }
  32503. },
  32504. feral: {
  32505. height: math.unit(16, "feet"),
  32506. name: "Feral",
  32507. image: {
  32508. source: "./media/characters/sini/feral.svg",
  32509. extra: 814/605,
  32510. bottom: 11/825
  32511. }
  32512. },
  32513. mawFeral: {
  32514. height: math.unit(5.66, "feet"),
  32515. name: "Maw-feral",
  32516. image: {
  32517. source: "./media/characters/sini/maw-feral.svg"
  32518. }
  32519. },
  32520. footFeral: {
  32521. height: math.unit(5.17, "feet"),
  32522. name: "Foot-feral",
  32523. image: {
  32524. source: "./media/characters/sini/foot-feral.svg"
  32525. }
  32526. },
  32527. },
  32528. [
  32529. {
  32530. name: "Normal",
  32531. height: math.unit(7, "feet"),
  32532. default: true
  32533. },
  32534. ]
  32535. ))
  32536. characterMakers.push(() => makeCharacter(
  32537. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32538. {
  32539. side: {
  32540. height: math.unit(13, "meters"),
  32541. weight: math.unit(9072, "kg"),
  32542. name: "Side",
  32543. image: {
  32544. source: "./media/characters/raylldo/side.svg",
  32545. extra: 403/344,
  32546. bottom: 42/445
  32547. }
  32548. },
  32549. leaping: {
  32550. height: math.unit(12.3, "meters"),
  32551. weight: math.unit(9072, "kg"),
  32552. name: "Leaping",
  32553. image: {
  32554. source: "./media/characters/raylldo/leaping.svg",
  32555. extra: 470/249,
  32556. bottom: 13/483
  32557. }
  32558. },
  32559. flying: {
  32560. height: math.unit(18, "meters"),
  32561. weight: math.unit(9072, "kg"),
  32562. name: "Flying",
  32563. image: {
  32564. source: "./media/characters/raylldo/flying.svg"
  32565. }
  32566. },
  32567. head: {
  32568. height: math.unit(5.85, "meters"),
  32569. name: "Head",
  32570. image: {
  32571. source: "./media/characters/raylldo/head.svg"
  32572. }
  32573. },
  32574. maw: {
  32575. height: math.unit(5.32, "meters"),
  32576. name: "Maw",
  32577. image: {
  32578. source: "./media/characters/raylldo/maw.svg"
  32579. }
  32580. },
  32581. eye: {
  32582. height: math.unit(0.54, "meters"),
  32583. name: "Eye",
  32584. image: {
  32585. source: "./media/characters/raylldo/eye.svg"
  32586. }
  32587. },
  32588. },
  32589. [
  32590. {
  32591. name: "Normal",
  32592. height: math.unit(13, "meters"),
  32593. default: true
  32594. },
  32595. ]
  32596. ))
  32597. characterMakers.push(() => makeCharacter(
  32598. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32599. {
  32600. anthroFront: {
  32601. height: math.unit(9, "feet"),
  32602. weight: math.unit(600, "lb"),
  32603. name: "Anthro (Front)",
  32604. image: {
  32605. source: "./media/characters/glint/anthro-front.svg",
  32606. extra: 1097/1018,
  32607. bottom: 28/1125
  32608. }
  32609. },
  32610. anthroBack: {
  32611. height: math.unit(9, "feet"),
  32612. weight: math.unit(600, "lb"),
  32613. name: "Anthro (Back)",
  32614. image: {
  32615. source: "./media/characters/glint/anthro-back.svg",
  32616. extra: 1154/997,
  32617. bottom: 36/1190
  32618. }
  32619. },
  32620. feral: {
  32621. height: math.unit(11, "feet"),
  32622. weight: math.unit(50000, "lb"),
  32623. name: "Feral",
  32624. image: {
  32625. source: "./media/characters/glint/feral.svg",
  32626. extra: 3035/1585,
  32627. bottom: 1169/4204
  32628. }
  32629. },
  32630. dickAnthro: {
  32631. height: math.unit(0.7, "meters"),
  32632. name: "Dick (Anthro)",
  32633. image: {
  32634. source: "./media/characters/glint/dick-anthro.svg"
  32635. }
  32636. },
  32637. dickFeral: {
  32638. height: math.unit(2.65, "meters"),
  32639. name: "Dick (Feral)",
  32640. image: {
  32641. source: "./media/characters/glint/dick-feral.svg"
  32642. }
  32643. },
  32644. slitHidden: {
  32645. height: math.unit(5.85, "meters"),
  32646. name: "Slit (Hidden)",
  32647. image: {
  32648. source: "./media/characters/glint/slit-hidden.svg"
  32649. }
  32650. },
  32651. slitErect: {
  32652. height: math.unit(5.85, "meters"),
  32653. name: "Slit (Erect)",
  32654. image: {
  32655. source: "./media/characters/glint/slit-erect.svg"
  32656. }
  32657. },
  32658. mawAnthro: {
  32659. height: math.unit(0.63, "meters"),
  32660. name: "Maw (Anthro)",
  32661. image: {
  32662. source: "./media/characters/glint/maw.svg"
  32663. }
  32664. },
  32665. mawFeral: {
  32666. height: math.unit(2.89, "meters"),
  32667. name: "Maw (Feral)",
  32668. image: {
  32669. source: "./media/characters/glint/maw.svg"
  32670. }
  32671. },
  32672. },
  32673. [
  32674. {
  32675. name: "Normal",
  32676. height: math.unit(9, "feet"),
  32677. default: true
  32678. },
  32679. ]
  32680. ))
  32681. characterMakers.push(() => makeCharacter(
  32682. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32683. {
  32684. side: {
  32685. height: math.unit(15, "feet"),
  32686. weight: math.unit(5000, "kg"),
  32687. name: "Side",
  32688. image: {
  32689. source: "./media/characters/kairne/side.svg",
  32690. extra: 979/811,
  32691. bottom: 13/992
  32692. }
  32693. },
  32694. front: {
  32695. height: math.unit(15, "feet"),
  32696. weight: math.unit(5000, "kg"),
  32697. name: "Front",
  32698. image: {
  32699. source: "./media/characters/kairne/front.svg",
  32700. extra: 908/814,
  32701. bottom: 26/934
  32702. }
  32703. },
  32704. sideNsfw: {
  32705. height: math.unit(15, "feet"),
  32706. weight: math.unit(5000, "kg"),
  32707. name: "Side (NSFW)",
  32708. image: {
  32709. source: "./media/characters/kairne/side-nsfw.svg",
  32710. extra: 979/811,
  32711. bottom: 13/992
  32712. }
  32713. },
  32714. frontNsfw: {
  32715. height: math.unit(15, "feet"),
  32716. weight: math.unit(5000, "kg"),
  32717. name: "Front (NSFW)",
  32718. image: {
  32719. source: "./media/characters/kairne/front-nsfw.svg",
  32720. extra: 908/814,
  32721. bottom: 26/934
  32722. }
  32723. },
  32724. dickCaged: {
  32725. height: math.unit(0.65, "meters"),
  32726. name: "Dick-caged",
  32727. image: {
  32728. source: "./media/characters/kairne/dick-caged.svg"
  32729. }
  32730. },
  32731. dick: {
  32732. height: math.unit(0.79, "meters"),
  32733. name: "Dick",
  32734. image: {
  32735. source: "./media/characters/kairne/dick.svg"
  32736. }
  32737. },
  32738. genitals: {
  32739. height: math.unit(1.29, "meters"),
  32740. name: "Genitals",
  32741. image: {
  32742. source: "./media/characters/kairne/genitals.svg"
  32743. }
  32744. },
  32745. maw: {
  32746. height: math.unit(1.73, "meters"),
  32747. name: "Maw",
  32748. image: {
  32749. source: "./media/characters/kairne/maw.svg"
  32750. }
  32751. },
  32752. },
  32753. [
  32754. {
  32755. name: "Normal",
  32756. height: math.unit(15, "feet"),
  32757. default: true
  32758. },
  32759. ]
  32760. ))
  32761. characterMakers.push(() => makeCharacter(
  32762. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32763. {
  32764. front: {
  32765. height: math.unit(5 + 8/12, "feet"),
  32766. weight: math.unit(139, "lb"),
  32767. name: "Front",
  32768. image: {
  32769. source: "./media/characters/biscuit-jackal/front.svg",
  32770. extra: 2106/1961,
  32771. bottom: 58/2164
  32772. }
  32773. },
  32774. back: {
  32775. height: math.unit(5 + 8/12, "feet"),
  32776. weight: math.unit(139, "lb"),
  32777. name: "Back",
  32778. image: {
  32779. source: "./media/characters/biscuit-jackal/back.svg",
  32780. extra: 2132/1976,
  32781. bottom: 57/2189
  32782. }
  32783. },
  32784. werejackal: {
  32785. height: math.unit(6 + 3/12, "feet"),
  32786. weight: math.unit(188, "lb"),
  32787. name: "Werejackal",
  32788. image: {
  32789. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32790. extra: 2373/2178,
  32791. bottom: 53/2426
  32792. }
  32793. },
  32794. },
  32795. [
  32796. {
  32797. name: "Normal",
  32798. height: math.unit(5 + 8/12, "feet"),
  32799. default: true
  32800. },
  32801. ]
  32802. ))
  32803. characterMakers.push(() => makeCharacter(
  32804. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32805. {
  32806. front: {
  32807. height: math.unit(140, "cm"),
  32808. weight: math.unit(45, "kg"),
  32809. name: "Front",
  32810. image: {
  32811. source: "./media/characters/tayra-white/front.svg",
  32812. extra: 2229/2192,
  32813. bottom: 75/2304
  32814. }
  32815. },
  32816. },
  32817. [
  32818. {
  32819. name: "Normal",
  32820. height: math.unit(140, "cm"),
  32821. default: true
  32822. },
  32823. ]
  32824. ))
  32825. characterMakers.push(() => makeCharacter(
  32826. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32827. {
  32828. front: {
  32829. height: math.unit(4 + 5/12, "feet"),
  32830. name: "Front",
  32831. image: {
  32832. source: "./media/characters/scoop/front.svg",
  32833. extra: 1257/1136,
  32834. bottom: 69/1326
  32835. }
  32836. },
  32837. back: {
  32838. height: math.unit(4 + 5/12, "feet"),
  32839. name: "Back",
  32840. image: {
  32841. source: "./media/characters/scoop/back.svg",
  32842. extra: 1321/1152,
  32843. bottom: 32/1353
  32844. }
  32845. },
  32846. maw: {
  32847. height: math.unit(0.68, "feet"),
  32848. name: "Maw",
  32849. image: {
  32850. source: "./media/characters/scoop/maw.svg"
  32851. }
  32852. },
  32853. },
  32854. [
  32855. {
  32856. name: "Really Small",
  32857. height: math.unit(1, "mm")
  32858. },
  32859. {
  32860. name: "Micro",
  32861. height: math.unit(1, "inch")
  32862. },
  32863. {
  32864. name: "Normal",
  32865. height: math.unit(4 + 5/12, "feet"),
  32866. default: true
  32867. },
  32868. {
  32869. name: "Macro",
  32870. height: math.unit(200, "feet")
  32871. },
  32872. {
  32873. name: "Megamacro",
  32874. height: math.unit(3240, "feet")
  32875. },
  32876. {
  32877. name: "Teramacro",
  32878. height: math.unit(2500, "miles")
  32879. },
  32880. ]
  32881. ))
  32882. characterMakers.push(() => makeCharacter(
  32883. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32884. {
  32885. front: {
  32886. height: math.unit(15 + 7/12, "feet"),
  32887. name: "Front",
  32888. image: {
  32889. source: "./media/characters/saphinara/front.svg",
  32890. extra: 604/546,
  32891. bottom: 19/623
  32892. }
  32893. },
  32894. side: {
  32895. height: math.unit(15 + 7/12, "feet"),
  32896. name: "Side",
  32897. image: {
  32898. source: "./media/characters/saphinara/side.svg",
  32899. extra: 605/547,
  32900. bottom: 6/611
  32901. }
  32902. },
  32903. back: {
  32904. height: math.unit(15 + 7/12, "feet"),
  32905. name: "Back",
  32906. image: {
  32907. source: "./media/characters/saphinara/back.svg",
  32908. extra: 591/531,
  32909. bottom: 13/604
  32910. }
  32911. },
  32912. frontTail: {
  32913. height: math.unit(15 + 7/12, "feet"),
  32914. name: "Front (Full Tail)",
  32915. image: {
  32916. source: "./media/characters/saphinara/front-tail.svg",
  32917. extra: 748/547,
  32918. bottom: 66/814
  32919. }
  32920. },
  32921. },
  32922. [
  32923. {
  32924. name: "Normal",
  32925. height: math.unit(15 + 7/12, "feet"),
  32926. default: true
  32927. },
  32928. {
  32929. name: "Angry",
  32930. height: math.unit(30 + 6/12, "feet")
  32931. },
  32932. {
  32933. name: "Enraged",
  32934. height: math.unit(102 + 1/12, "feet")
  32935. },
  32936. ]
  32937. ))
  32938. characterMakers.push(() => makeCharacter(
  32939. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32940. {
  32941. front: {
  32942. height: math.unit(6 + 8/12, "feet"),
  32943. weight: math.unit(300, "lb"),
  32944. name: "Front",
  32945. image: {
  32946. source: "./media/characters/jrain/front.svg",
  32947. extra: 3039/2865,
  32948. bottom: 399/3438
  32949. }
  32950. },
  32951. back: {
  32952. height: math.unit(6 + 8/12, "feet"),
  32953. weight: math.unit(300, "lb"),
  32954. name: "Back",
  32955. image: {
  32956. source: "./media/characters/jrain/back.svg",
  32957. extra: 3089/2938,
  32958. bottom: 172/3261
  32959. }
  32960. },
  32961. head: {
  32962. height: math.unit(2.14, "feet"),
  32963. name: "Head",
  32964. image: {
  32965. source: "./media/characters/jrain/head.svg"
  32966. }
  32967. },
  32968. maw: {
  32969. height: math.unit(1.77, "feet"),
  32970. name: "Maw",
  32971. image: {
  32972. source: "./media/characters/jrain/maw.svg"
  32973. }
  32974. },
  32975. leftHand: {
  32976. height: math.unit(1.1, "feet"),
  32977. name: "Left Hand",
  32978. image: {
  32979. source: "./media/characters/jrain/left-hand.svg"
  32980. }
  32981. },
  32982. rightHand: {
  32983. height: math.unit(1.1, "feet"),
  32984. name: "Right Hand",
  32985. image: {
  32986. source: "./media/characters/jrain/right-hand.svg"
  32987. }
  32988. },
  32989. eye: {
  32990. height: math.unit(0.35, "feet"),
  32991. name: "Eye",
  32992. image: {
  32993. source: "./media/characters/jrain/eye.svg"
  32994. }
  32995. },
  32996. },
  32997. [
  32998. {
  32999. name: "Normal",
  33000. height: math.unit(6 + 8/12, "feet"),
  33001. default: true
  33002. },
  33003. {
  33004. name: "Casually Large",
  33005. height: math.unit(25, "feet")
  33006. },
  33007. {
  33008. name: "Giant",
  33009. height: math.unit(100, "feet")
  33010. },
  33011. {
  33012. name: "Kaiju",
  33013. height: math.unit(300, "feet")
  33014. },
  33015. ]
  33016. ))
  33017. characterMakers.push(() => makeCharacter(
  33018. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33019. {
  33020. dragon: {
  33021. height: math.unit(5, "meters"),
  33022. name: "Dragon",
  33023. image: {
  33024. source: "./media/characters/sabrina/dragon.svg",
  33025. extra: 3670 / 2365,
  33026. bottom: 333 / 4003
  33027. }
  33028. },
  33029. gryphon: {
  33030. height: math.unit(3, "meters"),
  33031. name: "Gryphon",
  33032. image: {
  33033. source: "./media/characters/sabrina/gryphon.svg",
  33034. extra: 1576 / 945,
  33035. bottom: 71 / 1647
  33036. }
  33037. },
  33038. snake: {
  33039. height: math.unit(12, "meters"),
  33040. name: "Snake",
  33041. image: {
  33042. source: "./media/characters/sabrina/snake.svg",
  33043. extra: 1758 / 1320,
  33044. bottom: 186 / 1944
  33045. }
  33046. },
  33047. collar: {
  33048. height: math.unit(1.86, "meters"),
  33049. name: "Collar",
  33050. image: {
  33051. source: "./media/characters/sabrina/collar.svg"
  33052. }
  33053. },
  33054. eye: {
  33055. height: math.unit(0.53, "meters"),
  33056. name: "Eye",
  33057. image: {
  33058. source: "./media/characters/sabrina/eye.svg"
  33059. }
  33060. },
  33061. foot: {
  33062. height: math.unit(1.86, "meters"),
  33063. name: "Foot",
  33064. image: {
  33065. source: "./media/characters/sabrina/foot.svg"
  33066. }
  33067. },
  33068. hand: {
  33069. height: math.unit(1.32, "meters"),
  33070. name: "Hand",
  33071. image: {
  33072. source: "./media/characters/sabrina/hand.svg"
  33073. }
  33074. },
  33075. head: {
  33076. height: math.unit(2.44, "meters"),
  33077. name: "Head",
  33078. image: {
  33079. source: "./media/characters/sabrina/head.svg"
  33080. }
  33081. },
  33082. headAngry: {
  33083. height: math.unit(2.44, "meters"),
  33084. name: "Head (Angry))",
  33085. image: {
  33086. source: "./media/characters/sabrina/head-angry.svg"
  33087. }
  33088. },
  33089. maw: {
  33090. height: math.unit(1.65, "meters"),
  33091. name: "Maw",
  33092. image: {
  33093. source: "./media/characters/sabrina/maw.svg"
  33094. }
  33095. },
  33096. spikes: {
  33097. height: math.unit(1.69, "meters"),
  33098. name: "Spikes",
  33099. image: {
  33100. source: "./media/characters/sabrina/spikes.svg"
  33101. }
  33102. },
  33103. stomach: {
  33104. height: math.unit(1.15, "meters"),
  33105. name: "Stomach",
  33106. image: {
  33107. source: "./media/characters/sabrina/stomach.svg"
  33108. }
  33109. },
  33110. tongue: {
  33111. height: math.unit(1.27, "meters"),
  33112. name: "Tongue",
  33113. image: {
  33114. source: "./media/characters/sabrina/tongue.svg"
  33115. }
  33116. },
  33117. wingDorsal: {
  33118. height: math.unit(4.85, "meters"),
  33119. name: "Wing (Dorsal)",
  33120. image: {
  33121. source: "./media/characters/sabrina/wing-dorsal.svg"
  33122. }
  33123. },
  33124. wingVentral: {
  33125. height: math.unit(4.85, "meters"),
  33126. name: "Wing (Ventral)",
  33127. image: {
  33128. source: "./media/characters/sabrina/wing-ventral.svg"
  33129. }
  33130. },
  33131. },
  33132. [
  33133. {
  33134. name: "Normal",
  33135. height: math.unit(5, "meters"),
  33136. default: true
  33137. },
  33138. ]
  33139. ))
  33140. characterMakers.push(() => makeCharacter(
  33141. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33142. {
  33143. frontMaid: {
  33144. height: math.unit(5 + 5/12, "feet"),
  33145. weight: math.unit(130, "lb"),
  33146. name: "Front (Maid)",
  33147. image: {
  33148. source: "./media/characters/midnight-tales/front-maid.svg",
  33149. extra: 489/454,
  33150. bottom: 61/550
  33151. }
  33152. },
  33153. frontFormal: {
  33154. height: math.unit(5 + 5/12, "feet"),
  33155. weight: math.unit(130, "lb"),
  33156. name: "Front (Formal)",
  33157. image: {
  33158. source: "./media/characters/midnight-tales/front-formal.svg",
  33159. extra: 489/454,
  33160. bottom: 61/550
  33161. }
  33162. },
  33163. back: {
  33164. height: math.unit(5 + 5/12, "feet"),
  33165. weight: math.unit(130, "lb"),
  33166. name: "Back",
  33167. image: {
  33168. source: "./media/characters/midnight-tales/back.svg",
  33169. extra: 498/456,
  33170. bottom: 33/531
  33171. }
  33172. },
  33173. frontBeast: {
  33174. height: math.unit(40, "feet"),
  33175. weight: math.unit(64000, "lb"),
  33176. name: "Front (Beast)",
  33177. image: {
  33178. source: "./media/characters/midnight-tales/front-beast.svg",
  33179. extra: 927/860,
  33180. bottom: 53/980
  33181. }
  33182. },
  33183. backBeast: {
  33184. height: math.unit(40, "feet"),
  33185. weight: math.unit(64000, "lb"),
  33186. name: "Back (Beast)",
  33187. image: {
  33188. source: "./media/characters/midnight-tales/back-beast.svg",
  33189. extra: 929/855,
  33190. bottom: 16/945
  33191. }
  33192. },
  33193. footBeast: {
  33194. height: math.unit(6.7, "feet"),
  33195. name: "Foot (Beast)",
  33196. image: {
  33197. source: "./media/characters/midnight-tales/foot-beast.svg"
  33198. }
  33199. },
  33200. headBeast: {
  33201. height: math.unit(8, "feet"),
  33202. name: "Head (Beast)",
  33203. image: {
  33204. source: "./media/characters/midnight-tales/head-beast.svg"
  33205. }
  33206. },
  33207. },
  33208. [
  33209. {
  33210. name: "Normal",
  33211. height: math.unit(5 + 5 / 12, "feet"),
  33212. default: true
  33213. },
  33214. {
  33215. name: "Macro",
  33216. height: math.unit(25, "feet")
  33217. },
  33218. ]
  33219. ))
  33220. characterMakers.push(() => makeCharacter(
  33221. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33222. {
  33223. front: {
  33224. height: math.unit(5 + 10/12, "feet"),
  33225. name: "Front",
  33226. image: {
  33227. source: "./media/characters/argon/front.svg",
  33228. extra: 2009/1935,
  33229. bottom: 118/2127
  33230. }
  33231. },
  33232. back: {
  33233. height: math.unit(5 + 10/12, "feet"),
  33234. name: "Back",
  33235. image: {
  33236. source: "./media/characters/argon/back.svg",
  33237. extra: 2047/1992,
  33238. bottom: 20/2067
  33239. }
  33240. },
  33241. frontDressed: {
  33242. height: math.unit(5 + 10/12, "feet"),
  33243. name: "Front (Dressed)",
  33244. image: {
  33245. source: "./media/characters/argon/front-dressed.svg",
  33246. extra: 2009/1935,
  33247. bottom: 118/2127
  33248. }
  33249. },
  33250. },
  33251. [
  33252. {
  33253. name: "Normal",
  33254. height: math.unit(5 + 10/12, "feet"),
  33255. default: true
  33256. },
  33257. ]
  33258. ))
  33259. characterMakers.push(() => makeCharacter(
  33260. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33261. {
  33262. front: {
  33263. height: math.unit(8 + 6/12, "feet"),
  33264. weight: math.unit(1150, "lb"),
  33265. name: "Front",
  33266. image: {
  33267. source: "./media/characters/kichi/front.svg",
  33268. extra: 1267/1164,
  33269. bottom: 61/1328
  33270. }
  33271. },
  33272. back: {
  33273. height: math.unit(8 + 6/12, "feet"),
  33274. weight: math.unit(1150, "lb"),
  33275. name: "Back",
  33276. image: {
  33277. source: "./media/characters/kichi/back.svg",
  33278. extra: 1273/1166,
  33279. bottom: 33/1306
  33280. }
  33281. },
  33282. },
  33283. [
  33284. {
  33285. name: "Normal",
  33286. height: math.unit(8 + 6/12, "feet"),
  33287. default: true
  33288. },
  33289. ]
  33290. ))
  33291. characterMakers.push(() => makeCharacter(
  33292. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33293. {
  33294. front: {
  33295. height: math.unit(6, "feet"),
  33296. weight: math.unit(210, "lb"),
  33297. name: "Front",
  33298. image: {
  33299. source: "./media/characters/manetel-greyscale/front.svg",
  33300. extra: 350/312,
  33301. bottom: 8/358
  33302. }
  33303. },
  33304. },
  33305. [
  33306. {
  33307. name: "Micro",
  33308. height: math.unit(2, "inches")
  33309. },
  33310. {
  33311. name: "Normal",
  33312. height: math.unit(6, "feet"),
  33313. default: true
  33314. },
  33315. {
  33316. name: "Minimacro",
  33317. height: math.unit(17, "feet")
  33318. },
  33319. {
  33320. name: "Macro",
  33321. height: math.unit(117, "feet")
  33322. },
  33323. ]
  33324. ))
  33325. characterMakers.push(() => makeCharacter(
  33326. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33327. {
  33328. side: {
  33329. height: math.unit(5 + 1/12, "feet"),
  33330. weight: math.unit(418, "lb"),
  33331. name: "Side",
  33332. image: {
  33333. source: "./media/characters/softpurr/side.svg",
  33334. extra: 1993/1945,
  33335. bottom: 134/2127
  33336. }
  33337. },
  33338. front: {
  33339. height: math.unit(5 + 1/12, "feet"),
  33340. weight: math.unit(418, "lb"),
  33341. name: "Front",
  33342. image: {
  33343. source: "./media/characters/softpurr/front.svg",
  33344. extra: 1950/1856,
  33345. bottom: 174/2124
  33346. }
  33347. },
  33348. paw: {
  33349. height: math.unit(1, "feet"),
  33350. name: "Paw",
  33351. image: {
  33352. source: "./media/characters/softpurr/paw.svg"
  33353. }
  33354. },
  33355. },
  33356. [
  33357. {
  33358. name: "Normal",
  33359. height: math.unit(5 + 1/12, "feet"),
  33360. default: true
  33361. },
  33362. ]
  33363. ))
  33364. characterMakers.push(() => makeCharacter(
  33365. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33366. {
  33367. front: {
  33368. height: math.unit(260, "meters"),
  33369. name: "Front",
  33370. image: {
  33371. source: "./media/characters/anahita/front.svg",
  33372. extra: 665/635,
  33373. bottom: 89/754
  33374. }
  33375. },
  33376. },
  33377. [
  33378. {
  33379. name: "Macro",
  33380. height: math.unit(260, "meters"),
  33381. default: true
  33382. },
  33383. ]
  33384. ))
  33385. characterMakers.push(() => makeCharacter(
  33386. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33387. {
  33388. front: {
  33389. height: math.unit(4 + 10/12, "feet"),
  33390. weight: math.unit(160, "lb"),
  33391. name: "Front",
  33392. image: {
  33393. source: "./media/characters/chip-mouse/front.svg",
  33394. extra: 3528/3408,
  33395. bottom: 0/3528
  33396. }
  33397. },
  33398. frontNsfw: {
  33399. height: math.unit(4 + 10/12, "feet"),
  33400. weight: math.unit(160, "lb"),
  33401. name: "Front (NSFW)",
  33402. image: {
  33403. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33404. extra: 3528/3408,
  33405. bottom: 0/3528
  33406. }
  33407. },
  33408. },
  33409. [
  33410. {
  33411. name: "Normal",
  33412. height: math.unit(4 + 10/12, "feet"),
  33413. default: true
  33414. },
  33415. ]
  33416. ))
  33417. characterMakers.push(() => makeCharacter(
  33418. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33419. {
  33420. side: {
  33421. height: math.unit(10, "feet"),
  33422. weight: math.unit(14000, "lb"),
  33423. name: "Side",
  33424. image: {
  33425. source: "./media/characters/kremm/side.svg",
  33426. extra: 1390/1053,
  33427. bottom: 90/1480
  33428. }
  33429. },
  33430. gut: {
  33431. height: math.unit(5.8, "feet"),
  33432. name: "Gut",
  33433. image: {
  33434. source: "./media/characters/kremm/gut.svg"
  33435. }
  33436. },
  33437. ass: {
  33438. height: math.unit(6.1, "feet"),
  33439. name: "Ass",
  33440. image: {
  33441. source: "./media/characters/kremm/ass.svg"
  33442. }
  33443. },
  33444. jaws: {
  33445. height: math.unit(2.2, "feet"),
  33446. name: "Jaws",
  33447. image: {
  33448. source: "./media/characters/kremm/jaws.svg"
  33449. }
  33450. },
  33451. dick: {
  33452. height: math.unit(4.26, "feet"),
  33453. name: "Dick",
  33454. image: {
  33455. source: "./media/characters/kremm/dick.svg"
  33456. }
  33457. },
  33458. },
  33459. [
  33460. {
  33461. name: "Normal",
  33462. height: math.unit(10, "feet"),
  33463. default: true
  33464. },
  33465. ]
  33466. ))
  33467. characterMakers.push(() => makeCharacter(
  33468. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33469. {
  33470. front: {
  33471. height: math.unit(30, "stories"),
  33472. name: "Front",
  33473. image: {
  33474. source: "./media/characters/kai/front.svg",
  33475. extra: 1892/1718,
  33476. bottom: 162/2054
  33477. }
  33478. },
  33479. },
  33480. [
  33481. {
  33482. name: "Macro",
  33483. height: math.unit(30, "stories"),
  33484. default: true
  33485. },
  33486. ]
  33487. ))
  33488. characterMakers.push(() => makeCharacter(
  33489. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33490. {
  33491. front: {
  33492. height: math.unit(6 + 4/12, "feet"),
  33493. weight: math.unit(145, "lb"),
  33494. name: "Front",
  33495. image: {
  33496. source: "./media/characters/sykes/front.svg",
  33497. extra: 1321 / 1187,
  33498. bottom: 66 / 1387
  33499. }
  33500. },
  33501. back: {
  33502. height: math.unit(6 + 4/12, "feet"),
  33503. weight: math.unit(145, "lb"),
  33504. name: "Back",
  33505. image: {
  33506. source: "./media/characters/sykes/back.svg",
  33507. extra: 1326/1181,
  33508. bottom: 31/1357
  33509. }
  33510. },
  33511. handBack: {
  33512. height: math.unit(0.9, "feet"),
  33513. name: "Hand (Back)",
  33514. image: {
  33515. source: "./media/characters/sykes/hand-back.svg"
  33516. }
  33517. },
  33518. handFront: {
  33519. height: math.unit(0.839, "feet"),
  33520. name: "Hand (Front)",
  33521. image: {
  33522. source: "./media/characters/sykes/hand-front.svg"
  33523. }
  33524. },
  33525. leftFoot: {
  33526. height: math.unit(1.2, "feet"),
  33527. name: "Foot (Left)",
  33528. image: {
  33529. source: "./media/characters/sykes/foot-left.svg"
  33530. }
  33531. },
  33532. rightFoot: {
  33533. height: math.unit(1.2, "feet"),
  33534. name: "Foot (Right)",
  33535. image: {
  33536. source: "./media/characters/sykes/foot-right.svg"
  33537. }
  33538. },
  33539. maw: {
  33540. height: math.unit(1.93, "feet"),
  33541. name: "Maw",
  33542. image: {
  33543. source: "./media/characters/sykes/maw.svg"
  33544. }
  33545. },
  33546. teeth: {
  33547. height: math.unit(0.51, "feet"),
  33548. name: "Teeth",
  33549. image: {
  33550. source: "./media/characters/sykes/teeth.svg"
  33551. }
  33552. },
  33553. tongue: {
  33554. height: math.unit(2.13, "feet"),
  33555. name: "Tongue",
  33556. image: {
  33557. source: "./media/characters/sykes/tongue.svg"
  33558. }
  33559. },
  33560. uvula: {
  33561. height: math.unit(0.16, "feet"),
  33562. name: "Uvula",
  33563. image: {
  33564. source: "./media/characters/sykes/uvula.svg"
  33565. }
  33566. },
  33567. collar: {
  33568. height: math.unit(0.287, "feet"),
  33569. name: "Collar",
  33570. image: {
  33571. source: "./media/characters/sykes/collar.svg"
  33572. }
  33573. },
  33574. },
  33575. [
  33576. {
  33577. name: "Shrunken",
  33578. height: math.unit(5, "inches")
  33579. },
  33580. {
  33581. name: "Normal",
  33582. height: math.unit(6 + 4 / 12, "feet"),
  33583. default: true
  33584. },
  33585. {
  33586. name: "Big",
  33587. height: math.unit(15, "feet")
  33588. },
  33589. ]
  33590. ))
  33591. characterMakers.push(() => makeCharacter(
  33592. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33593. {
  33594. front: {
  33595. height: math.unit(5 + 8/12, "feet"),
  33596. weight: math.unit(190, "lb"),
  33597. name: "Front",
  33598. image: {
  33599. source: "./media/characters/oven-otter/front.svg",
  33600. extra: 1809/1740,
  33601. bottom: 181/1990
  33602. }
  33603. },
  33604. back: {
  33605. height: math.unit(5 + 8/12, "feet"),
  33606. weight: math.unit(190, "lb"),
  33607. name: "Back",
  33608. image: {
  33609. source: "./media/characters/oven-otter/back.svg",
  33610. extra: 1709/1635,
  33611. bottom: 118/1827
  33612. }
  33613. },
  33614. hand: {
  33615. height: math.unit(1.07, "feet"),
  33616. name: "Hand",
  33617. image: {
  33618. source: "./media/characters/oven-otter/hand.svg"
  33619. }
  33620. },
  33621. beans: {
  33622. height: math.unit(1.74, "feet"),
  33623. name: "Beans",
  33624. image: {
  33625. source: "./media/characters/oven-otter/beans.svg"
  33626. }
  33627. },
  33628. },
  33629. [
  33630. {
  33631. name: "Micro",
  33632. height: math.unit(0.5, "inches")
  33633. },
  33634. {
  33635. name: "Normal",
  33636. height: math.unit(5 + 8/12, "feet"),
  33637. default: true
  33638. },
  33639. {
  33640. name: "Macro",
  33641. height: math.unit(250, "feet")
  33642. },
  33643. {
  33644. name: "Really High",
  33645. height: math.unit(420, "feet")
  33646. },
  33647. ]
  33648. ))
  33649. characterMakers.push(() => makeCharacter(
  33650. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33651. {
  33652. front: {
  33653. height: math.unit(5, "meters"),
  33654. weight: math.unit(292000000000000, "kg"),
  33655. name: "Front",
  33656. image: {
  33657. source: "./media/characters/devourer/front.svg",
  33658. extra: 1800/1733,
  33659. bottom: 211/2011
  33660. }
  33661. },
  33662. maw: {
  33663. height: math.unit(1.1, "meter"),
  33664. name: "Maw",
  33665. image: {
  33666. source: "./media/characters/devourer/maw.svg"
  33667. }
  33668. },
  33669. },
  33670. [
  33671. {
  33672. name: "Small",
  33673. height: math.unit(3, "meters")
  33674. },
  33675. {
  33676. name: "Large",
  33677. height: math.unit(5, "meters"),
  33678. default: true
  33679. },
  33680. ]
  33681. ))
  33682. characterMakers.push(() => makeCharacter(
  33683. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33684. {
  33685. front: {
  33686. height: math.unit(6, "feet"),
  33687. weight: math.unit(400, "lb"),
  33688. name: "Front",
  33689. image: {
  33690. source: "./media/characters/ellarby/front.svg",
  33691. extra: 1909/1763,
  33692. bottom: 80/1989
  33693. }
  33694. },
  33695. back: {
  33696. height: math.unit(6, "feet"),
  33697. weight: math.unit(400, "lb"),
  33698. name: "Back",
  33699. image: {
  33700. source: "./media/characters/ellarby/back.svg",
  33701. extra: 1914/1784,
  33702. bottom: 172/2086
  33703. }
  33704. },
  33705. },
  33706. [
  33707. {
  33708. name: "Mischief",
  33709. height: math.unit(18, "inches")
  33710. },
  33711. {
  33712. name: "Trouble",
  33713. height: math.unit(12, "feet")
  33714. },
  33715. {
  33716. name: "Havoc",
  33717. height: math.unit(200, "feet"),
  33718. default: true
  33719. },
  33720. {
  33721. name: "Pandemonium",
  33722. height: math.unit(1, "mile")
  33723. },
  33724. {
  33725. name: "Catastrophe",
  33726. height: math.unit(100, "miles")
  33727. },
  33728. ]
  33729. ))
  33730. characterMakers.push(() => makeCharacter(
  33731. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33732. {
  33733. front: {
  33734. height: math.unit(4.7, "meters"),
  33735. weight: math.unit(6500, "kg"),
  33736. name: "Front",
  33737. image: {
  33738. source: "./media/characters/vex/front.svg",
  33739. extra: 1288/1140,
  33740. bottom: 100/1388
  33741. }
  33742. },
  33743. },
  33744. [
  33745. {
  33746. name: "Normal",
  33747. height: math.unit(4.7, "meters"),
  33748. default: true
  33749. },
  33750. ]
  33751. ))
  33752. characterMakers.push(() => makeCharacter(
  33753. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33754. {
  33755. normal: {
  33756. height: math.unit(6, "feet"),
  33757. weight: math.unit(350, "lb"),
  33758. name: "Normal",
  33759. image: {
  33760. source: "./media/characters/teshy/normal.svg",
  33761. extra: 1795/1735,
  33762. bottom: 16/1811
  33763. }
  33764. },
  33765. monsterFront: {
  33766. height: math.unit(12, "feet"),
  33767. weight: math.unit(4700, "lb"),
  33768. name: "Monster (Front)",
  33769. image: {
  33770. source: "./media/characters/teshy/monster-front.svg",
  33771. extra: 2042/2034,
  33772. bottom: 128/2170
  33773. }
  33774. },
  33775. monsterSide: {
  33776. height: math.unit(12, "feet"),
  33777. weight: math.unit(4700, "lb"),
  33778. name: "Monster (Side)",
  33779. image: {
  33780. source: "./media/characters/teshy/monster-side.svg",
  33781. extra: 2067/2056,
  33782. bottom: 70/2137
  33783. }
  33784. },
  33785. monsterBack: {
  33786. height: math.unit(12, "feet"),
  33787. weight: math.unit(4700, "lb"),
  33788. name: "Monster (Back)",
  33789. image: {
  33790. source: "./media/characters/teshy/monster-back.svg",
  33791. extra: 1921/1914,
  33792. bottom: 171/2092
  33793. }
  33794. },
  33795. },
  33796. [
  33797. {
  33798. name: "Normal",
  33799. height: math.unit(6, "feet"),
  33800. default: true
  33801. },
  33802. ]
  33803. ))
  33804. characterMakers.push(() => makeCharacter(
  33805. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33806. {
  33807. front: {
  33808. height: math.unit(6, "feet"),
  33809. name: "Front",
  33810. image: {
  33811. source: "./media/characters/ramey/front.svg",
  33812. extra: 790/787,
  33813. bottom: 27/817
  33814. }
  33815. },
  33816. },
  33817. [
  33818. {
  33819. name: "Normal",
  33820. height: math.unit(6, "feet"),
  33821. default: true
  33822. },
  33823. ]
  33824. ))
  33825. characterMakers.push(() => makeCharacter(
  33826. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33827. {
  33828. front: {
  33829. height: math.unit(5 + 5/12, "feet"),
  33830. weight: math.unit(120, "lb"),
  33831. name: "Front",
  33832. image: {
  33833. source: "./media/characters/phirae/front.svg",
  33834. extra: 2491/2436,
  33835. bottom: 38/2529
  33836. }
  33837. },
  33838. },
  33839. [
  33840. {
  33841. name: "Normal",
  33842. height: math.unit(5 + 5/12, "feet"),
  33843. default: true
  33844. },
  33845. ]
  33846. ))
  33847. characterMakers.push(() => makeCharacter(
  33848. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  33849. {
  33850. front: {
  33851. height: math.unit(5 + 3/12, "feet"),
  33852. name: "Front",
  33853. image: {
  33854. source: "./media/characters/stagglas/front.svg",
  33855. extra: 962/882,
  33856. bottom: 53/1015
  33857. }
  33858. },
  33859. feral: {
  33860. height: math.unit(335, "cm"),
  33861. name: "Feral",
  33862. image: {
  33863. source: "./media/characters/stagglas/feral.svg",
  33864. extra: 1732/1090,
  33865. bottom: 48/1780
  33866. }
  33867. },
  33868. },
  33869. [
  33870. {
  33871. name: "Normal",
  33872. height: math.unit(5 + 3/12, "feet"),
  33873. default: true
  33874. },
  33875. ]
  33876. ))
  33877. characterMakers.push(() => makeCharacter(
  33878. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33879. {
  33880. front: {
  33881. height: math.unit(5 + 4/12, "feet"),
  33882. weight: math.unit(145, "lb"),
  33883. name: "Front",
  33884. image: {
  33885. source: "./media/characters/starra/front.svg",
  33886. extra: 1790/1691,
  33887. bottom: 91/1881
  33888. }
  33889. },
  33890. },
  33891. [
  33892. {
  33893. name: "Normal",
  33894. height: math.unit(5 + 4/12, "feet"),
  33895. default: true
  33896. },
  33897. ]
  33898. ))
  33899. characterMakers.push(() => makeCharacter(
  33900. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33901. {
  33902. front: {
  33903. height: math.unit(2.2, "meters"),
  33904. name: "Front",
  33905. image: {
  33906. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33907. extra: 1194/1005,
  33908. bottom: 25/1219
  33909. }
  33910. },
  33911. },
  33912. [
  33913. {
  33914. name: "Normal",
  33915. height: math.unit(2.2, "meters"),
  33916. default: true
  33917. },
  33918. ]
  33919. ))
  33920. characterMakers.push(() => makeCharacter(
  33921. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33922. {
  33923. side: {
  33924. height: math.unit(8 + 2/12, "feet"),
  33925. weight: math.unit(1240, "lb"),
  33926. name: "Side",
  33927. image: {
  33928. source: "./media/characters/mika-valentine/side.svg",
  33929. extra: 2670/2501,
  33930. bottom: 250/2920
  33931. }
  33932. },
  33933. },
  33934. [
  33935. {
  33936. name: "Normal",
  33937. height: math.unit(8 + 2/12, "feet"),
  33938. default: true
  33939. },
  33940. ]
  33941. ))
  33942. characterMakers.push(() => makeCharacter(
  33943. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33944. {
  33945. front: {
  33946. height: math.unit(7 + 2/12, "feet"),
  33947. name: "Front",
  33948. image: {
  33949. source: "./media/characters/xoltol/front.svg",
  33950. extra: 2212/2124,
  33951. bottom: 84/2296
  33952. }
  33953. },
  33954. side: {
  33955. height: math.unit(7 + 2/12, "feet"),
  33956. name: "Side",
  33957. image: {
  33958. source: "./media/characters/xoltol/side.svg",
  33959. extra: 2273/2197,
  33960. bottom: 26/2299
  33961. }
  33962. },
  33963. hand: {
  33964. height: math.unit(2.5, "feet"),
  33965. name: "Hand",
  33966. image: {
  33967. source: "./media/characters/xoltol/hand.svg"
  33968. }
  33969. },
  33970. },
  33971. [
  33972. {
  33973. name: "Small-ish",
  33974. height: math.unit(5 + 11/12, "feet")
  33975. },
  33976. {
  33977. name: "Normal",
  33978. height: math.unit(7 + 2/12, "feet")
  33979. },
  33980. {
  33981. name: "\"Macro\"",
  33982. height: math.unit(14 + 9/12, "feet"),
  33983. default: true
  33984. },
  33985. {
  33986. name: "Alternate Height",
  33987. height: math.unit(20, "feet")
  33988. },
  33989. {
  33990. name: "Actually Macro",
  33991. height: math.unit(100, "feet")
  33992. },
  33993. ]
  33994. ))
  33995. characterMakers.push(() => makeCharacter(
  33996. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33997. {
  33998. front: {
  33999. height: math.unit(5 + 2/12, "feet"),
  34000. name: "Front",
  34001. image: {
  34002. source: "./media/characters/kotetsu-redwood/front.svg",
  34003. extra: 1053/942,
  34004. bottom: 60/1113
  34005. }
  34006. },
  34007. },
  34008. [
  34009. {
  34010. name: "Normal",
  34011. height: math.unit(5 + 2/12, "feet"),
  34012. default: true
  34013. },
  34014. ]
  34015. ))
  34016. characterMakers.push(() => makeCharacter(
  34017. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34018. {
  34019. front: {
  34020. height: math.unit(2.4, "meters"),
  34021. weight: math.unit(125, "kg"),
  34022. name: "Front",
  34023. image: {
  34024. source: "./media/characters/lilith/front.svg",
  34025. extra: 1590/1513,
  34026. bottom: 203/1793
  34027. }
  34028. },
  34029. },
  34030. [
  34031. {
  34032. name: "Humanoid",
  34033. height: math.unit(2.4, "meters")
  34034. },
  34035. {
  34036. name: "Normal",
  34037. height: math.unit(6, "meters"),
  34038. default: true
  34039. },
  34040. {
  34041. name: "Largest",
  34042. height: math.unit(55, "meters")
  34043. },
  34044. ]
  34045. ))
  34046. characterMakers.push(() => makeCharacter(
  34047. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34048. {
  34049. front: {
  34050. height: math.unit(8 + 4/12, "feet"),
  34051. weight: math.unit(535, "lb"),
  34052. name: "Front",
  34053. image: {
  34054. source: "./media/characters/beh'kah-bolger/front.svg",
  34055. extra: 1660/1603,
  34056. bottom: 37/1697
  34057. }
  34058. },
  34059. },
  34060. [
  34061. {
  34062. name: "Normal",
  34063. height: math.unit(8 + 4/12, "feet"),
  34064. default: true
  34065. },
  34066. {
  34067. name: "Kaiju",
  34068. height: math.unit(250, "feet")
  34069. },
  34070. {
  34071. name: "Still Growing",
  34072. height: math.unit(10, "miles")
  34073. },
  34074. {
  34075. name: "Continental",
  34076. height: math.unit(5000, "miles")
  34077. },
  34078. {
  34079. name: "Final Form",
  34080. height: math.unit(2500000, "miles")
  34081. },
  34082. ]
  34083. ))
  34084. characterMakers.push(() => makeCharacter(
  34085. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34086. {
  34087. front: {
  34088. height: math.unit(7 + 2/12, "feet"),
  34089. weight: math.unit(230, "kg"),
  34090. name: "Front",
  34091. image: {
  34092. source: "./media/characters/tatyana-milewska/front.svg",
  34093. extra: 1199/1150,
  34094. bottom: 86/1285
  34095. }
  34096. },
  34097. },
  34098. [
  34099. {
  34100. name: "Normal",
  34101. height: math.unit(7 + 2/12, "feet"),
  34102. default: true
  34103. },
  34104. {
  34105. name: "Big",
  34106. height: math.unit(12, "feet")
  34107. },
  34108. {
  34109. name: "Minimacro",
  34110. height: math.unit(20, "feet")
  34111. },
  34112. {
  34113. name: "Macro",
  34114. height: math.unit(120, "feet")
  34115. },
  34116. ]
  34117. ))
  34118. characterMakers.push(() => makeCharacter(
  34119. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34120. {
  34121. front: {
  34122. height: math.unit(7 + 8/12, "feet"),
  34123. weight: math.unit(152, "kg"),
  34124. name: "Front",
  34125. image: {
  34126. source: "./media/characters/helen-arri/front.svg",
  34127. extra: 440/423,
  34128. bottom: 14/454
  34129. }
  34130. },
  34131. back: {
  34132. height: math.unit(7 + 8/12, "feet"),
  34133. weight: math.unit(152, "kg"),
  34134. name: "Back",
  34135. image: {
  34136. source: "./media/characters/helen-arri/back.svg",
  34137. extra: 443/426,
  34138. bottom: 8/451
  34139. }
  34140. },
  34141. },
  34142. [
  34143. {
  34144. name: "Normal",
  34145. height: math.unit(7 + 8/12, "feet"),
  34146. default: true
  34147. },
  34148. {
  34149. name: "Big",
  34150. height: math.unit(14, "feet")
  34151. },
  34152. {
  34153. name: "Minimacro",
  34154. height: math.unit(24, "feet")
  34155. },
  34156. {
  34157. name: "Macro",
  34158. height: math.unit(140, "feet")
  34159. },
  34160. ]
  34161. ))
  34162. characterMakers.push(() => makeCharacter(
  34163. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34164. {
  34165. front: {
  34166. height: math.unit(6, "meters"),
  34167. name: "Front",
  34168. image: {
  34169. source: "./media/characters/ehanu-rehu/front.svg",
  34170. extra: 1800/1800,
  34171. bottom: 59/1859
  34172. }
  34173. },
  34174. },
  34175. [
  34176. {
  34177. name: "Normal",
  34178. height: math.unit(6, "meters"),
  34179. default: true
  34180. },
  34181. ]
  34182. ))
  34183. characterMakers.push(() => makeCharacter(
  34184. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34185. {
  34186. front: {
  34187. height: math.unit(7 + 3/12, "feet"),
  34188. name: "Front",
  34189. image: {
  34190. source: "./media/characters/renholder/front.svg",
  34191. extra: 3096/2960,
  34192. bottom: 250/3346
  34193. }
  34194. },
  34195. },
  34196. [
  34197. {
  34198. name: "Normal Bat",
  34199. height: math.unit(7 + 3/12, "feet"),
  34200. default: true
  34201. },
  34202. {
  34203. name: "Slightly Tall Bat",
  34204. height: math.unit(100, "feet")
  34205. },
  34206. {
  34207. name: "Big Bat",
  34208. height: math.unit(1000, "feet")
  34209. },
  34210. {
  34211. name: "City-Sized Bat",
  34212. height: math.unit(200000, "feet")
  34213. },
  34214. {
  34215. name: "Bigger Bat",
  34216. height: math.unit(10000, "miles")
  34217. },
  34218. {
  34219. name: "Solar Sized Bat",
  34220. height: math.unit(100, "AU")
  34221. },
  34222. {
  34223. name: "Galactic Bat",
  34224. height: math.unit(200000, "lightyears")
  34225. },
  34226. {
  34227. name: "Universally Known Bat",
  34228. height: math.unit(1, "universe")
  34229. },
  34230. ]
  34231. ))
  34232. characterMakers.push(() => makeCharacter(
  34233. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34234. {
  34235. front: {
  34236. height: math.unit(6 + 11/12, "feet"),
  34237. weight: math.unit(250, "lb"),
  34238. name: "Front",
  34239. image: {
  34240. source: "./media/characters/cookiecat/front.svg",
  34241. extra: 893/827,
  34242. bottom: 14/907
  34243. }
  34244. },
  34245. },
  34246. [
  34247. {
  34248. name: "Micro",
  34249. height: math.unit(3, "inches")
  34250. },
  34251. {
  34252. name: "Normal",
  34253. height: math.unit(6 + 11/12, "feet"),
  34254. default: true
  34255. },
  34256. {
  34257. name: "Macro",
  34258. height: math.unit(100, "feet")
  34259. },
  34260. {
  34261. name: "Macro+",
  34262. height: math.unit(404, "feet")
  34263. },
  34264. {
  34265. name: "Megamacro",
  34266. height: math.unit(165, "miles")
  34267. },
  34268. {
  34269. name: "Planetary",
  34270. height: math.unit(4600, "miles")
  34271. },
  34272. ]
  34273. ))
  34274. characterMakers.push(() => makeCharacter(
  34275. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34276. {
  34277. front: {
  34278. height: math.unit(10 + 3/12, "feet"),
  34279. weight: math.unit(1500, "lb"),
  34280. name: "Front",
  34281. image: {
  34282. source: "./media/characters/tux-kusanagi/front.svg",
  34283. extra: 944/840,
  34284. bottom: 39/983
  34285. }
  34286. },
  34287. back: {
  34288. height: math.unit(10 + 3/12, "feet"),
  34289. weight: math.unit(1500, "lb"),
  34290. name: "Back",
  34291. image: {
  34292. source: "./media/characters/tux-kusanagi/back.svg",
  34293. extra: 941/842,
  34294. bottom: 28/969
  34295. }
  34296. },
  34297. rump: {
  34298. height: math.unit(5.25, "feet"),
  34299. name: "Rump",
  34300. image: {
  34301. source: "./media/characters/tux-kusanagi/rump.svg"
  34302. }
  34303. },
  34304. beak: {
  34305. height: math.unit(1.54, "feet"),
  34306. name: "Beak",
  34307. image: {
  34308. source: "./media/characters/tux-kusanagi/beak.svg"
  34309. }
  34310. },
  34311. },
  34312. [
  34313. {
  34314. name: "Normal",
  34315. height: math.unit(10 + 3/12, "feet"),
  34316. default: true
  34317. },
  34318. ]
  34319. ))
  34320. characterMakers.push(() => makeCharacter(
  34321. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34322. {
  34323. front: {
  34324. height: math.unit(58, "feet"),
  34325. weight: math.unit(200, "tons"),
  34326. name: "Front",
  34327. image: {
  34328. source: "./media/characters/uzarmazari/front.svg",
  34329. extra: 1575/1455,
  34330. bottom: 152/1727
  34331. }
  34332. },
  34333. back: {
  34334. height: math.unit(58, "feet"),
  34335. weight: math.unit(200, "tons"),
  34336. name: "Back",
  34337. image: {
  34338. source: "./media/characters/uzarmazari/back.svg",
  34339. extra: 1585/1510,
  34340. bottom: 157/1742
  34341. }
  34342. },
  34343. head: {
  34344. height: math.unit(26, "feet"),
  34345. name: "Head",
  34346. image: {
  34347. source: "./media/characters/uzarmazari/head.svg"
  34348. }
  34349. },
  34350. },
  34351. [
  34352. {
  34353. name: "Normal",
  34354. height: math.unit(58, "feet"),
  34355. default: true
  34356. },
  34357. ]
  34358. ))
  34359. characterMakers.push(() => makeCharacter(
  34360. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34361. {
  34362. side: {
  34363. height: math.unit(15, "feet"),
  34364. name: "Side",
  34365. image: {
  34366. source: "./media/characters/akitu/side.svg",
  34367. extra: 1421/1321,
  34368. bottom: 157/1578
  34369. }
  34370. },
  34371. front: {
  34372. height: math.unit(15, "feet"),
  34373. name: "Front",
  34374. image: {
  34375. source: "./media/characters/akitu/front.svg",
  34376. extra: 1435/1326,
  34377. bottom: 232/1667
  34378. }
  34379. },
  34380. },
  34381. [
  34382. {
  34383. name: "Normal",
  34384. height: math.unit(15, "feet"),
  34385. default: true
  34386. },
  34387. ]
  34388. ))
  34389. characterMakers.push(() => makeCharacter(
  34390. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34391. {
  34392. front: {
  34393. height: math.unit(10 + 8/12, "feet"),
  34394. name: "Front",
  34395. image: {
  34396. source: "./media/characters/azalie-croixland/front.svg",
  34397. extra: 1972/1856,
  34398. bottom: 31/2003
  34399. }
  34400. },
  34401. },
  34402. [
  34403. {
  34404. name: "Original Height",
  34405. height: math.unit(5 + 4/12, "feet")
  34406. },
  34407. {
  34408. name: "Normal Height",
  34409. height: math.unit(10 + 8/12, "feet"),
  34410. default: true
  34411. },
  34412. ]
  34413. ))
  34414. characterMakers.push(() => makeCharacter(
  34415. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34416. {
  34417. side: {
  34418. height: math.unit(7 + 1/12, "feet"),
  34419. weight: math.unit(245, "lb"),
  34420. name: "Side",
  34421. image: {
  34422. source: "./media/characters/kavus-kazian/side.svg",
  34423. extra: 349/342,
  34424. bottom: 15/364
  34425. }
  34426. },
  34427. },
  34428. [
  34429. {
  34430. name: "Normal",
  34431. height: math.unit(7 + 1/12, "feet"),
  34432. default: true
  34433. },
  34434. ]
  34435. ))
  34436. characterMakers.push(() => makeCharacter(
  34437. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34438. {
  34439. normal: {
  34440. height: math.unit(5 + 11/12, "feet"),
  34441. name: "Normal",
  34442. image: {
  34443. source: "./media/characters/moonlight-rose/normal.svg",
  34444. extra: 1979/1835,
  34445. bottom: 14/1993
  34446. }
  34447. },
  34448. demon: {
  34449. height: math.unit(5, "km"),
  34450. name: "Demon",
  34451. image: {
  34452. source: "./media/characters/moonlight-rose/demon.svg",
  34453. extra: 986/916,
  34454. bottom: 28/1014
  34455. }
  34456. },
  34457. },
  34458. [
  34459. {
  34460. name: "\"Natural\" height",
  34461. height: math.unit(5 + 11/12, "feet")
  34462. },
  34463. {
  34464. name: "Comfortable Size",
  34465. height: math.unit(40, "meters")
  34466. },
  34467. {
  34468. name: "Common Size",
  34469. height: math.unit(50, "km"),
  34470. default: true
  34471. },
  34472. {
  34473. name: "Demonic",
  34474. height: math.unit(1.24415e+21, "meters")
  34475. },
  34476. ]
  34477. ))
  34478. characterMakers.push(() => makeCharacter(
  34479. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34480. {
  34481. front: {
  34482. height: math.unit(16, "feet"),
  34483. weight: math.unit(610, "kg"),
  34484. name: "Front",
  34485. image: {
  34486. source: "./media/characters/huckle/front.svg",
  34487. extra: 1731/1625,
  34488. bottom: 33/1764
  34489. }
  34490. },
  34491. back: {
  34492. height: math.unit(16, "feet"),
  34493. weight: math.unit(610, "kg"),
  34494. name: "Back",
  34495. image: {
  34496. source: "./media/characters/huckle/back.svg",
  34497. extra: 1738/1651,
  34498. bottom: 37/1775
  34499. }
  34500. },
  34501. laughing: {
  34502. height: math.unit(3.75, "feet"),
  34503. name: "Laughing",
  34504. image: {
  34505. source: "./media/characters/huckle/laughing.svg"
  34506. }
  34507. },
  34508. angry: {
  34509. height: math.unit(4.15, "feet"),
  34510. name: "Angry",
  34511. image: {
  34512. source: "./media/characters/huckle/angry.svg"
  34513. }
  34514. },
  34515. },
  34516. [
  34517. {
  34518. name: "Normal",
  34519. height: math.unit(16, "feet"),
  34520. default: true
  34521. },
  34522. {
  34523. name: "Mini Macro",
  34524. height: math.unit(463, "feet")
  34525. },
  34526. {
  34527. name: "Macro",
  34528. height: math.unit(1680, "meters")
  34529. },
  34530. {
  34531. name: "Mega Macro",
  34532. height: math.unit(175, "km")
  34533. },
  34534. {
  34535. name: "Terra Macro",
  34536. height: math.unit(32, "gigameters")
  34537. },
  34538. {
  34539. name: "Multiverse+",
  34540. height: math.unit(2.56e23, "yottameters")
  34541. },
  34542. ]
  34543. ))
  34544. characterMakers.push(() => makeCharacter(
  34545. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34546. {
  34547. front: {
  34548. height: math.unit(6 + 9/12, "feet"),
  34549. weight: math.unit(280, "lb"),
  34550. name: "Front",
  34551. image: {
  34552. source: "./media/characters/candy/front.svg",
  34553. extra: 234/217,
  34554. bottom: 11/245
  34555. }
  34556. },
  34557. },
  34558. [
  34559. {
  34560. name: "Really Small",
  34561. height: math.unit(0.1, "nm")
  34562. },
  34563. {
  34564. name: "Micro",
  34565. height: math.unit(2, "inches")
  34566. },
  34567. {
  34568. name: "Normal",
  34569. height: math.unit(6 + 9/12, "feet"),
  34570. default: true
  34571. },
  34572. {
  34573. name: "Small Macro",
  34574. height: math.unit(69, "feet")
  34575. },
  34576. {
  34577. name: "Macro",
  34578. height: math.unit(160, "feet")
  34579. },
  34580. {
  34581. name: "Megamacro",
  34582. height: math.unit(22000, "miles")
  34583. },
  34584. {
  34585. name: "Gigamacro",
  34586. height: math.unit(50000, "miles")
  34587. },
  34588. ]
  34589. ))
  34590. characterMakers.push(() => makeCharacter(
  34591. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34592. {
  34593. front: {
  34594. height: math.unit(4, "feet"),
  34595. weight: math.unit(90, "lb"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/joey-mcdonald/front.svg",
  34599. extra: 1059/852,
  34600. bottom: 33/1092
  34601. }
  34602. },
  34603. back: {
  34604. height: math.unit(4, "feet"),
  34605. weight: math.unit(90, "lb"),
  34606. name: "Back",
  34607. image: {
  34608. source: "./media/characters/joey-mcdonald/back.svg",
  34609. extra: 1077/879,
  34610. bottom: 5/1082
  34611. }
  34612. },
  34613. frontKobold: {
  34614. height: math.unit(4, "feet"),
  34615. weight: math.unit(100, "lb"),
  34616. name: "Front-kobold",
  34617. image: {
  34618. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34619. extra: 1480/1367,
  34620. bottom: 0/1480
  34621. }
  34622. },
  34623. backKobold: {
  34624. height: math.unit(4, "feet"),
  34625. weight: math.unit(100, "lb"),
  34626. name: "Back-kobold",
  34627. image: {
  34628. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34629. extra: 1449/1361,
  34630. bottom: 0/1449
  34631. }
  34632. },
  34633. },
  34634. [
  34635. {
  34636. name: "Normal",
  34637. height: math.unit(4, "feet"),
  34638. default: true
  34639. },
  34640. ]
  34641. ))
  34642. characterMakers.push(() => makeCharacter(
  34643. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34644. {
  34645. front: {
  34646. height: math.unit(12 + 6/12, "feet"),
  34647. name: "Front",
  34648. image: {
  34649. source: "./media/characters/kass-lockheed/front.svg",
  34650. extra: 354/343,
  34651. bottom: 9/363
  34652. }
  34653. },
  34654. back: {
  34655. height: math.unit(12 + 6/12, "feet"),
  34656. name: "Back",
  34657. image: {
  34658. source: "./media/characters/kass-lockheed/back.svg",
  34659. extra: 364/352,
  34660. bottom: 3/367
  34661. }
  34662. },
  34663. dick: {
  34664. height: math.unit(3.12, "feet"),
  34665. name: "Dick",
  34666. image: {
  34667. source: "./media/characters/kass-lockheed/dick.svg"
  34668. }
  34669. },
  34670. head: {
  34671. height: math.unit(2.6, "feet"),
  34672. name: "Head",
  34673. image: {
  34674. source: "./media/characters/kass-lockheed/head.svg"
  34675. }
  34676. },
  34677. bleh: {
  34678. height: math.unit(2.85, "feet"),
  34679. name: "Bleh",
  34680. image: {
  34681. source: "./media/characters/kass-lockheed/bleh.svg"
  34682. }
  34683. },
  34684. smug: {
  34685. height: math.unit(2.85, "feet"),
  34686. name: "Smug",
  34687. image: {
  34688. source: "./media/characters/kass-lockheed/smug.svg"
  34689. }
  34690. },
  34691. },
  34692. [
  34693. {
  34694. name: "Normal",
  34695. height: math.unit(12 + 6/12, "feet"),
  34696. default: true
  34697. },
  34698. ]
  34699. ))
  34700. characterMakers.push(() => makeCharacter(
  34701. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34702. {
  34703. front: {
  34704. height: math.unit(6 + 2/12, "feet"),
  34705. name: "Front",
  34706. image: {
  34707. source: "./media/characters/taylor/front.svg",
  34708. extra: 639/495,
  34709. bottom: 12/651
  34710. }
  34711. },
  34712. },
  34713. [
  34714. {
  34715. name: "Normal",
  34716. height: math.unit(6 + 2/12, "feet"),
  34717. default: true
  34718. },
  34719. {
  34720. name: "Big",
  34721. height: math.unit(15, "feet")
  34722. },
  34723. {
  34724. name: "Lorg",
  34725. height: math.unit(80, "feet")
  34726. },
  34727. {
  34728. name: "Too Lorg",
  34729. height: math.unit(120, "feet")
  34730. },
  34731. ]
  34732. ))
  34733. characterMakers.push(() => makeCharacter(
  34734. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34735. {
  34736. front: {
  34737. height: math.unit(15, "feet"),
  34738. name: "Front",
  34739. image: {
  34740. source: "./media/characters/kaizer/front.svg",
  34741. extra: 1612/1436,
  34742. bottom: 43/1655
  34743. }
  34744. },
  34745. },
  34746. [
  34747. {
  34748. name: "Normal",
  34749. height: math.unit(15, "feet"),
  34750. default: true
  34751. },
  34752. ]
  34753. ))
  34754. characterMakers.push(() => makeCharacter(
  34755. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34756. {
  34757. front: {
  34758. height: math.unit(2, "feet"),
  34759. weight: math.unit(30, "lb"),
  34760. name: "Front",
  34761. image: {
  34762. source: "./media/characters/sandy/front.svg",
  34763. extra: 1439/1307,
  34764. bottom: 194/1633
  34765. }
  34766. },
  34767. },
  34768. [
  34769. {
  34770. name: "Normal",
  34771. height: math.unit(2, "feet"),
  34772. default: true
  34773. },
  34774. ]
  34775. ))
  34776. characterMakers.push(() => makeCharacter(
  34777. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34778. {
  34779. front: {
  34780. height: math.unit(3, "feet"),
  34781. name: "Front",
  34782. image: {
  34783. source: "./media/characters/mellvi/front.svg",
  34784. extra: 1831/1630,
  34785. bottom: 58/1889
  34786. }
  34787. },
  34788. },
  34789. [
  34790. {
  34791. name: "Normal",
  34792. height: math.unit(3, "feet"),
  34793. default: true
  34794. },
  34795. ]
  34796. ))
  34797. characterMakers.push(() => makeCharacter(
  34798. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34799. {
  34800. front: {
  34801. height: math.unit(5 + 11/12, "feet"),
  34802. weight: math.unit(200, "lb"),
  34803. name: "Front",
  34804. image: {
  34805. source: "./media/characters/shirou/front.svg",
  34806. extra: 2491/2383,
  34807. bottom: 189/2680
  34808. }
  34809. },
  34810. back: {
  34811. height: math.unit(5 + 11/12, "feet"),
  34812. weight: math.unit(200, "lb"),
  34813. name: "Back",
  34814. image: {
  34815. source: "./media/characters/shirou/back.svg",
  34816. extra: 2554/2450,
  34817. bottom: 76/2630
  34818. }
  34819. },
  34820. },
  34821. [
  34822. {
  34823. name: "Normal",
  34824. height: math.unit(5 + 11/12, "feet"),
  34825. default: true
  34826. },
  34827. ]
  34828. ))
  34829. characterMakers.push(() => makeCharacter(
  34830. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34831. {
  34832. front: {
  34833. height: math.unit(6 + 3/12, "feet"),
  34834. weight: math.unit(177, "lb"),
  34835. name: "Front",
  34836. image: {
  34837. source: "./media/characters/noryu/front.svg",
  34838. extra: 973/885,
  34839. bottom: 10/983
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Normal",
  34846. height: math.unit(6 + 3/12, "feet"),
  34847. default: true
  34848. },
  34849. ]
  34850. ))
  34851. characterMakers.push(() => makeCharacter(
  34852. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34853. {
  34854. front: {
  34855. height: math.unit(5 + 6/12, "feet"),
  34856. weight: math.unit(170, "lb"),
  34857. name: "Front",
  34858. image: {
  34859. source: "./media/characters/mevolas-rubenido/front.svg",
  34860. extra: 2109/1901,
  34861. bottom: 96/2205
  34862. }
  34863. },
  34864. },
  34865. [
  34866. {
  34867. name: "Normal",
  34868. height: math.unit(5 + 6/12, "feet"),
  34869. default: true
  34870. },
  34871. ]
  34872. ))
  34873. characterMakers.push(() => makeCharacter(
  34874. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34875. {
  34876. front: {
  34877. height: math.unit(100, "feet"),
  34878. name: "Front",
  34879. image: {
  34880. source: "./media/characters/dee/front.svg",
  34881. extra: 2153/2036,
  34882. bottom: 59/2212
  34883. }
  34884. },
  34885. back: {
  34886. height: math.unit(100, "feet"),
  34887. name: "Back",
  34888. image: {
  34889. source: "./media/characters/dee/back.svg",
  34890. extra: 2183/2058,
  34891. bottom: 75/2258
  34892. }
  34893. },
  34894. foot: {
  34895. height: math.unit(19.43, "feet"),
  34896. name: "Foot",
  34897. image: {
  34898. source: "./media/characters/dee/foot.svg"
  34899. }
  34900. },
  34901. hoof: {
  34902. height: math.unit(20.6, "feet"),
  34903. name: "Hoof",
  34904. image: {
  34905. source: "./media/characters/dee/hoof.svg"
  34906. }
  34907. },
  34908. },
  34909. [
  34910. {
  34911. name: "Macro",
  34912. height: math.unit(100, "feet"),
  34913. default: true
  34914. },
  34915. ]
  34916. ))
  34917. characterMakers.push(() => makeCharacter(
  34918. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34919. {
  34920. front: {
  34921. height: math.unit(5 + 6/12, "feet"),
  34922. name: "Front",
  34923. image: {
  34924. source: "./media/characters/teh/front.svg",
  34925. extra: 1002/847,
  34926. bottom: 62/1064
  34927. }
  34928. },
  34929. },
  34930. [
  34931. {
  34932. name: "Normal",
  34933. height: math.unit(5 + 6/12, "feet"),
  34934. default: true
  34935. },
  34936. ]
  34937. ))
  34938. characterMakers.push(() => makeCharacter(
  34939. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34940. {
  34941. side: {
  34942. height: math.unit(6 + 1/12, "feet"),
  34943. weight: math.unit(204, "lb"),
  34944. name: "Side",
  34945. image: {
  34946. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34947. extra: 974/775,
  34948. bottom: 169/1143
  34949. }
  34950. },
  34951. sitting: {
  34952. height: math.unit(6 + 2/12, "feet"),
  34953. weight: math.unit(204, "lb"),
  34954. name: "Sitting",
  34955. image: {
  34956. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34957. extra: 1175/964,
  34958. bottom: 378/1553
  34959. }
  34960. },
  34961. },
  34962. [
  34963. {
  34964. name: "Normal",
  34965. height: math.unit(6 + 1/12, "feet"),
  34966. default: true
  34967. },
  34968. ]
  34969. ))
  34970. characterMakers.push(() => makeCharacter(
  34971. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34972. {
  34973. front: {
  34974. height: math.unit(6, "inches"),
  34975. name: "Front",
  34976. image: {
  34977. source: "./media/characters/tululi/front.svg",
  34978. extra: 1997/1876,
  34979. bottom: 20/2017
  34980. }
  34981. },
  34982. },
  34983. [
  34984. {
  34985. name: "Normal",
  34986. height: math.unit(6, "inches"),
  34987. default: true
  34988. },
  34989. ]
  34990. ))
  34991. characterMakers.push(() => makeCharacter(
  34992. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34993. {
  34994. front: {
  34995. height: math.unit(4 + 1/12, "feet"),
  34996. name: "Front",
  34997. image: {
  34998. source: "./media/characters/star/front.svg",
  34999. extra: 1493/1189,
  35000. bottom: 48/1541
  35001. }
  35002. },
  35003. },
  35004. [
  35005. {
  35006. name: "Normal",
  35007. height: math.unit(4 + 1/12, "feet"),
  35008. default: true
  35009. },
  35010. ]
  35011. ))
  35012. characterMakers.push(() => makeCharacter(
  35013. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35014. {
  35015. front: {
  35016. height: math.unit(6 + 3/12, "feet"),
  35017. name: "Front",
  35018. image: {
  35019. source: "./media/characters/comet/front.svg",
  35020. extra: 1681/1462,
  35021. bottom: 26/1707
  35022. }
  35023. },
  35024. },
  35025. [
  35026. {
  35027. name: "Normal",
  35028. height: math.unit(6 + 3/12, "feet"),
  35029. default: true
  35030. },
  35031. ]
  35032. ))
  35033. characterMakers.push(() => makeCharacter(
  35034. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35035. {
  35036. front: {
  35037. height: math.unit(950, "feet"),
  35038. name: "Front",
  35039. image: {
  35040. source: "./media/characters/vortex/front.svg",
  35041. extra: 1497/1434,
  35042. bottom: 56/1553
  35043. }
  35044. },
  35045. maw: {
  35046. height: math.unit(285, "feet"),
  35047. name: "Maw",
  35048. image: {
  35049. source: "./media/characters/vortex/maw.svg"
  35050. }
  35051. },
  35052. },
  35053. [
  35054. {
  35055. name: "Macro",
  35056. height: math.unit(950, "feet"),
  35057. default: true
  35058. },
  35059. ]
  35060. ))
  35061. characterMakers.push(() => makeCharacter(
  35062. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35063. {
  35064. front: {
  35065. height: math.unit(600, "feet"),
  35066. weight: math.unit(0.02, "grams"),
  35067. name: "Front",
  35068. image: {
  35069. source: "./media/characters/doodle/front.svg",
  35070. extra: 1578/1413,
  35071. bottom: 37/1615
  35072. }
  35073. },
  35074. },
  35075. [
  35076. {
  35077. name: "Macro",
  35078. height: math.unit(600, "feet"),
  35079. default: true
  35080. },
  35081. ]
  35082. ))
  35083. characterMakers.push(() => makeCharacter(
  35084. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35085. {
  35086. front: {
  35087. height: math.unit(6 + 6/12, "feet"),
  35088. name: "Front",
  35089. image: {
  35090. source: "./media/characters/jai/front.svg",
  35091. extra: 1645/1534,
  35092. bottom: 115/1760
  35093. }
  35094. },
  35095. },
  35096. [
  35097. {
  35098. name: "Normal",
  35099. height: math.unit(6 + 6/12, "feet"),
  35100. default: true
  35101. },
  35102. ]
  35103. ))
  35104. characterMakers.push(() => makeCharacter(
  35105. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35106. {
  35107. front: {
  35108. height: math.unit(6 + 8/12, "feet"),
  35109. name: "Front",
  35110. image: {
  35111. source: "./media/characters/pixel/front.svg",
  35112. extra: 1900/1735,
  35113. bottom: 63/1963
  35114. }
  35115. },
  35116. },
  35117. [
  35118. {
  35119. name: "Normal",
  35120. height: math.unit(6 + 8/12, "feet"),
  35121. default: true
  35122. },
  35123. ]
  35124. ))
  35125. characterMakers.push(() => makeCharacter(
  35126. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35127. {
  35128. front: {
  35129. height: math.unit(4 + 11/12, "feet"),
  35130. weight: math.unit(111, "lb"),
  35131. name: "Front",
  35132. image: {
  35133. source: "./media/characters/rhett/front.svg",
  35134. extra: 1682/1586,
  35135. bottom: 92/1774
  35136. }
  35137. },
  35138. },
  35139. [
  35140. {
  35141. name: "Mini",
  35142. height: math.unit(1 + 1/12, "feet")
  35143. },
  35144. {
  35145. name: "Normal",
  35146. height: math.unit(4 + 11/12, "feet"),
  35147. default: true
  35148. },
  35149. ]
  35150. ))
  35151. characterMakers.push(() => makeCharacter(
  35152. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35153. {
  35154. front: {
  35155. height: math.unit(3 + 3/12, "feet"),
  35156. name: "Front",
  35157. image: {
  35158. source: "./media/characters/penny/front.svg",
  35159. extra: 1406/1311,
  35160. bottom: 26/1432
  35161. }
  35162. },
  35163. },
  35164. [
  35165. {
  35166. name: "Normal",
  35167. height: math.unit(3 + 3/12, "feet"),
  35168. default: true
  35169. },
  35170. ]
  35171. ))
  35172. characterMakers.push(() => makeCharacter(
  35173. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35174. {
  35175. front: {
  35176. height: math.unit(4 + 11/12, "feet"),
  35177. name: "Front",
  35178. image: {
  35179. source: "./media/characters/monty/front.svg",
  35180. extra: 1479/1209,
  35181. bottom: 0/1479
  35182. }
  35183. },
  35184. },
  35185. [
  35186. {
  35187. name: "Normal",
  35188. height: math.unit(4 + 11/12, "feet"),
  35189. default: true
  35190. },
  35191. ]
  35192. ))
  35193. characterMakers.push(() => makeCharacter(
  35194. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35195. {
  35196. front: {
  35197. height: math.unit(8 + 4/12, "feet"),
  35198. name: "Front",
  35199. image: {
  35200. source: "./media/characters/sterling/front.svg",
  35201. extra: 1420/1236,
  35202. bottom: 27/1447
  35203. }
  35204. },
  35205. },
  35206. [
  35207. {
  35208. name: "Normal",
  35209. height: math.unit(8 + 4/12, "feet"),
  35210. default: true
  35211. },
  35212. ]
  35213. ))
  35214. characterMakers.push(() => makeCharacter(
  35215. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35216. {
  35217. front: {
  35218. height: math.unit(15, "feet"),
  35219. name: "Front",
  35220. image: {
  35221. source: "./media/characters/marble/front.svg",
  35222. extra: 973/937,
  35223. bottom: 32/1005
  35224. }
  35225. },
  35226. },
  35227. [
  35228. {
  35229. name: "Normal",
  35230. height: math.unit(15, "feet"),
  35231. default: true
  35232. },
  35233. ]
  35234. ))
  35235. characterMakers.push(() => makeCharacter(
  35236. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35237. {
  35238. front: {
  35239. height: math.unit(3, "inches"),
  35240. name: "Front",
  35241. image: {
  35242. source: "./media/characters/powder/front.svg",
  35243. extra: 1504/1334,
  35244. bottom: 518/2022
  35245. }
  35246. },
  35247. },
  35248. [
  35249. {
  35250. name: "Normal",
  35251. height: math.unit(3, "inches"),
  35252. default: true
  35253. },
  35254. ]
  35255. ))
  35256. characterMakers.push(() => makeCharacter(
  35257. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35258. {
  35259. front: {
  35260. height: math.unit(4 + 5/12, "feet"),
  35261. name: "Front",
  35262. image: {
  35263. source: "./media/characters/joey-raccoon/front.svg",
  35264. extra: 1273/1197,
  35265. bottom: 0/1273
  35266. }
  35267. },
  35268. },
  35269. [
  35270. {
  35271. name: "Normal",
  35272. height: math.unit(4 + 5/12, "feet"),
  35273. default: true
  35274. },
  35275. ]
  35276. ))
  35277. characterMakers.push(() => makeCharacter(
  35278. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35279. {
  35280. front: {
  35281. height: math.unit(8 + 4/12, "feet"),
  35282. name: "Front",
  35283. image: {
  35284. source: "./media/characters/vick/front.svg",
  35285. extra: 2187/2118,
  35286. bottom: 47/2234
  35287. }
  35288. },
  35289. },
  35290. [
  35291. {
  35292. name: "Normal",
  35293. height: math.unit(8 + 4/12, "feet"),
  35294. default: true
  35295. },
  35296. ]
  35297. ))
  35298. characterMakers.push(() => makeCharacter(
  35299. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35300. {
  35301. front: {
  35302. height: math.unit(5 + 5/12, "feet"),
  35303. name: "Front",
  35304. image: {
  35305. source: "./media/characters/mitsy/front.svg",
  35306. extra: 1842/1695,
  35307. bottom: 0/1842
  35308. }
  35309. },
  35310. },
  35311. [
  35312. {
  35313. name: "Normal",
  35314. height: math.unit(5 + 5/12, "feet"),
  35315. default: true
  35316. },
  35317. ]
  35318. ))
  35319. characterMakers.push(() => makeCharacter(
  35320. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35321. {
  35322. front: {
  35323. height: math.unit(6 + 3/12, "feet"),
  35324. name: "Front",
  35325. image: {
  35326. source: "./media/characters/silvy/front.svg",
  35327. extra: 1995/1836,
  35328. bottom: 225/2220
  35329. }
  35330. },
  35331. },
  35332. [
  35333. {
  35334. name: "Normal",
  35335. height: math.unit(6 + 3/12, "feet"),
  35336. default: true
  35337. },
  35338. ]
  35339. ))
  35340. characterMakers.push(() => makeCharacter(
  35341. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35342. {
  35343. front: {
  35344. height: math.unit(3 + 8/12, "feet"),
  35345. name: "Front",
  35346. image: {
  35347. source: "./media/characters/rodney/front.svg",
  35348. extra: 1956/1747,
  35349. bottom: 31/1987
  35350. }
  35351. },
  35352. frontDressed: {
  35353. height: math.unit(2.9, "feet"),
  35354. name: "Front (Dressed)",
  35355. image: {
  35356. source: "./media/characters/rodney/front-dressed.svg",
  35357. extra: 1382/1241,
  35358. bottom: 385/1767
  35359. }
  35360. },
  35361. },
  35362. [
  35363. {
  35364. name: "Normal",
  35365. height: math.unit(3 + 8/12, "feet"),
  35366. default: true
  35367. },
  35368. ]
  35369. ))
  35370. characterMakers.push(() => makeCharacter(
  35371. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35372. {
  35373. front: {
  35374. height: math.unit(5 + 9/12, "feet"),
  35375. weight: math.unit(194, "lbs"),
  35376. name: "Front",
  35377. image: {
  35378. source: "./media/characters/zakail-sudekai/front.svg",
  35379. extra: 2696/2533,
  35380. bottom: 248/2944
  35381. }
  35382. },
  35383. maw: {
  35384. height: math.unit(1.35, "feet"),
  35385. name: "Maw",
  35386. image: {
  35387. source: "./media/characters/zakail-sudekai/maw.svg"
  35388. }
  35389. },
  35390. },
  35391. [
  35392. {
  35393. name: "Normal",
  35394. height: math.unit(5 + 9/12, "feet"),
  35395. default: true
  35396. },
  35397. ]
  35398. ))
  35399. characterMakers.push(() => makeCharacter(
  35400. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35401. {
  35402. front: {
  35403. height: math.unit(8 + 4/12, "feet"),
  35404. weight: math.unit(1200, "lb"),
  35405. name: "Front",
  35406. image: {
  35407. source: "./media/characters/eleanor/front.svg",
  35408. extra: 1226/1192,
  35409. bottom: 52/1278
  35410. }
  35411. },
  35412. back: {
  35413. height: math.unit(8 + 4/12, "feet"),
  35414. weight: math.unit(1200, "lb"),
  35415. name: "Back",
  35416. image: {
  35417. source: "./media/characters/eleanor/back.svg",
  35418. extra: 1242/1184,
  35419. bottom: 60/1302
  35420. }
  35421. },
  35422. head: {
  35423. height: math.unit(2.62, "feet"),
  35424. name: "Head",
  35425. image: {
  35426. source: "./media/characters/eleanor/head.svg"
  35427. }
  35428. },
  35429. },
  35430. [
  35431. {
  35432. name: "Normal",
  35433. height: math.unit(8 + 4/12, "feet"),
  35434. default: true
  35435. },
  35436. ]
  35437. ))
  35438. characterMakers.push(() => makeCharacter(
  35439. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35440. {
  35441. front: {
  35442. height: math.unit(8 + 4/12, "feet"),
  35443. weight: math.unit(750, "lb"),
  35444. name: "Front",
  35445. image: {
  35446. source: "./media/characters/tanya/front.svg",
  35447. extra: 1749/1615,
  35448. bottom: 33/1782
  35449. }
  35450. },
  35451. },
  35452. [
  35453. {
  35454. name: "Normal",
  35455. height: math.unit(8 + 4/12, "feet"),
  35456. default: true
  35457. },
  35458. ]
  35459. ))
  35460. characterMakers.push(() => makeCharacter(
  35461. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35462. {
  35463. front: {
  35464. height: math.unit(5, "feet"),
  35465. weight: math.unit(225, "lb"),
  35466. name: "Front",
  35467. image: {
  35468. source: "./media/characters/cindy/front.svg",
  35469. extra: 1320/1250,
  35470. bottom: 42/1362
  35471. }
  35472. },
  35473. frontDressed: {
  35474. height: math.unit(5, "feet"),
  35475. weight: math.unit(225, "lb"),
  35476. name: "Front (Dressed)",
  35477. image: {
  35478. source: "./media/characters/cindy/front-dressed.svg",
  35479. extra: 1320/1250,
  35480. bottom: 42/1362
  35481. }
  35482. },
  35483. back: {
  35484. height: math.unit(5, "feet"),
  35485. weight: math.unit(225, "lb"),
  35486. name: "Back",
  35487. image: {
  35488. source: "./media/characters/cindy/back.svg",
  35489. extra: 1384/1346,
  35490. bottom: 14/1398
  35491. }
  35492. },
  35493. },
  35494. [
  35495. {
  35496. name: "Normal",
  35497. height: math.unit(5, "feet"),
  35498. default: true
  35499. },
  35500. ]
  35501. ))
  35502. characterMakers.push(() => makeCharacter(
  35503. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35504. {
  35505. front: {
  35506. height: math.unit(6 + 9/12, "feet"),
  35507. weight: math.unit(440, "lb"),
  35508. name: "Front",
  35509. image: {
  35510. source: "./media/characters/wilbur-owen/front.svg",
  35511. extra: 1575/1448,
  35512. bottom: 72/1647
  35513. }
  35514. },
  35515. back: {
  35516. height: math.unit(6 + 9/12, "feet"),
  35517. weight: math.unit(440, "lb"),
  35518. name: "Back",
  35519. image: {
  35520. source: "./media/characters/wilbur-owen/back.svg",
  35521. extra: 1578/1445,
  35522. bottom: 36/1614
  35523. }
  35524. },
  35525. },
  35526. [
  35527. {
  35528. name: "Normal",
  35529. height: math.unit(6 + 9/12, "feet"),
  35530. default: true
  35531. },
  35532. ]
  35533. ))
  35534. characterMakers.push(() => makeCharacter(
  35535. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35536. {
  35537. front: {
  35538. height: math.unit(6 + 5/12, "feet"),
  35539. weight: math.unit(650, "lb"),
  35540. name: "Front",
  35541. image: {
  35542. source: "./media/characters/keegan/front.svg",
  35543. extra: 2387/2198,
  35544. bottom: 33/2420
  35545. }
  35546. },
  35547. side: {
  35548. height: math.unit(6 + 5/12, "feet"),
  35549. weight: math.unit(650, "lb"),
  35550. name: "Side",
  35551. image: {
  35552. source: "./media/characters/keegan/side.svg",
  35553. extra: 2390/2202,
  35554. bottom: 47/2437
  35555. }
  35556. },
  35557. back: {
  35558. height: math.unit(6 + 5/12, "feet"),
  35559. weight: math.unit(650, "lb"),
  35560. name: "Back",
  35561. image: {
  35562. source: "./media/characters/keegan/back.svg",
  35563. extra: 2418/2268,
  35564. bottom: 15/2433
  35565. }
  35566. },
  35567. frontSfw: {
  35568. height: math.unit(6 + 5/12, "feet"),
  35569. weight: math.unit(650, "lb"),
  35570. name: "Front (SFW)",
  35571. image: {
  35572. source: "./media/characters/keegan/front-sfw.svg",
  35573. extra: 2387/2198,
  35574. bottom: 33/2420
  35575. }
  35576. },
  35577. beans: {
  35578. height: math.unit(1.85, "feet"),
  35579. name: "Beans",
  35580. image: {
  35581. source: "./media/characters/keegan/beans.svg"
  35582. }
  35583. },
  35584. },
  35585. [
  35586. {
  35587. name: "Normal",
  35588. height: math.unit(6 + 5/12, "feet"),
  35589. default: true
  35590. },
  35591. ]
  35592. ))
  35593. characterMakers.push(() => makeCharacter(
  35594. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35595. {
  35596. front: {
  35597. height: math.unit(9, "feet"),
  35598. name: "Front",
  35599. image: {
  35600. source: "./media/characters/colton/front.svg",
  35601. extra: 1589/1326,
  35602. bottom: 139/1728
  35603. }
  35604. },
  35605. },
  35606. [
  35607. {
  35608. name: "Normal",
  35609. height: math.unit(9, "feet"),
  35610. default: true
  35611. },
  35612. ]
  35613. ))
  35614. characterMakers.push(() => makeCharacter(
  35615. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35616. {
  35617. front: {
  35618. height: math.unit(2 + 9/12, "feet"),
  35619. name: "Front",
  35620. image: {
  35621. source: "./media/characters/bora/front.svg",
  35622. extra: 1265/1250,
  35623. bottom: 24/1289
  35624. }
  35625. },
  35626. },
  35627. [
  35628. {
  35629. name: "Normal",
  35630. height: math.unit(2 + 9/12, "feet"),
  35631. default: true
  35632. },
  35633. ]
  35634. ))
  35635. characterMakers.push(() => makeCharacter(
  35636. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35637. {
  35638. front: {
  35639. height: math.unit(8, "feet"),
  35640. name: "Front",
  35641. image: {
  35642. source: "./media/characters/myu-myu/front.svg",
  35643. extra: 1949/1857,
  35644. bottom: 90/2039
  35645. }
  35646. },
  35647. },
  35648. [
  35649. {
  35650. name: "Normal",
  35651. height: math.unit(8, "feet"),
  35652. default: true
  35653. },
  35654. {
  35655. name: "Big",
  35656. height: math.unit(15, "feet")
  35657. },
  35658. {
  35659. name: "BIG",
  35660. height: math.unit(25, "feet")
  35661. },
  35662. ]
  35663. ))
  35664. characterMakers.push(() => makeCharacter(
  35665. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35666. {
  35667. side: {
  35668. height: math.unit(7 + 5/12, "feet"),
  35669. weight: math.unit(2800, "lb"),
  35670. name: "Side",
  35671. image: {
  35672. source: "./media/characters/haloren/side.svg",
  35673. extra: 1793/409,
  35674. bottom: 59/1852
  35675. }
  35676. },
  35677. frontPaw: {
  35678. height: math.unit(2.36, "feet"),
  35679. name: "Front paw",
  35680. image: {
  35681. source: "./media/characters/haloren/front-paw.svg"
  35682. }
  35683. },
  35684. hindPaw: {
  35685. height: math.unit(3.18, "feet"),
  35686. name: "Hind paw",
  35687. image: {
  35688. source: "./media/characters/haloren/hind-paw.svg"
  35689. }
  35690. },
  35691. maw: {
  35692. height: math.unit(5.05, "feet"),
  35693. name: "Maw",
  35694. image: {
  35695. source: "./media/characters/haloren/maw.svg"
  35696. }
  35697. },
  35698. dick: {
  35699. height: math.unit(2.90, "feet"),
  35700. name: "Dick",
  35701. image: {
  35702. source: "./media/characters/haloren/dick.svg"
  35703. }
  35704. },
  35705. },
  35706. [
  35707. {
  35708. name: "Normal",
  35709. height: math.unit(7 + 5/12, "feet"),
  35710. default: true
  35711. },
  35712. {
  35713. name: "Enhanced",
  35714. height: math.unit(14 + 3/12, "feet")
  35715. },
  35716. ]
  35717. ))
  35718. characterMakers.push(() => makeCharacter(
  35719. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35720. {
  35721. front: {
  35722. height: math.unit(171, "cm"),
  35723. name: "Front",
  35724. image: {
  35725. source: "./media/characters/kimmy/front.svg",
  35726. extra: 1491/1435,
  35727. bottom: 53/1544
  35728. }
  35729. },
  35730. },
  35731. [
  35732. {
  35733. name: "Small",
  35734. height: math.unit(9, "cm")
  35735. },
  35736. {
  35737. name: "Normal",
  35738. height: math.unit(171, "cm"),
  35739. default: true
  35740. },
  35741. ]
  35742. ))
  35743. characterMakers.push(() => makeCharacter(
  35744. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35745. {
  35746. front: {
  35747. height: math.unit(8, "feet"),
  35748. weight: math.unit(300, "lb"),
  35749. name: "Front",
  35750. image: {
  35751. source: "./media/characters/galeboomer/front.svg",
  35752. extra: 4651/4415,
  35753. bottom: 162/4813
  35754. }
  35755. },
  35756. back: {
  35757. height: math.unit(8, "feet"),
  35758. weight: math.unit(300, "lb"),
  35759. name: "Back",
  35760. image: {
  35761. source: "./media/characters/galeboomer/back.svg",
  35762. extra: 4544/4314,
  35763. bottom: 16/4560
  35764. }
  35765. },
  35766. frontAlt: {
  35767. height: math.unit(8, "feet"),
  35768. weight: math.unit(300, "lb"),
  35769. name: "Front (Alt)",
  35770. image: {
  35771. source: "./media/characters/galeboomer/front-alt.svg",
  35772. extra: 4458/4228,
  35773. bottom: 68/4526
  35774. }
  35775. },
  35776. maw: {
  35777. height: math.unit(1.2, "feet"),
  35778. name: "Maw",
  35779. image: {
  35780. source: "./media/characters/galeboomer/maw.svg"
  35781. }
  35782. },
  35783. },
  35784. [
  35785. {
  35786. name: "Normal",
  35787. height: math.unit(8, "feet"),
  35788. default: true
  35789. },
  35790. ]
  35791. ))
  35792. characterMakers.push(() => makeCharacter(
  35793. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35794. {
  35795. front: {
  35796. height: math.unit(5 + 9/12, "feet"),
  35797. weight: math.unit(120, "lb"),
  35798. name: "Front",
  35799. image: {
  35800. source: "./media/characters/chyr/front.svg",
  35801. extra: 1323/1254,
  35802. bottom: 63/1386
  35803. }
  35804. },
  35805. back: {
  35806. height: math.unit(5 + 9/12, "feet"),
  35807. weight: math.unit(120, "lb"),
  35808. name: "Back",
  35809. image: {
  35810. source: "./media/characters/chyr/back.svg",
  35811. extra: 1323/1252,
  35812. bottom: 48/1371
  35813. }
  35814. },
  35815. },
  35816. [
  35817. {
  35818. name: "Normal",
  35819. height: math.unit(5 + 9/12, "feet"),
  35820. default: true
  35821. },
  35822. ]
  35823. ))
  35824. characterMakers.push(() => makeCharacter(
  35825. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35826. {
  35827. front: {
  35828. height: math.unit(7, "feet"),
  35829. weight: math.unit(310, "lb"),
  35830. name: "Front",
  35831. image: {
  35832. source: "./media/characters/solarus/front.svg",
  35833. extra: 2415/2021,
  35834. bottom: 103/2518
  35835. }
  35836. },
  35837. back: {
  35838. height: math.unit(7, "feet"),
  35839. weight: math.unit(310, "lb"),
  35840. name: "Back",
  35841. image: {
  35842. source: "./media/characters/solarus/back.svg",
  35843. extra: 2463/2089,
  35844. bottom: 79/2542
  35845. }
  35846. },
  35847. },
  35848. [
  35849. {
  35850. name: "Normal",
  35851. height: math.unit(7, "feet"),
  35852. default: true
  35853. },
  35854. ]
  35855. ))
  35856. characterMakers.push(() => makeCharacter(
  35857. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35858. {
  35859. front: {
  35860. height: math.unit(16, "feet"),
  35861. name: "Front",
  35862. image: {
  35863. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35864. extra: 1844/1780,
  35865. bottom: 58/1902
  35866. }
  35867. },
  35868. winterCoat: {
  35869. height: math.unit(16, "feet"),
  35870. name: "Winter Coat",
  35871. image: {
  35872. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35873. extra: 1807/1775,
  35874. bottom: 69/1876
  35875. }
  35876. },
  35877. },
  35878. [
  35879. {
  35880. name: "Normal",
  35881. height: math.unit(16, "feet"),
  35882. default: true
  35883. },
  35884. {
  35885. name: "Chicago Size",
  35886. height: math.unit(560, "feet")
  35887. },
  35888. ]
  35889. ))
  35890. characterMakers.push(() => makeCharacter(
  35891. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35892. {
  35893. front: {
  35894. height: math.unit(11 + 6/12, "feet"),
  35895. weight: math.unit(1366, "lb"),
  35896. name: "Front",
  35897. image: {
  35898. source: "./media/characters/lexor/front.svg",
  35899. extra: 1560/1481,
  35900. bottom: 211/1771
  35901. }
  35902. },
  35903. back: {
  35904. height: math.unit(11 + 6/12, "feet"),
  35905. weight: math.unit(1366, "lb"),
  35906. name: "Back",
  35907. image: {
  35908. source: "./media/characters/lexor/back.svg",
  35909. extra: 1614/1533,
  35910. bottom: 76/1690
  35911. }
  35912. },
  35913. maw: {
  35914. height: math.unit(3, "feet"),
  35915. name: "Maw",
  35916. image: {
  35917. source: "./media/characters/lexor/maw.svg"
  35918. }
  35919. },
  35920. dick: {
  35921. height: math.unit(2.59, "feet"),
  35922. name: "Dick",
  35923. image: {
  35924. source: "./media/characters/lexor/dick.svg"
  35925. }
  35926. },
  35927. },
  35928. [
  35929. {
  35930. name: "Normal",
  35931. height: math.unit(11 + 6/12, "feet"),
  35932. default: true
  35933. },
  35934. ]
  35935. ))
  35936. characterMakers.push(() => makeCharacter(
  35937. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35938. {
  35939. front: {
  35940. height: math.unit(5 + 8/12, "feet"),
  35941. name: "Front",
  35942. image: {
  35943. source: "./media/characters/magnum/front.svg",
  35944. extra: 942/855,
  35945. bottom: 26/968
  35946. }
  35947. },
  35948. },
  35949. [
  35950. {
  35951. name: "Normal",
  35952. height: math.unit(5 + 8/12, "feet"),
  35953. default: true
  35954. },
  35955. ]
  35956. ))
  35957. characterMakers.push(() => makeCharacter(
  35958. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35959. {
  35960. front: {
  35961. height: math.unit(18 + 4/12, "feet"),
  35962. weight: math.unit(1500, "kg"),
  35963. name: "Front",
  35964. image: {
  35965. source: "./media/characters/solas-sharpsman/front.svg",
  35966. extra: 1698/1589,
  35967. bottom: 0/1698
  35968. }
  35969. },
  35970. },
  35971. [
  35972. {
  35973. name: "Normal",
  35974. height: math.unit(18 + 4/12, "feet"),
  35975. default: true
  35976. },
  35977. ]
  35978. ))
  35979. characterMakers.push(() => makeCharacter(
  35980. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35981. {
  35982. front: {
  35983. height: math.unit(5 + 5/12, "feet"),
  35984. weight: math.unit(180, "lb"),
  35985. name: "Front",
  35986. image: {
  35987. source: "./media/characters/october/front.svg",
  35988. extra: 1800/1650,
  35989. bottom: 0/1800
  35990. }
  35991. },
  35992. frontNsfw: {
  35993. height: math.unit(5 + 5/12, "feet"),
  35994. weight: math.unit(180, "lb"),
  35995. name: "Front (NSFW)",
  35996. image: {
  35997. source: "./media/characters/october/front-nsfw.svg",
  35998. extra: 1392/1307,
  35999. bottom: 42/1434
  36000. }
  36001. },
  36002. },
  36003. [
  36004. {
  36005. name: "Normal",
  36006. height: math.unit(5 + 5/12, "feet"),
  36007. default: true
  36008. },
  36009. ]
  36010. ))
  36011. characterMakers.push(() => makeCharacter(
  36012. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36013. {
  36014. front: {
  36015. height: math.unit(8 + 6/12, "feet"),
  36016. name: "Front",
  36017. image: {
  36018. source: "./media/characters/essynkardi/front.svg",
  36019. extra: 1914/1846,
  36020. bottom: 22/1936
  36021. }
  36022. },
  36023. },
  36024. [
  36025. {
  36026. name: "Normal",
  36027. height: math.unit(8 + 6/12, "feet"),
  36028. default: true
  36029. },
  36030. ]
  36031. ))
  36032. characterMakers.push(() => makeCharacter(
  36033. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36034. {
  36035. front: {
  36036. height: math.unit(6 + 6/12, "feet"),
  36037. weight: math.unit(7, "lb"),
  36038. name: "Front",
  36039. image: {
  36040. source: "./media/characters/icky/front.svg",
  36041. extra: 813/782,
  36042. bottom: 66/879
  36043. }
  36044. },
  36045. back: {
  36046. height: math.unit(6 + 6/12, "feet"),
  36047. weight: math.unit(7, "lb"),
  36048. name: "Back",
  36049. image: {
  36050. source: "./media/characters/icky/back.svg",
  36051. extra: 754/735,
  36052. bottom: 56/810
  36053. }
  36054. },
  36055. },
  36056. [
  36057. {
  36058. name: "Normal",
  36059. height: math.unit(6 + 6/12, "feet"),
  36060. default: true
  36061. },
  36062. ]
  36063. ))
  36064. characterMakers.push(() => makeCharacter(
  36065. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36066. {
  36067. front: {
  36068. height: math.unit(15, "feet"),
  36069. name: "Front",
  36070. image: {
  36071. source: "./media/characters/rojas/front.svg",
  36072. extra: 1462/1408,
  36073. bottom: 95/1557
  36074. }
  36075. },
  36076. back: {
  36077. height: math.unit(15, "feet"),
  36078. name: "Back",
  36079. image: {
  36080. source: "./media/characters/rojas/back.svg",
  36081. extra: 1023/954,
  36082. bottom: 28/1051
  36083. }
  36084. },
  36085. },
  36086. [
  36087. {
  36088. name: "Normal",
  36089. height: math.unit(15, "feet"),
  36090. default: true
  36091. },
  36092. ]
  36093. ))
  36094. characterMakers.push(() => makeCharacter(
  36095. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36096. {
  36097. frontHuman: {
  36098. height: math.unit(5 + 7/12, "feet"),
  36099. name: "Front (Human)",
  36100. image: {
  36101. source: "./media/characters/alek-dryagan/front-human.svg",
  36102. extra: 1687/1667,
  36103. bottom: 69/1756
  36104. }
  36105. },
  36106. backHuman: {
  36107. height: math.unit(5 + 7/12, "feet"),
  36108. name: "Back (Human)",
  36109. image: {
  36110. source: "./media/characters/alek-dryagan/back-human.svg",
  36111. extra: 1670/1649,
  36112. bottom: 65/1735
  36113. }
  36114. },
  36115. frontDemi: {
  36116. height: math.unit(65, "feet"),
  36117. name: "Front (Demi)",
  36118. image: {
  36119. source: "./media/characters/alek-dryagan/front-demi.svg",
  36120. extra: 1669/1642,
  36121. bottom: 49/1718
  36122. }
  36123. },
  36124. backDemi: {
  36125. height: math.unit(65, "feet"),
  36126. name: "Back (Demi)",
  36127. image: {
  36128. source: "./media/characters/alek-dryagan/back-demi.svg",
  36129. extra: 1658/1637,
  36130. bottom: 40/1698
  36131. }
  36132. },
  36133. mawHuman: {
  36134. height: math.unit(0.3, "feet"),
  36135. name: "Maw (Human)",
  36136. image: {
  36137. source: "./media/characters/alek-dryagan/maw-human.svg"
  36138. }
  36139. },
  36140. mawDemi: {
  36141. height: math.unit(3.8, "feet"),
  36142. name: "Maw (Demi)",
  36143. image: {
  36144. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36145. }
  36146. },
  36147. },
  36148. [
  36149. {
  36150. name: "Normal",
  36151. height: math.unit(5 + 7/12, "feet"),
  36152. default: true
  36153. },
  36154. ]
  36155. ))
  36156. characterMakers.push(() => makeCharacter(
  36157. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36158. {
  36159. frontHuman: {
  36160. height: math.unit(5 + 2/12, "feet"),
  36161. name: "Front (Human)",
  36162. image: {
  36163. source: "./media/characters/gen/front-human.svg",
  36164. extra: 1627/1538,
  36165. bottom: 71/1698
  36166. }
  36167. },
  36168. backHuman: {
  36169. height: math.unit(5 + 2/12, "feet"),
  36170. name: "Back (Human)",
  36171. image: {
  36172. source: "./media/characters/gen/back-human.svg",
  36173. extra: 1638/1548,
  36174. bottom: 69/1707
  36175. }
  36176. },
  36177. frontDemi: {
  36178. height: math.unit(5 + 2/12, "feet"),
  36179. name: "Front (Demi)",
  36180. image: {
  36181. source: "./media/characters/gen/front-demi.svg",
  36182. extra: 1627/1538,
  36183. bottom: 71/1698
  36184. }
  36185. },
  36186. backDemi: {
  36187. height: math.unit(5 + 2/12, "feet"),
  36188. name: "Back (Demi)",
  36189. image: {
  36190. source: "./media/characters/gen/back-demi.svg",
  36191. extra: 1638/1548,
  36192. bottom: 69/1707
  36193. }
  36194. },
  36195. },
  36196. [
  36197. {
  36198. name: "Normal",
  36199. height: math.unit(5 + 2/12, "feet"),
  36200. default: true
  36201. },
  36202. ]
  36203. ))
  36204. characterMakers.push(() => makeCharacter(
  36205. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36206. {
  36207. frontImp: {
  36208. height: math.unit(1 + 11/12, "feet"),
  36209. name: "Front (Imp)",
  36210. image: {
  36211. source: "./media/characters/max-kobold/front-imp.svg",
  36212. extra: 1238/1134,
  36213. bottom: 81/1319
  36214. }
  36215. },
  36216. backImp: {
  36217. height: math.unit(1 + 11/12, "feet"),
  36218. name: "Back (Imp)",
  36219. image: {
  36220. source: "./media/characters/max-kobold/back-imp.svg",
  36221. extra: 1334/1175,
  36222. bottom: 34/1368
  36223. }
  36224. },
  36225. frontDemi: {
  36226. height: math.unit(5 + 9/12, "feet"),
  36227. name: "Front (Demi)",
  36228. image: {
  36229. source: "./media/characters/max-kobold/front-demi.svg",
  36230. extra: 1715/1685,
  36231. bottom: 54/1769
  36232. }
  36233. },
  36234. backDemi: {
  36235. height: math.unit(5 + 9/12, "feet"),
  36236. name: "Back (Demi)",
  36237. image: {
  36238. source: "./media/characters/max-kobold/back-demi.svg",
  36239. extra: 1752/1729,
  36240. bottom: 41/1793
  36241. }
  36242. },
  36243. handImp: {
  36244. height: math.unit(0.45, "feet"),
  36245. name: "Hand (Imp)",
  36246. image: {
  36247. source: "./media/characters/max-kobold/hand.svg"
  36248. }
  36249. },
  36250. pawImp: {
  36251. height: math.unit(0.46, "feet"),
  36252. name: "Paw (Imp)",
  36253. image: {
  36254. source: "./media/characters/max-kobold/paw.svg"
  36255. }
  36256. },
  36257. handDemi: {
  36258. height: math.unit(0.80, "feet"),
  36259. name: "Hand (Demi)",
  36260. image: {
  36261. source: "./media/characters/max-kobold/hand.svg"
  36262. }
  36263. },
  36264. pawDemi: {
  36265. height: math.unit(1.1, "feet"),
  36266. name: "Paw (Demi)",
  36267. image: {
  36268. source: "./media/characters/max-kobold/paw.svg"
  36269. }
  36270. },
  36271. headImp: {
  36272. height: math.unit(1.33, "feet"),
  36273. name: "Head (Imp)",
  36274. image: {
  36275. source: "./media/characters/max-kobold/head-imp.svg"
  36276. }
  36277. },
  36278. mawImp: {
  36279. height: math.unit(0.75, "feet"),
  36280. name: "Maw (Imp)",
  36281. image: {
  36282. source: "./media/characters/max-kobold/maw-imp.svg"
  36283. }
  36284. },
  36285. mawDemi: {
  36286. height: math.unit(0.42, "feet"),
  36287. name: "Maw (Demi)",
  36288. image: {
  36289. source: "./media/characters/max-kobold/maw-demi.svg"
  36290. }
  36291. },
  36292. },
  36293. [
  36294. {
  36295. name: "Normal",
  36296. height: math.unit(1 + 11/12, "feet"),
  36297. default: true
  36298. },
  36299. ]
  36300. ))
  36301. characterMakers.push(() => makeCharacter(
  36302. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36303. {
  36304. front: {
  36305. height: math.unit(7 + 5/12, "feet"),
  36306. name: "Front",
  36307. image: {
  36308. source: "./media/characters/carbon/front.svg",
  36309. extra: 1754/1689,
  36310. bottom: 65/1819
  36311. }
  36312. },
  36313. back: {
  36314. height: math.unit(7 + 5/12, "feet"),
  36315. name: "Back",
  36316. image: {
  36317. source: "./media/characters/carbon/back.svg",
  36318. extra: 1762/1695,
  36319. bottom: 24/1786
  36320. }
  36321. },
  36322. frontGigantamax: {
  36323. height: math.unit(150, "feet"),
  36324. name: "Front (Gigantamax)",
  36325. image: {
  36326. source: "./media/characters/carbon/front-gigantamax.svg",
  36327. extra: 1826/1669,
  36328. bottom: 59/1885
  36329. }
  36330. },
  36331. backGigantamax: {
  36332. height: math.unit(150, "feet"),
  36333. name: "Back (Gigantamax)",
  36334. image: {
  36335. source: "./media/characters/carbon/back-gigantamax.svg",
  36336. extra: 1796/1653,
  36337. bottom: 53/1849
  36338. }
  36339. },
  36340. maw: {
  36341. height: math.unit(0.48, "feet"),
  36342. name: "Maw",
  36343. image: {
  36344. source: "./media/characters/carbon/maw.svg"
  36345. }
  36346. },
  36347. mawGigantamax: {
  36348. height: math.unit(7.5, "feet"),
  36349. name: "Maw (Gigantamax)",
  36350. image: {
  36351. source: "./media/characters/carbon/maw-gigantamax.svg"
  36352. }
  36353. },
  36354. },
  36355. [
  36356. {
  36357. name: "Normal",
  36358. height: math.unit(7 + 5/12, "feet"),
  36359. default: true
  36360. },
  36361. ]
  36362. ))
  36363. characterMakers.push(() => makeCharacter(
  36364. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36365. {
  36366. front: {
  36367. height: math.unit(6, "feet"),
  36368. name: "Front",
  36369. image: {
  36370. source: "./media/characters/maverick/front.svg",
  36371. extra: 1672/1661,
  36372. bottom: 85/1757
  36373. }
  36374. },
  36375. back: {
  36376. height: math.unit(6, "feet"),
  36377. name: "Back",
  36378. image: {
  36379. source: "./media/characters/maverick/back.svg",
  36380. extra: 1642/1631,
  36381. bottom: 38/1680
  36382. }
  36383. },
  36384. },
  36385. [
  36386. {
  36387. name: "Normal",
  36388. height: math.unit(6, "feet"),
  36389. default: true
  36390. },
  36391. ]
  36392. ))
  36393. characterMakers.push(() => makeCharacter(
  36394. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36395. {
  36396. front: {
  36397. height: math.unit(15, "feet"),
  36398. weight: math.unit(615, "lb"),
  36399. name: "Front",
  36400. image: {
  36401. source: "./media/characters/grockle/front.svg",
  36402. extra: 1535/1427,
  36403. bottom: 56/1591
  36404. }
  36405. },
  36406. },
  36407. [
  36408. {
  36409. name: "Normal",
  36410. height: math.unit(15, "feet"),
  36411. default: true
  36412. },
  36413. {
  36414. name: "Large",
  36415. height: math.unit(150, "feet")
  36416. },
  36417. {
  36418. name: "Macro",
  36419. height: math.unit(1876, "feet")
  36420. },
  36421. {
  36422. name: "Mega Macro",
  36423. height: math.unit(121940, "feet")
  36424. },
  36425. {
  36426. name: "Giga Macro",
  36427. height: math.unit(750, "km")
  36428. },
  36429. {
  36430. name: "Tera Macro",
  36431. height: math.unit(750000, "km")
  36432. },
  36433. {
  36434. name: "Galactic",
  36435. height: math.unit(1.4e5, "km")
  36436. },
  36437. {
  36438. name: "Godlike",
  36439. height: math.unit(9.8e280, "galaxies")
  36440. },
  36441. ]
  36442. ))
  36443. characterMakers.push(() => makeCharacter(
  36444. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36445. {
  36446. front: {
  36447. height: math.unit(11, "meters"),
  36448. weight: math.unit(20, "tonnes"),
  36449. name: "Front",
  36450. image: {
  36451. source: "./media/characters/alistair/front.svg",
  36452. extra: 1265/1009,
  36453. bottom: 93/1358
  36454. }
  36455. },
  36456. },
  36457. [
  36458. {
  36459. name: "Normal",
  36460. height: math.unit(11, "meters"),
  36461. default: true
  36462. },
  36463. ]
  36464. ))
  36465. characterMakers.push(() => makeCharacter(
  36466. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36467. {
  36468. front: {
  36469. height: math.unit(5 + 8/12, "feet"),
  36470. name: "Front",
  36471. image: {
  36472. source: "./media/characters/haruka/front.svg",
  36473. extra: 2012/1952,
  36474. bottom: 0/2012
  36475. }
  36476. },
  36477. },
  36478. [
  36479. {
  36480. name: "Normal",
  36481. height: math.unit(5 + 8/12, "feet"),
  36482. default: true
  36483. },
  36484. ]
  36485. ))
  36486. characterMakers.push(() => makeCharacter(
  36487. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36488. {
  36489. back: {
  36490. height: math.unit(9, "feet"),
  36491. name: "Back",
  36492. image: {
  36493. source: "./media/characters/vivian-sylveon/back.svg",
  36494. extra: 1853/1714,
  36495. bottom: 0/1853
  36496. }
  36497. },
  36498. },
  36499. [
  36500. {
  36501. name: "Normal",
  36502. height: math.unit(9, "feet"),
  36503. default: true
  36504. },
  36505. {
  36506. name: "Macro",
  36507. height: math.unit(500, "feet")
  36508. },
  36509. {
  36510. name: "Megamacro",
  36511. height: math.unit(600, "miles")
  36512. },
  36513. {
  36514. name: "Gigamacro",
  36515. height: math.unit(30000, "miles")
  36516. },
  36517. ]
  36518. ))
  36519. characterMakers.push(() => makeCharacter(
  36520. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36521. {
  36522. anthro: {
  36523. height: math.unit(5 + 10/12, "feet"),
  36524. weight: math.unit(100, "lb"),
  36525. name: "Anthro",
  36526. image: {
  36527. source: "./media/characters/daiki/anthro.svg",
  36528. extra: 1115/1027,
  36529. bottom: 69/1184
  36530. }
  36531. },
  36532. feral: {
  36533. height: math.unit(200, "feet"),
  36534. name: "Feral",
  36535. image: {
  36536. source: "./media/characters/daiki/feral.svg",
  36537. extra: 1256/313,
  36538. bottom: 39/1295
  36539. }
  36540. },
  36541. feralHead: {
  36542. height: math.unit(171, "feet"),
  36543. name: "Feral Head",
  36544. image: {
  36545. source: "./media/characters/daiki/feral-head.svg"
  36546. }
  36547. },
  36548. manaDragon: {
  36549. height: math.unit(170, "meters"),
  36550. name: "Mana-dragon",
  36551. image: {
  36552. source: "./media/characters/daiki/mana-dragon.svg",
  36553. extra: 763/420,
  36554. bottom: 97/860
  36555. }
  36556. },
  36557. },
  36558. [
  36559. {
  36560. name: "Normal",
  36561. height: math.unit(5 + 10/12, "feet"),
  36562. default: true
  36563. },
  36564. ]
  36565. ))
  36566. characterMakers.push(() => makeCharacter(
  36567. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36568. {
  36569. fullyEquippedFront: {
  36570. height: math.unit(3 + 1/12, "feet"),
  36571. weight: math.unit(24, "lb"),
  36572. name: "Fully Equipped (Front)",
  36573. image: {
  36574. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36575. extra: 687/605,
  36576. bottom: 18/705
  36577. }
  36578. },
  36579. fullyEquippedBack: {
  36580. height: math.unit(3 + 1/12, "feet"),
  36581. weight: math.unit(24, "lb"),
  36582. name: "Fully Equipped (Back)",
  36583. image: {
  36584. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36585. extra: 689/590,
  36586. bottom: 18/707
  36587. }
  36588. },
  36589. dailyWear: {
  36590. height: math.unit(3 + 1/12, "feet"),
  36591. weight: math.unit(24, "lb"),
  36592. name: "Daily Wear",
  36593. image: {
  36594. source: "./media/characters/tea-spot/daily-wear.svg",
  36595. extra: 701/620,
  36596. bottom: 21/722
  36597. }
  36598. },
  36599. maidWork: {
  36600. height: math.unit(3 + 1/12, "feet"),
  36601. weight: math.unit(24, "lb"),
  36602. name: "Maid Work",
  36603. image: {
  36604. source: "./media/characters/tea-spot/maid-work.svg",
  36605. extra: 693/609,
  36606. bottom: 15/708
  36607. }
  36608. },
  36609. },
  36610. [
  36611. {
  36612. name: "Normal",
  36613. height: math.unit(3 + 1/12, "feet"),
  36614. default: true
  36615. },
  36616. ]
  36617. ))
  36618. characterMakers.push(() => makeCharacter(
  36619. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36620. {
  36621. front: {
  36622. height: math.unit(175, "cm"),
  36623. weight: math.unit(75, "kg"),
  36624. name: "Front",
  36625. image: {
  36626. source: "./media/characters/chee/front.svg",
  36627. extra: 1796/1740,
  36628. bottom: 40/1836
  36629. }
  36630. },
  36631. },
  36632. [
  36633. {
  36634. name: "Micro-Micro",
  36635. height: math.unit(1, "nm")
  36636. },
  36637. {
  36638. name: "Micro-erst",
  36639. height: math.unit(1, "micrometer")
  36640. },
  36641. {
  36642. name: "Micro-er",
  36643. height: math.unit(1, "cm")
  36644. },
  36645. {
  36646. name: "Normal",
  36647. height: math.unit(175, "cm"),
  36648. default: true
  36649. },
  36650. {
  36651. name: "Macro",
  36652. height: math.unit(100, "m")
  36653. },
  36654. {
  36655. name: "Macro-er",
  36656. height: math.unit(1, "km")
  36657. },
  36658. {
  36659. name: "Macro-erst",
  36660. height: math.unit(10, "km")
  36661. },
  36662. {
  36663. name: "Macro-Macro",
  36664. height: math.unit(100, "km")
  36665. },
  36666. ]
  36667. ))
  36668. characterMakers.push(() => makeCharacter(
  36669. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36670. {
  36671. front: {
  36672. height: math.unit(11 + 9/12, "feet"),
  36673. weight: math.unit(935, "lb"),
  36674. name: "Front",
  36675. image: {
  36676. source: "./media/characters/kingsley/front.svg",
  36677. extra: 1803/1674,
  36678. bottom: 127/1930
  36679. }
  36680. },
  36681. frontNude: {
  36682. height: math.unit(11 + 9/12, "feet"),
  36683. weight: math.unit(935, "lb"),
  36684. name: "Front (Nude)",
  36685. image: {
  36686. source: "./media/characters/kingsley/front-nude.svg",
  36687. extra: 1803/1674,
  36688. bottom: 127/1930
  36689. }
  36690. },
  36691. },
  36692. [
  36693. {
  36694. name: "Normal",
  36695. height: math.unit(11 + 9/12, "feet"),
  36696. default: true
  36697. },
  36698. ]
  36699. ))
  36700. characterMakers.push(() => makeCharacter(
  36701. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36702. {
  36703. side: {
  36704. height: math.unit(9, "feet"),
  36705. name: "Side",
  36706. image: {
  36707. source: "./media/characters/rymel/side.svg",
  36708. extra: 792/469,
  36709. bottom: 121/913
  36710. }
  36711. },
  36712. maw: {
  36713. height: math.unit(2.4, "meters"),
  36714. name: "Maw",
  36715. image: {
  36716. source: "./media/characters/rymel/maw.svg"
  36717. }
  36718. },
  36719. },
  36720. [
  36721. {
  36722. name: "House Drake",
  36723. height: math.unit(2, "feet")
  36724. },
  36725. {
  36726. name: "Reduced",
  36727. height: math.unit(4.5, "feet")
  36728. },
  36729. {
  36730. name: "Normal",
  36731. height: math.unit(9, "feet"),
  36732. default: true
  36733. },
  36734. ]
  36735. ))
  36736. characterMakers.push(() => makeCharacter(
  36737. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36738. {
  36739. front: {
  36740. height: math.unit(1.74, "meters"),
  36741. weight: math.unit(55, "kg"),
  36742. name: "Front",
  36743. image: {
  36744. source: "./media/characters/rubus/front.svg",
  36745. extra: 1894/1742,
  36746. bottom: 44/1938
  36747. }
  36748. },
  36749. },
  36750. [
  36751. {
  36752. name: "Normal",
  36753. height: math.unit(1.74, "meters"),
  36754. default: true
  36755. },
  36756. ]
  36757. ))
  36758. characterMakers.push(() => makeCharacter(
  36759. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36760. {
  36761. front: {
  36762. height: math.unit(5 + 2/12, "feet"),
  36763. weight: math.unit(112, "lb"),
  36764. name: "Front",
  36765. image: {
  36766. source: "./media/characters/cassie-kingston/front.svg",
  36767. extra: 1438/1390,
  36768. bottom: 47/1485
  36769. }
  36770. },
  36771. },
  36772. [
  36773. {
  36774. name: "Normal",
  36775. height: math.unit(5 + 2/12, "feet"),
  36776. default: true
  36777. },
  36778. {
  36779. name: "Macro",
  36780. height: math.unit(128, "feet")
  36781. },
  36782. {
  36783. name: "Megamacro",
  36784. height: math.unit(2.56, "miles")
  36785. },
  36786. ]
  36787. ))
  36788. characterMakers.push(() => makeCharacter(
  36789. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36790. {
  36791. front: {
  36792. height: math.unit(7, "feet"),
  36793. name: "Front",
  36794. image: {
  36795. source: "./media/characters/fox/front.svg",
  36796. extra: 1798/1703,
  36797. bottom: 55/1853
  36798. }
  36799. },
  36800. back: {
  36801. height: math.unit(7, "feet"),
  36802. name: "Back",
  36803. image: {
  36804. source: "./media/characters/fox/back.svg",
  36805. extra: 1748/1649,
  36806. bottom: 32/1780
  36807. }
  36808. },
  36809. head: {
  36810. height: math.unit(1.95, "feet"),
  36811. name: "Head",
  36812. image: {
  36813. source: "./media/characters/fox/head.svg"
  36814. }
  36815. },
  36816. dick: {
  36817. height: math.unit(1.33, "feet"),
  36818. name: "Dick",
  36819. image: {
  36820. source: "./media/characters/fox/dick.svg"
  36821. }
  36822. },
  36823. foot: {
  36824. height: math.unit(1, "feet"),
  36825. name: "Foot",
  36826. image: {
  36827. source: "./media/characters/fox/foot.svg"
  36828. }
  36829. },
  36830. paw: {
  36831. height: math.unit(0.92, "feet"),
  36832. name: "Paw",
  36833. image: {
  36834. source: "./media/characters/fox/paw.svg"
  36835. }
  36836. },
  36837. },
  36838. [
  36839. {
  36840. name: "Small",
  36841. height: math.unit(3, "inches")
  36842. },
  36843. {
  36844. name: "\"Realistic\"",
  36845. height: math.unit(7, "feet")
  36846. },
  36847. {
  36848. name: "Normal",
  36849. height: math.unit(150, "feet"),
  36850. default: true
  36851. },
  36852. {
  36853. name: "BIG",
  36854. height: math.unit(1200, "feet")
  36855. },
  36856. {
  36857. name: "👀",
  36858. height: math.unit(5, "miles")
  36859. },
  36860. {
  36861. name: "👀👀👀",
  36862. height: math.unit(64, "miles")
  36863. },
  36864. ]
  36865. ))
  36866. characterMakers.push(() => makeCharacter(
  36867. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36868. {
  36869. front: {
  36870. height: math.unit(625, "feet"),
  36871. name: "Front",
  36872. image: {
  36873. source: "./media/characters/asonja-rossa/front.svg",
  36874. extra: 1833/1686,
  36875. bottom: 24/1857
  36876. }
  36877. },
  36878. back: {
  36879. height: math.unit(625, "feet"),
  36880. name: "Back",
  36881. image: {
  36882. source: "./media/characters/asonja-rossa/back.svg",
  36883. extra: 1852/1753,
  36884. bottom: 26/1878
  36885. }
  36886. },
  36887. },
  36888. [
  36889. {
  36890. name: "Macro",
  36891. height: math.unit(625, "feet"),
  36892. default: true
  36893. },
  36894. ]
  36895. ))
  36896. characterMakers.push(() => makeCharacter(
  36897. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36898. {
  36899. side: {
  36900. height: math.unit(8, "feet"),
  36901. name: "Side",
  36902. image: {
  36903. source: "./media/characters/rezukii/side.svg",
  36904. extra: 979/542,
  36905. bottom: 87/1066
  36906. }
  36907. },
  36908. sitting: {
  36909. height: math.unit(14.6, "feet"),
  36910. name: "Sitting",
  36911. image: {
  36912. source: "./media/characters/rezukii/sitting.svg",
  36913. extra: 1023/813,
  36914. bottom: 45/1068
  36915. }
  36916. },
  36917. },
  36918. [
  36919. {
  36920. name: "Tiny",
  36921. height: math.unit(2, "feet")
  36922. },
  36923. {
  36924. name: "Smol",
  36925. height: math.unit(4, "feet")
  36926. },
  36927. {
  36928. name: "Normal",
  36929. height: math.unit(8, "feet"),
  36930. default: true
  36931. },
  36932. {
  36933. name: "Big",
  36934. height: math.unit(12, "feet")
  36935. },
  36936. {
  36937. name: "Macro",
  36938. height: math.unit(30, "feet")
  36939. },
  36940. ]
  36941. ))
  36942. characterMakers.push(() => makeCharacter(
  36943. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36944. {
  36945. front: {
  36946. height: math.unit(14, "feet"),
  36947. weight: math.unit(9.5, "tonnes"),
  36948. name: "Front",
  36949. image: {
  36950. source: "./media/characters/dawnheart/front.svg",
  36951. extra: 2792/2675,
  36952. bottom: 64/2856
  36953. }
  36954. },
  36955. },
  36956. [
  36957. {
  36958. name: "Normal",
  36959. height: math.unit(14, "feet"),
  36960. default: true
  36961. },
  36962. ]
  36963. ))
  36964. characterMakers.push(() => makeCharacter(
  36965. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36966. {
  36967. front: {
  36968. height: math.unit(1.7, "m"),
  36969. name: "Front",
  36970. image: {
  36971. source: "./media/characters/gladi/front.svg",
  36972. extra: 1460/1362,
  36973. bottom: 19/1479
  36974. }
  36975. },
  36976. back: {
  36977. height: math.unit(1.7, "m"),
  36978. name: "Back",
  36979. image: {
  36980. source: "./media/characters/gladi/back.svg",
  36981. extra: 1459/1357,
  36982. bottom: 12/1471
  36983. }
  36984. },
  36985. feral: {
  36986. height: math.unit(2.05, "m"),
  36987. name: "Feral",
  36988. image: {
  36989. source: "./media/characters/gladi/feral.svg",
  36990. extra: 821/557,
  36991. bottom: 91/912
  36992. }
  36993. },
  36994. },
  36995. [
  36996. {
  36997. name: "Shortest",
  36998. height: math.unit(70, "cm")
  36999. },
  37000. {
  37001. name: "Normal",
  37002. height: math.unit(1.7, "m")
  37003. },
  37004. {
  37005. name: "Macro",
  37006. height: math.unit(10, "m"),
  37007. default: true
  37008. },
  37009. {
  37010. name: "Tallest",
  37011. height: math.unit(200, "m")
  37012. },
  37013. ]
  37014. ))
  37015. characterMakers.push(() => makeCharacter(
  37016. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37017. {
  37018. front: {
  37019. height: math.unit(5 + 7/12, "feet"),
  37020. weight: math.unit(2, "tons"),
  37021. name: "Front",
  37022. image: {
  37023. source: "./media/characters/erdno/front.svg",
  37024. extra: 1234/1129,
  37025. bottom: 35/1269
  37026. }
  37027. },
  37028. angled: {
  37029. height: math.unit(5 + 7/12, "feet"),
  37030. weight: math.unit(2, "tons"),
  37031. name: "Angled",
  37032. image: {
  37033. source: "./media/characters/erdno/angled.svg",
  37034. extra: 1185/1139,
  37035. bottom: 36/1221
  37036. }
  37037. },
  37038. side: {
  37039. height: math.unit(5 + 7/12, "feet"),
  37040. weight: math.unit(2, "tons"),
  37041. name: "Side",
  37042. image: {
  37043. source: "./media/characters/erdno/side.svg",
  37044. extra: 1191/1144,
  37045. bottom: 40/1231
  37046. }
  37047. },
  37048. back: {
  37049. height: math.unit(5 + 7/12, "feet"),
  37050. weight: math.unit(2, "tons"),
  37051. name: "Back",
  37052. image: {
  37053. source: "./media/characters/erdno/back.svg",
  37054. extra: 1202/1146,
  37055. bottom: 17/1219
  37056. }
  37057. },
  37058. frontNsfw: {
  37059. height: math.unit(5 + 7/12, "feet"),
  37060. weight: math.unit(2, "tons"),
  37061. name: "Front (NSFW)",
  37062. image: {
  37063. source: "./media/characters/erdno/front-nsfw.svg",
  37064. extra: 1234/1129,
  37065. bottom: 35/1269
  37066. }
  37067. },
  37068. angledNsfw: {
  37069. height: math.unit(5 + 7/12, "feet"),
  37070. weight: math.unit(2, "tons"),
  37071. name: "Angled (NSFW)",
  37072. image: {
  37073. source: "./media/characters/erdno/angled-nsfw.svg",
  37074. extra: 1185/1139,
  37075. bottom: 36/1221
  37076. }
  37077. },
  37078. sideNsfw: {
  37079. height: math.unit(5 + 7/12, "feet"),
  37080. weight: math.unit(2, "tons"),
  37081. name: "Side (NSFW)",
  37082. image: {
  37083. source: "./media/characters/erdno/side-nsfw.svg",
  37084. extra: 1191/1144,
  37085. bottom: 40/1231
  37086. }
  37087. },
  37088. backNsfw: {
  37089. height: math.unit(5 + 7/12, "feet"),
  37090. weight: math.unit(2, "tons"),
  37091. name: "Back (NSFW)",
  37092. image: {
  37093. source: "./media/characters/erdno/back-nsfw.svg",
  37094. extra: 1202/1146,
  37095. bottom: 17/1219
  37096. }
  37097. },
  37098. frontHyper: {
  37099. height: math.unit(5 + 7/12, "feet"),
  37100. weight: math.unit(2, "tons"),
  37101. name: "Front (Hyper)",
  37102. image: {
  37103. source: "./media/characters/erdno/front-hyper.svg",
  37104. extra: 1298/1136,
  37105. bottom: 35/1333
  37106. }
  37107. },
  37108. },
  37109. [
  37110. {
  37111. name: "Normal",
  37112. height: math.unit(5 + 7/12, "feet"),
  37113. default: true
  37114. },
  37115. {
  37116. name: "Big",
  37117. height: math.unit(5.7, "meters")
  37118. },
  37119. {
  37120. name: "Macro",
  37121. height: math.unit(5.7, "kilometers")
  37122. },
  37123. {
  37124. name: "Megamacro",
  37125. height: math.unit(5.7, "earths")
  37126. },
  37127. ]
  37128. ))
  37129. characterMakers.push(() => makeCharacter(
  37130. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37131. {
  37132. front: {
  37133. height: math.unit(5 + 10/12, "feet"),
  37134. weight: math.unit(150, "lb"),
  37135. name: "Front",
  37136. image: {
  37137. source: "./media/characters/jamie/front.svg",
  37138. extra: 1908/1768,
  37139. bottom: 19/1927
  37140. }
  37141. },
  37142. },
  37143. [
  37144. {
  37145. name: "Minimum",
  37146. height: math.unit(2, "cm")
  37147. },
  37148. {
  37149. name: "Micro",
  37150. height: math.unit(3, "inches")
  37151. },
  37152. {
  37153. name: "Normal",
  37154. height: math.unit(5 + 10/12, "feet"),
  37155. default: true
  37156. },
  37157. {
  37158. name: "Macro",
  37159. height: math.unit(150, "feet")
  37160. },
  37161. {
  37162. name: "Megamacro",
  37163. height: math.unit(10000, "m")
  37164. },
  37165. ]
  37166. ))
  37167. characterMakers.push(() => makeCharacter(
  37168. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37169. {
  37170. front: {
  37171. height: math.unit(2, "meters"),
  37172. weight: math.unit(100, "kg"),
  37173. name: "Front",
  37174. image: {
  37175. source: "./media/characters/shiron/front.svg",
  37176. extra: 2103/1985,
  37177. bottom: 98/2201
  37178. }
  37179. },
  37180. back: {
  37181. height: math.unit(2, "meters"),
  37182. weight: math.unit(100, "kg"),
  37183. name: "Back",
  37184. image: {
  37185. source: "./media/characters/shiron/back.svg",
  37186. extra: 2110/2015,
  37187. bottom: 89/2199
  37188. }
  37189. },
  37190. hand: {
  37191. height: math.unit(0.96, "feet"),
  37192. name: "Hand",
  37193. image: {
  37194. source: "./media/characters/shiron/hand.svg"
  37195. }
  37196. },
  37197. foot: {
  37198. height: math.unit(1.464, "feet"),
  37199. name: "Foot",
  37200. image: {
  37201. source: "./media/characters/shiron/foot.svg"
  37202. }
  37203. },
  37204. },
  37205. [
  37206. {
  37207. name: "Normal",
  37208. height: math.unit(2, "meters")
  37209. },
  37210. {
  37211. name: "Macro",
  37212. height: math.unit(500, "meters"),
  37213. default: true
  37214. },
  37215. {
  37216. name: "Megamacro",
  37217. height: math.unit(20, "km")
  37218. },
  37219. ]
  37220. ))
  37221. characterMakers.push(() => makeCharacter(
  37222. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37223. {
  37224. front: {
  37225. height: math.unit(6, "feet"),
  37226. name: "Front",
  37227. image: {
  37228. source: "./media/characters/sam/front.svg",
  37229. extra: 849/826,
  37230. bottom: 19/868
  37231. }
  37232. },
  37233. },
  37234. [
  37235. {
  37236. name: "Normal",
  37237. height: math.unit(6, "feet"),
  37238. default: true
  37239. },
  37240. ]
  37241. ))
  37242. characterMakers.push(() => makeCharacter(
  37243. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37244. {
  37245. front: {
  37246. height: math.unit(8 + 4/12, "feet"),
  37247. weight: math.unit(122, "kg"),
  37248. name: "Front",
  37249. image: {
  37250. source: "./media/characters/namori-kurogawa/front.svg",
  37251. extra: 1894/1576,
  37252. bottom: 34/1928
  37253. }
  37254. },
  37255. },
  37256. [
  37257. {
  37258. name: "Normal",
  37259. height: math.unit(8 + 4/12, "feet"),
  37260. default: true
  37261. },
  37262. ]
  37263. ))
  37264. characterMakers.push(() => makeCharacter(
  37265. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37266. {
  37267. front: {
  37268. height: math.unit(9, "feet"),
  37269. weight: math.unit(621, "lb"),
  37270. name: "Front",
  37271. image: {
  37272. source: "./media/characters/unmru/front.svg",
  37273. extra: 1853/1747,
  37274. bottom: 73/1926
  37275. }
  37276. },
  37277. side: {
  37278. height: math.unit(9, "feet"),
  37279. weight: math.unit(621, "lb"),
  37280. name: "Side",
  37281. image: {
  37282. source: "./media/characters/unmru/side.svg",
  37283. extra: 1781/1671,
  37284. bottom: 127/1908
  37285. }
  37286. },
  37287. back: {
  37288. height: math.unit(9, "feet"),
  37289. weight: math.unit(621, "lb"),
  37290. name: "Back",
  37291. image: {
  37292. source: "./media/characters/unmru/back.svg",
  37293. extra: 1894/1765,
  37294. bottom: 75/1969
  37295. }
  37296. },
  37297. dick: {
  37298. height: math.unit(3, "feet"),
  37299. weight: math.unit(35, "lb"),
  37300. name: "Dick",
  37301. image: {
  37302. source: "./media/characters/unmru/dick.svg"
  37303. }
  37304. },
  37305. },
  37306. [
  37307. {
  37308. name: "Normal",
  37309. height: math.unit(9, "feet")
  37310. },
  37311. {
  37312. name: "Natural",
  37313. height: math.unit(27, "feet"),
  37314. default: true
  37315. },
  37316. {
  37317. name: "Giant",
  37318. height: math.unit(90, "feet")
  37319. },
  37320. {
  37321. name: "Kaiju",
  37322. height: math.unit(270, "feet")
  37323. },
  37324. {
  37325. name: "Macro",
  37326. height: math.unit(900, "feet")
  37327. },
  37328. {
  37329. name: "Macro+",
  37330. height: math.unit(2700, "feet")
  37331. },
  37332. {
  37333. name: "Megamacro",
  37334. height: math.unit(9000, "feet")
  37335. },
  37336. {
  37337. name: "City-Crushing",
  37338. height: math.unit(27000, "feet")
  37339. },
  37340. {
  37341. name: "Mountain-Mashing",
  37342. height: math.unit(90000, "feet")
  37343. },
  37344. {
  37345. name: "Earth-Eclipsing",
  37346. height: math.unit(2.7e8, "feet")
  37347. },
  37348. {
  37349. name: "Sol-Swallowing",
  37350. height: math.unit(9e10, "feet")
  37351. },
  37352. {
  37353. name: "Majoris-Munching",
  37354. height: math.unit(2.7e13, "feet")
  37355. },
  37356. ]
  37357. ))
  37358. characterMakers.push(() => makeCharacter(
  37359. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37360. {
  37361. front: {
  37362. height: math.unit(1, "inch"),
  37363. name: "Front",
  37364. image: {
  37365. source: "./media/characters/squeaks-mouse/front.svg",
  37366. extra: 352/308,
  37367. bottom: 25/377
  37368. }
  37369. },
  37370. },
  37371. [
  37372. {
  37373. name: "Micro",
  37374. height: math.unit(1, "inch"),
  37375. default: true
  37376. },
  37377. ]
  37378. ))
  37379. characterMakers.push(() => makeCharacter(
  37380. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37381. {
  37382. side: {
  37383. height: math.unit(35, "feet"),
  37384. name: "Side",
  37385. image: {
  37386. source: "./media/characters/sayko/side.svg",
  37387. extra: 1697/1021,
  37388. bottom: 82/1779
  37389. }
  37390. },
  37391. head: {
  37392. height: math.unit(16, "feet"),
  37393. name: "Head",
  37394. image: {
  37395. source: "./media/characters/sayko/head.svg"
  37396. }
  37397. },
  37398. forepaw: {
  37399. height: math.unit(7.85, "feet"),
  37400. name: "Forepaw",
  37401. image: {
  37402. source: "./media/characters/sayko/forepaw.svg"
  37403. }
  37404. },
  37405. hindpaw: {
  37406. height: math.unit(8.8, "feet"),
  37407. name: "Hindpaw",
  37408. image: {
  37409. source: "./media/characters/sayko/hindpaw.svg"
  37410. }
  37411. },
  37412. },
  37413. [
  37414. {
  37415. name: "Normal",
  37416. height: math.unit(35, "feet"),
  37417. default: true
  37418. },
  37419. {
  37420. name: "Colossus",
  37421. height: math.unit(100, "meters")
  37422. },
  37423. {
  37424. name: "\"Small\" Deity",
  37425. height: math.unit(1, "km")
  37426. },
  37427. {
  37428. name: "\"Large\" Deity",
  37429. height: math.unit(15, "km")
  37430. },
  37431. ]
  37432. ))
  37433. characterMakers.push(() => makeCharacter(
  37434. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37435. {
  37436. front: {
  37437. height: math.unit(6, "feet"),
  37438. weight: math.unit(250, "lb"),
  37439. name: "Front",
  37440. image: {
  37441. source: "./media/characters/mukiro/front.svg",
  37442. extra: 1368/1310,
  37443. bottom: 34/1402
  37444. }
  37445. },
  37446. },
  37447. [
  37448. {
  37449. name: "Normal",
  37450. height: math.unit(6, "feet"),
  37451. default: true
  37452. },
  37453. ]
  37454. ))
  37455. characterMakers.push(() => makeCharacter(
  37456. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37457. {
  37458. front: {
  37459. height: math.unit(12 + 4/12, "feet"),
  37460. name: "Front",
  37461. image: {
  37462. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37463. extra: 1346/1311,
  37464. bottom: 65/1411
  37465. }
  37466. },
  37467. },
  37468. [
  37469. {
  37470. name: "Base",
  37471. height: math.unit(12 + 4/12, "feet"),
  37472. default: true
  37473. },
  37474. {
  37475. name: "Macro",
  37476. height: math.unit(150, "feet")
  37477. },
  37478. {
  37479. name: "Mega",
  37480. height: math.unit(2, "miles")
  37481. },
  37482. {
  37483. name: "Demi God",
  37484. height: math.unit(4, "AU")
  37485. },
  37486. {
  37487. name: "God Size",
  37488. height: math.unit(1, "universe")
  37489. },
  37490. ]
  37491. ))
  37492. characterMakers.push(() => makeCharacter(
  37493. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37494. {
  37495. front: {
  37496. height: math.unit(3 + 3/12, "feet"),
  37497. weight: math.unit(88, "lb"),
  37498. name: "Front",
  37499. image: {
  37500. source: "./media/characters/trey/front.svg",
  37501. extra: 1815/1509,
  37502. bottom: 60/1875
  37503. }
  37504. },
  37505. },
  37506. [
  37507. {
  37508. name: "Normal",
  37509. height: math.unit(3 + 3/12, "feet"),
  37510. default: true
  37511. },
  37512. ]
  37513. ))
  37514. characterMakers.push(() => makeCharacter(
  37515. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37516. {
  37517. front: {
  37518. height: math.unit(4, "meters"),
  37519. name: "Front",
  37520. image: {
  37521. source: "./media/characters/adelonda/front.svg",
  37522. extra: 1077/982,
  37523. bottom: 39/1116
  37524. }
  37525. },
  37526. back: {
  37527. height: math.unit(4, "meters"),
  37528. name: "Back",
  37529. image: {
  37530. source: "./media/characters/adelonda/back.svg",
  37531. extra: 1105/1003,
  37532. bottom: 25/1130
  37533. }
  37534. },
  37535. },
  37536. [
  37537. {
  37538. name: "Normal",
  37539. height: math.unit(4, "meters"),
  37540. default: true
  37541. },
  37542. ]
  37543. ))
  37544. characterMakers.push(() => makeCharacter(
  37545. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37546. {
  37547. front: {
  37548. height: math.unit(8 + 4/12, "feet"),
  37549. weight: math.unit(670, "lb"),
  37550. name: "Front",
  37551. image: {
  37552. source: "./media/characters/acadiel/front.svg",
  37553. extra: 1901/1595,
  37554. bottom: 142/2043
  37555. }
  37556. },
  37557. },
  37558. [
  37559. {
  37560. name: "Normal",
  37561. height: math.unit(8 + 4/12, "feet"),
  37562. default: true
  37563. },
  37564. {
  37565. name: "Macro",
  37566. height: math.unit(200, "feet")
  37567. },
  37568. ]
  37569. ))
  37570. characterMakers.push(() => makeCharacter(
  37571. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37572. {
  37573. front: {
  37574. height: math.unit(6 + 2/12, "feet"),
  37575. weight: math.unit(185, "lb"),
  37576. name: "Front",
  37577. image: {
  37578. source: "./media/characters/kayne-ein/front.svg",
  37579. extra: 1780/1560,
  37580. bottom: 81/1861
  37581. }
  37582. },
  37583. },
  37584. [
  37585. {
  37586. name: "Normal",
  37587. height: math.unit(6 + 2/12, "feet"),
  37588. default: true
  37589. },
  37590. {
  37591. name: "Transformation Stage",
  37592. height: math.unit(15, "feet")
  37593. },
  37594. {
  37595. name: "Macro",
  37596. height: math.unit(150, "feet")
  37597. },
  37598. {
  37599. name: "Earth's Shadow",
  37600. height: math.unit(6200, "miles")
  37601. },
  37602. {
  37603. name: "Universal Demon",
  37604. height: math.unit(28e9, "parsecs")
  37605. },
  37606. {
  37607. name: "Multiverse God",
  37608. height: math.unit(3, "multiverses")
  37609. },
  37610. ]
  37611. ))
  37612. characterMakers.push(() => makeCharacter(
  37613. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37614. {
  37615. front: {
  37616. height: math.unit(5 + 5/12, "feet"),
  37617. name: "Front",
  37618. image: {
  37619. source: "./media/characters/fawn/front.svg",
  37620. extra: 1873/1731,
  37621. bottom: 95/1968
  37622. }
  37623. },
  37624. back: {
  37625. height: math.unit(5 + 5/12, "feet"),
  37626. name: "Back",
  37627. image: {
  37628. source: "./media/characters/fawn/back.svg",
  37629. extra: 1813/1700,
  37630. bottom: 14/1827
  37631. }
  37632. },
  37633. hoof: {
  37634. height: math.unit(1.45, "feet"),
  37635. name: "Hoof",
  37636. image: {
  37637. source: "./media/characters/fawn/hoof.svg"
  37638. }
  37639. },
  37640. },
  37641. [
  37642. {
  37643. name: "Normal",
  37644. height: math.unit(5 + 5/12, "feet"),
  37645. default: true
  37646. },
  37647. ]
  37648. ))
  37649. characterMakers.push(() => makeCharacter(
  37650. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37651. {
  37652. front: {
  37653. height: math.unit(2 + 5/12, "feet"),
  37654. name: "Front",
  37655. image: {
  37656. source: "./media/characters/orion/front.svg",
  37657. extra: 1366/1304,
  37658. bottom: 43/1409
  37659. }
  37660. },
  37661. paw: {
  37662. height: math.unit(0.52, "feet"),
  37663. name: "Paw",
  37664. image: {
  37665. source: "./media/characters/orion/paw.svg"
  37666. }
  37667. },
  37668. },
  37669. [
  37670. {
  37671. name: "Normal",
  37672. height: math.unit(2 + 5/12, "feet"),
  37673. default: true
  37674. },
  37675. ]
  37676. ))
  37677. characterMakers.push(() => makeCharacter(
  37678. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37679. {
  37680. front: {
  37681. height: math.unit(5 + 10/12, "feet"),
  37682. name: "Front",
  37683. image: {
  37684. source: "./media/characters/vera/front.svg",
  37685. extra: 1680/1575,
  37686. bottom: 49/1729
  37687. }
  37688. },
  37689. back: {
  37690. height: math.unit(5 + 10/12, "feet"),
  37691. name: "Back",
  37692. image: {
  37693. source: "./media/characters/vera/back.svg",
  37694. extra: 1700/1588,
  37695. bottom: 18/1718
  37696. }
  37697. },
  37698. arcanine: {
  37699. height: math.unit(6 + 8/12, "feet"),
  37700. name: "Arcanine",
  37701. image: {
  37702. source: "./media/characters/vera/arcanine.svg",
  37703. extra: 1590/1511,
  37704. bottom: 71/1661
  37705. }
  37706. },
  37707. maw: {
  37708. height: math.unit(0.82, "feet"),
  37709. name: "Maw",
  37710. image: {
  37711. source: "./media/characters/vera/maw.svg"
  37712. }
  37713. },
  37714. mawArcanine: {
  37715. height: math.unit(0.97, "feet"),
  37716. name: "Maw (Arcanine)",
  37717. image: {
  37718. source: "./media/characters/vera/maw-arcanine.svg"
  37719. }
  37720. },
  37721. paw: {
  37722. height: math.unit(0.75, "feet"),
  37723. name: "Paw",
  37724. image: {
  37725. source: "./media/characters/vera/paw.svg"
  37726. }
  37727. },
  37728. pawprint: {
  37729. height: math.unit(0.52, "feet"),
  37730. name: "Pawprint",
  37731. image: {
  37732. source: "./media/characters/vera/pawprint.svg"
  37733. }
  37734. },
  37735. },
  37736. [
  37737. {
  37738. name: "Normal",
  37739. height: math.unit(5 + 10/12, "feet"),
  37740. default: true
  37741. },
  37742. {
  37743. name: "Macro",
  37744. height: math.unit(75, "feet")
  37745. },
  37746. ]
  37747. ))
  37748. characterMakers.push(() => makeCharacter(
  37749. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37750. {
  37751. front: {
  37752. height: math.unit(4, "feet"),
  37753. weight: math.unit(40, "lb"),
  37754. name: "Front",
  37755. image: {
  37756. source: "./media/characters/orvan-rabbit/front.svg",
  37757. extra: 1896/1642,
  37758. bottom: 29/1925
  37759. }
  37760. },
  37761. },
  37762. [
  37763. {
  37764. name: "Normal",
  37765. height: math.unit(4, "feet"),
  37766. default: true
  37767. },
  37768. ]
  37769. ))
  37770. characterMakers.push(() => makeCharacter(
  37771. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37772. {
  37773. front: {
  37774. height: math.unit(6, "feet"),
  37775. weight: math.unit(168, "lb"),
  37776. name: "Front",
  37777. image: {
  37778. source: "./media/characters/lisa/front.svg",
  37779. extra: 2065/1867,
  37780. bottom: 46/2111
  37781. }
  37782. },
  37783. back: {
  37784. height: math.unit(6, "feet"),
  37785. weight: math.unit(168, "lb"),
  37786. name: "Back",
  37787. image: {
  37788. source: "./media/characters/lisa/back.svg",
  37789. extra: 1982/1838,
  37790. bottom: 29/2011
  37791. }
  37792. },
  37793. maw: {
  37794. height: math.unit(0.81, "feet"),
  37795. name: "Maw",
  37796. image: {
  37797. source: "./media/characters/lisa/maw.svg"
  37798. }
  37799. },
  37800. paw: {
  37801. height: math.unit(0.9, "feet"),
  37802. name: "Paw",
  37803. image: {
  37804. source: "./media/characters/lisa/paw.svg"
  37805. }
  37806. },
  37807. caribousune: {
  37808. height: math.unit(7 + 2/12, "feet"),
  37809. weight: math.unit(268, "lb"),
  37810. name: "Caribousune",
  37811. image: {
  37812. source: "./media/characters/lisa/caribousune.svg",
  37813. extra: 1843/1633,
  37814. bottom: 29/1872
  37815. }
  37816. },
  37817. frontCaribousune: {
  37818. height: math.unit(7 + 2/12, "feet"),
  37819. weight: math.unit(268, "lb"),
  37820. name: "Front (Caribousune)",
  37821. image: {
  37822. source: "./media/characters/lisa/front-caribousune.svg",
  37823. extra: 1818/1638,
  37824. bottom: 52/1870
  37825. }
  37826. },
  37827. sideCaribousune: {
  37828. height: math.unit(7 + 2/12, "feet"),
  37829. weight: math.unit(268, "lb"),
  37830. name: "Side (Caribousune)",
  37831. image: {
  37832. source: "./media/characters/lisa/side-caribousune.svg",
  37833. extra: 1851/1635,
  37834. bottom: 16/1867
  37835. }
  37836. },
  37837. backCaribousune: {
  37838. height: math.unit(7 + 2/12, "feet"),
  37839. weight: math.unit(268, "lb"),
  37840. name: "Back (Caribousune)",
  37841. image: {
  37842. source: "./media/characters/lisa/back-caribousune.svg",
  37843. extra: 1801/1604,
  37844. bottom: 44/1845
  37845. }
  37846. },
  37847. caribou: {
  37848. height: math.unit(7 + 2/12, "feet"),
  37849. weight: math.unit(268, "lb"),
  37850. name: "Caribou",
  37851. image: {
  37852. source: "./media/characters/lisa/caribou.svg",
  37853. extra: 1843/1633,
  37854. bottom: 29/1872
  37855. }
  37856. },
  37857. frontCaribou: {
  37858. height: math.unit(7 + 2/12, "feet"),
  37859. weight: math.unit(268, "lb"),
  37860. name: "Front (Caribou)",
  37861. image: {
  37862. source: "./media/characters/lisa/front-caribou.svg",
  37863. extra: 1818/1638,
  37864. bottom: 52/1870
  37865. }
  37866. },
  37867. sideCaribou: {
  37868. height: math.unit(7 + 2/12, "feet"),
  37869. weight: math.unit(268, "lb"),
  37870. name: "Side (Caribou)",
  37871. image: {
  37872. source: "./media/characters/lisa/side-caribou.svg",
  37873. extra: 1851/1635,
  37874. bottom: 16/1867
  37875. }
  37876. },
  37877. backCaribou: {
  37878. height: math.unit(7 + 2/12, "feet"),
  37879. weight: math.unit(268, "lb"),
  37880. name: "Back (Caribou)",
  37881. image: {
  37882. source: "./media/characters/lisa/back-caribou.svg",
  37883. extra: 1801/1604,
  37884. bottom: 44/1845
  37885. }
  37886. },
  37887. mawCaribou: {
  37888. height: math.unit(1.45, "feet"),
  37889. name: "Maw (Caribou)",
  37890. image: {
  37891. source: "./media/characters/lisa/maw-caribou.svg"
  37892. }
  37893. },
  37894. mawCaribousune: {
  37895. height: math.unit(1.45, "feet"),
  37896. name: "Maw (Caribousune)",
  37897. image: {
  37898. source: "./media/characters/lisa/maw-caribousune.svg"
  37899. }
  37900. },
  37901. pawCaribousune: {
  37902. height: math.unit(1.61, "feet"),
  37903. name: "Paw (Caribou)",
  37904. image: {
  37905. source: "./media/characters/lisa/paw-caribousune.svg"
  37906. }
  37907. },
  37908. },
  37909. [
  37910. {
  37911. name: "Normal",
  37912. height: math.unit(6, "feet")
  37913. },
  37914. {
  37915. name: "God Size",
  37916. height: math.unit(72, "feet"),
  37917. default: true
  37918. },
  37919. {
  37920. name: "Towering",
  37921. height: math.unit(288, "feet")
  37922. },
  37923. {
  37924. name: "City Size",
  37925. height: math.unit(48384, "feet")
  37926. },
  37927. {
  37928. name: "Continental",
  37929. height: math.unit(4200, "miles")
  37930. },
  37931. {
  37932. name: "Planet Eater",
  37933. height: math.unit(42, "earths")
  37934. },
  37935. {
  37936. name: "Star Swallower",
  37937. height: math.unit(42, "solarradii")
  37938. },
  37939. {
  37940. name: "System Swallower",
  37941. height: math.unit(84000, "AU")
  37942. },
  37943. {
  37944. name: "Galaxy Gobbler",
  37945. height: math.unit(42, "galaxies")
  37946. },
  37947. {
  37948. name: "Universe Devourer",
  37949. height: math.unit(42, "universes")
  37950. },
  37951. {
  37952. name: "Multiverse Muncher",
  37953. height: math.unit(42, "multiverses")
  37954. },
  37955. ]
  37956. ))
  37957. characterMakers.push(() => makeCharacter(
  37958. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37959. {
  37960. front: {
  37961. height: math.unit(36, "feet"),
  37962. name: "Front",
  37963. image: {
  37964. source: "./media/characters/shadow-rat/front.svg",
  37965. extra: 1845/1758,
  37966. bottom: 83/1928
  37967. }
  37968. },
  37969. },
  37970. [
  37971. {
  37972. name: "Macro",
  37973. height: math.unit(36, "feet"),
  37974. default: true
  37975. },
  37976. ]
  37977. ))
  37978. characterMakers.push(() => makeCharacter(
  37979. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37980. {
  37981. side: {
  37982. height: math.unit(8, "feet"),
  37983. weight: math.unit(2630, "lb"),
  37984. name: "Side",
  37985. image: {
  37986. source: "./media/characters/torallia/side.svg",
  37987. extra: 2164/2021,
  37988. bottom: 371/2535
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Mortal Interaction",
  37995. height: math.unit(8, "feet")
  37996. },
  37997. {
  37998. name: "Natural",
  37999. height: math.unit(24, "feet"),
  38000. default: true
  38001. },
  38002. {
  38003. name: "Giant",
  38004. height: math.unit(80, "feet")
  38005. },
  38006. {
  38007. name: "Kaiju",
  38008. height: math.unit(240, "feet")
  38009. },
  38010. {
  38011. name: "Macro",
  38012. height: math.unit(800, "feet")
  38013. },
  38014. {
  38015. name: "Macro+",
  38016. height: math.unit(2400, "feet")
  38017. },
  38018. {
  38019. name: "Macro++",
  38020. height: math.unit(8000, "feet")
  38021. },
  38022. {
  38023. name: "City-Crushing",
  38024. height: math.unit(24000, "feet")
  38025. },
  38026. {
  38027. name: "Mountain-Mashing",
  38028. height: math.unit(80000, "feet")
  38029. },
  38030. {
  38031. name: "District Demolisher",
  38032. height: math.unit(240000, "feet")
  38033. },
  38034. {
  38035. name: "Tri-County Terror",
  38036. height: math.unit(800000, "feet")
  38037. },
  38038. {
  38039. name: "State Smasher",
  38040. height: math.unit(2.4e6, "feet")
  38041. },
  38042. {
  38043. name: "Nation Nemesis",
  38044. height: math.unit(8e6, "feet")
  38045. },
  38046. {
  38047. name: "Continent Cracker",
  38048. height: math.unit(2.4e7, "feet")
  38049. },
  38050. {
  38051. name: "Planet-Pillaging",
  38052. height: math.unit(8e7, "feet")
  38053. },
  38054. {
  38055. name: "Earth-Eclipsing",
  38056. height: math.unit(2.4e8, "feet")
  38057. },
  38058. {
  38059. name: "Jovian-Jostling",
  38060. height: math.unit(8e8, "feet")
  38061. },
  38062. {
  38063. name: "Gas Giant Gulper",
  38064. height: math.unit(2.4e9, "feet")
  38065. },
  38066. {
  38067. name: "Astral Annihilator",
  38068. height: math.unit(8e9, "feet")
  38069. },
  38070. {
  38071. name: "Celestial Conqueror",
  38072. height: math.unit(2.4e10, "feet")
  38073. },
  38074. {
  38075. name: "Sol-Swallowing",
  38076. height: math.unit(8e10, "feet")
  38077. },
  38078. {
  38079. name: "Hunter of the Heavens",
  38080. height: math.unit(2.4e13, "feet")
  38081. },
  38082. ]
  38083. ))
  38084. characterMakers.push(() => makeCharacter(
  38085. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38086. {
  38087. front: {
  38088. height: math.unit(6 + 8/12, "feet"),
  38089. name: "Front",
  38090. image: {
  38091. source: "./media/characters/rebecca-pawlson/front.svg",
  38092. extra: 1737/1596,
  38093. bottom: 107/1844
  38094. }
  38095. },
  38096. back: {
  38097. height: math.unit(6 + 8/12, "feet"),
  38098. name: "Back",
  38099. image: {
  38100. source: "./media/characters/rebecca-pawlson/back.svg",
  38101. extra: 1702/1523,
  38102. bottom: 86/1788
  38103. }
  38104. },
  38105. },
  38106. [
  38107. {
  38108. name: "Normal",
  38109. height: math.unit(6 + 8/12, "feet")
  38110. },
  38111. {
  38112. name: "Mini Macro",
  38113. height: math.unit(10, "feet"),
  38114. default: true
  38115. },
  38116. {
  38117. name: "Macro",
  38118. height: math.unit(100, "feet")
  38119. },
  38120. {
  38121. name: "Mega Macro",
  38122. height: math.unit(2500, "feet")
  38123. },
  38124. {
  38125. name: "Giga Macro",
  38126. height: math.unit(50, "miles")
  38127. },
  38128. ]
  38129. ))
  38130. characterMakers.push(() => makeCharacter(
  38131. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38132. {
  38133. front: {
  38134. height: math.unit(7 + 6/12, "feet"),
  38135. weight: math.unit(600, "lb"),
  38136. name: "Front",
  38137. image: {
  38138. source: "./media/characters/moxie-nova/front.svg",
  38139. extra: 1734/1652,
  38140. bottom: 41/1775
  38141. }
  38142. },
  38143. },
  38144. [
  38145. {
  38146. name: "Normal",
  38147. height: math.unit(7 + 6/12, "feet"),
  38148. default: true
  38149. },
  38150. ]
  38151. ))
  38152. characterMakers.push(() => makeCharacter(
  38153. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38154. {
  38155. goat: {
  38156. height: math.unit(4, "feet"),
  38157. weight: math.unit(180, "lb"),
  38158. name: "Goat",
  38159. image: {
  38160. source: "./media/characters/tiffany/goat.svg",
  38161. extra: 1845/1595,
  38162. bottom: 106/1951
  38163. }
  38164. },
  38165. front: {
  38166. height: math.unit(5, "feet"),
  38167. weight: math.unit(150, "lb"),
  38168. name: "Foxcoon",
  38169. image: {
  38170. source: "./media/characters/tiffany/foxcoon.svg",
  38171. extra: 1941/1845,
  38172. bottom: 58/1999
  38173. }
  38174. },
  38175. },
  38176. [
  38177. {
  38178. name: "Normal",
  38179. height: math.unit(5, "feet"),
  38180. default: true
  38181. },
  38182. ]
  38183. ))
  38184. characterMakers.push(() => makeCharacter(
  38185. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38186. {
  38187. front: {
  38188. height: math.unit(8, "feet"),
  38189. weight: math.unit(300, "lb"),
  38190. name: "Front",
  38191. image: {
  38192. source: "./media/characters/raxinath/front.svg",
  38193. extra: 1407/1309,
  38194. bottom: 39/1446
  38195. }
  38196. },
  38197. back: {
  38198. height: math.unit(8, "feet"),
  38199. weight: math.unit(300, "lb"),
  38200. name: "Back",
  38201. image: {
  38202. source: "./media/characters/raxinath/back.svg",
  38203. extra: 1405/1315,
  38204. bottom: 9/1414
  38205. }
  38206. },
  38207. },
  38208. [
  38209. {
  38210. name: "Speck",
  38211. height: math.unit(0.5, "nm")
  38212. },
  38213. {
  38214. name: "Micro",
  38215. height: math.unit(3, "inches")
  38216. },
  38217. {
  38218. name: "Kobold",
  38219. height: math.unit(3, "feet")
  38220. },
  38221. {
  38222. name: "Normal",
  38223. height: math.unit(8, "feet"),
  38224. default: true
  38225. },
  38226. {
  38227. name: "Giant",
  38228. height: math.unit(50, "feet")
  38229. },
  38230. {
  38231. name: "Macro",
  38232. height: math.unit(1000, "feet")
  38233. },
  38234. {
  38235. name: "Megamacro",
  38236. height: math.unit(1, "mile")
  38237. },
  38238. ]
  38239. ))
  38240. characterMakers.push(() => makeCharacter(
  38241. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38242. {
  38243. front: {
  38244. height: math.unit(10, "feet"),
  38245. weight: math.unit(1442, "lb"),
  38246. name: "Front",
  38247. image: {
  38248. source: "./media/characters/mal-dragon/front.svg",
  38249. extra: 1515/1444,
  38250. bottom: 113/1628
  38251. }
  38252. },
  38253. back: {
  38254. height: math.unit(10, "feet"),
  38255. weight: math.unit(1442, "lb"),
  38256. name: "Back",
  38257. image: {
  38258. source: "./media/characters/mal-dragon/back.svg",
  38259. extra: 1527/1434,
  38260. bottom: 25/1552
  38261. }
  38262. },
  38263. },
  38264. [
  38265. {
  38266. name: "Mortal Interaction",
  38267. height: math.unit(10, "feet"),
  38268. default: true
  38269. },
  38270. {
  38271. name: "Large",
  38272. height: math.unit(30, "feet")
  38273. },
  38274. {
  38275. name: "Kaiju",
  38276. height: math.unit(300, "feet")
  38277. },
  38278. {
  38279. name: "Megamacro",
  38280. height: math.unit(10000, "feet")
  38281. },
  38282. {
  38283. name: "Continent Cracker",
  38284. height: math.unit(30000000, "feet")
  38285. },
  38286. {
  38287. name: "Sol-Swallowing",
  38288. height: math.unit(1e11, "feet")
  38289. },
  38290. {
  38291. name: "Light Universal",
  38292. height: math.unit(5, "universes")
  38293. },
  38294. {
  38295. name: "Universe Atoms",
  38296. height: math.unit(1.829e9, "universes")
  38297. },
  38298. {
  38299. name: "Light Multiversal",
  38300. height: math.unit(5, "multiverses")
  38301. },
  38302. {
  38303. name: "Multiverse Atoms",
  38304. height: math.unit(1.829e9, "multiverses")
  38305. },
  38306. {
  38307. name: "Fabric of Time",
  38308. height: math.unit(1e262, "multiverses")
  38309. },
  38310. ]
  38311. ))
  38312. characterMakers.push(() => makeCharacter(
  38313. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38314. {
  38315. front: {
  38316. height: math.unit(9, "feet"),
  38317. weight: math.unit(1050, "lb"),
  38318. name: "Front",
  38319. image: {
  38320. source: "./media/characters/tabitha/front.svg",
  38321. extra: 2083/1994,
  38322. bottom: 68/2151
  38323. }
  38324. },
  38325. },
  38326. [
  38327. {
  38328. name: "Baseline",
  38329. height: math.unit(9, "feet"),
  38330. default: true
  38331. },
  38332. {
  38333. name: "Giant",
  38334. height: math.unit(90, "feet")
  38335. },
  38336. {
  38337. name: "Macro",
  38338. height: math.unit(900, "feet")
  38339. },
  38340. {
  38341. name: "Megamacro",
  38342. height: math.unit(9000, "feet")
  38343. },
  38344. {
  38345. name: "City-Crushing",
  38346. height: math.unit(27000, "feet")
  38347. },
  38348. {
  38349. name: "Mountain-Mashing",
  38350. height: math.unit(90000, "feet")
  38351. },
  38352. {
  38353. name: "Nation Nemesis",
  38354. height: math.unit(9e6, "feet")
  38355. },
  38356. {
  38357. name: "Continent Cracker",
  38358. height: math.unit(27e6, "feet")
  38359. },
  38360. {
  38361. name: "Earth-Eclipsing",
  38362. height: math.unit(2.7e8, "feet")
  38363. },
  38364. {
  38365. name: "Gas Giant Gulper",
  38366. height: math.unit(2.7e9, "feet")
  38367. },
  38368. {
  38369. name: "Sol-Swallowing",
  38370. height: math.unit(9e10, "feet")
  38371. },
  38372. {
  38373. name: "Galaxy Gulper",
  38374. height: math.unit(9, "galaxies")
  38375. },
  38376. {
  38377. name: "Cosmos Churner",
  38378. height: math.unit(9, "universes")
  38379. },
  38380. ]
  38381. ))
  38382. characterMakers.push(() => makeCharacter(
  38383. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38384. {
  38385. front: {
  38386. height: math.unit(160, "cm"),
  38387. weight: math.unit(55, "kg"),
  38388. name: "Front",
  38389. image: {
  38390. source: "./media/characters/tow/front.svg",
  38391. extra: 1751/1722,
  38392. bottom: 74/1825
  38393. }
  38394. },
  38395. },
  38396. [
  38397. {
  38398. name: "Norm",
  38399. height: math.unit(160, "cm")
  38400. },
  38401. {
  38402. name: "Casual",
  38403. height: math.unit(3200, "m"),
  38404. default: true
  38405. },
  38406. {
  38407. name: "Show-Off",
  38408. height: math.unit(160, "km")
  38409. },
  38410. ]
  38411. ))
  38412. characterMakers.push(() => makeCharacter(
  38413. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38414. {
  38415. front: {
  38416. height: math.unit(7 + 11/12, "feet"),
  38417. weight: math.unit(342.8, "lb"),
  38418. name: "Front",
  38419. image: {
  38420. source: "./media/characters/vivian-orca-dragon/front.svg",
  38421. extra: 1890/1865,
  38422. bottom: 28/1918
  38423. }
  38424. },
  38425. },
  38426. [
  38427. {
  38428. name: "Micro",
  38429. height: math.unit(5, "inches")
  38430. },
  38431. {
  38432. name: "Normal",
  38433. height: math.unit(7 + 11/12, "feet"),
  38434. default: true
  38435. },
  38436. {
  38437. name: "Macro",
  38438. height: math.unit(395 + 7/12, "feet")
  38439. },
  38440. ]
  38441. ))
  38442. characterMakers.push(() => makeCharacter(
  38443. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38444. {
  38445. side: {
  38446. height: math.unit(10, "feet"),
  38447. weight: math.unit(1442, "lb"),
  38448. name: "Side",
  38449. image: {
  38450. source: "./media/characters/lotherakon/side.svg",
  38451. extra: 1604/1497,
  38452. bottom: 89/1693
  38453. }
  38454. },
  38455. },
  38456. [
  38457. {
  38458. name: "Mortal Interaction",
  38459. height: math.unit(10, "feet")
  38460. },
  38461. {
  38462. name: "Large",
  38463. height: math.unit(30, "feet"),
  38464. default: true
  38465. },
  38466. {
  38467. name: "Giant",
  38468. height: math.unit(100, "feet")
  38469. },
  38470. {
  38471. name: "Kaiju",
  38472. height: math.unit(300, "feet")
  38473. },
  38474. {
  38475. name: "Macro",
  38476. height: math.unit(1000, "feet")
  38477. },
  38478. {
  38479. name: "Macro+",
  38480. height: math.unit(3000, "feet")
  38481. },
  38482. {
  38483. name: "Megamacro",
  38484. height: math.unit(10000, "feet")
  38485. },
  38486. {
  38487. name: "City-Crushing",
  38488. height: math.unit(30000, "feet")
  38489. },
  38490. {
  38491. name: "Continent Cracker",
  38492. height: math.unit(30e6, "feet")
  38493. },
  38494. {
  38495. name: "Earth Eclipsing",
  38496. height: math.unit(3e8, "feet")
  38497. },
  38498. {
  38499. name: "Gas Giant Gulper",
  38500. height: math.unit(3e9, "feet")
  38501. },
  38502. {
  38503. name: "Sol-Swallowing",
  38504. height: math.unit(1e11, "feet")
  38505. },
  38506. {
  38507. name: "System Swallower",
  38508. height: math.unit(3e14, "feet")
  38509. },
  38510. {
  38511. name: "Galaxy Gulper",
  38512. height: math.unit(10, "galaxies")
  38513. },
  38514. {
  38515. name: "Light Universal",
  38516. height: math.unit(5, "universes")
  38517. },
  38518. {
  38519. name: "Universe Palm",
  38520. height: math.unit(20, "universes")
  38521. },
  38522. {
  38523. name: "Light Multiversal",
  38524. height: math.unit(5, "multiverses")
  38525. },
  38526. {
  38527. name: "Multiverse Palm",
  38528. height: math.unit(20, "multiverses")
  38529. },
  38530. {
  38531. name: "Inferno Incarnate",
  38532. height: math.unit(1e7, "multiverses")
  38533. },
  38534. ]
  38535. ))
  38536. characterMakers.push(() => makeCharacter(
  38537. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38538. {
  38539. front: {
  38540. height: math.unit(8, "feet"),
  38541. weight: math.unit(1200, "lb"),
  38542. name: "Front",
  38543. image: {
  38544. source: "./media/characters/malithee/front.svg",
  38545. extra: 1675/1640,
  38546. bottom: 162/1837
  38547. }
  38548. },
  38549. },
  38550. [
  38551. {
  38552. name: "Mortal Interaction",
  38553. height: math.unit(8, "feet"),
  38554. default: true
  38555. },
  38556. {
  38557. name: "Large",
  38558. height: math.unit(24, "feet")
  38559. },
  38560. {
  38561. name: "Kaiju",
  38562. height: math.unit(240, "feet")
  38563. },
  38564. {
  38565. name: "Megamacro",
  38566. height: math.unit(8000, "feet")
  38567. },
  38568. {
  38569. name: "Continent Cracker",
  38570. height: math.unit(24e6, "feet")
  38571. },
  38572. {
  38573. name: "Earth-Eclipsing",
  38574. height: math.unit(2.4e8, "feet")
  38575. },
  38576. {
  38577. name: "Sol-Swallowing",
  38578. height: math.unit(8e10, "feet")
  38579. },
  38580. {
  38581. name: "Galaxy Gulper",
  38582. height: math.unit(8, "galaxies")
  38583. },
  38584. {
  38585. name: "Light Universal",
  38586. height: math.unit(4, "universes")
  38587. },
  38588. {
  38589. name: "Universe Atoms",
  38590. height: math.unit(1.829e9, "universes")
  38591. },
  38592. {
  38593. name: "Light Multiversal",
  38594. height: math.unit(4, "multiverses")
  38595. },
  38596. {
  38597. name: "Multiverse Atoms",
  38598. height: math.unit(1.829e9, "multiverses")
  38599. },
  38600. {
  38601. name: "Nigh-Omnipresence",
  38602. height: math.unit(8e261, "multiverses")
  38603. },
  38604. ]
  38605. ))
  38606. characterMakers.push(() => makeCharacter(
  38607. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38608. {
  38609. front: {
  38610. height: math.unit(10, "feet"),
  38611. weight: math.unit(1500, "lb"),
  38612. name: "Front",
  38613. image: {
  38614. source: "./media/characters/miles-thestia/front.svg",
  38615. extra: 1812/1727,
  38616. bottom: 86/1898
  38617. }
  38618. },
  38619. back: {
  38620. height: math.unit(10, "feet"),
  38621. weight: math.unit(1500, "lb"),
  38622. name: "Back",
  38623. image: {
  38624. source: "./media/characters/miles-thestia/back.svg",
  38625. extra: 1799/1690,
  38626. bottom: 47/1846
  38627. }
  38628. },
  38629. frontNsfw: {
  38630. height: math.unit(10, "feet"),
  38631. weight: math.unit(1500, "lb"),
  38632. name: "Front (NSFW)",
  38633. image: {
  38634. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38635. extra: 1812/1727,
  38636. bottom: 86/1898
  38637. }
  38638. },
  38639. },
  38640. [
  38641. {
  38642. name: "Mini-Macro",
  38643. height: math.unit(10, "feet"),
  38644. default: true
  38645. },
  38646. ]
  38647. ))
  38648. characterMakers.push(() => makeCharacter(
  38649. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38650. {
  38651. front: {
  38652. height: math.unit(25, "feet"),
  38653. name: "Front",
  38654. image: {
  38655. source: "./media/characters/titan-s-wulf/front.svg",
  38656. extra: 1560/1484,
  38657. bottom: 76/1636
  38658. }
  38659. },
  38660. },
  38661. [
  38662. {
  38663. name: "Smallest",
  38664. height: math.unit(25, "feet"),
  38665. default: true
  38666. },
  38667. {
  38668. name: "Normal",
  38669. height: math.unit(200, "feet")
  38670. },
  38671. {
  38672. name: "Macro",
  38673. height: math.unit(200000, "feet")
  38674. },
  38675. {
  38676. name: "Multiversal Original",
  38677. height: math.unit(10000, "multiverses")
  38678. },
  38679. ]
  38680. ))
  38681. characterMakers.push(() => makeCharacter(
  38682. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38683. {
  38684. front: {
  38685. height: math.unit(8, "feet"),
  38686. weight: math.unit(553, "lb"),
  38687. name: "Front",
  38688. image: {
  38689. source: "./media/characters/tawendeh/front.svg",
  38690. extra: 2365/2268,
  38691. bottom: 83/2448
  38692. }
  38693. },
  38694. frontClothed: {
  38695. height: math.unit(8, "feet"),
  38696. weight: math.unit(553, "lb"),
  38697. name: "Front (Clothed)",
  38698. image: {
  38699. source: "./media/characters/tawendeh/front-clothed.svg",
  38700. extra: 2365/2268,
  38701. bottom: 83/2448
  38702. }
  38703. },
  38704. back: {
  38705. height: math.unit(8, "feet"),
  38706. weight: math.unit(553, "lb"),
  38707. name: "Back",
  38708. image: {
  38709. source: "./media/characters/tawendeh/back.svg",
  38710. extra: 2397/2294,
  38711. bottom: 42/2439
  38712. }
  38713. },
  38714. },
  38715. [
  38716. {
  38717. name: "Mortal Interaction",
  38718. height: math.unit(8, "feet"),
  38719. default: true
  38720. },
  38721. {
  38722. name: "Giant",
  38723. height: math.unit(80, "feet")
  38724. },
  38725. {
  38726. name: "Macro",
  38727. height: math.unit(800, "feet")
  38728. },
  38729. {
  38730. name: "Megamacro",
  38731. height: math.unit(8000, "feet")
  38732. },
  38733. {
  38734. name: "City-Crushing",
  38735. height: math.unit(24000, "feet")
  38736. },
  38737. {
  38738. name: "Mountain-Mashing",
  38739. height: math.unit(80000, "feet")
  38740. },
  38741. {
  38742. name: "Nation Nemesis",
  38743. height: math.unit(8e6, "feet")
  38744. },
  38745. {
  38746. name: "Continent Cracker",
  38747. height: math.unit(24e6, "feet")
  38748. },
  38749. {
  38750. name: "Earth-Eclipsing",
  38751. height: math.unit(2.4e8, "feet")
  38752. },
  38753. {
  38754. name: "Gas Giant Gulper",
  38755. height: math.unit(2.4e9, "feet")
  38756. },
  38757. {
  38758. name: "Sol-Swallowing",
  38759. height: math.unit(8e10, "feet")
  38760. },
  38761. {
  38762. name: "Galaxy Gulper",
  38763. height: math.unit(8, "galaxies")
  38764. },
  38765. {
  38766. name: "Cosmos Churner",
  38767. height: math.unit(8, "universes")
  38768. },
  38769. {
  38770. name: "Omnipotent Otter",
  38771. height: math.unit(80, "universes")
  38772. },
  38773. ]
  38774. ))
  38775. characterMakers.push(() => makeCharacter(
  38776. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38777. {
  38778. front: {
  38779. height: math.unit(2.6, "meters"),
  38780. weight: math.unit(900, "kg"),
  38781. name: "Front",
  38782. image: {
  38783. source: "./media/characters/neesha/front.svg",
  38784. extra: 1803/1653,
  38785. bottom: 128/1931
  38786. }
  38787. },
  38788. },
  38789. [
  38790. {
  38791. name: "Normal",
  38792. height: math.unit(2.6, "meters"),
  38793. default: true
  38794. },
  38795. {
  38796. name: "Macro",
  38797. height: math.unit(50, "meters")
  38798. },
  38799. ]
  38800. ))
  38801. characterMakers.push(() => makeCharacter(
  38802. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38803. {
  38804. front: {
  38805. height: math.unit(5, "feet"),
  38806. weight: math.unit(185, "lb"),
  38807. name: "Front",
  38808. image: {
  38809. source: "./media/characters/kyera/front.svg",
  38810. extra: 1875/1790,
  38811. bottom: 96/1971
  38812. }
  38813. },
  38814. },
  38815. [
  38816. {
  38817. name: "Normal",
  38818. height: math.unit(5, "feet"),
  38819. default: true
  38820. },
  38821. ]
  38822. ))
  38823. characterMakers.push(() => makeCharacter(
  38824. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38825. {
  38826. front: {
  38827. height: math.unit(7 + 6/12, "feet"),
  38828. weight: math.unit(540, "lb"),
  38829. name: "Front",
  38830. image: {
  38831. source: "./media/characters/yuko/front.svg",
  38832. extra: 1282/1222,
  38833. bottom: 101/1383
  38834. }
  38835. },
  38836. frontClothed: {
  38837. height: math.unit(7 + 6/12, "feet"),
  38838. weight: math.unit(540, "lb"),
  38839. name: "Front (Clothed)",
  38840. image: {
  38841. source: "./media/characters/yuko/front-clothed.svg",
  38842. extra: 1282/1222,
  38843. bottom: 101/1383
  38844. }
  38845. },
  38846. },
  38847. [
  38848. {
  38849. name: "Normal",
  38850. height: math.unit(7 + 6/12, "feet"),
  38851. default: true
  38852. },
  38853. {
  38854. name: "Macro",
  38855. height: math.unit(26 + 9/12, "feet")
  38856. },
  38857. {
  38858. name: "Megamacro",
  38859. height: math.unit(300, "feet")
  38860. },
  38861. {
  38862. name: "Gigamacro",
  38863. height: math.unit(5000, "feet")
  38864. },
  38865. {
  38866. name: "Planetary",
  38867. height: math.unit(10000, "miles")
  38868. },
  38869. ]
  38870. ))
  38871. characterMakers.push(() => makeCharacter(
  38872. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38873. {
  38874. front: {
  38875. height: math.unit(8 + 2/12, "feet"),
  38876. weight: math.unit(600, "lb"),
  38877. name: "Front",
  38878. image: {
  38879. source: "./media/characters/deam-nitrel/front.svg",
  38880. extra: 1308/1234,
  38881. bottom: 125/1433
  38882. }
  38883. },
  38884. },
  38885. [
  38886. {
  38887. name: "Normal",
  38888. height: math.unit(8 + 2/12, "feet"),
  38889. default: true
  38890. },
  38891. ]
  38892. ))
  38893. characterMakers.push(() => makeCharacter(
  38894. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38895. {
  38896. front: {
  38897. height: math.unit(6.1, "feet"),
  38898. weight: math.unit(180, "lb"),
  38899. name: "Front",
  38900. image: {
  38901. source: "./media/characters/skyress/front.svg",
  38902. extra: 1045/915,
  38903. bottom: 28/1073
  38904. }
  38905. },
  38906. maw: {
  38907. height: math.unit(1, "feet"),
  38908. name: "Maw",
  38909. image: {
  38910. source: "./media/characters/skyress/maw.svg"
  38911. }
  38912. },
  38913. },
  38914. [
  38915. {
  38916. name: "Normal",
  38917. height: math.unit(6.1, "feet"),
  38918. default: true
  38919. },
  38920. {
  38921. name: "Macro",
  38922. height: math.unit(200, "feet")
  38923. },
  38924. ]
  38925. ))
  38926. characterMakers.push(() => makeCharacter(
  38927. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38928. {
  38929. front: {
  38930. height: math.unit(4 + 2/12, "feet"),
  38931. weight: math.unit(40, "kg"),
  38932. name: "Front",
  38933. image: {
  38934. source: "./media/characters/amethyst-jones/front.svg",
  38935. extra: 1220/1150,
  38936. bottom: 101/1321
  38937. }
  38938. },
  38939. },
  38940. [
  38941. {
  38942. name: "Normal",
  38943. height: math.unit(4 + 2/12, "feet"),
  38944. default: true
  38945. },
  38946. ]
  38947. ))
  38948. characterMakers.push(() => makeCharacter(
  38949. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38950. {
  38951. front: {
  38952. height: math.unit(1.7, "m"),
  38953. weight: math.unit(135, "lb"),
  38954. name: "Front",
  38955. image: {
  38956. source: "./media/characters/jade/front.svg",
  38957. extra: 1818/1767,
  38958. bottom: 32/1850
  38959. }
  38960. },
  38961. back: {
  38962. height: math.unit(1.7, "m"),
  38963. weight: math.unit(135, "lb"),
  38964. name: "Back",
  38965. image: {
  38966. source: "./media/characters/jade/back.svg",
  38967. extra: 1869/1809,
  38968. bottom: 35/1904
  38969. }
  38970. },
  38971. hand: {
  38972. height: math.unit(0.24, "m"),
  38973. name: "Hand",
  38974. image: {
  38975. source: "./media/characters/jade/hand.svg"
  38976. }
  38977. },
  38978. foot: {
  38979. height: math.unit(0.263, "m"),
  38980. name: "Foot",
  38981. image: {
  38982. source: "./media/characters/jade/foot.svg"
  38983. }
  38984. },
  38985. dick: {
  38986. height: math.unit(0.47, "m"),
  38987. name: "Dick",
  38988. image: {
  38989. source: "./media/characters/jade/dick.svg"
  38990. }
  38991. },
  38992. },
  38993. [
  38994. {
  38995. name: "Micro",
  38996. height: math.unit(22, "cm")
  38997. },
  38998. {
  38999. name: "Normal",
  39000. height: math.unit(1.7, "m"),
  39001. default: true
  39002. },
  39003. {
  39004. name: "Macro",
  39005. height: math.unit(152, "m")
  39006. },
  39007. ]
  39008. ))
  39009. characterMakers.push(() => makeCharacter(
  39010. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39011. {
  39012. front: {
  39013. height: math.unit(100, "miles"),
  39014. weight: math.unit(20000, "tons"),
  39015. name: "Front",
  39016. image: {
  39017. source: "./media/characters/cookie/front.svg",
  39018. extra: 1125/1070,
  39019. bottom: 30/1155
  39020. }
  39021. },
  39022. },
  39023. [
  39024. {
  39025. name: "Big",
  39026. height: math.unit(50, "feet")
  39027. },
  39028. {
  39029. name: "Macro",
  39030. height: math.unit(100, "miles"),
  39031. default: true
  39032. },
  39033. {
  39034. name: "Megamacro",
  39035. height: math.unit(90000, "miles")
  39036. },
  39037. ]
  39038. ))
  39039. characterMakers.push(() => makeCharacter(
  39040. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39041. {
  39042. front: {
  39043. height: math.unit(6, "feet"),
  39044. weight: math.unit(145, "lb"),
  39045. name: "Front",
  39046. image: {
  39047. source: "./media/characters/farzian/front.svg",
  39048. extra: 1902/1693,
  39049. bottom: 108/2010
  39050. }
  39051. },
  39052. },
  39053. [
  39054. {
  39055. name: "Macro",
  39056. height: math.unit(500, "feet"),
  39057. default: true
  39058. },
  39059. ]
  39060. ))
  39061. characterMakers.push(() => makeCharacter(
  39062. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39063. {
  39064. front: {
  39065. height: math.unit(3 + 6/12, "feet"),
  39066. weight: math.unit(50, "lb"),
  39067. name: "Front",
  39068. image: {
  39069. source: "./media/characters/kimberly-tilson/front.svg",
  39070. extra: 1400/1322,
  39071. bottom: 36/1436
  39072. }
  39073. },
  39074. back: {
  39075. height: math.unit(3 + 6/12, "feet"),
  39076. weight: math.unit(50, "lb"),
  39077. name: "Back",
  39078. image: {
  39079. source: "./media/characters/kimberly-tilson/back.svg",
  39080. extra: 1370/1307,
  39081. bottom: 20/1390
  39082. }
  39083. },
  39084. },
  39085. [
  39086. {
  39087. name: "Normal",
  39088. height: math.unit(3 + 6/12, "feet"),
  39089. default: true
  39090. },
  39091. ]
  39092. ))
  39093. characterMakers.push(() => makeCharacter(
  39094. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39095. {
  39096. front: {
  39097. height: math.unit(1148, "feet"),
  39098. weight: math.unit(34057, "lb"),
  39099. name: "Front",
  39100. image: {
  39101. source: "./media/characters/harthos/front.svg",
  39102. extra: 1391/1339,
  39103. bottom: 13/1404
  39104. }
  39105. },
  39106. },
  39107. [
  39108. {
  39109. name: "Macro",
  39110. height: math.unit(1148, "feet"),
  39111. default: true
  39112. },
  39113. ]
  39114. ))
  39115. characterMakers.push(() => makeCharacter(
  39116. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39117. {
  39118. front: {
  39119. height: math.unit(15, "feet"),
  39120. name: "Front",
  39121. image: {
  39122. source: "./media/characters/hypatia/front.svg",
  39123. extra: 1653/1591,
  39124. bottom: 79/1732
  39125. }
  39126. },
  39127. },
  39128. [
  39129. {
  39130. name: "Normal",
  39131. height: math.unit(15, "feet")
  39132. },
  39133. {
  39134. name: "Small",
  39135. height: math.unit(300, "feet")
  39136. },
  39137. {
  39138. name: "Macro",
  39139. height: math.unit(2500, "feet"),
  39140. default: true
  39141. },
  39142. {
  39143. name: "Mega Macro",
  39144. height: math.unit(1500, "miles")
  39145. },
  39146. {
  39147. name: "Giga Macro",
  39148. height: math.unit(1.5e6, "miles")
  39149. },
  39150. ]
  39151. ))
  39152. characterMakers.push(() => makeCharacter(
  39153. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39154. {
  39155. front: {
  39156. height: math.unit(6, "feet"),
  39157. weight: math.unit(200, "lb"),
  39158. name: "Front",
  39159. image: {
  39160. source: "./media/characters/wulver/front.svg",
  39161. extra: 1724/1632,
  39162. bottom: 130/1854
  39163. }
  39164. },
  39165. frontNsfw: {
  39166. height: math.unit(6, "feet"),
  39167. weight: math.unit(200, "lb"),
  39168. name: "Front (NSFW)",
  39169. image: {
  39170. source: "./media/characters/wulver/front-nsfw.svg",
  39171. extra: 1724/1632,
  39172. bottom: 130/1854
  39173. }
  39174. },
  39175. },
  39176. [
  39177. {
  39178. name: "Human-Sized",
  39179. height: math.unit(6, "feet")
  39180. },
  39181. {
  39182. name: "Normal",
  39183. height: math.unit(4, "meters"),
  39184. default: true
  39185. },
  39186. {
  39187. name: "Large",
  39188. height: math.unit(6, "m")
  39189. },
  39190. ]
  39191. ))
  39192. characterMakers.push(() => makeCharacter(
  39193. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39194. {
  39195. front: {
  39196. height: math.unit(7, "feet"),
  39197. name: "Front",
  39198. image: {
  39199. source: "./media/characters/maru/front.svg",
  39200. extra: 1595/1570,
  39201. bottom: 0/1595
  39202. }
  39203. },
  39204. },
  39205. [
  39206. {
  39207. name: "Normal",
  39208. height: math.unit(7, "feet"),
  39209. default: true
  39210. },
  39211. {
  39212. name: "Macro",
  39213. height: math.unit(700, "feet")
  39214. },
  39215. {
  39216. name: "Mega Macro",
  39217. height: math.unit(25, "miles")
  39218. },
  39219. ]
  39220. ))
  39221. characterMakers.push(() => makeCharacter(
  39222. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39223. {
  39224. front: {
  39225. height: math.unit(6, "feet"),
  39226. weight: math.unit(170, "lb"),
  39227. name: "Front",
  39228. image: {
  39229. source: "./media/characters/xenon/front.svg",
  39230. extra: 1376/1305,
  39231. bottom: 56/1432
  39232. }
  39233. },
  39234. back: {
  39235. height: math.unit(6, "feet"),
  39236. weight: math.unit(170, "lb"),
  39237. name: "Back",
  39238. image: {
  39239. source: "./media/characters/xenon/back.svg",
  39240. extra: 1328/1259,
  39241. bottom: 95/1423
  39242. }
  39243. },
  39244. maw: {
  39245. height: math.unit(0.52, "feet"),
  39246. name: "Maw",
  39247. image: {
  39248. source: "./media/characters/xenon/maw.svg"
  39249. }
  39250. },
  39251. hand: {
  39252. height: math.unit(0.82, "feet"),
  39253. name: "Hand",
  39254. image: {
  39255. source: "./media/characters/xenon/hand.svg"
  39256. }
  39257. },
  39258. foot: {
  39259. height: math.unit(1.13, "feet"),
  39260. name: "Foot",
  39261. image: {
  39262. source: "./media/characters/xenon/foot.svg"
  39263. }
  39264. },
  39265. },
  39266. [
  39267. {
  39268. name: "Micro",
  39269. height: math.unit(0.8, "inches")
  39270. },
  39271. {
  39272. name: "Normal",
  39273. height: math.unit(6, "feet")
  39274. },
  39275. {
  39276. name: "Macro",
  39277. height: math.unit(50, "feet"),
  39278. default: true
  39279. },
  39280. {
  39281. name: "Macro+",
  39282. height: math.unit(250, "feet")
  39283. },
  39284. {
  39285. name: "Megamacro",
  39286. height: math.unit(1500, "feet")
  39287. },
  39288. ]
  39289. ))
  39290. characterMakers.push(() => makeCharacter(
  39291. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39292. {
  39293. front: {
  39294. height: math.unit(7 + 5/12, "feet"),
  39295. name: "Front",
  39296. image: {
  39297. source: "./media/characters/zane/front.svg",
  39298. extra: 1260/1203,
  39299. bottom: 94/1354
  39300. }
  39301. },
  39302. back: {
  39303. height: math.unit(5.05, "feet"),
  39304. name: "Back",
  39305. image: {
  39306. source: "./media/characters/zane/back.svg",
  39307. extra: 893/829,
  39308. bottom: 30/923
  39309. }
  39310. },
  39311. werewolf: {
  39312. height: math.unit(11, "feet"),
  39313. name: "Werewolf",
  39314. image: {
  39315. source: "./media/characters/zane/werewolf.svg",
  39316. extra: 1383/1323,
  39317. bottom: 89/1472
  39318. }
  39319. },
  39320. foot: {
  39321. height: math.unit(1.46, "feet"),
  39322. name: "Foot",
  39323. image: {
  39324. source: "./media/characters/zane/foot.svg"
  39325. }
  39326. },
  39327. footFront: {
  39328. height: math.unit(0.784, "feet"),
  39329. name: "Foot (Front)",
  39330. image: {
  39331. source: "./media/characters/zane/foot-front.svg"
  39332. }
  39333. },
  39334. dick: {
  39335. height: math.unit(1.95, "feet"),
  39336. name: "Dick",
  39337. image: {
  39338. source: "./media/characters/zane/dick.svg"
  39339. }
  39340. },
  39341. dickWerewolf: {
  39342. height: math.unit(3.77, "feet"),
  39343. name: "Dick (Werewolf)",
  39344. image: {
  39345. source: "./media/characters/zane/dick.svg"
  39346. }
  39347. },
  39348. },
  39349. [
  39350. {
  39351. name: "Normal",
  39352. height: math.unit(7 + 5/12, "feet"),
  39353. default: true
  39354. },
  39355. ]
  39356. ))
  39357. characterMakers.push(() => makeCharacter(
  39358. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39359. {
  39360. front: {
  39361. height: math.unit(6 + 2/12, "feet"),
  39362. weight: math.unit(284, "lb"),
  39363. name: "Front",
  39364. image: {
  39365. source: "./media/characters/benni-desparque/front.svg",
  39366. extra: 1353/1126,
  39367. bottom: 69/1422
  39368. }
  39369. },
  39370. },
  39371. [
  39372. {
  39373. name: "Civilian",
  39374. height: math.unit(6 + 2/12, "feet")
  39375. },
  39376. {
  39377. name: "Normal",
  39378. height: math.unit(98, "feet"),
  39379. default: true
  39380. },
  39381. {
  39382. name: "Kaiju Fighter",
  39383. height: math.unit(268, "feet")
  39384. },
  39385. ]
  39386. ))
  39387. characterMakers.push(() => makeCharacter(
  39388. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39389. {
  39390. front: {
  39391. height: math.unit(5, "feet"),
  39392. weight: math.unit(105, "lb"),
  39393. name: "Front",
  39394. image: {
  39395. source: "./media/characters/maxine/front.svg",
  39396. extra: 1386/1250,
  39397. bottom: 71/1457
  39398. }
  39399. },
  39400. },
  39401. [
  39402. {
  39403. name: "Normal",
  39404. height: math.unit(5, "feet"),
  39405. default: true
  39406. },
  39407. ]
  39408. ))
  39409. characterMakers.push(() => makeCharacter(
  39410. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39411. {
  39412. front: {
  39413. height: math.unit(11 + 7/12, "feet"),
  39414. weight: math.unit(9576, "lb"),
  39415. name: "Front",
  39416. image: {
  39417. source: "./media/characters/scaly/front.svg",
  39418. extra: 888/867,
  39419. bottom: 36/924
  39420. }
  39421. },
  39422. },
  39423. [
  39424. {
  39425. name: "Normal",
  39426. height: math.unit(11 + 7/12, "feet"),
  39427. default: true
  39428. },
  39429. ]
  39430. ))
  39431. characterMakers.push(() => makeCharacter(
  39432. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39433. {
  39434. front: {
  39435. height: math.unit(9, "inches"),
  39436. name: "Front",
  39437. image: {
  39438. source: "./media/characters/saelria/front.svg",
  39439. extra: 662/621,
  39440. bottom: 12/674
  39441. }
  39442. },
  39443. },
  39444. [
  39445. {
  39446. name: "Tiny",
  39447. height: math.unit(9, "inches"),
  39448. default: true
  39449. },
  39450. ]
  39451. ))
  39452. characterMakers.push(() => makeCharacter(
  39453. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39454. {
  39455. front: {
  39456. height: math.unit(80, "meters"),
  39457. weight: math.unit(7000, "tonnes"),
  39458. name: "Front",
  39459. image: {
  39460. source: "./media/characters/tef/front.svg",
  39461. extra: 2036/1991,
  39462. bottom: 54/2090
  39463. }
  39464. },
  39465. back: {
  39466. height: math.unit(80, "meters"),
  39467. weight: math.unit(7000, "tonnes"),
  39468. name: "Back",
  39469. image: {
  39470. source: "./media/characters/tef/back.svg",
  39471. extra: 2036/1991,
  39472. bottom: 54/2090
  39473. }
  39474. },
  39475. },
  39476. [
  39477. {
  39478. name: "Macro",
  39479. height: math.unit(80, "meters"),
  39480. default: true
  39481. },
  39482. ]
  39483. ))
  39484. characterMakers.push(() => makeCharacter(
  39485. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39486. {
  39487. front: {
  39488. height: math.unit(13, "feet"),
  39489. weight: math.unit(6, "tons"),
  39490. name: "Front",
  39491. image: {
  39492. source: "./media/characters/rover/front.svg",
  39493. extra: 1233/1156,
  39494. bottom: 50/1283
  39495. }
  39496. },
  39497. back: {
  39498. height: math.unit(13, "feet"),
  39499. weight: math.unit(6, "tons"),
  39500. name: "Back",
  39501. image: {
  39502. source: "./media/characters/rover/back.svg",
  39503. extra: 1327/1258,
  39504. bottom: 39/1366
  39505. }
  39506. },
  39507. },
  39508. [
  39509. {
  39510. name: "Normal",
  39511. height: math.unit(13, "feet"),
  39512. default: true
  39513. },
  39514. {
  39515. name: "Macro",
  39516. height: math.unit(1300, "feet")
  39517. },
  39518. {
  39519. name: "Megamacro",
  39520. height: math.unit(1300, "miles")
  39521. },
  39522. {
  39523. name: "Gigamacro",
  39524. height: math.unit(1300000, "miles")
  39525. },
  39526. ]
  39527. ))
  39528. characterMakers.push(() => makeCharacter(
  39529. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39530. {
  39531. front: {
  39532. height: math.unit(6, "feet"),
  39533. weight: math.unit(150, "lb"),
  39534. name: "Front",
  39535. image: {
  39536. source: "./media/characters/ariz/front.svg",
  39537. extra: 1401/1346,
  39538. bottom: 5/1406
  39539. }
  39540. },
  39541. },
  39542. [
  39543. {
  39544. name: "Normal",
  39545. height: math.unit(10, "feet"),
  39546. default: true
  39547. },
  39548. ]
  39549. ))
  39550. characterMakers.push(() => makeCharacter(
  39551. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39552. {
  39553. front: {
  39554. height: math.unit(6, "feet"),
  39555. weight: math.unit(140, "lb"),
  39556. name: "Front",
  39557. image: {
  39558. source: "./media/characters/sigrun/front.svg",
  39559. extra: 1418/1359,
  39560. bottom: 27/1445
  39561. }
  39562. },
  39563. },
  39564. [
  39565. {
  39566. name: "Macro",
  39567. height: math.unit(35, "feet"),
  39568. default: true
  39569. },
  39570. ]
  39571. ))
  39572. characterMakers.push(() => makeCharacter(
  39573. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39574. {
  39575. front: {
  39576. height: math.unit(6, "feet"),
  39577. weight: math.unit(150, "lb"),
  39578. name: "Front",
  39579. image: {
  39580. source: "./media/characters/numin/front.svg",
  39581. extra: 1433/1388,
  39582. bottom: 12/1445
  39583. }
  39584. },
  39585. },
  39586. [
  39587. {
  39588. name: "Macro",
  39589. height: math.unit(21.5, "km"),
  39590. default: true
  39591. },
  39592. ]
  39593. ))
  39594. characterMakers.push(() => makeCharacter(
  39595. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39596. {
  39597. front: {
  39598. height: math.unit(6, "feet"),
  39599. weight: math.unit(463, "lb"),
  39600. name: "Front",
  39601. image: {
  39602. source: "./media/characters/melwa/front.svg",
  39603. extra: 1307/1248,
  39604. bottom: 93/1400
  39605. }
  39606. },
  39607. },
  39608. [
  39609. {
  39610. name: "Macro",
  39611. height: math.unit(50, "meters"),
  39612. default: true
  39613. },
  39614. ]
  39615. ))
  39616. characterMakers.push(() => makeCharacter(
  39617. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39618. {
  39619. front: {
  39620. height: math.unit(325, "feet"),
  39621. name: "Front",
  39622. image: {
  39623. source: "./media/characters/zorkaiju/front.svg",
  39624. extra: 1955/1814,
  39625. bottom: 40/1995
  39626. }
  39627. },
  39628. frontExtended: {
  39629. height: math.unit(325, "feet"),
  39630. name: "Front (Extended)",
  39631. image: {
  39632. source: "./media/characters/zorkaiju/front-extended.svg",
  39633. extra: 1955/1814,
  39634. bottom: 40/1995
  39635. }
  39636. },
  39637. side: {
  39638. height: math.unit(325, "feet"),
  39639. name: "Side",
  39640. image: {
  39641. source: "./media/characters/zorkaiju/side.svg",
  39642. extra: 1495/1396,
  39643. bottom: 17/1512
  39644. }
  39645. },
  39646. sideExtended: {
  39647. height: math.unit(325, "feet"),
  39648. name: "Side (Extended)",
  39649. image: {
  39650. source: "./media/characters/zorkaiju/side-extended.svg",
  39651. extra: 1495/1396,
  39652. bottom: 17/1512
  39653. }
  39654. },
  39655. back: {
  39656. height: math.unit(325, "feet"),
  39657. name: "Back",
  39658. image: {
  39659. source: "./media/characters/zorkaiju/back.svg",
  39660. extra: 1959/1821,
  39661. bottom: 31/1990
  39662. }
  39663. },
  39664. backExtended: {
  39665. height: math.unit(325, "feet"),
  39666. name: "Back (Extended)",
  39667. image: {
  39668. source: "./media/characters/zorkaiju/back-extended.svg",
  39669. extra: 1959/1821,
  39670. bottom: 31/1990
  39671. }
  39672. },
  39673. hand: {
  39674. height: math.unit(58.4, "feet"),
  39675. name: "Hand",
  39676. image: {
  39677. source: "./media/characters/zorkaiju/hand.svg"
  39678. }
  39679. },
  39680. handExtended: {
  39681. height: math.unit(61.4, "feet"),
  39682. name: "Hand (Extended)",
  39683. image: {
  39684. source: "./media/characters/zorkaiju/hand-extended.svg"
  39685. }
  39686. },
  39687. foot: {
  39688. height: math.unit(95, "feet"),
  39689. name: "Foot",
  39690. image: {
  39691. source: "./media/characters/zorkaiju/foot.svg"
  39692. }
  39693. },
  39694. leftArm: {
  39695. height: math.unit(59, "feet"),
  39696. name: "Left Arm",
  39697. image: {
  39698. source: "./media/characters/zorkaiju/left-arm.svg"
  39699. }
  39700. },
  39701. rightArm: {
  39702. height: math.unit(59, "feet"),
  39703. name: "Right Arm",
  39704. image: {
  39705. source: "./media/characters/zorkaiju/right-arm.svg"
  39706. }
  39707. },
  39708. tail: {
  39709. height: math.unit(104, "feet"),
  39710. name: "Tail",
  39711. image: {
  39712. source: "./media/characters/zorkaiju/tail.svg"
  39713. }
  39714. },
  39715. tailExtended: {
  39716. height: math.unit(104, "feet"),
  39717. name: "Tail (Extended)",
  39718. image: {
  39719. source: "./media/characters/zorkaiju/tail-extended.svg"
  39720. }
  39721. },
  39722. tailBottom: {
  39723. height: math.unit(104, "feet"),
  39724. name: "Tail Bottom",
  39725. image: {
  39726. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39727. }
  39728. },
  39729. crystal: {
  39730. height: math.unit(27.54, "feet"),
  39731. name: "Crystal",
  39732. image: {
  39733. source: "./media/characters/zorkaiju/crystal.svg"
  39734. }
  39735. },
  39736. },
  39737. [
  39738. {
  39739. name: "Kaiju",
  39740. height: math.unit(325, "feet"),
  39741. default: true
  39742. },
  39743. ]
  39744. ))
  39745. characterMakers.push(() => makeCharacter(
  39746. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39747. {
  39748. front: {
  39749. height: math.unit(6 + 1/12, "feet"),
  39750. weight: math.unit(115, "lb"),
  39751. name: "Front",
  39752. image: {
  39753. source: "./media/characters/bailey-belfry/front.svg",
  39754. extra: 1240/1121,
  39755. bottom: 101/1341
  39756. }
  39757. },
  39758. },
  39759. [
  39760. {
  39761. name: "Normal",
  39762. height: math.unit(6 + 1/12, "feet"),
  39763. default: true
  39764. },
  39765. ]
  39766. ))
  39767. characterMakers.push(() => makeCharacter(
  39768. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39769. {
  39770. side: {
  39771. height: math.unit(4, "meters"),
  39772. weight: math.unit(250, "kg"),
  39773. name: "Side",
  39774. image: {
  39775. source: "./media/characters/blacky/side.svg",
  39776. extra: 1027/919,
  39777. bottom: 43/1070
  39778. }
  39779. },
  39780. maw: {
  39781. height: math.unit(1, "meters"),
  39782. name: "Maw",
  39783. image: {
  39784. source: "./media/characters/blacky/maw.svg"
  39785. }
  39786. },
  39787. paw: {
  39788. height: math.unit(1, "meters"),
  39789. name: "Paw",
  39790. image: {
  39791. source: "./media/characters/blacky/paw.svg"
  39792. }
  39793. },
  39794. },
  39795. [
  39796. {
  39797. name: "Normal",
  39798. height: math.unit(4, "meters"),
  39799. default: true
  39800. },
  39801. ]
  39802. ))
  39803. characterMakers.push(() => makeCharacter(
  39804. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39805. {
  39806. front: {
  39807. height: math.unit(170, "cm"),
  39808. weight: math.unit(66, "kg"),
  39809. name: "Front",
  39810. image: {
  39811. source: "./media/characters/thux-ei/front.svg",
  39812. extra: 1109/1011,
  39813. bottom: 8/1117
  39814. }
  39815. },
  39816. },
  39817. [
  39818. {
  39819. name: "Normal",
  39820. height: math.unit(170, "cm"),
  39821. default: true
  39822. },
  39823. ]
  39824. ))
  39825. characterMakers.push(() => makeCharacter(
  39826. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39827. {
  39828. front: {
  39829. height: math.unit(5, "feet"),
  39830. weight: math.unit(120, "lb"),
  39831. name: "Front",
  39832. image: {
  39833. source: "./media/characters/roxanne-voltaire/front.svg",
  39834. extra: 1901/1779,
  39835. bottom: 53/1954
  39836. }
  39837. },
  39838. },
  39839. [
  39840. {
  39841. name: "Normal",
  39842. height: math.unit(5, "feet"),
  39843. default: true
  39844. },
  39845. {
  39846. name: "Giant",
  39847. height: math.unit(50, "feet")
  39848. },
  39849. {
  39850. name: "Titan",
  39851. height: math.unit(500, "feet")
  39852. },
  39853. {
  39854. name: "Macro",
  39855. height: math.unit(5000, "feet")
  39856. },
  39857. {
  39858. name: "Megamacro",
  39859. height: math.unit(50000, "feet")
  39860. },
  39861. {
  39862. name: "Gigamacro",
  39863. height: math.unit(500000, "feet")
  39864. },
  39865. {
  39866. name: "Teramacro",
  39867. height: math.unit(5e6, "feet")
  39868. },
  39869. ]
  39870. ))
  39871. characterMakers.push(() => makeCharacter(
  39872. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39873. {
  39874. front: {
  39875. height: math.unit(6 + 2/12, "feet"),
  39876. name: "Front",
  39877. image: {
  39878. source: "./media/characters/squeaks/front.svg",
  39879. extra: 1823/1768,
  39880. bottom: 138/1961
  39881. }
  39882. },
  39883. },
  39884. [
  39885. {
  39886. name: "Micro",
  39887. height: math.unit(0.5, "inches")
  39888. },
  39889. {
  39890. name: "Normal",
  39891. height: math.unit(6 + 2/12, "feet"),
  39892. default: true
  39893. },
  39894. {
  39895. name: "Macro",
  39896. height: math.unit(600, "feet")
  39897. },
  39898. ]
  39899. ))
  39900. characterMakers.push(() => makeCharacter(
  39901. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39902. {
  39903. front: {
  39904. height: math.unit(1.72, "meters"),
  39905. name: "Front",
  39906. image: {
  39907. source: "./media/characters/archinger/front.svg",
  39908. extra: 1861/1675,
  39909. bottom: 125/1986
  39910. }
  39911. },
  39912. back: {
  39913. height: math.unit(1.72, "meters"),
  39914. name: "Back",
  39915. image: {
  39916. source: "./media/characters/archinger/back.svg",
  39917. extra: 1844/1701,
  39918. bottom: 104/1948
  39919. }
  39920. },
  39921. cock: {
  39922. height: math.unit(0.59, "feet"),
  39923. name: "Cock",
  39924. image: {
  39925. source: "./media/characters/archinger/cock.svg"
  39926. }
  39927. },
  39928. },
  39929. [
  39930. {
  39931. name: "Normal",
  39932. height: math.unit(1.72, "meters"),
  39933. default: true
  39934. },
  39935. {
  39936. name: "Macro",
  39937. height: math.unit(84, "meters")
  39938. },
  39939. {
  39940. name: "Macro+",
  39941. height: math.unit(112, "meters")
  39942. },
  39943. {
  39944. name: "Macro++",
  39945. height: math.unit(960, "meters")
  39946. },
  39947. {
  39948. name: "Macro+++",
  39949. height: math.unit(4, "km")
  39950. },
  39951. {
  39952. name: "Macro++++",
  39953. height: math.unit(48, "km")
  39954. },
  39955. {
  39956. name: "Macro+++++",
  39957. height: math.unit(4500, "km")
  39958. },
  39959. ]
  39960. ))
  39961. characterMakers.push(() => makeCharacter(
  39962. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39963. {
  39964. front: {
  39965. height: math.unit(5 + 5/12, "feet"),
  39966. name: "Front",
  39967. image: {
  39968. source: "./media/characters/alsnapz/front.svg",
  39969. extra: 1157/1065,
  39970. bottom: 42/1199
  39971. }
  39972. },
  39973. },
  39974. [
  39975. {
  39976. name: "Normal",
  39977. height: math.unit(5 + 5/12, "feet"),
  39978. default: true
  39979. },
  39980. ]
  39981. ))
  39982. characterMakers.push(() => makeCharacter(
  39983. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39984. {
  39985. side: {
  39986. height: math.unit(3.2, "earths"),
  39987. name: "Side",
  39988. image: {
  39989. source: "./media/characters/mag/side.svg",
  39990. extra: 1331/1008,
  39991. bottom: 52/1383
  39992. }
  39993. },
  39994. wing: {
  39995. height: math.unit(1.94, "earths"),
  39996. name: "Wing",
  39997. image: {
  39998. source: "./media/characters/mag/wing.svg"
  39999. }
  40000. },
  40001. dick: {
  40002. height: math.unit(1.8, "earths"),
  40003. name: "Dick",
  40004. image: {
  40005. source: "./media/characters/mag/dick.svg"
  40006. }
  40007. },
  40008. ass: {
  40009. height: math.unit(1.33, "earths"),
  40010. name: "Ass",
  40011. image: {
  40012. source: "./media/characters/mag/ass.svg"
  40013. }
  40014. },
  40015. head: {
  40016. height: math.unit(1.1, "earths"),
  40017. name: "Head",
  40018. image: {
  40019. source: "./media/characters/mag/head.svg"
  40020. }
  40021. },
  40022. maw: {
  40023. height: math.unit(1.62, "earths"),
  40024. name: "Maw",
  40025. image: {
  40026. source: "./media/characters/mag/maw.svg"
  40027. }
  40028. },
  40029. },
  40030. [
  40031. {
  40032. name: "Small",
  40033. height: math.unit(162, "feet")
  40034. },
  40035. {
  40036. name: "Normal",
  40037. height: math.unit(3.2, "earths"),
  40038. default: true
  40039. },
  40040. ]
  40041. ))
  40042. characterMakers.push(() => makeCharacter(
  40043. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40044. {
  40045. front: {
  40046. height: math.unit(512, "feet"),
  40047. weight: math.unit(63509, "tonnes"),
  40048. name: "Front",
  40049. image: {
  40050. source: "./media/characters/vorrel-harroc/front.svg",
  40051. extra: 1075/1063,
  40052. bottom: 62/1137
  40053. }
  40054. },
  40055. },
  40056. [
  40057. {
  40058. name: "Normal",
  40059. height: math.unit(10, "feet")
  40060. },
  40061. {
  40062. name: "Macro",
  40063. height: math.unit(512, "feet"),
  40064. default: true
  40065. },
  40066. {
  40067. name: "Megamacro",
  40068. height: math.unit(256, "miles")
  40069. },
  40070. {
  40071. name: "Gigamacro",
  40072. height: math.unit(4096, "miles")
  40073. },
  40074. ]
  40075. ))
  40076. characterMakers.push(() => makeCharacter(
  40077. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40078. {
  40079. side: {
  40080. height: math.unit(50, "feet"),
  40081. name: "Side",
  40082. image: {
  40083. source: "./media/characters/froimar/side.svg",
  40084. extra: 855/638,
  40085. bottom: 99/954
  40086. }
  40087. },
  40088. },
  40089. [
  40090. {
  40091. name: "Macro",
  40092. height: math.unit(50, "feet"),
  40093. default: true
  40094. },
  40095. ]
  40096. ))
  40097. characterMakers.push(() => makeCharacter(
  40098. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40099. {
  40100. front: {
  40101. height: math.unit(210, "miles"),
  40102. name: "Front",
  40103. image: {
  40104. source: "./media/characters/timothy/front.svg",
  40105. extra: 1007/943,
  40106. bottom: 62/1069
  40107. }
  40108. },
  40109. frontSkirt: {
  40110. height: math.unit(210, "miles"),
  40111. name: "Front (Skirt)",
  40112. image: {
  40113. source: "./media/characters/timothy/front-skirt.svg",
  40114. extra: 1007/943,
  40115. bottom: 62/1069
  40116. }
  40117. },
  40118. frontCoat: {
  40119. height: math.unit(210, "miles"),
  40120. name: "Front (Coat)",
  40121. image: {
  40122. source: "./media/characters/timothy/front-coat.svg",
  40123. extra: 1007/943,
  40124. bottom: 62/1069
  40125. }
  40126. },
  40127. },
  40128. [
  40129. {
  40130. name: "Macro",
  40131. height: math.unit(210, "miles"),
  40132. default: true
  40133. },
  40134. {
  40135. name: "Megamacro",
  40136. height: math.unit(210000, "miles")
  40137. },
  40138. ]
  40139. ))
  40140. characterMakers.push(() => makeCharacter(
  40141. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40142. {
  40143. front: {
  40144. height: math.unit(188, "feet"),
  40145. name: "Front",
  40146. image: {
  40147. source: "./media/characters/pyotr/front.svg",
  40148. extra: 1912/1826,
  40149. bottom: 18/1930
  40150. }
  40151. },
  40152. },
  40153. [
  40154. {
  40155. name: "Macro",
  40156. height: math.unit(188, "feet"),
  40157. default: true
  40158. },
  40159. {
  40160. name: "Megamacro",
  40161. height: math.unit(8, "miles")
  40162. },
  40163. ]
  40164. ))
  40165. characterMakers.push(() => makeCharacter(
  40166. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40167. {
  40168. side: {
  40169. height: math.unit(10, "feet"),
  40170. weight: math.unit(4500, "lb"),
  40171. name: "Side",
  40172. image: {
  40173. source: "./media/characters/ackart/side.svg",
  40174. extra: 1776/1668,
  40175. bottom: 116/1892
  40176. }
  40177. },
  40178. },
  40179. [
  40180. {
  40181. name: "Normal",
  40182. height: math.unit(10, "feet"),
  40183. default: true
  40184. },
  40185. ]
  40186. ))
  40187. characterMakers.push(() => makeCharacter(
  40188. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40189. {
  40190. side: {
  40191. height: math.unit(21, "feet"),
  40192. name: "Side",
  40193. image: {
  40194. source: "./media/characters/nolow/side.svg",
  40195. extra: 1484/1434,
  40196. bottom: 85/1569
  40197. }
  40198. },
  40199. sideErect: {
  40200. height: math.unit(21, "feet"),
  40201. name: "Side-erect",
  40202. image: {
  40203. source: "./media/characters/nolow/side-erect.svg",
  40204. extra: 1484/1434,
  40205. bottom: 85/1569
  40206. }
  40207. },
  40208. },
  40209. [
  40210. {
  40211. name: "Regular",
  40212. height: math.unit(12, "feet")
  40213. },
  40214. {
  40215. name: "Big Chee",
  40216. height: math.unit(21, "feet"),
  40217. default: true
  40218. },
  40219. ]
  40220. ))
  40221. characterMakers.push(() => makeCharacter(
  40222. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40223. {
  40224. front: {
  40225. height: math.unit(7, "feet"),
  40226. weight: math.unit(250, "lb"),
  40227. name: "Front",
  40228. image: {
  40229. source: "./media/characters/nines/front.svg",
  40230. extra: 1741/1607,
  40231. bottom: 41/1782
  40232. }
  40233. },
  40234. side: {
  40235. height: math.unit(7, "feet"),
  40236. weight: math.unit(250, "lb"),
  40237. name: "Side",
  40238. image: {
  40239. source: "./media/characters/nines/side.svg",
  40240. extra: 1854/1735,
  40241. bottom: 93/1947
  40242. }
  40243. },
  40244. back: {
  40245. height: math.unit(7, "feet"),
  40246. weight: math.unit(250, "lb"),
  40247. name: "Back",
  40248. image: {
  40249. source: "./media/characters/nines/back.svg",
  40250. extra: 1748/1615,
  40251. bottom: 20/1768
  40252. }
  40253. },
  40254. },
  40255. [
  40256. {
  40257. name: "Megamacro",
  40258. height: math.unit(99, "km"),
  40259. default: true
  40260. },
  40261. ]
  40262. ))
  40263. characterMakers.push(() => makeCharacter(
  40264. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40265. {
  40266. front: {
  40267. height: math.unit(5 + 10/12, "feet"),
  40268. weight: math.unit(210, "lb"),
  40269. name: "Front",
  40270. image: {
  40271. source: "./media/characters/zenith/front.svg",
  40272. extra: 1531/1452,
  40273. bottom: 198/1729
  40274. }
  40275. },
  40276. back: {
  40277. height: math.unit(5 + 10/12, "feet"),
  40278. weight: math.unit(210, "lb"),
  40279. name: "Back",
  40280. image: {
  40281. source: "./media/characters/zenith/back.svg",
  40282. extra: 1571/1487,
  40283. bottom: 75/1646
  40284. }
  40285. },
  40286. },
  40287. [
  40288. {
  40289. name: "Normal",
  40290. height: math.unit(5 + 10/12, "feet"),
  40291. default: true
  40292. }
  40293. ]
  40294. ))
  40295. characterMakers.push(() => makeCharacter(
  40296. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40297. {
  40298. front: {
  40299. height: math.unit(4, "feet"),
  40300. weight: math.unit(60, "lb"),
  40301. name: "Front",
  40302. image: {
  40303. source: "./media/characters/jasper/front.svg",
  40304. extra: 1450/1379,
  40305. bottom: 19/1469
  40306. }
  40307. },
  40308. },
  40309. [
  40310. {
  40311. name: "Normal",
  40312. height: math.unit(4, "feet"),
  40313. default: true
  40314. },
  40315. ]
  40316. ))
  40317. characterMakers.push(() => makeCharacter(
  40318. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40319. {
  40320. front: {
  40321. height: math.unit(6 + 5/12, "feet"),
  40322. weight: math.unit(290, "lb"),
  40323. name: "Front",
  40324. image: {
  40325. source: "./media/characters/tiberius-thyben/front.svg",
  40326. extra: 757/739,
  40327. bottom: 39/796
  40328. }
  40329. },
  40330. },
  40331. [
  40332. {
  40333. name: "Micro",
  40334. height: math.unit(1.5, "inches")
  40335. },
  40336. {
  40337. name: "Normal",
  40338. height: math.unit(6 + 5/12, "feet"),
  40339. default: true
  40340. },
  40341. {
  40342. name: "Macro",
  40343. height: math.unit(300, "feet")
  40344. },
  40345. ]
  40346. ))
  40347. characterMakers.push(() => makeCharacter(
  40348. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40349. {
  40350. front: {
  40351. height: math.unit(5 + 6/12, "feet"),
  40352. weight: math.unit(60, "kg"),
  40353. name: "Front",
  40354. image: {
  40355. source: "./media/characters/sabre/front.svg",
  40356. extra: 738/671,
  40357. bottom: 27/765
  40358. }
  40359. },
  40360. },
  40361. [
  40362. {
  40363. name: "Teeny",
  40364. height: math.unit(2, "inches")
  40365. },
  40366. {
  40367. name: "Smol",
  40368. height: math.unit(8, "inches")
  40369. },
  40370. {
  40371. name: "Normal",
  40372. height: math.unit(5 + 6/12, "feet"),
  40373. default: true
  40374. },
  40375. {
  40376. name: "Mini-Macro",
  40377. height: math.unit(15, "feet")
  40378. },
  40379. {
  40380. name: "Macro",
  40381. height: math.unit(50, "feet")
  40382. },
  40383. ]
  40384. ))
  40385. characterMakers.push(() => makeCharacter(
  40386. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40387. {
  40388. front: {
  40389. height: math.unit(6 + 4/12, "feet"),
  40390. weight: math.unit(170, "lb"),
  40391. name: "Front",
  40392. image: {
  40393. source: "./media/characters/charlie/front.svg",
  40394. extra: 1348/1228,
  40395. bottom: 15/1363
  40396. }
  40397. },
  40398. },
  40399. [
  40400. {
  40401. name: "Macro",
  40402. height: math.unit(1700, "meters"),
  40403. default: true
  40404. },
  40405. {
  40406. name: "MegaMacro",
  40407. height: math.unit(20400, "meters")
  40408. },
  40409. ]
  40410. ))
  40411. characterMakers.push(() => makeCharacter(
  40412. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40413. {
  40414. front: {
  40415. height: math.unit(6 + 3/12, "feet"),
  40416. weight: math.unit(185, "lb"),
  40417. name: "Front",
  40418. image: {
  40419. source: "./media/characters/susan-grant/front.svg",
  40420. extra: 1351/1327,
  40421. bottom: 26/1377
  40422. }
  40423. },
  40424. },
  40425. [
  40426. {
  40427. name: "Normal",
  40428. height: math.unit(6 + 3/12, "feet"),
  40429. default: true
  40430. },
  40431. {
  40432. name: "Macro",
  40433. height: math.unit(225, "feet")
  40434. },
  40435. {
  40436. name: "Macro+",
  40437. height: math.unit(900, "feet")
  40438. },
  40439. {
  40440. name: "MegaMacro",
  40441. height: math.unit(14400, "feet")
  40442. },
  40443. ]
  40444. ))
  40445. characterMakers.push(() => makeCharacter(
  40446. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40447. {
  40448. front: {
  40449. height: math.unit(5 + 4/12, "feet"),
  40450. weight: math.unit(110, "lb"),
  40451. name: "Front",
  40452. image: {
  40453. source: "./media/characters/axel-isanov/front.svg",
  40454. extra: 1096/1065,
  40455. bottom: 13/1109
  40456. }
  40457. },
  40458. },
  40459. [
  40460. {
  40461. name: "Normal",
  40462. height: math.unit(5 + 4/12, "feet"),
  40463. default: true
  40464. },
  40465. ]
  40466. ))
  40467. characterMakers.push(() => makeCharacter(
  40468. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40469. {
  40470. front: {
  40471. height: math.unit(9, "feet"),
  40472. weight: math.unit(467, "lb"),
  40473. name: "Front",
  40474. image: {
  40475. source: "./media/characters/necahual/front.svg",
  40476. extra: 920/873,
  40477. bottom: 26/946
  40478. }
  40479. },
  40480. back: {
  40481. height: math.unit(9, "feet"),
  40482. weight: math.unit(467, "lb"),
  40483. name: "Back",
  40484. image: {
  40485. source: "./media/characters/necahual/back.svg",
  40486. extra: 930/884,
  40487. bottom: 16/946
  40488. }
  40489. },
  40490. frontUnderwear: {
  40491. height: math.unit(9, "feet"),
  40492. weight: math.unit(467, "lb"),
  40493. name: "Front (Underwear)",
  40494. image: {
  40495. source: "./media/characters/necahual/front-underwear.svg",
  40496. extra: 920/873,
  40497. bottom: 26/946
  40498. }
  40499. },
  40500. frontDressed: {
  40501. height: math.unit(9, "feet"),
  40502. weight: math.unit(467, "lb"),
  40503. name: "Front (Dressed)",
  40504. image: {
  40505. source: "./media/characters/necahual/front-dressed.svg",
  40506. extra: 920/873,
  40507. bottom: 26/946
  40508. }
  40509. },
  40510. },
  40511. [
  40512. {
  40513. name: "Comprsesed",
  40514. height: math.unit(9, "feet")
  40515. },
  40516. {
  40517. name: "Natural",
  40518. height: math.unit(15, "feet"),
  40519. default: true
  40520. },
  40521. {
  40522. name: "Boosted",
  40523. height: math.unit(50, "feet")
  40524. },
  40525. {
  40526. name: "Boosted+",
  40527. height: math.unit(150, "feet")
  40528. },
  40529. {
  40530. name: "Max",
  40531. height: math.unit(500, "feet")
  40532. },
  40533. ]
  40534. ))
  40535. characterMakers.push(() => makeCharacter(
  40536. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40537. {
  40538. front: {
  40539. height: math.unit(22 + 1/12, "feet"),
  40540. weight: math.unit(3200, "lb"),
  40541. name: "Front",
  40542. image: {
  40543. source: "./media/characters/theo-acacia/front.svg",
  40544. extra: 1796/1741,
  40545. bottom: 83/1879
  40546. }
  40547. },
  40548. frontUnderwear: {
  40549. height: math.unit(22 + 1/12, "feet"),
  40550. weight: math.unit(3200, "lb"),
  40551. name: "Front (Underwear)",
  40552. image: {
  40553. source: "./media/characters/theo-acacia/front-underwear.svg",
  40554. extra: 1796/1741,
  40555. bottom: 83/1879
  40556. }
  40557. },
  40558. frontNude: {
  40559. height: math.unit(22 + 1/12, "feet"),
  40560. weight: math.unit(3200, "lb"),
  40561. name: "Front (Nude)",
  40562. image: {
  40563. source: "./media/characters/theo-acacia/front-nude.svg",
  40564. extra: 1796/1741,
  40565. bottom: 83/1879
  40566. }
  40567. },
  40568. },
  40569. [
  40570. {
  40571. name: "Normal",
  40572. height: math.unit(22 + 1/12, "feet"),
  40573. default: true
  40574. },
  40575. ]
  40576. ))
  40577. characterMakers.push(() => makeCharacter(
  40578. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40579. {
  40580. front: {
  40581. height: math.unit(20, "feet"),
  40582. name: "Front",
  40583. image: {
  40584. source: "./media/characters/astra/front.svg",
  40585. extra: 1850/1714,
  40586. bottom: 106/1956
  40587. }
  40588. },
  40589. frontUndressed: {
  40590. height: math.unit(20, "feet"),
  40591. name: "Front (Undressed)",
  40592. image: {
  40593. source: "./media/characters/astra/front-undressed.svg",
  40594. extra: 1926/1749,
  40595. bottom: 0/1926
  40596. }
  40597. },
  40598. hand: {
  40599. height: math.unit(1.53, "feet"),
  40600. name: "Hand",
  40601. image: {
  40602. source: "./media/characters/astra/hand.svg"
  40603. }
  40604. },
  40605. paw: {
  40606. height: math.unit(1.53, "feet"),
  40607. name: "Paw",
  40608. image: {
  40609. source: "./media/characters/astra/paw.svg"
  40610. }
  40611. },
  40612. },
  40613. [
  40614. {
  40615. name: "Smallest",
  40616. height: math.unit(20, "feet")
  40617. },
  40618. {
  40619. name: "Normal",
  40620. height: math.unit(1e9, "miles"),
  40621. default: true
  40622. },
  40623. {
  40624. name: "Larger",
  40625. height: math.unit(5, "multiverses")
  40626. },
  40627. {
  40628. name: "Largest",
  40629. height: math.unit(1e9, "multiverses")
  40630. },
  40631. ]
  40632. ))
  40633. characterMakers.push(() => makeCharacter(
  40634. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40635. {
  40636. front: {
  40637. height: math.unit(8, "feet"),
  40638. name: "Front",
  40639. image: {
  40640. source: "./media/characters/breanna/front.svg",
  40641. extra: 1912/1632,
  40642. bottom: 33/1945
  40643. }
  40644. },
  40645. },
  40646. [
  40647. {
  40648. name: "Smallest",
  40649. height: math.unit(8, "feet")
  40650. },
  40651. {
  40652. name: "Normal",
  40653. height: math.unit(1, "mile"),
  40654. default: true
  40655. },
  40656. {
  40657. name: "Maximum",
  40658. height: math.unit(1500000000000, "lightyears")
  40659. },
  40660. ]
  40661. ))
  40662. characterMakers.push(() => makeCharacter(
  40663. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40664. {
  40665. front: {
  40666. height: math.unit(5 + 11/12, "feet"),
  40667. weight: math.unit(155, "lb"),
  40668. name: "Front",
  40669. image: {
  40670. source: "./media/characters/cai/front.svg",
  40671. extra: 1823/1702,
  40672. bottom: 32/1855
  40673. }
  40674. },
  40675. back: {
  40676. height: math.unit(5 + 11/12, "feet"),
  40677. weight: math.unit(155, "lb"),
  40678. name: "Back",
  40679. image: {
  40680. source: "./media/characters/cai/back.svg",
  40681. extra: 1809/1708,
  40682. bottom: 31/1840
  40683. }
  40684. },
  40685. },
  40686. [
  40687. {
  40688. name: "Normal",
  40689. height: math.unit(5 + 11/12, "feet"),
  40690. default: true
  40691. },
  40692. {
  40693. name: "Big",
  40694. height: math.unit(15, "feet")
  40695. },
  40696. {
  40697. name: "Macro",
  40698. height: math.unit(200, "feet")
  40699. },
  40700. ]
  40701. ))
  40702. characterMakers.push(() => makeCharacter(
  40703. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40704. {
  40705. front: {
  40706. height: math.unit(5 + 6/12, "feet"),
  40707. weight: math.unit(160, "lb"),
  40708. name: "Front",
  40709. image: {
  40710. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40711. extra: 1227/1174,
  40712. bottom: 37/1264
  40713. }
  40714. },
  40715. },
  40716. [
  40717. {
  40718. name: "Macro",
  40719. height: math.unit(444, "meters"),
  40720. default: true
  40721. },
  40722. ]
  40723. ))
  40724. characterMakers.push(() => makeCharacter(
  40725. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40726. {
  40727. front: {
  40728. height: math.unit(18 + 7/12, "feet"),
  40729. name: "Front",
  40730. image: {
  40731. source: "./media/characters/rex/front.svg",
  40732. extra: 1941/1807,
  40733. bottom: 66/2007
  40734. }
  40735. },
  40736. back: {
  40737. height: math.unit(18 + 7/12, "feet"),
  40738. name: "Back",
  40739. image: {
  40740. source: "./media/characters/rex/back.svg",
  40741. extra: 1937/1822,
  40742. bottom: 42/1979
  40743. }
  40744. },
  40745. boot: {
  40746. height: math.unit(3.45, "feet"),
  40747. name: "Boot",
  40748. image: {
  40749. source: "./media/characters/rex/boot.svg"
  40750. }
  40751. },
  40752. paw: {
  40753. height: math.unit(4.17, "feet"),
  40754. name: "Paw",
  40755. image: {
  40756. source: "./media/characters/rex/paw.svg"
  40757. }
  40758. },
  40759. head: {
  40760. height: math.unit(6.728, "feet"),
  40761. name: "Head",
  40762. image: {
  40763. source: "./media/characters/rex/head.svg"
  40764. }
  40765. },
  40766. },
  40767. [
  40768. {
  40769. name: "Nano",
  40770. height: math.unit(18 + 7/12, "feet")
  40771. },
  40772. {
  40773. name: "Micro",
  40774. height: math.unit(1.5, "megameters")
  40775. },
  40776. {
  40777. name: "Normal",
  40778. height: math.unit(440, "megameters"),
  40779. default: true
  40780. },
  40781. {
  40782. name: "Macro",
  40783. height: math.unit(2.5, "gigameters")
  40784. },
  40785. {
  40786. name: "Gigamacro",
  40787. height: math.unit(2, "galaxies")
  40788. },
  40789. ]
  40790. ))
  40791. characterMakers.push(() => makeCharacter(
  40792. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40793. {
  40794. side: {
  40795. height: math.unit(32, "feet"),
  40796. weight: math.unit(250000, "lb"),
  40797. name: "Side",
  40798. image: {
  40799. source: "./media/characters/silverwing/side.svg",
  40800. extra: 1100/1019,
  40801. bottom: 204/1304
  40802. }
  40803. },
  40804. },
  40805. [
  40806. {
  40807. name: "Normal",
  40808. height: math.unit(32, "feet"),
  40809. default: true
  40810. },
  40811. ]
  40812. ))
  40813. characterMakers.push(() => makeCharacter(
  40814. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40815. {
  40816. front: {
  40817. height: math.unit(6 + 6/12, "feet"),
  40818. weight: math.unit(350, "lb"),
  40819. name: "Front",
  40820. image: {
  40821. source: "./media/characters/tristan-hawthorne/front.svg",
  40822. extra: 1159/1124,
  40823. bottom: 37/1196
  40824. }
  40825. },
  40826. },
  40827. [
  40828. {
  40829. name: "Normal",
  40830. height: math.unit(6 + 6/12, "feet"),
  40831. default: true
  40832. },
  40833. ]
  40834. ))
  40835. characterMakers.push(() => makeCharacter(
  40836. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40837. {
  40838. front: {
  40839. height: math.unit(5 + 11/12, "feet"),
  40840. weight: math.unit(190, "lb"),
  40841. name: "Front",
  40842. image: {
  40843. source: "./media/characters/mizu/front.svg",
  40844. extra: 1988/1788,
  40845. bottom: 14/2002
  40846. }
  40847. },
  40848. },
  40849. [
  40850. {
  40851. name: "Normal",
  40852. height: math.unit(5 + 11/12, "feet"),
  40853. default: true
  40854. },
  40855. ]
  40856. ))
  40857. characterMakers.push(() => makeCharacter(
  40858. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40859. {
  40860. front: {
  40861. height: math.unit(6, "feet"),
  40862. name: "Front",
  40863. image: {
  40864. source: "./media/characters/moonlight-rose-terra/front.svg",
  40865. extra: 1434/1252,
  40866. bottom: 48/1482
  40867. }
  40868. },
  40869. },
  40870. [
  40871. {
  40872. name: "TRAPPIST-1D",
  40873. height: math.unit(4992*2, "km")
  40874. },
  40875. {
  40876. name: "Earth",
  40877. height: math.unit(6367*2, "km"),
  40878. default: true
  40879. },
  40880. {
  40881. name: "Kepler-22b",
  40882. height: math.unit(15282*2, "km")
  40883. },
  40884. ]
  40885. ))
  40886. characterMakers.push(() => makeCharacter(
  40887. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40888. {
  40889. front: {
  40890. height: math.unit(6, "feet"),
  40891. name: "Front",
  40892. image: {
  40893. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40894. extra: 1851/1712,
  40895. bottom: 0/1851
  40896. }
  40897. },
  40898. },
  40899. [
  40900. {
  40901. name: "Enceladus",
  40902. height: math.unit(513*2, "km")
  40903. },
  40904. {
  40905. name: "Europe",
  40906. height: math.unit(1560*2, "km")
  40907. },
  40908. {
  40909. name: "Neptune",
  40910. height: math.unit(24622*2, "km"),
  40911. default: true
  40912. },
  40913. {
  40914. name: "CoRoT-9b",
  40915. height: math.unit(75067*2, "km")
  40916. },
  40917. ]
  40918. ))
  40919. characterMakers.push(() => makeCharacter(
  40920. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40921. {
  40922. front: {
  40923. height: math.unit(6, "feet"),
  40924. name: "Front",
  40925. image: {
  40926. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40927. extra: 1367/1286,
  40928. bottom: 55/1422
  40929. }
  40930. },
  40931. },
  40932. [
  40933. {
  40934. name: "Saturn",
  40935. height: math.unit(58232*2, "km")
  40936. },
  40937. {
  40938. name: "Jupiter",
  40939. height: math.unit(69911*2, "km"),
  40940. default: true
  40941. },
  40942. {
  40943. name: "HD 100546 b",
  40944. height: math.unit(482938, "km")
  40945. },
  40946. ]
  40947. ))
  40948. characterMakers.push(() => makeCharacter(
  40949. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40950. {
  40951. front: {
  40952. height: math.unit(1.7, "feet"),
  40953. weight: math.unit(50, "lb"),
  40954. name: "Front",
  40955. image: {
  40956. source: "./media/characters/dechroma/front.svg",
  40957. extra: 1095/859,
  40958. bottom: 64/1159
  40959. }
  40960. },
  40961. },
  40962. [
  40963. {
  40964. name: "Normal",
  40965. height: math.unit(1.7, "feet"),
  40966. default: true
  40967. },
  40968. ]
  40969. ))
  40970. characterMakers.push(() => makeCharacter(
  40971. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40972. {
  40973. side: {
  40974. height: math.unit(30, "feet"),
  40975. name: "Side",
  40976. image: {
  40977. source: "./media/characters/veluren-thanazel/side.svg",
  40978. extra: 1611/633,
  40979. bottom: 118/1729
  40980. }
  40981. },
  40982. front: {
  40983. height: math.unit(30, "feet"),
  40984. name: "Front",
  40985. image: {
  40986. source: "./media/characters/veluren-thanazel/front.svg",
  40987. extra: 1486/636,
  40988. bottom: 238/1724
  40989. }
  40990. },
  40991. head: {
  40992. height: math.unit(21.4, "feet"),
  40993. name: "Head",
  40994. image: {
  40995. source: "./media/characters/veluren-thanazel/head.svg"
  40996. }
  40997. },
  40998. genitals: {
  40999. height: math.unit(19.4, "feet"),
  41000. name: "Genitals",
  41001. image: {
  41002. source: "./media/characters/veluren-thanazel/genitals.svg"
  41003. }
  41004. },
  41005. },
  41006. [
  41007. {
  41008. name: "Social",
  41009. height: math.unit(6, "feet")
  41010. },
  41011. {
  41012. name: "Play",
  41013. height: math.unit(12, "feet")
  41014. },
  41015. {
  41016. name: "True",
  41017. height: math.unit(30, "feet"),
  41018. default: true
  41019. },
  41020. ]
  41021. ))
  41022. characterMakers.push(() => makeCharacter(
  41023. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41024. {
  41025. front: {
  41026. height: math.unit(7 + 6/12, "feet"),
  41027. weight: math.unit(500, "kg"),
  41028. name: "Front",
  41029. image: {
  41030. source: "./media/characters/arcturas/front.svg",
  41031. extra: 1700/1500,
  41032. bottom: 145/1845
  41033. }
  41034. },
  41035. },
  41036. [
  41037. {
  41038. name: "Normal",
  41039. height: math.unit(7 + 6/12, "feet"),
  41040. default: true
  41041. },
  41042. ]
  41043. ))
  41044. characterMakers.push(() => makeCharacter(
  41045. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41046. {
  41047. side: {
  41048. height: math.unit(6, "feet"),
  41049. weight: math.unit(2, "tons"),
  41050. name: "Side",
  41051. image: {
  41052. source: "./media/characters/vitaen/side.svg",
  41053. extra: 1157/617,
  41054. bottom: 122/1279
  41055. }
  41056. },
  41057. },
  41058. [
  41059. {
  41060. name: "Normal",
  41061. height: math.unit(6, "feet"),
  41062. default: true
  41063. },
  41064. ]
  41065. ))
  41066. characterMakers.push(() => makeCharacter(
  41067. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41068. {
  41069. front: {
  41070. height: math.unit(19, "feet"),
  41071. name: "Front",
  41072. image: {
  41073. source: "./media/characters/fia-dreamweaver/front.svg",
  41074. extra: 1630/1504,
  41075. bottom: 25/1655
  41076. }
  41077. },
  41078. },
  41079. [
  41080. {
  41081. name: "Normal",
  41082. height: math.unit(19, "feet"),
  41083. default: true
  41084. },
  41085. ]
  41086. ))
  41087. characterMakers.push(() => makeCharacter(
  41088. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41089. {
  41090. front: {
  41091. height: math.unit(5 + 4/12, "feet"),
  41092. name: "Front",
  41093. image: {
  41094. source: "./media/characters/artan/front.svg",
  41095. extra: 1618/1535,
  41096. bottom: 46/1664
  41097. }
  41098. },
  41099. back: {
  41100. height: math.unit(5 + 4/12, "feet"),
  41101. name: "Back",
  41102. image: {
  41103. source: "./media/characters/artan/back.svg",
  41104. extra: 1618/1543,
  41105. bottom: 31/1649
  41106. }
  41107. },
  41108. },
  41109. [
  41110. {
  41111. name: "Normal",
  41112. height: math.unit(5 + 4/12, "feet"),
  41113. default: true
  41114. },
  41115. ]
  41116. ))
  41117. characterMakers.push(() => makeCharacter(
  41118. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41119. {
  41120. side: {
  41121. height: math.unit(182, "cm"),
  41122. weight: math.unit(1000, "lb"),
  41123. name: "Side",
  41124. image: {
  41125. source: "./media/characters/silver-dragon/side.svg",
  41126. extra: 710/287,
  41127. bottom: 88/798
  41128. }
  41129. },
  41130. },
  41131. [
  41132. {
  41133. name: "Normal",
  41134. height: math.unit(182, "cm"),
  41135. default: true
  41136. },
  41137. ]
  41138. ))
  41139. characterMakers.push(() => makeCharacter(
  41140. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41141. {
  41142. side: {
  41143. height: math.unit(6 + 6/12, "feet"),
  41144. weight: math.unit(1.5, "tons"),
  41145. name: "Side",
  41146. image: {
  41147. source: "./media/characters/zephyr/side.svg",
  41148. extra: 1433/586,
  41149. bottom: 109/1542
  41150. }
  41151. },
  41152. },
  41153. [
  41154. {
  41155. name: "Normal",
  41156. height: math.unit(6 + 6/12, "feet"),
  41157. default: true
  41158. },
  41159. ]
  41160. ))
  41161. characterMakers.push(() => makeCharacter(
  41162. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41163. {
  41164. side: {
  41165. height: math.unit(1, "feet"),
  41166. name: "Side",
  41167. image: {
  41168. source: "./media/characters/vixye/side.svg",
  41169. extra: 632/541,
  41170. bottom: 0/632
  41171. }
  41172. },
  41173. },
  41174. [
  41175. {
  41176. name: "Normal",
  41177. height: math.unit(1, "feet"),
  41178. default: true
  41179. },
  41180. {
  41181. name: "True",
  41182. height: math.unit(1e15, "multiverses")
  41183. },
  41184. ]
  41185. ))
  41186. characterMakers.push(() => makeCharacter(
  41187. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41188. {
  41189. front: {
  41190. height: math.unit(8 + 2/12, "feet"),
  41191. weight: math.unit(650, "lb"),
  41192. name: "Front",
  41193. image: {
  41194. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41195. extra: 1174/1137,
  41196. bottom: 82/1256
  41197. }
  41198. },
  41199. back: {
  41200. height: math.unit(8 + 2/12, "feet"),
  41201. weight: math.unit(650, "lb"),
  41202. name: "Back",
  41203. image: {
  41204. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41205. extra: 1204/1157,
  41206. bottom: 46/1250
  41207. }
  41208. },
  41209. },
  41210. [
  41211. {
  41212. name: "Wildform",
  41213. height: math.unit(8 + 2/12, "feet"),
  41214. default: true
  41215. },
  41216. ]
  41217. ))
  41218. characterMakers.push(() => makeCharacter(
  41219. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41220. {
  41221. front: {
  41222. height: math.unit(18, "feet"),
  41223. name: "Front",
  41224. image: {
  41225. source: "./media/characters/cyphin/front.svg",
  41226. extra: 970/886,
  41227. bottom: 42/1012
  41228. }
  41229. },
  41230. back: {
  41231. height: math.unit(18, "feet"),
  41232. name: "Back",
  41233. image: {
  41234. source: "./media/characters/cyphin/back.svg",
  41235. extra: 1009/894,
  41236. bottom: 24/1033
  41237. }
  41238. },
  41239. head: {
  41240. height: math.unit(5.05, "feet"),
  41241. name: "Head",
  41242. image: {
  41243. source: "./media/characters/cyphin/head.svg"
  41244. }
  41245. },
  41246. tailbud: {
  41247. height: math.unit(5, "feet"),
  41248. name: "Tailbud",
  41249. image: {
  41250. source: "./media/characters/cyphin/tailbud.svg"
  41251. }
  41252. },
  41253. },
  41254. [
  41255. ]
  41256. ))
  41257. characterMakers.push(() => makeCharacter(
  41258. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41259. {
  41260. side: {
  41261. height: math.unit(10, "feet"),
  41262. weight: math.unit(6, "tons"),
  41263. name: "Side",
  41264. image: {
  41265. source: "./media/characters/raijin/side.svg",
  41266. extra: 1529/613,
  41267. bottom: 337/1866
  41268. }
  41269. },
  41270. },
  41271. [
  41272. {
  41273. name: "Normal",
  41274. height: math.unit(10, "feet"),
  41275. default: true
  41276. },
  41277. ]
  41278. ))
  41279. characterMakers.push(() => makeCharacter(
  41280. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41281. {
  41282. side: {
  41283. height: math.unit(9, "feet"),
  41284. name: "Side",
  41285. image: {
  41286. source: "./media/characters/nilghais/side.svg",
  41287. extra: 1047/744,
  41288. bottom: 91/1138
  41289. }
  41290. },
  41291. head: {
  41292. height: math.unit(3.14, "feet"),
  41293. name: "Head",
  41294. image: {
  41295. source: "./media/characters/nilghais/head.svg"
  41296. }
  41297. },
  41298. mouth: {
  41299. height: math.unit(4.6, "feet"),
  41300. name: "Mouth",
  41301. image: {
  41302. source: "./media/characters/nilghais/mouth.svg"
  41303. }
  41304. },
  41305. wings: {
  41306. height: math.unit(24, "feet"),
  41307. name: "Wings",
  41308. image: {
  41309. source: "./media/characters/nilghais/wings.svg"
  41310. }
  41311. },
  41312. ass: {
  41313. height: math.unit(6.12, "feet"),
  41314. name: "Ass",
  41315. image: {
  41316. source: "./media/characters/nilghais/ass.svg"
  41317. }
  41318. },
  41319. },
  41320. [
  41321. {
  41322. name: "Normal",
  41323. height: math.unit(9, "feet"),
  41324. default: true
  41325. },
  41326. ]
  41327. ))
  41328. characterMakers.push(() => makeCharacter(
  41329. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41330. {
  41331. regular: {
  41332. height: math.unit(16 + 2/12, "feet"),
  41333. weight: math.unit(2300, "lb"),
  41334. name: "Regular",
  41335. image: {
  41336. source: "./media/characters/zolgar/regular.svg",
  41337. extra: 1246/1004,
  41338. bottom: 124/1370
  41339. }
  41340. },
  41341. boxers: {
  41342. height: math.unit(16 + 2/12, "feet"),
  41343. weight: math.unit(2300, "lb"),
  41344. name: "Boxers",
  41345. image: {
  41346. source: "./media/characters/zolgar/boxers.svg",
  41347. extra: 1246/1004,
  41348. bottom: 124/1370
  41349. }
  41350. },
  41351. armored: {
  41352. height: math.unit(16 + 2/12, "feet"),
  41353. weight: math.unit(2300, "lb"),
  41354. name: "Armored",
  41355. image: {
  41356. source: "./media/characters/zolgar/armored.svg",
  41357. extra: 1246/1004,
  41358. bottom: 124/1370
  41359. }
  41360. },
  41361. goth: {
  41362. height: math.unit(16 + 2/12, "feet"),
  41363. weight: math.unit(2300, "lb"),
  41364. name: "Goth",
  41365. image: {
  41366. source: "./media/characters/zolgar/goth.svg",
  41367. extra: 1246/1004,
  41368. bottom: 124/1370
  41369. }
  41370. },
  41371. },
  41372. [
  41373. {
  41374. name: "Shrunken Down",
  41375. height: math.unit(9 + 2/12, "feet")
  41376. },
  41377. {
  41378. name: "Normal",
  41379. height: math.unit(16 + 2/12, "feet"),
  41380. default: true
  41381. },
  41382. ]
  41383. ))
  41384. characterMakers.push(() => makeCharacter(
  41385. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41386. {
  41387. front: {
  41388. height: math.unit(6, "feet"),
  41389. weight: math.unit(168, "lb"),
  41390. name: "Front",
  41391. image: {
  41392. source: "./media/characters/luca/front.svg",
  41393. extra: 841/667,
  41394. bottom: 102/943
  41395. }
  41396. },
  41397. },
  41398. [
  41399. {
  41400. name: "Normal",
  41401. height: math.unit(6, "feet"),
  41402. default: true
  41403. },
  41404. ]
  41405. ))
  41406. characterMakers.push(() => makeCharacter(
  41407. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41408. {
  41409. side: {
  41410. height: math.unit(7 + 3/12, "feet"),
  41411. weight: math.unit(312, "lb"),
  41412. name: "Side",
  41413. image: {
  41414. source: "./media/characters/zezo/side.svg",
  41415. extra: 1192/1067,
  41416. bottom: 63/1255
  41417. }
  41418. },
  41419. },
  41420. [
  41421. {
  41422. name: "Normal",
  41423. height: math.unit(7 + 3/12, "feet"),
  41424. default: true
  41425. },
  41426. ]
  41427. ))
  41428. characterMakers.push(() => makeCharacter(
  41429. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41430. {
  41431. front: {
  41432. height: math.unit(5 + 5/12, "feet"),
  41433. weight: math.unit(170, "lb"),
  41434. name: "Front",
  41435. image: {
  41436. source: "./media/characters/mayso/front.svg",
  41437. extra: 1215/1108,
  41438. bottom: 16/1231
  41439. }
  41440. },
  41441. },
  41442. [
  41443. {
  41444. name: "Normal",
  41445. height: math.unit(5 + 5/12, "feet"),
  41446. default: true
  41447. },
  41448. ]
  41449. ))
  41450. characterMakers.push(() => makeCharacter(
  41451. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41452. {
  41453. front: {
  41454. height: math.unit(4 + 3/12, "feet"),
  41455. weight: math.unit(80, "lb"),
  41456. name: "Front",
  41457. image: {
  41458. source: "./media/characters/hess/front.svg",
  41459. extra: 1200/1123,
  41460. bottom: 16/1216
  41461. }
  41462. },
  41463. },
  41464. [
  41465. {
  41466. name: "Normal",
  41467. height: math.unit(4 + 3/12, "feet"),
  41468. default: true
  41469. },
  41470. ]
  41471. ))
  41472. characterMakers.push(() => makeCharacter(
  41473. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41474. {
  41475. front: {
  41476. height: math.unit(1.9, "meters"),
  41477. name: "Front",
  41478. image: {
  41479. source: "./media/characters/ashgar/front.svg",
  41480. extra: 1177/1146,
  41481. bottom: 99/1276
  41482. }
  41483. },
  41484. back: {
  41485. height: math.unit(1.9, "meters"),
  41486. name: "Back",
  41487. image: {
  41488. source: "./media/characters/ashgar/back.svg",
  41489. extra: 1201/1183,
  41490. bottom: 53/1254
  41491. }
  41492. },
  41493. feral: {
  41494. height: math.unit(1.4, "meters"),
  41495. name: "Feral",
  41496. image: {
  41497. source: "./media/characters/ashgar/feral.svg",
  41498. extra: 370/345,
  41499. bottom: 45/415
  41500. }
  41501. },
  41502. },
  41503. [
  41504. {
  41505. name: "Normal",
  41506. height: math.unit(1.9, "meters"),
  41507. default: true
  41508. },
  41509. ]
  41510. ))
  41511. characterMakers.push(() => makeCharacter(
  41512. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41513. {
  41514. regular: {
  41515. height: math.unit(6, "feet"),
  41516. weight: math.unit(220, "lb"),
  41517. name: "Regular",
  41518. image: {
  41519. source: "./media/characters/phillip/regular.svg",
  41520. extra: 1373/1277,
  41521. bottom: 75/1448
  41522. }
  41523. },
  41524. dressed: {
  41525. height: math.unit(6, "feet"),
  41526. weight: math.unit(220, "lb"),
  41527. name: "Dressed",
  41528. image: {
  41529. source: "./media/characters/phillip/dressed.svg",
  41530. extra: 1373/1277,
  41531. bottom: 75/1448
  41532. }
  41533. },
  41534. paw: {
  41535. height: math.unit(1.44, "feet"),
  41536. name: "Paw",
  41537. image: {
  41538. source: "./media/characters/phillip/paw.svg"
  41539. }
  41540. },
  41541. },
  41542. [
  41543. {
  41544. name: "Normal",
  41545. height: math.unit(6, "feet"),
  41546. default: true
  41547. },
  41548. ]
  41549. ))
  41550. characterMakers.push(() => makeCharacter(
  41551. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41552. {
  41553. side: {
  41554. height: math.unit(42, "feet"),
  41555. name: "Side",
  41556. image: {
  41557. source: "./media/characters/uvula/side.svg",
  41558. extra: 683/586,
  41559. bottom: 60/743
  41560. }
  41561. },
  41562. front: {
  41563. height: math.unit(42, "feet"),
  41564. name: "Front",
  41565. image: {
  41566. source: "./media/characters/uvula/front.svg",
  41567. extra: 705/613,
  41568. bottom: 54/759
  41569. }
  41570. },
  41571. maw: {
  41572. height: math.unit(23.5, "feet"),
  41573. name: "Maw",
  41574. image: {
  41575. source: "./media/characters/uvula/maw.svg"
  41576. }
  41577. },
  41578. },
  41579. [
  41580. {
  41581. name: "Original Size",
  41582. height: math.unit(14, "inches")
  41583. },
  41584. {
  41585. name: "Human Size",
  41586. height: math.unit(6, "feet")
  41587. },
  41588. {
  41589. name: "Big",
  41590. height: math.unit(42, "feet"),
  41591. default: true
  41592. },
  41593. {
  41594. name: "Bigger",
  41595. height: math.unit(100, "feet")
  41596. },
  41597. ]
  41598. ))
  41599. characterMakers.push(() => makeCharacter(
  41600. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41601. {
  41602. front: {
  41603. height: math.unit(5 + 11/12, "feet"),
  41604. name: "Front",
  41605. image: {
  41606. source: "./media/characters/lannah/front.svg",
  41607. extra: 1208/1113,
  41608. bottom: 97/1305
  41609. }
  41610. },
  41611. },
  41612. [
  41613. {
  41614. name: "Normal",
  41615. height: math.unit(5 + 11/12, "feet"),
  41616. default: true
  41617. },
  41618. ]
  41619. ))
  41620. characterMakers.push(() => makeCharacter(
  41621. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41622. {
  41623. front: {
  41624. height: math.unit(6 + 3/12, "feet"),
  41625. weight: math.unit(3.5, "tons"),
  41626. name: "Front",
  41627. image: {
  41628. source: "./media/characters/emberflame/front.svg",
  41629. extra: 1198/672,
  41630. bottom: 82/1280
  41631. }
  41632. },
  41633. side: {
  41634. height: math.unit(6 + 3/12, "feet"),
  41635. weight: math.unit(3.5, "tons"),
  41636. name: "Side",
  41637. image: {
  41638. source: "./media/characters/emberflame/side.svg",
  41639. extra: 938/527,
  41640. bottom: 56/994
  41641. }
  41642. },
  41643. },
  41644. [
  41645. {
  41646. name: "Normal",
  41647. height: math.unit(6 + 3/12, "feet"),
  41648. default: true
  41649. },
  41650. ]
  41651. ))
  41652. characterMakers.push(() => makeCharacter(
  41653. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41654. {
  41655. side: {
  41656. height: math.unit(17.5, "feet"),
  41657. weight: math.unit(35, "tons"),
  41658. name: "Side",
  41659. image: {
  41660. source: "./media/characters/sophie-ambrose/side.svg",
  41661. extra: 1573/1242,
  41662. bottom: 71/1644
  41663. }
  41664. },
  41665. maw: {
  41666. height: math.unit(7.4, "feet"),
  41667. name: "Maw",
  41668. image: {
  41669. source: "./media/characters/sophie-ambrose/maw.svg"
  41670. }
  41671. },
  41672. },
  41673. [
  41674. {
  41675. name: "Normal",
  41676. height: math.unit(17.5, "feet"),
  41677. default: true
  41678. },
  41679. ]
  41680. ))
  41681. characterMakers.push(() => makeCharacter(
  41682. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41683. {
  41684. front: {
  41685. height: math.unit(280, "feet"),
  41686. weight: math.unit(550, "tons"),
  41687. name: "Front",
  41688. image: {
  41689. source: "./media/characters/king-mugi/front.svg",
  41690. extra: 1102/947,
  41691. bottom: 104/1206
  41692. }
  41693. },
  41694. },
  41695. [
  41696. {
  41697. name: "King Mugi",
  41698. height: math.unit(280, "feet"),
  41699. default: true
  41700. },
  41701. ]
  41702. ))
  41703. characterMakers.push(() => makeCharacter(
  41704. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41705. {
  41706. front: {
  41707. height: math.unit(64, "meters"),
  41708. name: "Front",
  41709. image: {
  41710. source: "./media/characters/nova-fox/front.svg",
  41711. extra: 1310/1246,
  41712. bottom: 65/1375
  41713. }
  41714. },
  41715. },
  41716. [
  41717. {
  41718. name: "Macro",
  41719. height: math.unit(64, "meters"),
  41720. default: true
  41721. },
  41722. ]
  41723. ))
  41724. characterMakers.push(() => makeCharacter(
  41725. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41726. {
  41727. front: {
  41728. height: math.unit(6 + 3/12, "feet"),
  41729. weight: math.unit(170, "lb"),
  41730. name: "Front",
  41731. image: {
  41732. source: "./media/characters/sam-bat/front.svg",
  41733. extra: 1601/1411,
  41734. bottom: 125/1726
  41735. }
  41736. },
  41737. back: {
  41738. height: math.unit(6 + 3/12, "feet"),
  41739. weight: math.unit(170, "lb"),
  41740. name: "Back",
  41741. image: {
  41742. source: "./media/characters/sam-bat/back.svg",
  41743. extra: 1577/1405,
  41744. bottom: 58/1635
  41745. }
  41746. },
  41747. },
  41748. [
  41749. {
  41750. name: "Normal",
  41751. height: math.unit(6 + 3/12, "feet"),
  41752. default: true
  41753. },
  41754. ]
  41755. ))
  41756. characterMakers.push(() => makeCharacter(
  41757. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41758. {
  41759. front: {
  41760. height: math.unit(59, "feet"),
  41761. weight: math.unit(40000, "lb"),
  41762. name: "Front",
  41763. image: {
  41764. source: "./media/characters/inari/front.svg",
  41765. extra: 1884/1350,
  41766. bottom: 95/1979
  41767. }
  41768. },
  41769. },
  41770. [
  41771. {
  41772. name: "Gigantamax",
  41773. height: math.unit(59, "feet"),
  41774. default: true
  41775. },
  41776. ]
  41777. ))
  41778. characterMakers.push(() => makeCharacter(
  41779. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41780. {
  41781. front: {
  41782. height: math.unit(5 + 8/12, "feet"),
  41783. name: "Front",
  41784. image: {
  41785. source: "./media/characters/elizabeth/front.svg",
  41786. extra: 1395/1298,
  41787. bottom: 54/1449
  41788. }
  41789. },
  41790. mouth: {
  41791. height: math.unit(1.97, "feet"),
  41792. name: "Mouth",
  41793. image: {
  41794. source: "./media/characters/elizabeth/mouth.svg"
  41795. }
  41796. },
  41797. foot: {
  41798. height: math.unit(1.17, "feet"),
  41799. name: "Foot",
  41800. image: {
  41801. source: "./media/characters/elizabeth/foot.svg"
  41802. }
  41803. },
  41804. },
  41805. [
  41806. {
  41807. name: "Normal",
  41808. height: math.unit(5 + 8/12, "feet"),
  41809. default: true
  41810. },
  41811. {
  41812. name: "Minimacro",
  41813. height: math.unit(18, "feet")
  41814. },
  41815. {
  41816. name: "Macro",
  41817. height: math.unit(180, "feet")
  41818. },
  41819. ]
  41820. ))
  41821. characterMakers.push(() => makeCharacter(
  41822. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41823. {
  41824. front: {
  41825. height: math.unit(5 + 2/12, "feet"),
  41826. name: "Front",
  41827. image: {
  41828. source: "./media/characters/october-gossamer/front.svg",
  41829. extra: 505/454,
  41830. bottom: 7/512
  41831. }
  41832. },
  41833. back: {
  41834. height: math.unit(5 + 2/12, "feet"),
  41835. name: "Back",
  41836. image: {
  41837. source: "./media/characters/october-gossamer/back.svg",
  41838. extra: 501/454,
  41839. bottom: 11/512
  41840. }
  41841. },
  41842. },
  41843. [
  41844. {
  41845. name: "Normal",
  41846. height: math.unit(5 + 2/12, "feet"),
  41847. default: true
  41848. },
  41849. ]
  41850. ))
  41851. characterMakers.push(() => makeCharacter(
  41852. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41853. {
  41854. front: {
  41855. height: math.unit(5, "feet"),
  41856. name: "Front",
  41857. image: {
  41858. source: "./media/characters/epiglottis/front.svg",
  41859. extra: 923/849,
  41860. bottom: 17/940
  41861. }
  41862. },
  41863. },
  41864. [
  41865. {
  41866. name: "Original Size",
  41867. height: math.unit(10, "inches")
  41868. },
  41869. {
  41870. name: "Human Size",
  41871. height: math.unit(5, "feet"),
  41872. default: true
  41873. },
  41874. {
  41875. name: "Big",
  41876. height: math.unit(25, "feet")
  41877. },
  41878. {
  41879. name: "Bigger",
  41880. height: math.unit(50, "feet")
  41881. },
  41882. {
  41883. name: "oh lawd",
  41884. height: math.unit(75, "feet")
  41885. },
  41886. ]
  41887. ))
  41888. characterMakers.push(() => makeCharacter(
  41889. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41890. {
  41891. front: {
  41892. height: math.unit(2 + 4/12, "feet"),
  41893. weight: math.unit(60, "lb"),
  41894. name: "Front",
  41895. image: {
  41896. source: "./media/characters/lerm/front.svg",
  41897. extra: 796/790,
  41898. bottom: 79/875
  41899. }
  41900. },
  41901. },
  41902. [
  41903. {
  41904. name: "Normal",
  41905. height: math.unit(2 + 4/12, "feet"),
  41906. default: true
  41907. },
  41908. ]
  41909. ))
  41910. characterMakers.push(() => makeCharacter(
  41911. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41912. {
  41913. front: {
  41914. height: math.unit(5.5, "feet"),
  41915. weight: math.unit(130, "lb"),
  41916. name: "Front",
  41917. image: {
  41918. source: "./media/characters/xena-nebadon/front.svg",
  41919. extra: 1828/1730,
  41920. bottom: 79/1907
  41921. }
  41922. },
  41923. },
  41924. [
  41925. {
  41926. name: "Tiny Puppy",
  41927. height: math.unit(3, "inches")
  41928. },
  41929. {
  41930. name: "Normal",
  41931. height: math.unit(5.5, "feet"),
  41932. default: true
  41933. },
  41934. {
  41935. name: "Lotta Lady",
  41936. height: math.unit(12, "feet")
  41937. },
  41938. {
  41939. name: "Pretty Big",
  41940. height: math.unit(100, "feet")
  41941. },
  41942. {
  41943. name: "Big",
  41944. height: math.unit(500, "feet")
  41945. },
  41946. {
  41947. name: "Skyscraper Toys",
  41948. height: math.unit(2500, "feet")
  41949. },
  41950. {
  41951. name: "Plane Catcher",
  41952. height: math.unit(8, "miles")
  41953. },
  41954. {
  41955. name: "Planet Toys",
  41956. height: math.unit(15, "earths")
  41957. },
  41958. {
  41959. name: "Stardust",
  41960. height: math.unit(0.25, "galaxies")
  41961. },
  41962. {
  41963. name: "Snacks",
  41964. height: math.unit(70, "universes")
  41965. },
  41966. ]
  41967. ))
  41968. characterMakers.push(() => makeCharacter(
  41969. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  41970. {
  41971. front: {
  41972. height: math.unit(1.6, "meters"),
  41973. weight: math.unit(60, "kg"),
  41974. name: "Front",
  41975. image: {
  41976. source: "./media/characters/bounty/front.svg",
  41977. extra: 1426/1308,
  41978. bottom: 15/1441
  41979. }
  41980. },
  41981. },
  41982. [
  41983. {
  41984. name: "Normal",
  41985. height: math.unit(1.6, "meters"),
  41986. default: true
  41987. },
  41988. {
  41989. name: "Macro",
  41990. height: math.unit(300, "meters")
  41991. },
  41992. ]
  41993. ))
  41994. characterMakers.push(() => makeCharacter(
  41995. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  41996. {
  41997. front: {
  41998. height: math.unit(2 + 8/12, "feet"),
  41999. weight: math.unit(15, "lb"),
  42000. name: "Front",
  42001. image: {
  42002. source: "./media/characters/mochi/front.svg",
  42003. extra: 1022/852,
  42004. bottom: 435/1457
  42005. }
  42006. },
  42007. back: {
  42008. height: math.unit(2 + 8/12, "feet"),
  42009. weight: math.unit(15, "lb"),
  42010. name: "Back",
  42011. image: {
  42012. source: "./media/characters/mochi/back.svg",
  42013. extra: 1335/1119,
  42014. bottom: 39/1374
  42015. }
  42016. },
  42017. bird: {
  42018. height: math.unit(2 + 8/12, "feet"),
  42019. weight: math.unit(15, "lb"),
  42020. name: "Bird",
  42021. image: {
  42022. source: "./media/characters/mochi/bird.svg",
  42023. extra: 1251/1113,
  42024. bottom: 178/1429
  42025. }
  42026. },
  42027. kaiju: {
  42028. height: math.unit(154, "feet"),
  42029. weight: math.unit(1e7, "lb"),
  42030. name: "Kaiju",
  42031. image: {
  42032. source: "./media/characters/mochi/kaiju.svg",
  42033. extra: 460/324,
  42034. bottom: 40/500
  42035. }
  42036. },
  42037. head: {
  42038. height: math.unit(1.21, "feet"),
  42039. name: "Head",
  42040. image: {
  42041. source: "./media/characters/mochi/head.svg"
  42042. }
  42043. },
  42044. alternateTail: {
  42045. height: math.unit(2 + 8/12, "feet"),
  42046. weight: math.unit(45, "lb"),
  42047. name: "Alternate Tail",
  42048. image: {
  42049. source: "./media/characters/mochi/alternate-tail.svg",
  42050. extra: 139/76,
  42051. bottom: 45/184
  42052. }
  42053. },
  42054. },
  42055. [
  42056. {
  42057. name: "Micro",
  42058. height: math.unit(2, "inches")
  42059. },
  42060. {
  42061. name: "Normal",
  42062. height: math.unit(2 + 8/12, "feet"),
  42063. default: true
  42064. },
  42065. {
  42066. name: "Macro",
  42067. height: math.unit(106, "feet")
  42068. },
  42069. ]
  42070. ))
  42071. characterMakers.push(() => makeCharacter(
  42072. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42073. {
  42074. front: {
  42075. height: math.unit(5.67, "feet"),
  42076. weight: math.unit(135, "lb"),
  42077. name: "Front",
  42078. image: {
  42079. source: "./media/characters/sarel/front.svg",
  42080. extra: 865/788,
  42081. bottom: 97/962
  42082. }
  42083. },
  42084. back: {
  42085. height: math.unit(5.67, "feet"),
  42086. weight: math.unit(135, "lb"),
  42087. name: "Back",
  42088. image: {
  42089. source: "./media/characters/sarel/back.svg",
  42090. extra: 857/777,
  42091. bottom: 32/889
  42092. }
  42093. },
  42094. chozoan: {
  42095. height: math.unit(5.67, "feet"),
  42096. weight: math.unit(135, "lb"),
  42097. name: "Chozoan",
  42098. image: {
  42099. source: "./media/characters/sarel/chozoan.svg",
  42100. extra: 865/788,
  42101. bottom: 97/962
  42102. }
  42103. },
  42104. current: {
  42105. height: math.unit(5.67, "feet"),
  42106. weight: math.unit(135, "lb"),
  42107. name: "Current",
  42108. image: {
  42109. source: "./media/characters/sarel/current.svg",
  42110. extra: 865/788,
  42111. bottom: 97/962
  42112. }
  42113. },
  42114. head: {
  42115. height: math.unit(1.77, "feet"),
  42116. name: "Head",
  42117. image: {
  42118. source: "./media/characters/sarel/head.svg"
  42119. }
  42120. },
  42121. claws: {
  42122. height: math.unit(1.8, "feet"),
  42123. name: "Claws",
  42124. image: {
  42125. source: "./media/characters/sarel/claws.svg"
  42126. }
  42127. },
  42128. clawsAlt: {
  42129. height: math.unit(1.8, "feet"),
  42130. name: "Claws-alt",
  42131. image: {
  42132. source: "./media/characters/sarel/claws-alt.svg"
  42133. }
  42134. },
  42135. },
  42136. [
  42137. {
  42138. name: "Normal",
  42139. height: math.unit(5.67, "feet"),
  42140. default: true
  42141. },
  42142. ]
  42143. ))
  42144. characterMakers.push(() => makeCharacter(
  42145. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42146. {
  42147. front: {
  42148. height: math.unit(5500, "feet"),
  42149. name: "Front",
  42150. image: {
  42151. source: "./media/characters/alyonia/front.svg",
  42152. extra: 1200/1135,
  42153. bottom: 29/1229
  42154. }
  42155. },
  42156. back: {
  42157. height: math.unit(5500, "feet"),
  42158. name: "Back",
  42159. image: {
  42160. source: "./media/characters/alyonia/back.svg",
  42161. extra: 1205/1138,
  42162. bottom: 10/1215
  42163. }
  42164. },
  42165. },
  42166. [
  42167. {
  42168. name: "Small",
  42169. height: math.unit(10, "feet")
  42170. },
  42171. {
  42172. name: "Macro",
  42173. height: math.unit(500, "feet")
  42174. },
  42175. {
  42176. name: "Mega Macro",
  42177. height: math.unit(5500, "feet"),
  42178. default: true
  42179. },
  42180. {
  42181. name: "Mega Macro+",
  42182. height: math.unit(500000, "feet")
  42183. },
  42184. {
  42185. name: "Giga Macro",
  42186. height: math.unit(3000, "miles")
  42187. },
  42188. {
  42189. name: "Tera Macro",
  42190. height: math.unit(2.8e6, "miles")
  42191. },
  42192. {
  42193. name: "Galactic",
  42194. height: math.unit(120000, "lightyears")
  42195. },
  42196. ]
  42197. ))
  42198. characterMakers.push(() => makeCharacter(
  42199. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42200. {
  42201. werewolf: {
  42202. height: math.unit(8, "feet"),
  42203. weight: math.unit(425, "lb"),
  42204. name: "Werewolf",
  42205. image: {
  42206. source: "./media/characters/autumn/werewolf.svg",
  42207. extra: 2154/2031,
  42208. bottom: 160/2314
  42209. }
  42210. },
  42211. human: {
  42212. height: math.unit(5 + 8/12, "feet"),
  42213. weight: math.unit(150, "lb"),
  42214. name: "Human",
  42215. image: {
  42216. source: "./media/characters/autumn/human.svg",
  42217. extra: 1200/1149,
  42218. bottom: 30/1230
  42219. }
  42220. },
  42221. },
  42222. [
  42223. {
  42224. name: "Normal",
  42225. height: math.unit(8, "feet"),
  42226. default: true
  42227. },
  42228. ]
  42229. ))
  42230. characterMakers.push(() => makeCharacter(
  42231. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42232. {
  42233. front: {
  42234. height: math.unit(8 + 5/12, "feet"),
  42235. weight: math.unit(825, "lb"),
  42236. name: "Front",
  42237. image: {
  42238. source: "./media/characters/cobalt-charizard/front.svg",
  42239. extra: 1268/1155,
  42240. bottom: 122/1390
  42241. }
  42242. },
  42243. side: {
  42244. height: math.unit(8 + 5/12, "feet"),
  42245. weight: math.unit(825, "lb"),
  42246. name: "Side",
  42247. image: {
  42248. source: "./media/characters/cobalt-charizard/side.svg",
  42249. extra: 1348/1257,
  42250. bottom: 58/1406
  42251. }
  42252. },
  42253. gMax: {
  42254. height: math.unit(134 + 11/12, "feet"),
  42255. name: "G-Max",
  42256. image: {
  42257. source: "./media/characters/cobalt-charizard/g-max.svg",
  42258. extra: 1835/1541,
  42259. bottom: 151/1986
  42260. }
  42261. },
  42262. },
  42263. [
  42264. {
  42265. name: "Normal",
  42266. height: math.unit(8 + 5/12, "feet"),
  42267. default: true
  42268. },
  42269. ]
  42270. ))
  42271. characterMakers.push(() => makeCharacter(
  42272. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42273. {
  42274. front: {
  42275. height: math.unit(6 + 3/12, "feet"),
  42276. weight: math.unit(210, "lb"),
  42277. name: "Front",
  42278. image: {
  42279. source: "./media/characters/stella/front.svg",
  42280. extra: 3549/3335,
  42281. bottom: 51/3600
  42282. }
  42283. },
  42284. },
  42285. [
  42286. {
  42287. name: "Normal",
  42288. height: math.unit(6 + 3/12, "feet"),
  42289. default: true
  42290. },
  42291. ]
  42292. ))
  42293. characterMakers.push(() => makeCharacter(
  42294. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42295. {
  42296. front: {
  42297. height: math.unit(5, "feet"),
  42298. weight: math.unit(90, "lb"),
  42299. name: "Front",
  42300. image: {
  42301. source: "./media/characters/riley-bishop/front.svg",
  42302. extra: 1450/1428,
  42303. bottom: 152/1602
  42304. }
  42305. },
  42306. },
  42307. [
  42308. {
  42309. name: "Normal",
  42310. height: math.unit(5, "feet"),
  42311. default: true
  42312. },
  42313. ]
  42314. ))
  42315. characterMakers.push(() => makeCharacter(
  42316. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42317. {
  42318. side: {
  42319. height: math.unit(8 + 2/12, "feet"),
  42320. weight: math.unit(500, "kg"),
  42321. name: "Side",
  42322. image: {
  42323. source: "./media/characters/theo-arcanine/side.svg",
  42324. extra: 1342/1074,
  42325. bottom: 111/1453
  42326. }
  42327. },
  42328. },
  42329. [
  42330. {
  42331. name: "Normal",
  42332. height: math.unit(8 + 2/12, "feet"),
  42333. default: true
  42334. },
  42335. ]
  42336. ))
  42337. characterMakers.push(() => makeCharacter(
  42338. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42339. {
  42340. front: {
  42341. height: math.unit(4, "feet"),
  42342. name: "Front",
  42343. image: {
  42344. source: "./media/characters/kali/front.svg",
  42345. extra: 1921/1357,
  42346. bottom: 70/1991
  42347. }
  42348. },
  42349. },
  42350. [
  42351. {
  42352. name: "Normal",
  42353. height: math.unit(4, "feet"),
  42354. default: true
  42355. },
  42356. {
  42357. name: "Macro",
  42358. height: math.unit(32, "meters")
  42359. },
  42360. {
  42361. name: "Macro+",
  42362. height: math.unit(150, "meters")
  42363. },
  42364. {
  42365. name: "Megamacro",
  42366. height: math.unit(7500, "meters")
  42367. },
  42368. {
  42369. name: "Megamacro+",
  42370. height: math.unit(80, "kilometers")
  42371. },
  42372. ]
  42373. ))
  42374. characterMakers.push(() => makeCharacter(
  42375. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42376. {
  42377. side: {
  42378. height: math.unit(5 + 11/12, "feet"),
  42379. weight: math.unit(236, "lb"),
  42380. name: "Side",
  42381. image: {
  42382. source: "./media/characters/gapp/side.svg",
  42383. extra: 775/340,
  42384. bottom: 58/833
  42385. }
  42386. },
  42387. mouth: {
  42388. height: math.unit(2.98, "feet"),
  42389. name: "Mouth",
  42390. image: {
  42391. source: "./media/characters/gapp/mouth.svg"
  42392. }
  42393. },
  42394. },
  42395. [
  42396. {
  42397. name: "Normal",
  42398. height: math.unit(5 + 1/12, "feet"),
  42399. default: true
  42400. },
  42401. ]
  42402. ))
  42403. characterMakers.push(() => makeCharacter(
  42404. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42405. {
  42406. front: {
  42407. height: math.unit(6, "feet"),
  42408. name: "Front",
  42409. image: {
  42410. source: "./media/characters/persephone/front.svg",
  42411. extra: 1895/1717,
  42412. bottom: 96/1991
  42413. }
  42414. },
  42415. back: {
  42416. height: math.unit(6, "feet"),
  42417. name: "Back",
  42418. image: {
  42419. source: "./media/characters/persephone/back.svg",
  42420. extra: 1868/1679,
  42421. bottom: 26/1894
  42422. }
  42423. },
  42424. casual: {
  42425. height: math.unit(6, "feet"),
  42426. name: "Casual",
  42427. image: {
  42428. source: "./media/characters/persephone/casual.svg",
  42429. extra: 1713/1541,
  42430. bottom: 76/1789
  42431. }
  42432. },
  42433. },
  42434. [
  42435. {
  42436. name: "Human Size",
  42437. height: math.unit(6, "feet"),
  42438. default: true
  42439. },
  42440. {
  42441. name: "Galaxy Brain",
  42442. height: math.unit(1, "zettameter")
  42443. },
  42444. ]
  42445. ))
  42446. characterMakers.push(() => makeCharacter(
  42447. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42448. {
  42449. front: {
  42450. height: math.unit(1.85, "meters"),
  42451. name: "Front",
  42452. image: {
  42453. source: "./media/characters/riley-foxthing/front.svg",
  42454. extra: 1495/1354,
  42455. bottom: 122/1617
  42456. }
  42457. },
  42458. frontAlt: {
  42459. height: math.unit(1.85, "meters"),
  42460. name: "Front (Alt)",
  42461. image: {
  42462. source: "./media/characters/riley-foxthing/front-alt.svg",
  42463. extra: 1572/1389,
  42464. bottom: 116/1688
  42465. }
  42466. },
  42467. },
  42468. [
  42469. {
  42470. name: "Normal Sized",
  42471. height: math.unit(1.85, "meters"),
  42472. default: true
  42473. },
  42474. {
  42475. name: "Quite Sizable",
  42476. height: math.unit(5, "meters")
  42477. },
  42478. {
  42479. name: "Rather Large",
  42480. height: math.unit(20, "meters")
  42481. },
  42482. {
  42483. name: "Macro",
  42484. height: math.unit(450, "meters")
  42485. },
  42486. {
  42487. name: "Giga",
  42488. height: math.unit(5, "km")
  42489. },
  42490. ]
  42491. ))
  42492. characterMakers.push(() => makeCharacter(
  42493. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42494. {
  42495. front: {
  42496. height: math.unit(6, "feet"),
  42497. weight: math.unit(200, "lb"),
  42498. name: "Front",
  42499. image: {
  42500. source: "./media/characters/blizzard/front.svg",
  42501. extra: 1136/990,
  42502. bottom: 136/1272
  42503. }
  42504. },
  42505. back: {
  42506. height: math.unit(6, "feet"),
  42507. weight: math.unit(200, "lb"),
  42508. name: "Back",
  42509. image: {
  42510. source: "./media/characters/blizzard/back.svg",
  42511. extra: 1175/1034,
  42512. bottom: 97/1272
  42513. }
  42514. },
  42515. sitting: {
  42516. height: math.unit(3.725, "feet"),
  42517. weight: math.unit(200, "lb"),
  42518. name: "Sitting",
  42519. image: {
  42520. source: "./media/characters/blizzard/sitting.svg",
  42521. extra: 581/485,
  42522. bottom: 90/671
  42523. }
  42524. },
  42525. frontWizard: {
  42526. height: math.unit(7.9, "feet"),
  42527. weight: math.unit(200, "lb"),
  42528. name: "Front (Wizard)",
  42529. image: {
  42530. source: "./media/characters/blizzard/front-wizard.svg"
  42531. }
  42532. },
  42533. backWizard: {
  42534. height: math.unit(7.9, "feet"),
  42535. weight: math.unit(200, "lb"),
  42536. name: "Back (Wizard)",
  42537. image: {
  42538. source: "./media/characters/blizzard/back-wizard.svg"
  42539. }
  42540. },
  42541. frontNsfw: {
  42542. height: math.unit(6, "feet"),
  42543. weight: math.unit(200, "lb"),
  42544. name: "Front (NSFW)",
  42545. image: {
  42546. source: "./media/characters/blizzard/front-nsfw.svg",
  42547. extra: 1136/990,
  42548. bottom: 136/1272
  42549. }
  42550. },
  42551. backNsfw: {
  42552. height: math.unit(6, "feet"),
  42553. weight: math.unit(200, "lb"),
  42554. name: "Back (NSFW)",
  42555. image: {
  42556. source: "./media/characters/blizzard/back-nsfw.svg",
  42557. extra: 1175/1034,
  42558. bottom: 97/1272
  42559. }
  42560. },
  42561. sittingNsfw: {
  42562. height: math.unit(3.725, "feet"),
  42563. weight: math.unit(200, "lb"),
  42564. name: "Sitting (NSFW)",
  42565. image: {
  42566. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42567. extra: 581/485,
  42568. bottom: 90/671
  42569. }
  42570. },
  42571. wizardFrontNsfw: {
  42572. height: math.unit(7.9, "feet"),
  42573. weight: math.unit(200, "lb"),
  42574. name: "Wizard (Front, NSFW)",
  42575. image: {
  42576. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42577. }
  42578. },
  42579. },
  42580. [
  42581. {
  42582. name: "Normal",
  42583. height: math.unit(6, "feet"),
  42584. default: true
  42585. },
  42586. ]
  42587. ))
  42588. characterMakers.push(() => makeCharacter(
  42589. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42590. {
  42591. front: {
  42592. height: math.unit(5 + 2/12, "feet"),
  42593. name: "Front",
  42594. image: {
  42595. source: "./media/characters/lumi/front.svg",
  42596. extra: 1328/1268,
  42597. bottom: 103/1431
  42598. }
  42599. },
  42600. back: {
  42601. height: math.unit(5 + 2/12, "feet"),
  42602. name: "Back",
  42603. image: {
  42604. source: "./media/characters/lumi/back.svg",
  42605. extra: 1381/1327,
  42606. bottom: 43/1424
  42607. }
  42608. },
  42609. },
  42610. [
  42611. {
  42612. name: "Normal",
  42613. height: math.unit(5 + 2/12, "feet"),
  42614. default: true
  42615. },
  42616. ]
  42617. ))
  42618. characterMakers.push(() => makeCharacter(
  42619. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42620. {
  42621. front: {
  42622. height: math.unit(5 + 9/12, "feet"),
  42623. name: "Front",
  42624. image: {
  42625. source: "./media/characters/aliya-cotton/front.svg",
  42626. extra: 577/564,
  42627. bottom: 29/606
  42628. }
  42629. },
  42630. },
  42631. [
  42632. {
  42633. name: "Normal",
  42634. height: math.unit(5 + 9/12, "feet"),
  42635. default: true
  42636. },
  42637. ]
  42638. ))
  42639. characterMakers.push(() => makeCharacter(
  42640. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42641. {
  42642. front: {
  42643. height: math.unit(2.7, "meters"),
  42644. weight: math.unit(25000, "lb"),
  42645. name: "Front",
  42646. image: {
  42647. source: "./media/characters/noah-luxray/front.svg",
  42648. extra: 1644/825,
  42649. bottom: 339/1983
  42650. }
  42651. },
  42652. side: {
  42653. height: math.unit(2.97, "meters"),
  42654. weight: math.unit(25000, "lb"),
  42655. name: "Side",
  42656. image: {
  42657. source: "./media/characters/noah-luxray/side.svg",
  42658. extra: 1319/650,
  42659. bottom: 163/1482
  42660. }
  42661. },
  42662. dick: {
  42663. height: math.unit(7.4, "feet"),
  42664. weight: math.unit(2500, "lb"),
  42665. name: "Dick",
  42666. image: {
  42667. source: "./media/characters/noah-luxray/dick.svg"
  42668. }
  42669. },
  42670. dickAlt: {
  42671. height: math.unit(10.83, "feet"),
  42672. weight: math.unit(2500, "lb"),
  42673. name: "Dick-alt",
  42674. image: {
  42675. source: "./media/characters/noah-luxray/dick-alt.svg"
  42676. }
  42677. },
  42678. },
  42679. [
  42680. {
  42681. name: "BIG",
  42682. height: math.unit(2.7, "meters"),
  42683. default: true
  42684. },
  42685. ]
  42686. ))
  42687. characterMakers.push(() => makeCharacter(
  42688. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42689. {
  42690. standing: {
  42691. height: math.unit(183, "cm"),
  42692. weight: math.unit(68, "kg"),
  42693. name: "Standing",
  42694. image: {
  42695. source: "./media/characters/arion/standing.svg",
  42696. extra: 1869/1807,
  42697. bottom: 93/1962
  42698. }
  42699. },
  42700. reclining: {
  42701. height: math.unit(70.5, "cm"),
  42702. weight: math.unit(68, "lb"),
  42703. name: "Reclining",
  42704. image: {
  42705. source: "./media/characters/arion/reclining.svg",
  42706. extra: 937/870,
  42707. bottom: 63/1000
  42708. }
  42709. },
  42710. },
  42711. [
  42712. {
  42713. name: "Colossus Size, Low",
  42714. height: math.unit(33, "meters"),
  42715. default: true
  42716. },
  42717. {
  42718. name: "Colossus Size, Mid",
  42719. height: math.unit(52, "meters")
  42720. },
  42721. {
  42722. name: "Colossus Size, High",
  42723. height: math.unit(60, "meters")
  42724. },
  42725. {
  42726. name: "Titan Size, Low",
  42727. height: math.unit(91, "meters"),
  42728. },
  42729. {
  42730. name: "Titan Size, Mid",
  42731. height: math.unit(122, "meters")
  42732. },
  42733. {
  42734. name: "Titan Size, High",
  42735. height: math.unit(162, "meters")
  42736. },
  42737. ]
  42738. ))
  42739. characterMakers.push(() => makeCharacter(
  42740. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42741. {
  42742. front: {
  42743. height: math.unit(53, "meters"),
  42744. name: "Front",
  42745. image: {
  42746. source: "./media/characters/stellar-marbey/front.svg",
  42747. extra: 1913/1805,
  42748. bottom: 92/2005
  42749. }
  42750. },
  42751. back: {
  42752. height: math.unit(53, "meters"),
  42753. name: "Back",
  42754. image: {
  42755. source: "./media/characters/stellar-marbey/back.svg",
  42756. extra: 1960/1851,
  42757. bottom: 28/1988
  42758. }
  42759. },
  42760. mouth: {
  42761. height: math.unit(3.5, "meters"),
  42762. name: "Mouth",
  42763. image: {
  42764. source: "./media/characters/stellar-marbey/mouth.svg"
  42765. }
  42766. },
  42767. },
  42768. [
  42769. {
  42770. name: "Macro",
  42771. height: math.unit(53, "meters"),
  42772. default: true
  42773. },
  42774. ]
  42775. ))
  42776. characterMakers.push(() => makeCharacter(
  42777. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42778. {
  42779. front: {
  42780. height: math.unit(8 + 1/12, "feet"),
  42781. weight: math.unit(233, "lb"),
  42782. name: "Front",
  42783. image: {
  42784. source: "./media/characters/matsu/front.svg",
  42785. extra: 832/772,
  42786. bottom: 40/872
  42787. }
  42788. },
  42789. back: {
  42790. height: math.unit(8 + 1/12, "feet"),
  42791. weight: math.unit(233, "lb"),
  42792. name: "Back",
  42793. image: {
  42794. source: "./media/characters/matsu/back.svg",
  42795. extra: 839/780,
  42796. bottom: 47/886
  42797. }
  42798. },
  42799. },
  42800. [
  42801. {
  42802. name: "Normal",
  42803. height: math.unit(8 + 1/12, "feet"),
  42804. default: true
  42805. },
  42806. ]
  42807. ))
  42808. characterMakers.push(() => makeCharacter(
  42809. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42810. {
  42811. front: {
  42812. height: math.unit(4, "feet"),
  42813. weight: math.unit(148, "lb"),
  42814. name: "Front",
  42815. image: {
  42816. source: "./media/characters/thiz/front.svg",
  42817. extra: 1913/1748,
  42818. bottom: 62/1975
  42819. }
  42820. },
  42821. },
  42822. [
  42823. {
  42824. name: "Normal",
  42825. height: math.unit(4, "feet"),
  42826. default: true
  42827. },
  42828. ]
  42829. ))
  42830. characterMakers.push(() => makeCharacter(
  42831. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42832. {
  42833. front: {
  42834. height: math.unit(7 + 6/12, "feet"),
  42835. weight: math.unit(267, "lb"),
  42836. name: "Front",
  42837. image: {
  42838. source: "./media/characters/marcel/front.svg",
  42839. extra: 1221/1096,
  42840. bottom: 76/1297
  42841. }
  42842. },
  42843. },
  42844. [
  42845. {
  42846. name: "Normal",
  42847. height: math.unit(7 + 6/12, "feet"),
  42848. default: true
  42849. },
  42850. ]
  42851. ))
  42852. characterMakers.push(() => makeCharacter(
  42853. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  42854. {
  42855. side: {
  42856. height: math.unit(42, "meters"),
  42857. name: "Side",
  42858. image: {
  42859. source: "./media/characters/flake/side.svg",
  42860. extra: 1525/1306,
  42861. bottom: 209/1734
  42862. }
  42863. },
  42864. },
  42865. [
  42866. {
  42867. name: "Normal",
  42868. height: math.unit(42, "meters"),
  42869. default: true
  42870. },
  42871. ]
  42872. ))
  42873. characterMakers.push(() => makeCharacter(
  42874. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  42875. {
  42876. dressed: {
  42877. height: math.unit(6 + 4/12, "feet"),
  42878. weight: math.unit(520, "lb"),
  42879. name: "Dressed",
  42880. image: {
  42881. source: "./media/characters/someonne/dressed.svg",
  42882. extra: 1020/1010,
  42883. bottom: 178/1198
  42884. }
  42885. },
  42886. undressed: {
  42887. height: math.unit(6 + 4/12, "feet"),
  42888. weight: math.unit(520, "lb"),
  42889. name: "Undressed",
  42890. image: {
  42891. source: "./media/characters/someonne/undressed.svg",
  42892. extra: 1019/1014,
  42893. bottom: 169/1188
  42894. }
  42895. },
  42896. },
  42897. [
  42898. {
  42899. name: "Normal",
  42900. height: math.unit(6 + 4/12, "feet"),
  42901. default: true
  42902. },
  42903. ]
  42904. ))
  42905. characterMakers.push(() => makeCharacter(
  42906. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  42907. {
  42908. front: {
  42909. height: math.unit(3, "feet"),
  42910. weight: math.unit(30, "lb"),
  42911. name: "Front",
  42912. image: {
  42913. source: "./media/characters/till/front.svg",
  42914. extra: 892/823,
  42915. bottom: 55/947
  42916. }
  42917. },
  42918. },
  42919. [
  42920. {
  42921. name: "Normal",
  42922. height: math.unit(3, "feet"),
  42923. default: true
  42924. },
  42925. ]
  42926. ))
  42927. characterMakers.push(() => makeCharacter(
  42928. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  42929. {
  42930. front: {
  42931. height: math.unit(9 + 8/12, "feet"),
  42932. weight: math.unit(800, "lb"),
  42933. name: "Front",
  42934. image: {
  42935. source: "./media/characters/sydney-heki/front.svg",
  42936. extra: 1360/1300,
  42937. bottom: 22/1382
  42938. }
  42939. },
  42940. back: {
  42941. height: math.unit(9 + 8/12, "feet"),
  42942. weight: math.unit(800, "lb"),
  42943. name: "Back",
  42944. image: {
  42945. source: "./media/characters/sydney-heki/back.svg",
  42946. extra: 1356/1293,
  42947. bottom: 12/1368
  42948. }
  42949. },
  42950. frontDressed: {
  42951. height: math.unit(9 + 8/12, "feet"),
  42952. weight: math.unit(800, "lb"),
  42953. name: "Front-dressed",
  42954. image: {
  42955. source: "./media/characters/sydney-heki/front-dressed.svg",
  42956. extra: 1360/1300,
  42957. bottom: 22/1382
  42958. }
  42959. },
  42960. },
  42961. [
  42962. {
  42963. name: "Normal",
  42964. height: math.unit(9 + 8/12, "feet"),
  42965. default: true
  42966. },
  42967. {
  42968. name: "Macro",
  42969. height: math.unit(500, "feet")
  42970. },
  42971. {
  42972. name: "Megamacro",
  42973. height: math.unit(3.6, "miles")
  42974. },
  42975. ]
  42976. ))
  42977. characterMakers.push(() => makeCharacter(
  42978. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  42979. {
  42980. front: {
  42981. height: math.unit(200, "cm"),
  42982. weight: math.unit(250, "lb"),
  42983. name: "Front",
  42984. image: {
  42985. source: "./media/characters/fowler-karlsson/front.svg",
  42986. extra: 897/845,
  42987. bottom: 123/1020
  42988. }
  42989. },
  42990. back: {
  42991. height: math.unit(200, "cm"),
  42992. weight: math.unit(250, "lb"),
  42993. name: "Back",
  42994. image: {
  42995. source: "./media/characters/fowler-karlsson/back.svg",
  42996. extra: 999/944,
  42997. bottom: 26/1025
  42998. }
  42999. },
  43000. dick: {
  43001. height: math.unit(1.92, "feet"),
  43002. weight: math.unit(150, "lb"),
  43003. name: "Dick",
  43004. image: {
  43005. source: "./media/characters/fowler-karlsson/dick.svg"
  43006. }
  43007. },
  43008. },
  43009. [
  43010. {
  43011. name: "Normal",
  43012. height: math.unit(200, "cm"),
  43013. default: true
  43014. },
  43015. {
  43016. name: "Smaller Macro",
  43017. height: math.unit(90, "m")
  43018. },
  43019. {
  43020. name: "Macro",
  43021. height: math.unit(150, "m")
  43022. },
  43023. {
  43024. name: "Bigger Macro",
  43025. height: math.unit(300, "m")
  43026. },
  43027. ]
  43028. ))
  43029. characterMakers.push(() => makeCharacter(
  43030. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43031. {
  43032. side: {
  43033. height: math.unit(8 + 2/12, "feet"),
  43034. weight: math.unit(1, "tonne"),
  43035. name: "Side",
  43036. image: {
  43037. source: "./media/characters/rylide/side.svg",
  43038. extra: 1318/1034,
  43039. bottom: 106/1424
  43040. }
  43041. },
  43042. sitting: {
  43043. height: math.unit(303, "cm"),
  43044. weight: math.unit(1, "tonne"),
  43045. name: "Sitting",
  43046. image: {
  43047. source: "./media/characters/rylide/sitting.svg",
  43048. extra: 1303/1103,
  43049. bottom: 36/1339
  43050. }
  43051. },
  43052. },
  43053. [
  43054. {
  43055. name: "Normal",
  43056. height: math.unit(8 + 2/12, "feet"),
  43057. default: true
  43058. },
  43059. ]
  43060. ))
  43061. characterMakers.push(() => makeCharacter(
  43062. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43063. {
  43064. front: {
  43065. height: math.unit(5 + 10/12, "feet"),
  43066. weight: math.unit(160, "lb"),
  43067. name: "Front",
  43068. image: {
  43069. source: "./media/characters/pudask/front.svg",
  43070. extra: 1616/1590,
  43071. bottom: 161/1777
  43072. }
  43073. },
  43074. },
  43075. [
  43076. {
  43077. name: "Ferret Height",
  43078. height: math.unit(2 + 5/12, "feet")
  43079. },
  43080. {
  43081. name: "Canon Height",
  43082. height: math.unit(5 + 10/12, "feet"),
  43083. default: true
  43084. },
  43085. ]
  43086. ))
  43087. //characters
  43088. function makeCharacters() {
  43089. const results = [];
  43090. characterMakers.forEach(character => {
  43091. results.push(character());
  43092. });
  43093. return results;
  43094. }